From dc05559250b9d5f489e15753a40d4406464b82c2 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 15:37:32 +1000 Subject: [PATCH 01/24] feat(forks): recognise gloas and derive slot phases per fork The fork registry carried a misspelled 'glaos' placeholder while networks already serve forks.consensus.gloas, so every fork-aware surface crashed on glamsterdam devnets (FORK_METADATA lookup returned undefined). Renames the placeholder to gloas with real Glamsterdam metadata (EIP-7732 ePBS + EIP-7805 FOCIL, execution fork amsterdam), gives ForkLabel a fallback so unknown future fork names degrade to a plain label instead of a crash, and adds isForkAtOrAfter so fork gates stop being string-equality checks that new forks silently miss (BlobDataColumnSpreadChart only matched fulu). Slot phases are now specified once per fork in basis points of the slot duration, mirroring the consensus config deadlines: pre-gloas keeps block/attestation/aggregation at 33/67%, gloas uses the ePBS structure (attestation 25%, aggregate 50%, payload reveal + PTC due 75%). getSlotPhases(fork) drives the live view phase bar. --- .../Ethereum/ForkLabel/ForkLabel.tsx | 10 +- src/hooks/useConfig/useConfig.types.ts | 2 +- .../live/components/BottomBar/BottomBar.tsx | 2 +- .../hooks/useSidebarData/useSidebarData.tsx | 6 +- .../BlobDataColumnSpreadChart.tsx | 4 +- src/utils/beacon.ts | 128 ++++++++++++++++-- src/utils/forkOrder.ts | 28 ++++ src/utils/forks.test.ts | 4 +- src/utils/forks.ts | 19 +-- 9 files changed, 166 insertions(+), 37 deletions(-) create mode 100644 src/utils/forkOrder.ts diff --git a/src/components/Ethereum/ForkLabel/ForkLabel.tsx b/src/components/Ethereum/ForkLabel/ForkLabel.tsx index 1d8be9496..f4ae4d3f2 100644 --- a/src/components/Ethereum/ForkLabel/ForkLabel.tsx +++ b/src/components/Ethereum/ForkLabel/ForkLabel.tsx @@ -20,7 +20,15 @@ import type { ForkLabelProps } from './ForkLabel.types'; * */ export function ForkLabel({ fork, className, size = 'md', showIcon = true }: ForkLabelProps): React.JSX.Element { - const metadata = FORK_METADATA[fork]; + // Networks can serve fork names newer than this build knows about; render + // them as a plain label instead of crashing on missing metadata. + const metadata = FORK_METADATA[fork] ?? { + version: fork, + name: fork, + emoji: '🔮', + color: 'bg-gray-100 text-gray-700 dark:bg-gray-400/10 dark:text-gray-400', + description: `Upcoming fork: ${fork}`, + }; const sizeClasses = { sm: 'px-2 py-0.5 text-xs gap-1', diff --git a/src/hooks/useConfig/useConfig.types.ts b/src/hooks/useConfig/useConfig.types.ts index 20cfd0c20..14114bed9 100644 --- a/src/hooks/useConfig/useConfig.types.ts +++ b/src/hooks/useConfig/useConfig.types.ts @@ -22,7 +22,7 @@ export interface ConsensusForks { deneb?: ConsensusFork; electra?: ConsensusFork; fulu?: ConsensusFork; - glaos?: ConsensusFork; + gloas?: ConsensusFork; fusaka?: ConsensusFork; } diff --git a/src/pages/ethereum/live/components/BottomBar/BottomBar.tsx b/src/pages/ethereum/live/components/BottomBar/BottomBar.tsx index f7a8467f4..d8f7cd91f 100644 --- a/src/pages/ethereum/live/components/BottomBar/BottomBar.tsx +++ b/src/pages/ethereum/live/components/BottomBar/BottomBar.tsx @@ -32,7 +32,7 @@ function BottomBarComponent({ // Deneb and Electra: show blob availability // Earlier forks: show neither const showBlobAvailability = forkName === 'deneb' || forkName === 'electra'; - const showDataColumnAvailability = forkName === 'fulu' || forkName === 'glaos'; + const showDataColumnAvailability = forkName === 'fulu' || forkName === 'gloas'; return ( <> diff --git a/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx b/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx index 81ea09b35..ac1aa4179 100644 --- a/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx +++ b/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx @@ -7,7 +7,8 @@ import type { } from '@/api/types.gen'; import type { SlotPhase } from '@/utils/beacon'; import type { TimelineItem } from '@/components/Lists/ScrollingTimeline/ScrollingTimeline.types'; -import { DEFAULT_BEACON_SLOT_PHASES } from '@/utils/beacon'; +import { getSlotPhases } from '@/utils/beacon'; +import { useForks } from '@/hooks/useForks'; import { Badge } from '@/components/Elements/Badge'; /** @@ -36,7 +37,8 @@ export function useSidebarData({ phases: SlotPhase[]; items: TimelineItem[]; } { - const phases = useMemo(() => DEFAULT_BEACON_SLOT_PHASES, []); + const { activeFork } = useForks(); + const phases = useMemo(() => getSlotPhases(activeFork?.name), [activeFork?.name]); const items = useMemo(() => { const allItems: TimelineItem[] = []; diff --git a/src/pages/ethereum/slots/components/BlobDataColumnSpreadChart/BlobDataColumnSpreadChart.tsx b/src/pages/ethereum/slots/components/BlobDataColumnSpreadChart/BlobDataColumnSpreadChart.tsx index 3784b2752..9ba2891bf 100644 --- a/src/pages/ethereum/slots/components/BlobDataColumnSpreadChart/BlobDataColumnSpreadChart.tsx +++ b/src/pages/ethereum/slots/components/BlobDataColumnSpreadChart/BlobDataColumnSpreadChart.tsx @@ -3,7 +3,7 @@ import { CheckCircleIcon, ExclamationTriangleIcon, XCircleIcon } from '@heroicon import { PopoutCard } from '@/components/Layout/PopoutCard'; import { BarChart } from '@/components/Charts/Bar'; import { MiniStat } from '@/components/DataDisplay/MiniStat'; -import { getForkForSlot } from '@/utils/beacon'; +import { getForkForSlot, isForkAtOrAfter } from '@/utils/beacon'; import { useNetwork } from '@/hooks/useNetwork'; import { getDataVizColors } from '@/utils/dataVizColors'; import type { BlobDataColumnSpreadChartProps, NodeSpreadStats } from './BlobDataColumnSpreadChart.types'; @@ -32,7 +32,7 @@ export function BlobDataColumnSpreadChart({ blobPropagationData, slot }: BlobDat const forkVersion = getForkForSlot(slot, currentNetwork); // Determine if we're in Fulu or later (data columns) vs earlier forks (blobs) - const isDataColumn = forkVersion === 'fulu'; + const isDataColumn = isForkAtOrAfter(forkVersion, 'fulu'); const itemType = isDataColumn ? 'data column' : 'blob'; // Calculate overall spread statistic diff --git a/src/utils/beacon.ts b/src/utils/beacon.ts index 8de91df1d..9043b355d 100644 --- a/src/utils/beacon.ts +++ b/src/utils/beacon.ts @@ -1,5 +1,6 @@ import type { Network } from '@/hooks/useConfig'; import { getActiveFork } from './forks'; +import { isForkAtOrAfter } from './forkOrder'; /** * Beacon chain timing constants @@ -30,37 +31,131 @@ export interface SlotPhase { } /** - * Default Ethereum beacon chain slot phases (12000 milliseconds total). - * - * Based on standard beacon chain slot timing: - * - 0-4000ms: Block - Proposer broadcasts the block - * - 4000-8000ms: Attestations - Validators attest to the block - * - 8000-12000ms: Aggregations - Attestations are aggregated + * A slot phase boundary expressed in basis points of the slot duration, + * mirroring how the consensus config specifies deadlines (ATTESTATION_DUE_BPS + * etc). Each phase runs from the previous phase's end to endBps. */ -export const DEFAULT_BEACON_SLOT_PHASES: SlotPhase[] = [ +interface SlotPhaseSpec { + label: string; + /** Phase end as basis points (1/10000) of the slot duration */ + endBps: number; + className: string; + textClassName: string; + description: string; +} + +/** + * Pre-gloas slot structure: attestations due at 1/3 of the slot, aggregates + * at 2/3 (ATTESTATION_DUE_BPS 3333, AGGREGATE_DUE_BPS 6667). + */ +const PRE_GLOAS_PHASE_SPECS: SlotPhaseSpec[] = [ { label: 'Block', - duration: ATTESTATION_DEADLINE_MS, + endBps: 3333, className: 'bg-surface border-b-4 border-b-cyan-500/50', textClassName: 'text-cyan-600 dark:text-cyan-400 font-bold', description: 'Proposer broadcasts block', }, { label: 'Attestations', - duration: 4000, + endBps: 6667, className: 'bg-surface border-b-4 border-b-green-500/50', textClassName: 'text-green-600 dark:text-green-400 font-bold', description: 'Validators attest to block', }, { label: 'Aggregations', - duration: 4000, + endBps: 10000, className: 'bg-surface border-b-4 border-b-amber-500/50', textClassName: 'text-amber-600 dark:text-amber-400 font-bold', description: 'Attestations aggregated', }, ]; +/** + * Gloas (ePBS, EIP-7732) slot structure. The block only commits to a builder + * bid; the execution payload is revealed separately and judged by the Payload + * Timeliness Committee. Deadlines from the consensus config: + * ATTESTATION_DUE_BPS_GLOAS 2500, AGGREGATE_DUE_BPS_GLOAS 5000, + * INCLUSION_LIST_DUE_BPS 6667, PAYLOAD_DUE_BPS / PAYLOAD_ATTESTATION_DUE_BPS 7500. + */ +const GLOAS_PHASE_SPECS: SlotPhaseSpec[] = [ + { + label: 'Block', + endBps: 2500, + className: 'bg-surface border-b-4 border-b-cyan-500/50', + textClassName: 'text-cyan-600 dark:text-cyan-400 font-bold', + description: 'Proposer broadcasts block committing to a builder bid', + }, + { + label: 'Attestations', + endBps: 5000, + className: 'bg-surface border-b-4 border-b-green-500/50', + textClassName: 'text-green-600 dark:text-green-400 font-bold', + description: 'Validators attest to block', + }, + { + label: 'Payload', + endBps: 7500, + className: 'bg-surface border-b-4 border-b-purple-500/50', + textClassName: 'text-purple-600 dark:text-purple-400 font-bold', + description: 'Builder reveals the execution payload, inclusion lists due', + }, + { + label: 'PTC', + endBps: 10000, + className: 'bg-surface border-b-4 border-b-amber-500/50', + textClassName: 'text-amber-600 dark:text-amber-400 font-bold', + description: 'Payload Timeliness Committee attests whether the payload arrived', + }, +]; + +function phasesFromSpec(specs: SlotPhaseSpec[], slotDurationMs: number): SlotPhase[] { + let previousEndMs = 0; + + return specs.map(spec => { + const endMs = Math.round((spec.endBps / 10000) * slotDurationMs); + const phase: SlotPhase = { + label: spec.label, + duration: endMs - previousEndMs, + className: spec.className, + textClassName: spec.textClassName, + description: spec.description, + }; + previousEndMs = endMs; + + return phase; + }); +} + +/** + * Default Ethereum beacon chain slot phases (12000 milliseconds total). + * + * Based on standard beacon chain slot timing: + * - 0-4000ms: Block - Proposer broadcasts the block + * - 4000-8000ms: Attestations - Validators attest to the block + * - 8000-12000ms: Aggregations - Attestations are aggregated + */ +export const DEFAULT_BEACON_SLOT_PHASES: SlotPhase[] = phasesFromSpec(PRE_GLOAS_PHASE_SPECS, SECONDS_PER_SLOT * 1000); + +/** + * Gloas (ePBS) slot phases (12000 milliseconds total): block, attestations, + * payload reveal, PTC vote. + */ +export const GLOAS_BEACON_SLOT_PHASES: SlotPhase[] = phasesFromSpec(GLOAS_PHASE_SPECS, SECONDS_PER_SLOT * 1000); + +/** + * Get the slot phases for a fork. Gloas and later forks use the ePBS slot + * structure; everything earlier keeps the classic three-phase layout. + */ +export function getSlotPhases(fork?: ForkVersion | null, slotDurationMs = SECONDS_PER_SLOT * 1000): SlotPhase[] { + const specs = fork && isForkAtOrAfter(fork, 'gloas') ? GLOAS_PHASE_SPECS : PRE_GLOAS_PHASE_SPECS; + + return phasesFromSpec(specs, slotDurationMs); +} + +export { CANONICAL_FORK_ORDER, isForkAtOrAfter } from './forkOrder'; + /** * Convert slot number to Unix timestamp * @@ -181,7 +276,7 @@ export function isEpochAtOrAfter(currentEpoch: number, forkEpoch?: number): bool /** * Beacon chain fork version identifiers */ -export type ForkVersion = 'phase0' | 'altair' | 'bellatrix' | 'capella' | 'deneb' | 'electra' | 'fulu' | 'glaos'; +export type ForkVersion = 'phase0' | 'altair' | 'bellatrix' | 'capella' | 'deneb' | 'electra' | 'fulu' | 'gloas'; /** * Metadata for a beacon chain fork @@ -269,12 +364,15 @@ export const FORK_METADATA: Record = { executionName: 'osaka', combinedName: 'fusaka', }, - glaos: { - version: 'glaos', - name: 'Glaos', + gloas: { + version: 'gloas', + name: 'Gloas', emoji: '🐋', color: 'bg-amber-100 text-amber-700 dark:bg-amber-400/10 dark:text-amber-400', - description: 'Future consensus layer upgrade - Seventh CL fork with features to be determined', + description: + 'Glamsterdam - Enshrines proposer-builder separation, splitting the execution payload from the block with a Payload Timeliness Committee (EIP-7732), and adds fork-choice enforced inclusion lists (EIP-7805)', + executionName: 'amsterdam', + combinedName: 'glamsterdam', }, } as const; diff --git a/src/utils/forkOrder.ts b/src/utils/forkOrder.ts new file mode 100644 index 000000000..cbf934caf --- /dev/null +++ b/src/utils/forkOrder.ts @@ -0,0 +1,28 @@ +import type { ForkVersion } from './beacon'; + +/** + * Chronological fork order. Lives in its own module (rather than beacon.ts or + * forks.ts, which import each other) so both can use it at module scope + * without a circular-initialization hazard. + */ +export const CANONICAL_FORK_ORDER: readonly ForkVersion[] = [ + 'phase0', + 'altair', + 'bellatrix', + 'capella', + 'deneb', + 'electra', + 'fulu', + 'gloas', +] as const; + +/** + * True when fork is the target fork or a later one. Prefer this over + * string-equality checks so future forks inherit behaviour automatically. + */ +export function isForkAtOrAfter(fork: ForkVersion, target: ForkVersion): boolean { + const forkIndex = CANONICAL_FORK_ORDER.indexOf(fork); + const targetIndex = CANONICAL_FORK_ORDER.indexOf(target); + + return forkIndex >= 0 && targetIndex >= 0 && forkIndex >= targetIndex; +} diff --git a/src/utils/forks.test.ts b/src/utils/forks.test.ts index e81c5a3ac..f93e51cb3 100644 --- a/src/utils/forks.test.ts +++ b/src/utils/forks.test.ts @@ -33,7 +33,7 @@ const mockNetwork: Network = { describe('forks utilities', () => { describe('FORK_ORDER', () => { it('should have correct order', () => { - expect(FORK_ORDER).toEqual(['phase0', 'altair', 'bellatrix', 'capella', 'deneb', 'electra', 'fulu', 'glaos']); + expect(FORK_ORDER).toEqual(['phase0', 'altair', 'bellatrix', 'capella', 'deneb', 'electra', 'fulu', 'gloas']); }); }); @@ -174,7 +174,7 @@ describe('forks utilities', () => { it('should return null for unconfigured forks', () => { expect(getForkEpoch(mockNetwork, 'fulu')).toBeNull(); - expect(getForkEpoch(mockNetwork, 'glaos')).toBeNull(); + expect(getForkEpoch(mockNetwork, 'gloas')).toBeNull(); }); }); diff --git a/src/utils/forks.ts b/src/utils/forks.ts index 2d6a10548..237970add 100644 --- a/src/utils/forks.ts +++ b/src/utils/forks.ts @@ -1,20 +1,12 @@ import type { Network, BlobScheduleItem } from '@/hooks/useConfig'; import { FORK_METADATA, type ForkVersion } from './beacon'; +import { CANONICAL_FORK_ORDER } from './forkOrder'; /** * Fork names in chronological order. * This order is critical for determining fork activation and precedence. */ -export const FORK_ORDER: readonly ForkVersion[] = [ - 'phase0', - 'altair', - 'bellatrix', - 'capella', - 'deneb', - 'electra', - 'fulu', - 'glaos', -] as const; +export const FORK_ORDER: readonly ForkVersion[] = CANONICAL_FORK_ORDER; /** * Map of fork versions to their display names. @@ -27,7 +19,7 @@ export const FORK_DISPLAY_NAMES: Record = { deneb: 'Deneb', electra: 'Electra', fulu: 'Fulu', - glaos: 'Glaos', + gloas: 'Gloas', }; export type ForkName = ForkVersion; @@ -232,7 +224,7 @@ export function getForksAtEpoch(network: Network, epoch: number): ForkInfo[] { /** * Valid URL slugs for fork pages. * Includes both consensus fork names (phase0, altair, etc.) - * and combined upgrade names (merge, shapella, dencun, pectra, fusaka). + * and combined upgrade names (merge, shapella, dencun, pectra, fusaka, glamsterdam). */ export const VALID_FORK_SLUGS = [ // Consensus fork names @@ -243,13 +235,14 @@ export const VALID_FORK_SLUGS = [ 'deneb', 'electra', 'fulu', - 'glaos', + 'gloas', // Combined upgrade names 'merge', 'shapella', 'dencun', 'pectra', 'fusaka', + 'glamsterdam', ] as const; export type ForkSlug = (typeof VALID_FORK_SLUGS)[number]; From d429b8ee7b0b30023cd5b475368218831fe8f7f5 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 15:38:03 +1000 Subject: [PATCH 02/24] chore(api): regenerate client with gloas ePBS tables Generated from a local cbt-api running the xatu-cbt gloas models (fct_block_payload_first_seen_by_node, fct_block_payload_available_by_node, fct_block_payload_ptc_vote[_head], fct_block_payload_bid, fct_payload_bid_highest_value_by_builder_chunked_50ms). --- src/api/@tanstack/react-query.gen.ts | 14375 +- src/api/client.gen.ts | 8 +- src/api/client/client.gen.ts | 9 +- src/api/client/index.ts | 6 +- src/api/client/types.gen.ts | 26 +- src/api/client/utils.gen.ts | 51 +- src/api/core/auth.gen.ts | 2 +- src/api/core/bodySerializer.gen.ts | 8 +- src/api/core/pathSerializer.gen.ts | 18 +- src/api/core/queryKeySerializer.gen.ts | 8 +- src/api/core/serverSentEvents.gen.ts | 8 +- src/api/core/types.gen.ts | 24 +- src/api/core/utils.gen.ts | 11 +- src/api/index.ts | 3100 +- src/api/sdk.gen.ts | 9123 +- src/api/types.gen.ts | 202611 +++++++++++----------- src/api/zod.gen.ts | 155566 ++++++++++++++--- 17 files changed, 257049 insertions(+), 127905 deletions(-) diff --git a/src/api/@tanstack/react-query.gen.ts b/src/api/@tanstack/react-query.gen.ts index 957fae79f..a3db07916 100644 --- a/src/api/@tanstack/react-query.gen.ts +++ b/src/api/@tanstack/react-query.gen.ts @@ -3,7758 +3,13577 @@ import { queryOptions } from '@tanstack/react-query'; import { client } from '../client.gen'; -import { adminCbtIncrementalServiceGet, adminCbtIncrementalServiceList, dimBlockBlobSubmitterServiceGet, dimBlockBlobSubmitterServiceList, dimContractOwnerServiceGet, dimContractOwnerServiceList, dimFunctionSignatureServiceGet, dimFunctionSignatureServiceList, dimNodeServiceGet, dimNodeServiceList, dimRocketpoolNodeServiceGet, dimRocketpoolNodeServiceList, dimTokenContractServiceGet, dimTokenContractServiceList, dimValidatorPubkeyServiceGet, dimValidatorPubkeyServiceList, dimValidatorStatusServiceGet, dimValidatorStatusServiceList, fctAttestationCorrectnessByValidatorCanonicalServiceGet, fctAttestationCorrectnessByValidatorCanonicalServiceList, fctAttestationCorrectnessByValidatorHeadServiceGet, fctAttestationCorrectnessByValidatorHeadServiceList, fctAttestationCorrectnessCanonicalServiceGet, fctAttestationCorrectnessCanonicalServiceList, fctAttestationCorrectnessHeadServiceGet, fctAttestationCorrectnessHeadServiceList, fctAttestationFirstSeenByValidatorServiceGet, fctAttestationFirstSeenByValidatorServiceList, fctAttestationFirstSeenChunked50MsServiceGet, fctAttestationFirstSeenChunked50MsServiceList, fctAttestationInclusionDelayDailyServiceGet, fctAttestationInclusionDelayDailyServiceList, fctAttestationInclusionDelayHourlyServiceGet, fctAttestationInclusionDelayHourlyServiceList, fctAttestationLivenessByEntityHeadServiceGet, fctAttestationLivenessByEntityHeadServiceList, fctAttestationObservationByNodeServiceGet, fctAttestationObservationByNodeServiceList, fctAttestationParticipationRateDailyServiceGet, fctAttestationParticipationRateDailyServiceList, fctAttestationParticipationRateHourlyServiceGet, fctAttestationParticipationRateHourlyServiceList, fctAttestationVoteCorrectnessByValidatorDailyServiceGet, fctAttestationVoteCorrectnessByValidatorDailyServiceList, fctAttestationVoteCorrectnessByValidatorHourlyServiceGet, fctAttestationVoteCorrectnessByValidatorHourlyServiceList, fctAttestationVoteCorrectnessByValidatorServiceGet, fctAttestationVoteCorrectnessByValidatorServiceList, fctBlobCountDailyServiceGet, fctBlobCountDailyServiceList, fctBlobCountHourlyServiceGet, fctBlobCountHourlyServiceList, fctBlockBlobCountHeadServiceGet, fctBlockBlobCountHeadServiceList, fctBlockBlobCountServiceGet, fctBlockBlobCountServiceList, fctBlockBlobFirstSeenByNodeServiceGet, fctBlockBlobFirstSeenByNodeServiceList, fctBlockBlobHeadServiceGet, fctBlockBlobHeadServiceList, fctBlockDataColumnSidecarFirstSeenByNodeServiceGet, fctBlockDataColumnSidecarFirstSeenByNodeServiceList, fctBlockDataColumnSidecarFirstSeenServiceGet, fctBlockDataColumnSidecarFirstSeenServiceList, fctBlockFirstSeenByNodeServiceGet, fctBlockFirstSeenByNodeServiceList, fctBlockHeadServiceGet, fctBlockHeadServiceList, fctBlockMevHeadServiceGet, fctBlockMevHeadServiceList, fctBlockMevServiceGet, fctBlockMevServiceList, fctBlockProposalStatusDailyServiceGet, fctBlockProposalStatusDailyServiceList, fctBlockProposalStatusHourlyServiceGet, fctBlockProposalStatusHourlyServiceList, fctBlockProposerByValidatorServiceGet, fctBlockProposerByValidatorServiceList, fctBlockProposerEntityServiceGet, fctBlockProposerEntityServiceList, fctBlockProposerHeadServiceGet, fctBlockProposerHeadServiceList, fctBlockProposerServiceGet, fctBlockProposerServiceList, fctBlockServiceGet, fctBlockServiceList, fctContractStorageStateByAddressDailyServiceGet, fctContractStorageStateByAddressDailyServiceList, fctContractStorageStateByAddressHourlyServiceGet, fctContractStorageStateByAddressHourlyServiceList, fctContractStorageStateByBlockDailyServiceGet, fctContractStorageStateByBlockDailyServiceList, fctContractStorageStateByBlockHourlyServiceGet, fctContractStorageStateByBlockHourlyServiceList, fctContractStorageStateWithExpiryByAddressDailyServiceGet, fctContractStorageStateWithExpiryByAddressDailyServiceList, fctContractStorageStateWithExpiryByAddressHourlyServiceGet, fctContractStorageStateWithExpiryByAddressHourlyServiceList, fctContractStorageStateWithExpiryByBlockDailyServiceGet, fctContractStorageStateWithExpiryByBlockDailyServiceList, fctContractStorageStateWithExpiryByBlockHourlyServiceGet, fctContractStorageStateWithExpiryByBlockHourlyServiceList, fctDataColumnAvailabilityByEpochServiceGet, fctDataColumnAvailabilityByEpochServiceList, fctDataColumnAvailabilityBySlotBlobServiceGet, fctDataColumnAvailabilityBySlotBlobServiceList, fctDataColumnAvailabilityBySlotServiceGet, fctDataColumnAvailabilityBySlotServiceList, fctDataColumnAvailabilityDailyServiceGet, fctDataColumnAvailabilityDailyServiceList, fctDataColumnAvailabilityHourlyServiceGet, fctDataColumnAvailabilityHourlyServiceList, fctEngineGetBlobsByElClientHourlyServiceGet, fctEngineGetBlobsByElClientHourlyServiceList, fctEngineGetBlobsByElClientServiceGet, fctEngineGetBlobsByElClientServiceList, fctEngineGetBlobsBySlotServiceGet, fctEngineGetBlobsBySlotServiceList, fctEngineGetBlobsDurationChunked50MsServiceGet, fctEngineGetBlobsDurationChunked50MsServiceList, fctEngineNewPayloadByElClientHourlyServiceGet, fctEngineNewPayloadByElClientHourlyServiceList, fctEngineNewPayloadByElClientServiceGet, fctEngineNewPayloadByElClientServiceList, fctEngineNewPayloadBySlotServiceGet, fctEngineNewPayloadBySlotServiceList, fctEngineNewPayloadDurationChunked50MsServiceGet, fctEngineNewPayloadDurationChunked50MsServiceList, fctEngineNewPayloadWinrateDailyServiceGet, fctEngineNewPayloadWinrateDailyServiceList, fctEngineNewPayloadWinrateHourlyServiceGet, fctEngineNewPayloadWinrateHourlyServiceList, fctExecutionGasLimitDailyServiceGet, fctExecutionGasLimitDailyServiceList, fctExecutionGasLimitHourlyServiceGet, fctExecutionGasLimitHourlyServiceList, fctExecutionGasLimitSignallingDailyServiceGet, fctExecutionGasLimitSignallingDailyServiceList, fctExecutionGasLimitSignallingHourlyServiceGet, fctExecutionGasLimitSignallingHourlyServiceList, fctExecutionGasUsedDailyServiceGet, fctExecutionGasUsedDailyServiceList, fctExecutionGasUsedHourlyServiceGet, fctExecutionGasUsedHourlyServiceList, fctExecutionReceiptSizeDailyServiceGet, fctExecutionReceiptSizeDailyServiceList, fctExecutionReceiptSizeHourlyServiceGet, fctExecutionReceiptSizeHourlyServiceList, fctExecutionStateSizeDailyServiceGet, fctExecutionStateSizeDailyServiceList, fctExecutionStateSizeHourlyServiceGet, fctExecutionStateSizeHourlyServiceList, fctExecutionTpsDailyServiceGet, fctExecutionTpsDailyServiceList, fctExecutionTpsHourlyServiceGet, fctExecutionTpsHourlyServiceList, fctExecutionTransactionsDailyServiceGet, fctExecutionTransactionsDailyServiceList, fctExecutionTransactionsHourlyServiceGet, fctExecutionTransactionsHourlyServiceList, fctHeadFirstSeenByNodeServiceGet, fctHeadFirstSeenByNodeServiceList, fctHeadVoteCorrectnessRateDailyServiceGet, fctHeadVoteCorrectnessRateDailyServiceList, fctHeadVoteCorrectnessRateHourlyServiceGet, fctHeadVoteCorrectnessRateHourlyServiceList, fctMevBidCountByBuilderServiceGet, fctMevBidCountByBuilderServiceList, fctMevBidCountByRelayServiceGet, fctMevBidCountByRelayServiceList, fctMevBidHighestValueByBuilderChunked50MsServiceGet, fctMevBidHighestValueByBuilderChunked50MsServiceList, fctMissedSlotRateDailyServiceGet, fctMissedSlotRateDailyServiceList, fctMissedSlotRateHourlyServiceGet, fctMissedSlotRateHourlyServiceList, fctNodeActiveLast24hServiceGet, fctNodeActiveLast24hServiceList, fctNodeCpuUtilizationByProcessServiceGet, fctNodeCpuUtilizationByProcessServiceList, fctNodeDiskIoByProcessServiceGet, fctNodeDiskIoByProcessServiceList, fctNodeMemoryUsageByProcessServiceGet, fctNodeMemoryUsageByProcessServiceList, fctNodeNetworkIoByProcessServiceGet, fctNodeNetworkIoByProcessServiceList, fctOpcodeGasByOpcodeDailyServiceGet, fctOpcodeGasByOpcodeDailyServiceList, fctOpcodeGasByOpcodeHourlyServiceGet, fctOpcodeGasByOpcodeHourlyServiceList, fctOpcodeOpsDailyServiceGet, fctOpcodeOpsDailyServiceList, fctOpcodeOpsHourlyServiceGet, fctOpcodeOpsHourlyServiceList, fctPreparedBlockServiceGet, fctPreparedBlockServiceList, fctProposerRewardDailyServiceGet, fctProposerRewardDailyServiceList, fctProposerRewardHourlyServiceGet, fctProposerRewardHourlyServiceList, fctReorgDailyServiceGet, fctReorgDailyServiceList, fctReorgHourlyServiceGet, fctReorgHourlyServiceList, fctRocketpoolValidatorServiceGet, fctRocketpoolValidatorServiceList, fctStorageSlotStateByAddressDailyServiceGet, fctStorageSlotStateByAddressDailyServiceList, fctStorageSlotStateByAddressHourlyServiceGet, fctStorageSlotStateByAddressHourlyServiceList, fctStorageSlotStateByBlockDailyServiceGet, fctStorageSlotStateByBlockDailyServiceList, fctStorageSlotStateByBlockHourlyServiceGet, fctStorageSlotStateByBlockHourlyServiceList, fctStorageSlotStateWithExpiryByAddressDailyServiceGet, fctStorageSlotStateWithExpiryByAddressDailyServiceList, fctStorageSlotStateWithExpiryByAddressHourlyServiceGet, fctStorageSlotStateWithExpiryByAddressHourlyServiceList, fctStorageSlotStateWithExpiryByBlockDailyServiceGet, fctStorageSlotStateWithExpiryByBlockDailyServiceList, fctStorageSlotStateWithExpiryByBlockHourlyServiceGet, fctStorageSlotStateWithExpiryByBlockHourlyServiceList, fctStorageSlotTop100ByBytesServiceGet, fctStorageSlotTop100ByBytesServiceList, fctStorageSlotTop100BySlotsServiceGet, fctStorageSlotTop100BySlotsServiceList, fctSyncCommitteeParticipationByValidatorDailyServiceGet, fctSyncCommitteeParticipationByValidatorDailyServiceList, fctSyncCommitteeParticipationByValidatorHourlyServiceGet, fctSyncCommitteeParticipationByValidatorHourlyServiceList, fctSyncCommitteeParticipationByValidatorServiceGet, fctSyncCommitteeParticipationByValidatorServiceList, fctTokenContractStorageStateByBlockDailyServiceGet, fctTokenContractStorageStateByBlockDailyServiceList, fctValidatorBalanceDailyServiceGet, fctValidatorBalanceDailyServiceList, fctValidatorBalanceHourlyServiceGet, fctValidatorBalanceHourlyServiceList, fctValidatorBalanceServiceGet, fctValidatorBalanceServiceList, fctValidatorCountByEntityByStatusDailyServiceGet, fctValidatorCountByEntityByStatusDailyServiceList, intAttestationAttestedCanonicalServiceGet, intAttestationAttestedCanonicalServiceList, intAttestationAttestedHeadServiceGet, intAttestationAttestedHeadServiceList, intAttestationFirstSeenAggregateServiceGet, intAttestationFirstSeenAggregateServiceList, intAttestationFirstSeenServiceGet, intAttestationFirstSeenServiceList, intBeaconCommitteeHeadServiceGet, intBeaconCommitteeHeadServiceList, intBlockBlobCountCanonicalServiceGet, intBlockBlobCountCanonicalServiceList, intBlockCanonicalServiceGet, intBlockCanonicalServiceList, intBlockMevCanonicalServiceGet, intBlockMevCanonicalServiceList, intBlockOpcodeGasServiceGet, intBlockOpcodeGasServiceList, intBlockProposerCanonicalServiceGet, intBlockProposerCanonicalServiceList, intBlockReceiptSizeServiceGet, intBlockReceiptSizeServiceList, intBlockResourceGasServiceGet, intBlockResourceGasServiceList, intContractCreationServiceGet, intContractCreationServiceList, intContractSelfdestructServiceGet, intContractSelfdestructServiceList, intContractStorageExpiry12mServiceGet, intContractStorageExpiry12mServiceList, intContractStorageExpiry18mServiceGet, intContractStorageExpiry18mServiceList, intContractStorageExpiry1mServiceGet, intContractStorageExpiry1mServiceList, intContractStorageExpiry24mServiceGet, intContractStorageExpiry24mServiceList, intContractStorageExpiry6mServiceGet, intContractStorageExpiry6mServiceList, intContractStorageNextTouchServiceGet, intContractStorageNextTouchServiceList, intContractStorageReactivation12mServiceGet, intContractStorageReactivation12mServiceList, intContractStorageReactivation18mServiceGet, intContractStorageReactivation18mServiceList, intContractStorageReactivation1mServiceGet, intContractStorageReactivation1mServiceList, intContractStorageReactivation24mServiceGet, intContractStorageReactivation24mServiceList, intContractStorageReactivation6mServiceGet, intContractStorageReactivation6mServiceList, intContractStorageStateByAddressServiceGet, intContractStorageStateByAddressServiceList, intContractStorageStateByBlockServiceGet, intContractStorageStateByBlockServiceList, intContractStorageStateServiceGet, intContractStorageStateServiceList, intContractStorageStateWithExpiryByAddressServiceGet, intContractStorageStateWithExpiryByAddressServiceList, intContractStorageStateWithExpiryByBlockServiceGet, intContractStorageStateWithExpiryByBlockServiceList, intContractStorageStateWithExpiryServiceGet, intContractStorageStateWithExpiryServiceList, intCustodyProbeOrderBySlotServiceGet, intCustodyProbeOrderBySlotServiceList, intCustodyProbeServiceGet, intCustodyProbeServiceList, intEngineGetBlobsServiceGet, intEngineGetBlobsServiceList, intEngineNewPayloadFastestExecutionByNodeClassServiceGet, intEngineNewPayloadFastestExecutionByNodeClassServiceList, intEngineNewPayloadServiceGet, intEngineNewPayloadServiceList, intExecutionBlockByDateServiceGet, intExecutionBlockByDateServiceList, intExecutionStateSizeByBlockServiceGet, intExecutionStateSizeByBlockServiceList, intRocketpoolMegapoolServiceGet, intRocketpoolMegapoolServiceList, intRocketpoolMinipoolServiceGet, intRocketpoolMinipoolServiceList, intRocketpoolNodeEventServiceGet, intRocketpoolNodeEventServiceList, intRocketpoolNodeTimezoneServiceGet, intRocketpoolNodeTimezoneServiceList, intStorageSelfdestructDiffsServiceGet, intStorageSelfdestructDiffsServiceList, intStorageSlotDiffByAddressSlotServiceGet, intStorageSlotDiffByAddressSlotServiceList, intStorageSlotDiffServiceGet, intStorageSlotDiffServiceList, intStorageSlotExpiry12mServiceGet, intStorageSlotExpiry12mServiceList, intStorageSlotExpiry18mServiceGet, intStorageSlotExpiry18mServiceList, intStorageSlotExpiry1mServiceGet, intStorageSlotExpiry1mServiceList, intStorageSlotExpiry24mServiceGet, intStorageSlotExpiry24mServiceList, intStorageSlotExpiry6mServiceGet, intStorageSlotExpiry6mServiceList, intStorageSlotLifecycleBoundaryServiceGet, intStorageSlotLifecycleBoundaryServiceList, intStorageSlotLifecycleServiceGet, intStorageSlotLifecycleServiceList, intStorageSlotNextTouchServiceGet, intStorageSlotNextTouchServiceList, intStorageSlotReactivation12mServiceGet, intStorageSlotReactivation12mServiceList, intStorageSlotReactivation18mServiceGet, intStorageSlotReactivation18mServiceList, intStorageSlotReactivation1mServiceGet, intStorageSlotReactivation1mServiceList, intStorageSlotReactivation24mServiceGet, intStorageSlotReactivation24mServiceList, intStorageSlotReactivation6mServiceGet, intStorageSlotReactivation6mServiceList, intStorageSlotReadServiceGet, intStorageSlotReadServiceList, intStorageSlotStateByAddressServiceGet, intStorageSlotStateByAddressServiceList, intStorageSlotStateByBlockServiceGet, intStorageSlotStateByBlockServiceList, intStorageSlotStateServiceGet, intStorageSlotStateServiceList, intStorageSlotStateWithExpiryByAddressServiceGet, intStorageSlotStateWithExpiryByAddressServiceList, intStorageSlotStateWithExpiryByBlockServiceGet, intStorageSlotStateWithExpiryByBlockServiceList, intStorageSlotStateWithExpiryServiceGet, intStorageSlotStateWithExpiryServiceList, intTokenContractStorageStateByBlockServiceGet, intTokenContractStorageStateByBlockServiceList, intTransactionCallFrameOpcodeGasServiceGet, intTransactionCallFrameOpcodeGasServiceList, intTransactionCallFrameOpcodeResourceGasServiceGet, intTransactionCallFrameOpcodeResourceGasServiceList, intTransactionCallFrameServiceGet, intTransactionCallFrameServiceList, intTransactionOpcodeGasServiceGet, intTransactionOpcodeGasServiceList, intTransactionReceiptSizeServiceGet, intTransactionReceiptSizeServiceList, intTransactionResourceGasServiceGet, intTransactionResourceGasServiceList, type Options } from '../sdk.gen'; -import type { AdminCbtIncrementalServiceGetData, AdminCbtIncrementalServiceGetError, AdminCbtIncrementalServiceGetResponse, AdminCbtIncrementalServiceListData, AdminCbtIncrementalServiceListError, AdminCbtIncrementalServiceListResponse, DimBlockBlobSubmitterServiceGetData, DimBlockBlobSubmitterServiceGetError, DimBlockBlobSubmitterServiceGetResponse, DimBlockBlobSubmitterServiceListData, DimBlockBlobSubmitterServiceListError, DimBlockBlobSubmitterServiceListResponse, DimContractOwnerServiceGetData, DimContractOwnerServiceGetError, DimContractOwnerServiceGetResponse, DimContractOwnerServiceListData, DimContractOwnerServiceListError, DimContractOwnerServiceListResponse, DimFunctionSignatureServiceGetData, DimFunctionSignatureServiceGetError, DimFunctionSignatureServiceGetResponse, DimFunctionSignatureServiceListData, DimFunctionSignatureServiceListError, DimFunctionSignatureServiceListResponse, DimNodeServiceGetData, DimNodeServiceGetError, DimNodeServiceGetResponse, DimNodeServiceListData, DimNodeServiceListError, DimNodeServiceListResponse, DimRocketpoolNodeServiceGetData, DimRocketpoolNodeServiceGetError, DimRocketpoolNodeServiceGetResponse, DimRocketpoolNodeServiceListData, DimRocketpoolNodeServiceListError, DimRocketpoolNodeServiceListResponse, DimTokenContractServiceGetData, DimTokenContractServiceGetError, DimTokenContractServiceGetResponse, DimTokenContractServiceListData, DimTokenContractServiceListError, DimTokenContractServiceListResponse, DimValidatorPubkeyServiceGetData, DimValidatorPubkeyServiceGetError, DimValidatorPubkeyServiceGetResponse, DimValidatorPubkeyServiceListData, DimValidatorPubkeyServiceListError, DimValidatorPubkeyServiceListResponse, DimValidatorStatusServiceGetData, DimValidatorStatusServiceGetError, DimValidatorStatusServiceGetResponse, DimValidatorStatusServiceListData, DimValidatorStatusServiceListError, DimValidatorStatusServiceListResponse, FctAttestationCorrectnessByValidatorCanonicalServiceGetData, FctAttestationCorrectnessByValidatorCanonicalServiceGetError, FctAttestationCorrectnessByValidatorCanonicalServiceGetResponse, FctAttestationCorrectnessByValidatorCanonicalServiceListData, FctAttestationCorrectnessByValidatorCanonicalServiceListError, FctAttestationCorrectnessByValidatorCanonicalServiceListResponse, FctAttestationCorrectnessByValidatorHeadServiceGetData, FctAttestationCorrectnessByValidatorHeadServiceGetError, FctAttestationCorrectnessByValidatorHeadServiceGetResponse, FctAttestationCorrectnessByValidatorHeadServiceListData, FctAttestationCorrectnessByValidatorHeadServiceListError, FctAttestationCorrectnessByValidatorHeadServiceListResponse, FctAttestationCorrectnessCanonicalServiceGetData, FctAttestationCorrectnessCanonicalServiceGetError, FctAttestationCorrectnessCanonicalServiceGetResponse, FctAttestationCorrectnessCanonicalServiceListData, FctAttestationCorrectnessCanonicalServiceListError, FctAttestationCorrectnessCanonicalServiceListResponse, FctAttestationCorrectnessHeadServiceGetData, FctAttestationCorrectnessHeadServiceGetError, FctAttestationCorrectnessHeadServiceGetResponse, FctAttestationCorrectnessHeadServiceListData, FctAttestationCorrectnessHeadServiceListError, FctAttestationCorrectnessHeadServiceListResponse, FctAttestationFirstSeenByValidatorServiceGetData, FctAttestationFirstSeenByValidatorServiceGetError, FctAttestationFirstSeenByValidatorServiceGetResponse, FctAttestationFirstSeenByValidatorServiceListData, FctAttestationFirstSeenByValidatorServiceListError, FctAttestationFirstSeenByValidatorServiceListResponse, FctAttestationFirstSeenChunked50MsServiceGetData, FctAttestationFirstSeenChunked50MsServiceGetError, FctAttestationFirstSeenChunked50MsServiceGetResponse, FctAttestationFirstSeenChunked50MsServiceListData, FctAttestationFirstSeenChunked50MsServiceListError, FctAttestationFirstSeenChunked50MsServiceListResponse, FctAttestationInclusionDelayDailyServiceGetData, FctAttestationInclusionDelayDailyServiceGetError, FctAttestationInclusionDelayDailyServiceGetResponse, FctAttestationInclusionDelayDailyServiceListData, FctAttestationInclusionDelayDailyServiceListError, FctAttestationInclusionDelayDailyServiceListResponse, FctAttestationInclusionDelayHourlyServiceGetData, FctAttestationInclusionDelayHourlyServiceGetError, FctAttestationInclusionDelayHourlyServiceGetResponse, FctAttestationInclusionDelayHourlyServiceListData, FctAttestationInclusionDelayHourlyServiceListError, FctAttestationInclusionDelayHourlyServiceListResponse, FctAttestationLivenessByEntityHeadServiceGetData, FctAttestationLivenessByEntityHeadServiceGetError, FctAttestationLivenessByEntityHeadServiceGetResponse, FctAttestationLivenessByEntityHeadServiceListData, FctAttestationLivenessByEntityHeadServiceListError, FctAttestationLivenessByEntityHeadServiceListResponse, FctAttestationObservationByNodeServiceGetData, FctAttestationObservationByNodeServiceGetError, FctAttestationObservationByNodeServiceGetResponse, FctAttestationObservationByNodeServiceListData, FctAttestationObservationByNodeServiceListError, FctAttestationObservationByNodeServiceListResponse, FctAttestationParticipationRateDailyServiceGetData, FctAttestationParticipationRateDailyServiceGetError, FctAttestationParticipationRateDailyServiceGetResponse, FctAttestationParticipationRateDailyServiceListData, FctAttestationParticipationRateDailyServiceListError, FctAttestationParticipationRateDailyServiceListResponse, FctAttestationParticipationRateHourlyServiceGetData, FctAttestationParticipationRateHourlyServiceGetError, FctAttestationParticipationRateHourlyServiceGetResponse, FctAttestationParticipationRateHourlyServiceListData, FctAttestationParticipationRateHourlyServiceListError, FctAttestationParticipationRateHourlyServiceListResponse, FctAttestationVoteCorrectnessByValidatorDailyServiceGetData, FctAttestationVoteCorrectnessByValidatorDailyServiceGetError, FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse, FctAttestationVoteCorrectnessByValidatorDailyServiceListData, FctAttestationVoteCorrectnessByValidatorDailyServiceListError, FctAttestationVoteCorrectnessByValidatorDailyServiceListResponse, FctAttestationVoteCorrectnessByValidatorHourlyServiceGetData, FctAttestationVoteCorrectnessByValidatorHourlyServiceGetError, FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse, FctAttestationVoteCorrectnessByValidatorHourlyServiceListData, FctAttestationVoteCorrectnessByValidatorHourlyServiceListError, FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse, FctAttestationVoteCorrectnessByValidatorServiceGetData, FctAttestationVoteCorrectnessByValidatorServiceGetError, FctAttestationVoteCorrectnessByValidatorServiceGetResponse, FctAttestationVoteCorrectnessByValidatorServiceListData, FctAttestationVoteCorrectnessByValidatorServiceListError, FctAttestationVoteCorrectnessByValidatorServiceListResponse, FctBlobCountDailyServiceGetData, FctBlobCountDailyServiceGetError, FctBlobCountDailyServiceGetResponse, FctBlobCountDailyServiceListData, FctBlobCountDailyServiceListError, FctBlobCountDailyServiceListResponse, FctBlobCountHourlyServiceGetData, FctBlobCountHourlyServiceGetError, FctBlobCountHourlyServiceGetResponse, FctBlobCountHourlyServiceListData, FctBlobCountHourlyServiceListError, FctBlobCountHourlyServiceListResponse, FctBlockBlobCountHeadServiceGetData, FctBlockBlobCountHeadServiceGetError, FctBlockBlobCountHeadServiceGetResponse, FctBlockBlobCountHeadServiceListData, FctBlockBlobCountHeadServiceListError, FctBlockBlobCountHeadServiceListResponse, FctBlockBlobCountServiceGetData, FctBlockBlobCountServiceGetError, FctBlockBlobCountServiceGetResponse, FctBlockBlobCountServiceListData, FctBlockBlobCountServiceListError, FctBlockBlobCountServiceListResponse, FctBlockBlobFirstSeenByNodeServiceGetData, FctBlockBlobFirstSeenByNodeServiceGetError, FctBlockBlobFirstSeenByNodeServiceGetResponse, FctBlockBlobFirstSeenByNodeServiceListData, FctBlockBlobFirstSeenByNodeServiceListError, FctBlockBlobFirstSeenByNodeServiceListResponse, FctBlockBlobHeadServiceGetData, FctBlockBlobHeadServiceGetError, FctBlockBlobHeadServiceGetResponse, FctBlockBlobHeadServiceListData, FctBlockBlobHeadServiceListError, FctBlockBlobHeadServiceListResponse, FctBlockDataColumnSidecarFirstSeenByNodeServiceGetData, FctBlockDataColumnSidecarFirstSeenByNodeServiceGetError, FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse, FctBlockDataColumnSidecarFirstSeenByNodeServiceListData, FctBlockDataColumnSidecarFirstSeenByNodeServiceListError, FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse, FctBlockDataColumnSidecarFirstSeenServiceGetData, FctBlockDataColumnSidecarFirstSeenServiceGetError, FctBlockDataColumnSidecarFirstSeenServiceGetResponse, FctBlockDataColumnSidecarFirstSeenServiceListData, FctBlockDataColumnSidecarFirstSeenServiceListError, FctBlockDataColumnSidecarFirstSeenServiceListResponse, FctBlockFirstSeenByNodeServiceGetData, FctBlockFirstSeenByNodeServiceGetError, FctBlockFirstSeenByNodeServiceGetResponse, FctBlockFirstSeenByNodeServiceListData, FctBlockFirstSeenByNodeServiceListError, FctBlockFirstSeenByNodeServiceListResponse, FctBlockHeadServiceGetData, FctBlockHeadServiceGetError, FctBlockHeadServiceGetResponse, FctBlockHeadServiceListData, FctBlockHeadServiceListError, FctBlockHeadServiceListResponse, FctBlockMevHeadServiceGetData, FctBlockMevHeadServiceGetError, FctBlockMevHeadServiceGetResponse, FctBlockMevHeadServiceListData, FctBlockMevHeadServiceListError, FctBlockMevHeadServiceListResponse, FctBlockMevServiceGetData, FctBlockMevServiceGetError, FctBlockMevServiceGetResponse, FctBlockMevServiceListData, FctBlockMevServiceListError, FctBlockMevServiceListResponse, FctBlockProposalStatusDailyServiceGetData, FctBlockProposalStatusDailyServiceGetError, FctBlockProposalStatusDailyServiceGetResponse, FctBlockProposalStatusDailyServiceListData, FctBlockProposalStatusDailyServiceListError, FctBlockProposalStatusDailyServiceListResponse, FctBlockProposalStatusHourlyServiceGetData, FctBlockProposalStatusHourlyServiceGetError, FctBlockProposalStatusHourlyServiceGetResponse, FctBlockProposalStatusHourlyServiceListData, FctBlockProposalStatusHourlyServiceListError, FctBlockProposalStatusHourlyServiceListResponse, FctBlockProposerByValidatorServiceGetData, FctBlockProposerByValidatorServiceGetError, FctBlockProposerByValidatorServiceGetResponse, FctBlockProposerByValidatorServiceListData, FctBlockProposerByValidatorServiceListError, FctBlockProposerByValidatorServiceListResponse, FctBlockProposerEntityServiceGetData, FctBlockProposerEntityServiceGetError, FctBlockProposerEntityServiceGetResponse, FctBlockProposerEntityServiceListData, FctBlockProposerEntityServiceListError, FctBlockProposerEntityServiceListResponse, FctBlockProposerHeadServiceGetData, FctBlockProposerHeadServiceGetError, FctBlockProposerHeadServiceGetResponse, FctBlockProposerHeadServiceListData, FctBlockProposerHeadServiceListError, FctBlockProposerHeadServiceListResponse, FctBlockProposerServiceGetData, FctBlockProposerServiceGetError, FctBlockProposerServiceGetResponse, FctBlockProposerServiceListData, FctBlockProposerServiceListError, FctBlockProposerServiceListResponse, FctBlockServiceGetData, FctBlockServiceGetError, FctBlockServiceGetResponse, FctBlockServiceListData, FctBlockServiceListError, FctBlockServiceListResponse, FctContractStorageStateByAddressDailyServiceGetData, FctContractStorageStateByAddressDailyServiceGetError, FctContractStorageStateByAddressDailyServiceGetResponse, FctContractStorageStateByAddressDailyServiceListData, FctContractStorageStateByAddressDailyServiceListError, FctContractStorageStateByAddressDailyServiceListResponse, FctContractStorageStateByAddressHourlyServiceGetData, FctContractStorageStateByAddressHourlyServiceGetError, FctContractStorageStateByAddressHourlyServiceGetResponse, FctContractStorageStateByAddressHourlyServiceListData, FctContractStorageStateByAddressHourlyServiceListError, FctContractStorageStateByAddressHourlyServiceListResponse, FctContractStorageStateByBlockDailyServiceGetData, FctContractStorageStateByBlockDailyServiceGetError, FctContractStorageStateByBlockDailyServiceGetResponse, FctContractStorageStateByBlockDailyServiceListData, FctContractStorageStateByBlockDailyServiceListError, FctContractStorageStateByBlockDailyServiceListResponse, FctContractStorageStateByBlockHourlyServiceGetData, FctContractStorageStateByBlockHourlyServiceGetError, FctContractStorageStateByBlockHourlyServiceGetResponse, FctContractStorageStateByBlockHourlyServiceListData, FctContractStorageStateByBlockHourlyServiceListError, FctContractStorageStateByBlockHourlyServiceListResponse, FctContractStorageStateWithExpiryByAddressDailyServiceGetData, FctContractStorageStateWithExpiryByAddressDailyServiceGetError, FctContractStorageStateWithExpiryByAddressDailyServiceGetResponse, FctContractStorageStateWithExpiryByAddressDailyServiceListData, FctContractStorageStateWithExpiryByAddressDailyServiceListError, FctContractStorageStateWithExpiryByAddressDailyServiceListResponse, FctContractStorageStateWithExpiryByAddressHourlyServiceGetData, FctContractStorageStateWithExpiryByAddressHourlyServiceGetError, FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse, FctContractStorageStateWithExpiryByAddressHourlyServiceListData, FctContractStorageStateWithExpiryByAddressHourlyServiceListError, FctContractStorageStateWithExpiryByAddressHourlyServiceListResponse, FctContractStorageStateWithExpiryByBlockDailyServiceGetData, FctContractStorageStateWithExpiryByBlockDailyServiceGetError, FctContractStorageStateWithExpiryByBlockDailyServiceGetResponse, FctContractStorageStateWithExpiryByBlockDailyServiceListData, FctContractStorageStateWithExpiryByBlockDailyServiceListError, FctContractStorageStateWithExpiryByBlockDailyServiceListResponse, FctContractStorageStateWithExpiryByBlockHourlyServiceGetData, FctContractStorageStateWithExpiryByBlockHourlyServiceGetError, FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse, FctContractStorageStateWithExpiryByBlockHourlyServiceListData, FctContractStorageStateWithExpiryByBlockHourlyServiceListError, FctContractStorageStateWithExpiryByBlockHourlyServiceListResponse, FctDataColumnAvailabilityByEpochServiceGetData, FctDataColumnAvailabilityByEpochServiceGetError, FctDataColumnAvailabilityByEpochServiceGetResponse, FctDataColumnAvailabilityByEpochServiceListData, FctDataColumnAvailabilityByEpochServiceListError, FctDataColumnAvailabilityByEpochServiceListResponse, FctDataColumnAvailabilityBySlotBlobServiceGetData, FctDataColumnAvailabilityBySlotBlobServiceGetError, FctDataColumnAvailabilityBySlotBlobServiceGetResponse, FctDataColumnAvailabilityBySlotBlobServiceListData, FctDataColumnAvailabilityBySlotBlobServiceListError, FctDataColumnAvailabilityBySlotBlobServiceListResponse, FctDataColumnAvailabilityBySlotServiceGetData, FctDataColumnAvailabilityBySlotServiceGetError, FctDataColumnAvailabilityBySlotServiceGetResponse, FctDataColumnAvailabilityBySlotServiceListData, FctDataColumnAvailabilityBySlotServiceListError, FctDataColumnAvailabilityBySlotServiceListResponse, FctDataColumnAvailabilityDailyServiceGetData, FctDataColumnAvailabilityDailyServiceGetError, FctDataColumnAvailabilityDailyServiceGetResponse, FctDataColumnAvailabilityDailyServiceListData, FctDataColumnAvailabilityDailyServiceListError, FctDataColumnAvailabilityDailyServiceListResponse, FctDataColumnAvailabilityHourlyServiceGetData, FctDataColumnAvailabilityHourlyServiceGetError, FctDataColumnAvailabilityHourlyServiceGetResponse, FctDataColumnAvailabilityHourlyServiceListData, FctDataColumnAvailabilityHourlyServiceListError, FctDataColumnAvailabilityHourlyServiceListResponse, FctEngineGetBlobsByElClientHourlyServiceGetData, FctEngineGetBlobsByElClientHourlyServiceGetError, FctEngineGetBlobsByElClientHourlyServiceGetResponse, FctEngineGetBlobsByElClientHourlyServiceListData, FctEngineGetBlobsByElClientHourlyServiceListError, FctEngineGetBlobsByElClientHourlyServiceListResponse, FctEngineGetBlobsByElClientServiceGetData, FctEngineGetBlobsByElClientServiceGetError, FctEngineGetBlobsByElClientServiceGetResponse, FctEngineGetBlobsByElClientServiceListData, FctEngineGetBlobsByElClientServiceListError, FctEngineGetBlobsByElClientServiceListResponse, FctEngineGetBlobsBySlotServiceGetData, FctEngineGetBlobsBySlotServiceGetError, FctEngineGetBlobsBySlotServiceGetResponse, FctEngineGetBlobsBySlotServiceListData, FctEngineGetBlobsBySlotServiceListError, FctEngineGetBlobsBySlotServiceListResponse, FctEngineGetBlobsDurationChunked50MsServiceGetData, FctEngineGetBlobsDurationChunked50MsServiceGetError, FctEngineGetBlobsDurationChunked50MsServiceGetResponse, FctEngineGetBlobsDurationChunked50MsServiceListData, FctEngineGetBlobsDurationChunked50MsServiceListError, FctEngineGetBlobsDurationChunked50MsServiceListResponse, FctEngineNewPayloadByElClientHourlyServiceGetData, FctEngineNewPayloadByElClientHourlyServiceGetError, FctEngineNewPayloadByElClientHourlyServiceGetResponse, FctEngineNewPayloadByElClientHourlyServiceListData, FctEngineNewPayloadByElClientHourlyServiceListError, FctEngineNewPayloadByElClientHourlyServiceListResponse, FctEngineNewPayloadByElClientServiceGetData, FctEngineNewPayloadByElClientServiceGetError, FctEngineNewPayloadByElClientServiceGetResponse, FctEngineNewPayloadByElClientServiceListData, FctEngineNewPayloadByElClientServiceListError, FctEngineNewPayloadByElClientServiceListResponse, FctEngineNewPayloadBySlotServiceGetData, FctEngineNewPayloadBySlotServiceGetError, FctEngineNewPayloadBySlotServiceGetResponse, FctEngineNewPayloadBySlotServiceListData, FctEngineNewPayloadBySlotServiceListError, FctEngineNewPayloadBySlotServiceListResponse, FctEngineNewPayloadDurationChunked50MsServiceGetData, FctEngineNewPayloadDurationChunked50MsServiceGetError, FctEngineNewPayloadDurationChunked50MsServiceGetResponse, FctEngineNewPayloadDurationChunked50MsServiceListData, FctEngineNewPayloadDurationChunked50MsServiceListError, FctEngineNewPayloadDurationChunked50MsServiceListResponse, FctEngineNewPayloadWinrateDailyServiceGetData, FctEngineNewPayloadWinrateDailyServiceGetError, FctEngineNewPayloadWinrateDailyServiceGetResponse, FctEngineNewPayloadWinrateDailyServiceListData, FctEngineNewPayloadWinrateDailyServiceListError, FctEngineNewPayloadWinrateDailyServiceListResponse, FctEngineNewPayloadWinrateHourlyServiceGetData, FctEngineNewPayloadWinrateHourlyServiceGetError, FctEngineNewPayloadWinrateHourlyServiceGetResponse, FctEngineNewPayloadWinrateHourlyServiceListData, FctEngineNewPayloadWinrateHourlyServiceListError, FctEngineNewPayloadWinrateHourlyServiceListResponse, FctExecutionGasLimitDailyServiceGetData, FctExecutionGasLimitDailyServiceGetError, FctExecutionGasLimitDailyServiceGetResponse, FctExecutionGasLimitDailyServiceListData, FctExecutionGasLimitDailyServiceListError, FctExecutionGasLimitDailyServiceListResponse, FctExecutionGasLimitHourlyServiceGetData, FctExecutionGasLimitHourlyServiceGetError, FctExecutionGasLimitHourlyServiceGetResponse, FctExecutionGasLimitHourlyServiceListData, FctExecutionGasLimitHourlyServiceListError, FctExecutionGasLimitHourlyServiceListResponse, FctExecutionGasLimitSignallingDailyServiceGetData, FctExecutionGasLimitSignallingDailyServiceGetError, FctExecutionGasLimitSignallingDailyServiceGetResponse, FctExecutionGasLimitSignallingDailyServiceListData, FctExecutionGasLimitSignallingDailyServiceListError, FctExecutionGasLimitSignallingDailyServiceListResponse, FctExecutionGasLimitSignallingHourlyServiceGetData, FctExecutionGasLimitSignallingHourlyServiceGetError, FctExecutionGasLimitSignallingHourlyServiceGetResponse, FctExecutionGasLimitSignallingHourlyServiceListData, FctExecutionGasLimitSignallingHourlyServiceListError, FctExecutionGasLimitSignallingHourlyServiceListResponse, FctExecutionGasUsedDailyServiceGetData, FctExecutionGasUsedDailyServiceGetError, FctExecutionGasUsedDailyServiceGetResponse, FctExecutionGasUsedDailyServiceListData, FctExecutionGasUsedDailyServiceListError, FctExecutionGasUsedDailyServiceListResponse, FctExecutionGasUsedHourlyServiceGetData, FctExecutionGasUsedHourlyServiceGetError, FctExecutionGasUsedHourlyServiceGetResponse, FctExecutionGasUsedHourlyServiceListData, FctExecutionGasUsedHourlyServiceListError, FctExecutionGasUsedHourlyServiceListResponse, FctExecutionReceiptSizeDailyServiceGetData, FctExecutionReceiptSizeDailyServiceGetError, FctExecutionReceiptSizeDailyServiceGetResponse, FctExecutionReceiptSizeDailyServiceListData, FctExecutionReceiptSizeDailyServiceListError, FctExecutionReceiptSizeDailyServiceListResponse, FctExecutionReceiptSizeHourlyServiceGetData, FctExecutionReceiptSizeHourlyServiceGetError, FctExecutionReceiptSizeHourlyServiceGetResponse, FctExecutionReceiptSizeHourlyServiceListData, FctExecutionReceiptSizeHourlyServiceListError, FctExecutionReceiptSizeHourlyServiceListResponse, FctExecutionStateSizeDailyServiceGetData, FctExecutionStateSizeDailyServiceGetError, FctExecutionStateSizeDailyServiceGetResponse, FctExecutionStateSizeDailyServiceListData, FctExecutionStateSizeDailyServiceListError, FctExecutionStateSizeDailyServiceListResponse, FctExecutionStateSizeHourlyServiceGetData, FctExecutionStateSizeHourlyServiceGetError, FctExecutionStateSizeHourlyServiceGetResponse, FctExecutionStateSizeHourlyServiceListData, FctExecutionStateSizeHourlyServiceListError, FctExecutionStateSizeHourlyServiceListResponse, FctExecutionTpsDailyServiceGetData, FctExecutionTpsDailyServiceGetError, FctExecutionTpsDailyServiceGetResponse, FctExecutionTpsDailyServiceListData, FctExecutionTpsDailyServiceListError, FctExecutionTpsDailyServiceListResponse, FctExecutionTpsHourlyServiceGetData, FctExecutionTpsHourlyServiceGetError, FctExecutionTpsHourlyServiceGetResponse, FctExecutionTpsHourlyServiceListData, FctExecutionTpsHourlyServiceListError, FctExecutionTpsHourlyServiceListResponse, FctExecutionTransactionsDailyServiceGetData, FctExecutionTransactionsDailyServiceGetError, FctExecutionTransactionsDailyServiceGetResponse, FctExecutionTransactionsDailyServiceListData, FctExecutionTransactionsDailyServiceListError, FctExecutionTransactionsDailyServiceListResponse, FctExecutionTransactionsHourlyServiceGetData, FctExecutionTransactionsHourlyServiceGetError, FctExecutionTransactionsHourlyServiceGetResponse, FctExecutionTransactionsHourlyServiceListData, FctExecutionTransactionsHourlyServiceListError, FctExecutionTransactionsHourlyServiceListResponse, FctHeadFirstSeenByNodeServiceGetData, FctHeadFirstSeenByNodeServiceGetError, FctHeadFirstSeenByNodeServiceGetResponse, FctHeadFirstSeenByNodeServiceListData, FctHeadFirstSeenByNodeServiceListError, FctHeadFirstSeenByNodeServiceListResponse, FctHeadVoteCorrectnessRateDailyServiceGetData, FctHeadVoteCorrectnessRateDailyServiceGetError, FctHeadVoteCorrectnessRateDailyServiceGetResponse, FctHeadVoteCorrectnessRateDailyServiceListData, FctHeadVoteCorrectnessRateDailyServiceListError, FctHeadVoteCorrectnessRateDailyServiceListResponse, FctHeadVoteCorrectnessRateHourlyServiceGetData, FctHeadVoteCorrectnessRateHourlyServiceGetError, FctHeadVoteCorrectnessRateHourlyServiceGetResponse, FctHeadVoteCorrectnessRateHourlyServiceListData, FctHeadVoteCorrectnessRateHourlyServiceListError, FctHeadVoteCorrectnessRateHourlyServiceListResponse, FctMevBidCountByBuilderServiceGetData, FctMevBidCountByBuilderServiceGetError, FctMevBidCountByBuilderServiceGetResponse, FctMevBidCountByBuilderServiceListData, FctMevBidCountByBuilderServiceListError, FctMevBidCountByBuilderServiceListResponse, FctMevBidCountByRelayServiceGetData, FctMevBidCountByRelayServiceGetError, FctMevBidCountByRelayServiceGetResponse, FctMevBidCountByRelayServiceListData, FctMevBidCountByRelayServiceListError, FctMevBidCountByRelayServiceListResponse, FctMevBidHighestValueByBuilderChunked50MsServiceGetData, FctMevBidHighestValueByBuilderChunked50MsServiceGetError, FctMevBidHighestValueByBuilderChunked50MsServiceGetResponse, FctMevBidHighestValueByBuilderChunked50MsServiceListData, FctMevBidHighestValueByBuilderChunked50MsServiceListError, FctMevBidHighestValueByBuilderChunked50MsServiceListResponse, FctMissedSlotRateDailyServiceGetData, FctMissedSlotRateDailyServiceGetError, FctMissedSlotRateDailyServiceGetResponse, FctMissedSlotRateDailyServiceListData, FctMissedSlotRateDailyServiceListError, FctMissedSlotRateDailyServiceListResponse, FctMissedSlotRateHourlyServiceGetData, FctMissedSlotRateHourlyServiceGetError, FctMissedSlotRateHourlyServiceGetResponse, FctMissedSlotRateHourlyServiceListData, FctMissedSlotRateHourlyServiceListError, FctMissedSlotRateHourlyServiceListResponse, FctNodeActiveLast24hServiceGetData, FctNodeActiveLast24hServiceGetError, FctNodeActiveLast24hServiceGetResponse, FctNodeActiveLast24hServiceListData, FctNodeActiveLast24hServiceListError, FctNodeActiveLast24hServiceListResponse, FctNodeCpuUtilizationByProcessServiceGetData, FctNodeCpuUtilizationByProcessServiceGetError, FctNodeCpuUtilizationByProcessServiceGetResponse, FctNodeCpuUtilizationByProcessServiceListData, FctNodeCpuUtilizationByProcessServiceListError, FctNodeCpuUtilizationByProcessServiceListResponse, FctNodeDiskIoByProcessServiceGetData, FctNodeDiskIoByProcessServiceGetError, FctNodeDiskIoByProcessServiceGetResponse, FctNodeDiskIoByProcessServiceListData, FctNodeDiskIoByProcessServiceListError, FctNodeDiskIoByProcessServiceListResponse, FctNodeMemoryUsageByProcessServiceGetData, FctNodeMemoryUsageByProcessServiceGetError, FctNodeMemoryUsageByProcessServiceGetResponse, FctNodeMemoryUsageByProcessServiceListData, FctNodeMemoryUsageByProcessServiceListError, FctNodeMemoryUsageByProcessServiceListResponse, FctNodeNetworkIoByProcessServiceGetData, FctNodeNetworkIoByProcessServiceGetError, FctNodeNetworkIoByProcessServiceGetResponse, FctNodeNetworkIoByProcessServiceListData, FctNodeNetworkIoByProcessServiceListError, FctNodeNetworkIoByProcessServiceListResponse, FctOpcodeGasByOpcodeDailyServiceGetData, FctOpcodeGasByOpcodeDailyServiceGetError, FctOpcodeGasByOpcodeDailyServiceGetResponse, FctOpcodeGasByOpcodeDailyServiceListData, FctOpcodeGasByOpcodeDailyServiceListError, FctOpcodeGasByOpcodeDailyServiceListResponse, FctOpcodeGasByOpcodeHourlyServiceGetData, FctOpcodeGasByOpcodeHourlyServiceGetError, FctOpcodeGasByOpcodeHourlyServiceGetResponse, FctOpcodeGasByOpcodeHourlyServiceListData, FctOpcodeGasByOpcodeHourlyServiceListError, FctOpcodeGasByOpcodeHourlyServiceListResponse, FctOpcodeOpsDailyServiceGetData, FctOpcodeOpsDailyServiceGetError, FctOpcodeOpsDailyServiceGetResponse, FctOpcodeOpsDailyServiceListData, FctOpcodeOpsDailyServiceListError, FctOpcodeOpsDailyServiceListResponse, FctOpcodeOpsHourlyServiceGetData, FctOpcodeOpsHourlyServiceGetError, FctOpcodeOpsHourlyServiceGetResponse, FctOpcodeOpsHourlyServiceListData, FctOpcodeOpsHourlyServiceListError, FctOpcodeOpsHourlyServiceListResponse, FctPreparedBlockServiceGetData, FctPreparedBlockServiceGetError, FctPreparedBlockServiceGetResponse, FctPreparedBlockServiceListData, FctPreparedBlockServiceListError, FctPreparedBlockServiceListResponse, FctProposerRewardDailyServiceGetData, FctProposerRewardDailyServiceGetError, FctProposerRewardDailyServiceGetResponse, FctProposerRewardDailyServiceListData, FctProposerRewardDailyServiceListError, FctProposerRewardDailyServiceListResponse, FctProposerRewardHourlyServiceGetData, FctProposerRewardHourlyServiceGetError, FctProposerRewardHourlyServiceGetResponse, FctProposerRewardHourlyServiceListData, FctProposerRewardHourlyServiceListError, FctProposerRewardHourlyServiceListResponse, FctReorgDailyServiceGetData, FctReorgDailyServiceGetError, FctReorgDailyServiceGetResponse, FctReorgDailyServiceListData, FctReorgDailyServiceListError, FctReorgDailyServiceListResponse, FctReorgHourlyServiceGetData, FctReorgHourlyServiceGetError, FctReorgHourlyServiceGetResponse, FctReorgHourlyServiceListData, FctReorgHourlyServiceListError, FctReorgHourlyServiceListResponse, FctRocketpoolValidatorServiceGetData, FctRocketpoolValidatorServiceGetError, FctRocketpoolValidatorServiceGetResponse, FctRocketpoolValidatorServiceListData, FctRocketpoolValidatorServiceListError, FctRocketpoolValidatorServiceListResponse, FctStorageSlotStateByAddressDailyServiceGetData, FctStorageSlotStateByAddressDailyServiceGetError, FctStorageSlotStateByAddressDailyServiceGetResponse, FctStorageSlotStateByAddressDailyServiceListData, FctStorageSlotStateByAddressDailyServiceListError, FctStorageSlotStateByAddressDailyServiceListResponse, FctStorageSlotStateByAddressHourlyServiceGetData, FctStorageSlotStateByAddressHourlyServiceGetError, FctStorageSlotStateByAddressHourlyServiceGetResponse, FctStorageSlotStateByAddressHourlyServiceListData, FctStorageSlotStateByAddressHourlyServiceListError, FctStorageSlotStateByAddressHourlyServiceListResponse, FctStorageSlotStateByBlockDailyServiceGetData, FctStorageSlotStateByBlockDailyServiceGetError, FctStorageSlotStateByBlockDailyServiceGetResponse, FctStorageSlotStateByBlockDailyServiceListData, FctStorageSlotStateByBlockDailyServiceListError, FctStorageSlotStateByBlockDailyServiceListResponse, FctStorageSlotStateByBlockHourlyServiceGetData, FctStorageSlotStateByBlockHourlyServiceGetError, FctStorageSlotStateByBlockHourlyServiceGetResponse, FctStorageSlotStateByBlockHourlyServiceListData, FctStorageSlotStateByBlockHourlyServiceListError, FctStorageSlotStateByBlockHourlyServiceListResponse, FctStorageSlotStateWithExpiryByAddressDailyServiceGetData, FctStorageSlotStateWithExpiryByAddressDailyServiceGetError, FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse, FctStorageSlotStateWithExpiryByAddressDailyServiceListData, FctStorageSlotStateWithExpiryByAddressDailyServiceListError, FctStorageSlotStateWithExpiryByAddressDailyServiceListResponse, FctStorageSlotStateWithExpiryByAddressHourlyServiceGetData, FctStorageSlotStateWithExpiryByAddressHourlyServiceGetError, FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse, FctStorageSlotStateWithExpiryByAddressHourlyServiceListData, FctStorageSlotStateWithExpiryByAddressHourlyServiceListError, FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse, FctStorageSlotStateWithExpiryByBlockDailyServiceGetData, FctStorageSlotStateWithExpiryByBlockDailyServiceGetError, FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse, FctStorageSlotStateWithExpiryByBlockDailyServiceListData, FctStorageSlotStateWithExpiryByBlockDailyServiceListError, FctStorageSlotStateWithExpiryByBlockDailyServiceListResponse, FctStorageSlotStateWithExpiryByBlockHourlyServiceGetData, FctStorageSlotStateWithExpiryByBlockHourlyServiceGetError, FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse, FctStorageSlotStateWithExpiryByBlockHourlyServiceListData, FctStorageSlotStateWithExpiryByBlockHourlyServiceListError, FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse, FctStorageSlotTop100ByBytesServiceGetData, FctStorageSlotTop100ByBytesServiceGetError, FctStorageSlotTop100ByBytesServiceGetResponse, FctStorageSlotTop100ByBytesServiceListData, FctStorageSlotTop100ByBytesServiceListError, FctStorageSlotTop100ByBytesServiceListResponse, FctStorageSlotTop100BySlotsServiceGetData, FctStorageSlotTop100BySlotsServiceGetError, FctStorageSlotTop100BySlotsServiceGetResponse, FctStorageSlotTop100BySlotsServiceListData, FctStorageSlotTop100BySlotsServiceListError, FctStorageSlotTop100BySlotsServiceListResponse, FctSyncCommitteeParticipationByValidatorDailyServiceGetData, FctSyncCommitteeParticipationByValidatorDailyServiceGetError, FctSyncCommitteeParticipationByValidatorDailyServiceGetResponse, FctSyncCommitteeParticipationByValidatorDailyServiceListData, FctSyncCommitteeParticipationByValidatorDailyServiceListError, FctSyncCommitteeParticipationByValidatorDailyServiceListResponse, FctSyncCommitteeParticipationByValidatorHourlyServiceGetData, FctSyncCommitteeParticipationByValidatorHourlyServiceGetError, FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse, FctSyncCommitteeParticipationByValidatorHourlyServiceListData, FctSyncCommitteeParticipationByValidatorHourlyServiceListError, FctSyncCommitteeParticipationByValidatorHourlyServiceListResponse, FctSyncCommitteeParticipationByValidatorServiceGetData, FctSyncCommitteeParticipationByValidatorServiceGetError, FctSyncCommitteeParticipationByValidatorServiceGetResponse, FctSyncCommitteeParticipationByValidatorServiceListData, FctSyncCommitteeParticipationByValidatorServiceListError, FctSyncCommitteeParticipationByValidatorServiceListResponse, FctTokenContractStorageStateByBlockDailyServiceGetData, FctTokenContractStorageStateByBlockDailyServiceGetError, FctTokenContractStorageStateByBlockDailyServiceGetResponse, FctTokenContractStorageStateByBlockDailyServiceListData, FctTokenContractStorageStateByBlockDailyServiceListError, FctTokenContractStorageStateByBlockDailyServiceListResponse, FctValidatorBalanceDailyServiceGetData, FctValidatorBalanceDailyServiceGetError, FctValidatorBalanceDailyServiceGetResponse, FctValidatorBalanceDailyServiceListData, FctValidatorBalanceDailyServiceListError, FctValidatorBalanceDailyServiceListResponse, FctValidatorBalanceHourlyServiceGetData, FctValidatorBalanceHourlyServiceGetError, FctValidatorBalanceHourlyServiceGetResponse, FctValidatorBalanceHourlyServiceListData, FctValidatorBalanceHourlyServiceListError, FctValidatorBalanceHourlyServiceListResponse, FctValidatorBalanceServiceGetData, FctValidatorBalanceServiceGetError, FctValidatorBalanceServiceGetResponse, FctValidatorBalanceServiceListData, FctValidatorBalanceServiceListError, FctValidatorBalanceServiceListResponse, FctValidatorCountByEntityByStatusDailyServiceGetData, FctValidatorCountByEntityByStatusDailyServiceGetError, FctValidatorCountByEntityByStatusDailyServiceGetResponse, FctValidatorCountByEntityByStatusDailyServiceListData, FctValidatorCountByEntityByStatusDailyServiceListError, FctValidatorCountByEntityByStatusDailyServiceListResponse, IntAttestationAttestedCanonicalServiceGetData, IntAttestationAttestedCanonicalServiceGetError, IntAttestationAttestedCanonicalServiceGetResponse, IntAttestationAttestedCanonicalServiceListData, IntAttestationAttestedCanonicalServiceListError, IntAttestationAttestedCanonicalServiceListResponse, IntAttestationAttestedHeadServiceGetData, IntAttestationAttestedHeadServiceGetError, IntAttestationAttestedHeadServiceGetResponse, IntAttestationAttestedHeadServiceListData, IntAttestationAttestedHeadServiceListError, IntAttestationAttestedHeadServiceListResponse, IntAttestationFirstSeenAggregateServiceGetData, IntAttestationFirstSeenAggregateServiceGetError, IntAttestationFirstSeenAggregateServiceGetResponse, IntAttestationFirstSeenAggregateServiceListData, IntAttestationFirstSeenAggregateServiceListError, IntAttestationFirstSeenAggregateServiceListResponse, IntAttestationFirstSeenServiceGetData, IntAttestationFirstSeenServiceGetError, IntAttestationFirstSeenServiceGetResponse, IntAttestationFirstSeenServiceListData, IntAttestationFirstSeenServiceListError, IntAttestationFirstSeenServiceListResponse, IntBeaconCommitteeHeadServiceGetData, IntBeaconCommitteeHeadServiceGetError, IntBeaconCommitteeHeadServiceGetResponse, IntBeaconCommitteeHeadServiceListData, IntBeaconCommitteeHeadServiceListError, IntBeaconCommitteeHeadServiceListResponse, IntBlockBlobCountCanonicalServiceGetData, IntBlockBlobCountCanonicalServiceGetError, IntBlockBlobCountCanonicalServiceGetResponse, IntBlockBlobCountCanonicalServiceListData, IntBlockBlobCountCanonicalServiceListError, IntBlockBlobCountCanonicalServiceListResponse, IntBlockCanonicalServiceGetData, IntBlockCanonicalServiceGetError, IntBlockCanonicalServiceGetResponse, IntBlockCanonicalServiceListData, IntBlockCanonicalServiceListError, IntBlockCanonicalServiceListResponse, IntBlockMevCanonicalServiceGetData, IntBlockMevCanonicalServiceGetError, IntBlockMevCanonicalServiceGetResponse, IntBlockMevCanonicalServiceListData, IntBlockMevCanonicalServiceListError, IntBlockMevCanonicalServiceListResponse, IntBlockOpcodeGasServiceGetData, IntBlockOpcodeGasServiceGetError, IntBlockOpcodeGasServiceGetResponse, IntBlockOpcodeGasServiceListData, IntBlockOpcodeGasServiceListError, IntBlockOpcodeGasServiceListResponse, IntBlockProposerCanonicalServiceGetData, IntBlockProposerCanonicalServiceGetError, IntBlockProposerCanonicalServiceGetResponse, IntBlockProposerCanonicalServiceListData, IntBlockProposerCanonicalServiceListError, IntBlockProposerCanonicalServiceListResponse, IntBlockReceiptSizeServiceGetData, IntBlockReceiptSizeServiceGetError, IntBlockReceiptSizeServiceGetResponse, IntBlockReceiptSizeServiceListData, IntBlockReceiptSizeServiceListError, IntBlockReceiptSizeServiceListResponse, IntBlockResourceGasServiceGetData, IntBlockResourceGasServiceGetError, IntBlockResourceGasServiceGetResponse, IntBlockResourceGasServiceListData, IntBlockResourceGasServiceListError, IntBlockResourceGasServiceListResponse, IntContractCreationServiceGetData, IntContractCreationServiceGetError, IntContractCreationServiceGetResponse, IntContractCreationServiceListData, IntContractCreationServiceListError, IntContractCreationServiceListResponse, IntContractSelfdestructServiceGetData, IntContractSelfdestructServiceGetError, IntContractSelfdestructServiceGetResponse, IntContractSelfdestructServiceListData, IntContractSelfdestructServiceListError, IntContractSelfdestructServiceListResponse, IntContractStorageExpiry12mServiceGetData, IntContractStorageExpiry12mServiceGetError, IntContractStorageExpiry12mServiceGetResponse, IntContractStorageExpiry12mServiceListData, IntContractStorageExpiry12mServiceListError, IntContractStorageExpiry12mServiceListResponse, IntContractStorageExpiry18mServiceGetData, IntContractStorageExpiry18mServiceGetError, IntContractStorageExpiry18mServiceGetResponse, IntContractStorageExpiry18mServiceListData, IntContractStorageExpiry18mServiceListError, IntContractStorageExpiry18mServiceListResponse, IntContractStorageExpiry1mServiceGetData, IntContractStorageExpiry1mServiceGetError, IntContractStorageExpiry1mServiceGetResponse, IntContractStorageExpiry1mServiceListData, IntContractStorageExpiry1mServiceListError, IntContractStorageExpiry1mServiceListResponse, IntContractStorageExpiry24mServiceGetData, IntContractStorageExpiry24mServiceGetError, IntContractStorageExpiry24mServiceGetResponse, IntContractStorageExpiry24mServiceListData, IntContractStorageExpiry24mServiceListError, IntContractStorageExpiry24mServiceListResponse, IntContractStorageExpiry6mServiceGetData, IntContractStorageExpiry6mServiceGetError, IntContractStorageExpiry6mServiceGetResponse, IntContractStorageExpiry6mServiceListData, IntContractStorageExpiry6mServiceListError, IntContractStorageExpiry6mServiceListResponse, IntContractStorageNextTouchServiceGetData, IntContractStorageNextTouchServiceGetError, IntContractStorageNextTouchServiceGetResponse, IntContractStorageNextTouchServiceListData, IntContractStorageNextTouchServiceListError, IntContractStorageNextTouchServiceListResponse, IntContractStorageReactivation12mServiceGetData, IntContractStorageReactivation12mServiceGetError, IntContractStorageReactivation12mServiceGetResponse, IntContractStorageReactivation12mServiceListData, IntContractStorageReactivation12mServiceListError, IntContractStorageReactivation12mServiceListResponse, IntContractStorageReactivation18mServiceGetData, IntContractStorageReactivation18mServiceGetError, IntContractStorageReactivation18mServiceGetResponse, IntContractStorageReactivation18mServiceListData, IntContractStorageReactivation18mServiceListError, IntContractStorageReactivation18mServiceListResponse, IntContractStorageReactivation1mServiceGetData, IntContractStorageReactivation1mServiceGetError, IntContractStorageReactivation1mServiceGetResponse, IntContractStorageReactivation1mServiceListData, IntContractStorageReactivation1mServiceListError, IntContractStorageReactivation1mServiceListResponse, IntContractStorageReactivation24mServiceGetData, IntContractStorageReactivation24mServiceGetError, IntContractStorageReactivation24mServiceGetResponse, IntContractStorageReactivation24mServiceListData, IntContractStorageReactivation24mServiceListError, IntContractStorageReactivation24mServiceListResponse, IntContractStorageReactivation6mServiceGetData, IntContractStorageReactivation6mServiceGetError, IntContractStorageReactivation6mServiceGetResponse, IntContractStorageReactivation6mServiceListData, IntContractStorageReactivation6mServiceListError, IntContractStorageReactivation6mServiceListResponse, IntContractStorageStateByAddressServiceGetData, IntContractStorageStateByAddressServiceGetError, IntContractStorageStateByAddressServiceGetResponse, IntContractStorageStateByAddressServiceListData, IntContractStorageStateByAddressServiceListError, IntContractStorageStateByAddressServiceListResponse, IntContractStorageStateByBlockServiceGetData, IntContractStorageStateByBlockServiceGetError, IntContractStorageStateByBlockServiceGetResponse, IntContractStorageStateByBlockServiceListData, IntContractStorageStateByBlockServiceListError, IntContractStorageStateByBlockServiceListResponse, IntContractStorageStateServiceGetData, IntContractStorageStateServiceGetError, IntContractStorageStateServiceGetResponse, IntContractStorageStateServiceListData, IntContractStorageStateServiceListError, IntContractStorageStateServiceListResponse, IntContractStorageStateWithExpiryByAddressServiceGetData, IntContractStorageStateWithExpiryByAddressServiceGetError, IntContractStorageStateWithExpiryByAddressServiceGetResponse, IntContractStorageStateWithExpiryByAddressServiceListData, IntContractStorageStateWithExpiryByAddressServiceListError, IntContractStorageStateWithExpiryByAddressServiceListResponse, IntContractStorageStateWithExpiryByBlockServiceGetData, IntContractStorageStateWithExpiryByBlockServiceGetError, IntContractStorageStateWithExpiryByBlockServiceGetResponse, IntContractStorageStateWithExpiryByBlockServiceListData, IntContractStorageStateWithExpiryByBlockServiceListError, IntContractStorageStateWithExpiryByBlockServiceListResponse, IntContractStorageStateWithExpiryServiceGetData, IntContractStorageStateWithExpiryServiceGetError, IntContractStorageStateWithExpiryServiceGetResponse, IntContractStorageStateWithExpiryServiceListData, IntContractStorageStateWithExpiryServiceListError, IntContractStorageStateWithExpiryServiceListResponse, IntCustodyProbeOrderBySlotServiceGetData, IntCustodyProbeOrderBySlotServiceGetError, IntCustodyProbeOrderBySlotServiceGetResponse, IntCustodyProbeOrderBySlotServiceListData, IntCustodyProbeOrderBySlotServiceListError, IntCustodyProbeOrderBySlotServiceListResponse, IntCustodyProbeServiceGetData, IntCustodyProbeServiceGetError, IntCustodyProbeServiceGetResponse, IntCustodyProbeServiceListData, IntCustodyProbeServiceListError, IntCustodyProbeServiceListResponse, IntEngineGetBlobsServiceGetData, IntEngineGetBlobsServiceGetError, IntEngineGetBlobsServiceGetResponse, IntEngineGetBlobsServiceListData, IntEngineGetBlobsServiceListError, IntEngineGetBlobsServiceListResponse, IntEngineNewPayloadFastestExecutionByNodeClassServiceGetData, IntEngineNewPayloadFastestExecutionByNodeClassServiceGetError, IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse, IntEngineNewPayloadFastestExecutionByNodeClassServiceListData, IntEngineNewPayloadFastestExecutionByNodeClassServiceListError, IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse, IntEngineNewPayloadServiceGetData, IntEngineNewPayloadServiceGetError, IntEngineNewPayloadServiceGetResponse, IntEngineNewPayloadServiceListData, IntEngineNewPayloadServiceListError, IntEngineNewPayloadServiceListResponse, IntExecutionBlockByDateServiceGetData, IntExecutionBlockByDateServiceGetError, IntExecutionBlockByDateServiceGetResponse, IntExecutionBlockByDateServiceListData, IntExecutionBlockByDateServiceListError, IntExecutionBlockByDateServiceListResponse, IntExecutionStateSizeByBlockServiceGetData, IntExecutionStateSizeByBlockServiceGetError, IntExecutionStateSizeByBlockServiceGetResponse, IntExecutionStateSizeByBlockServiceListData, IntExecutionStateSizeByBlockServiceListError, IntExecutionStateSizeByBlockServiceListResponse, IntRocketpoolMegapoolServiceGetData, IntRocketpoolMegapoolServiceGetError, IntRocketpoolMegapoolServiceGetResponse, IntRocketpoolMegapoolServiceListData, IntRocketpoolMegapoolServiceListError, IntRocketpoolMegapoolServiceListResponse, IntRocketpoolMinipoolServiceGetData, IntRocketpoolMinipoolServiceGetError, IntRocketpoolMinipoolServiceGetResponse, IntRocketpoolMinipoolServiceListData, IntRocketpoolMinipoolServiceListError, IntRocketpoolMinipoolServiceListResponse, IntRocketpoolNodeEventServiceGetData, IntRocketpoolNodeEventServiceGetError, IntRocketpoolNodeEventServiceGetResponse, IntRocketpoolNodeEventServiceListData, IntRocketpoolNodeEventServiceListError, IntRocketpoolNodeEventServiceListResponse, IntRocketpoolNodeTimezoneServiceGetData, IntRocketpoolNodeTimezoneServiceGetError, IntRocketpoolNodeTimezoneServiceGetResponse, IntRocketpoolNodeTimezoneServiceListData, IntRocketpoolNodeTimezoneServiceListError, IntRocketpoolNodeTimezoneServiceListResponse, IntStorageSelfdestructDiffsServiceGetData, IntStorageSelfdestructDiffsServiceGetError, IntStorageSelfdestructDiffsServiceGetResponse, IntStorageSelfdestructDiffsServiceListData, IntStorageSelfdestructDiffsServiceListError, IntStorageSelfdestructDiffsServiceListResponse, IntStorageSlotDiffByAddressSlotServiceGetData, IntStorageSlotDiffByAddressSlotServiceGetError, IntStorageSlotDiffByAddressSlotServiceGetResponse, IntStorageSlotDiffByAddressSlotServiceListData, IntStorageSlotDiffByAddressSlotServiceListError, IntStorageSlotDiffByAddressSlotServiceListResponse, IntStorageSlotDiffServiceGetData, IntStorageSlotDiffServiceGetError, IntStorageSlotDiffServiceGetResponse, IntStorageSlotDiffServiceListData, IntStorageSlotDiffServiceListError, IntStorageSlotDiffServiceListResponse, IntStorageSlotExpiry12mServiceGetData, IntStorageSlotExpiry12mServiceGetError, IntStorageSlotExpiry12mServiceGetResponse, IntStorageSlotExpiry12mServiceListData, IntStorageSlotExpiry12mServiceListError, IntStorageSlotExpiry12mServiceListResponse, IntStorageSlotExpiry18mServiceGetData, IntStorageSlotExpiry18mServiceGetError, IntStorageSlotExpiry18mServiceGetResponse, IntStorageSlotExpiry18mServiceListData, IntStorageSlotExpiry18mServiceListError, IntStorageSlotExpiry18mServiceListResponse, IntStorageSlotExpiry1mServiceGetData, IntStorageSlotExpiry1mServiceGetError, IntStorageSlotExpiry1mServiceGetResponse, IntStorageSlotExpiry1mServiceListData, IntStorageSlotExpiry1mServiceListError, IntStorageSlotExpiry1mServiceListResponse, IntStorageSlotExpiry24mServiceGetData, IntStorageSlotExpiry24mServiceGetError, IntStorageSlotExpiry24mServiceGetResponse, IntStorageSlotExpiry24mServiceListData, IntStorageSlotExpiry24mServiceListError, IntStorageSlotExpiry24mServiceListResponse, IntStorageSlotExpiry6mServiceGetData, IntStorageSlotExpiry6mServiceGetError, IntStorageSlotExpiry6mServiceGetResponse, IntStorageSlotExpiry6mServiceListData, IntStorageSlotExpiry6mServiceListError, IntStorageSlotExpiry6mServiceListResponse, IntStorageSlotLifecycleBoundaryServiceGetData, IntStorageSlotLifecycleBoundaryServiceGetError, IntStorageSlotLifecycleBoundaryServiceGetResponse, IntStorageSlotLifecycleBoundaryServiceListData, IntStorageSlotLifecycleBoundaryServiceListError, IntStorageSlotLifecycleBoundaryServiceListResponse, IntStorageSlotLifecycleServiceGetData, IntStorageSlotLifecycleServiceGetError, IntStorageSlotLifecycleServiceGetResponse, IntStorageSlotLifecycleServiceListData, IntStorageSlotLifecycleServiceListError, IntStorageSlotLifecycleServiceListResponse, IntStorageSlotNextTouchServiceGetData, IntStorageSlotNextTouchServiceGetError, IntStorageSlotNextTouchServiceGetResponse, IntStorageSlotNextTouchServiceListData, IntStorageSlotNextTouchServiceListError, IntStorageSlotNextTouchServiceListResponse, IntStorageSlotReactivation12mServiceGetData, IntStorageSlotReactivation12mServiceGetError, IntStorageSlotReactivation12mServiceGetResponse, IntStorageSlotReactivation12mServiceListData, IntStorageSlotReactivation12mServiceListError, IntStorageSlotReactivation12mServiceListResponse, IntStorageSlotReactivation18mServiceGetData, IntStorageSlotReactivation18mServiceGetError, IntStorageSlotReactivation18mServiceGetResponse, IntStorageSlotReactivation18mServiceListData, IntStorageSlotReactivation18mServiceListError, IntStorageSlotReactivation18mServiceListResponse, IntStorageSlotReactivation1mServiceGetData, IntStorageSlotReactivation1mServiceGetError, IntStorageSlotReactivation1mServiceGetResponse, IntStorageSlotReactivation1mServiceListData, IntStorageSlotReactivation1mServiceListError, IntStorageSlotReactivation1mServiceListResponse, IntStorageSlotReactivation24mServiceGetData, IntStorageSlotReactivation24mServiceGetError, IntStorageSlotReactivation24mServiceGetResponse, IntStorageSlotReactivation24mServiceListData, IntStorageSlotReactivation24mServiceListError, IntStorageSlotReactivation24mServiceListResponse, IntStorageSlotReactivation6mServiceGetData, IntStorageSlotReactivation6mServiceGetError, IntStorageSlotReactivation6mServiceGetResponse, IntStorageSlotReactivation6mServiceListData, IntStorageSlotReactivation6mServiceListError, IntStorageSlotReactivation6mServiceListResponse, IntStorageSlotReadServiceGetData, IntStorageSlotReadServiceGetError, IntStorageSlotReadServiceGetResponse, IntStorageSlotReadServiceListData, IntStorageSlotReadServiceListError, IntStorageSlotReadServiceListResponse, IntStorageSlotStateByAddressServiceGetData, IntStorageSlotStateByAddressServiceGetError, IntStorageSlotStateByAddressServiceGetResponse, IntStorageSlotStateByAddressServiceListData, IntStorageSlotStateByAddressServiceListError, IntStorageSlotStateByAddressServiceListResponse, IntStorageSlotStateByBlockServiceGetData, IntStorageSlotStateByBlockServiceGetError, IntStorageSlotStateByBlockServiceGetResponse, IntStorageSlotStateByBlockServiceListData, IntStorageSlotStateByBlockServiceListError, IntStorageSlotStateByBlockServiceListResponse, IntStorageSlotStateServiceGetData, IntStorageSlotStateServiceGetError, IntStorageSlotStateServiceGetResponse, IntStorageSlotStateServiceListData, IntStorageSlotStateServiceListError, IntStorageSlotStateServiceListResponse, IntStorageSlotStateWithExpiryByAddressServiceGetData, IntStorageSlotStateWithExpiryByAddressServiceGetError, IntStorageSlotStateWithExpiryByAddressServiceGetResponse, IntStorageSlotStateWithExpiryByAddressServiceListData, IntStorageSlotStateWithExpiryByAddressServiceListError, IntStorageSlotStateWithExpiryByAddressServiceListResponse, IntStorageSlotStateWithExpiryByBlockServiceGetData, IntStorageSlotStateWithExpiryByBlockServiceGetError, IntStorageSlotStateWithExpiryByBlockServiceGetResponse, IntStorageSlotStateWithExpiryByBlockServiceListData, IntStorageSlotStateWithExpiryByBlockServiceListError, IntStorageSlotStateWithExpiryByBlockServiceListResponse, IntStorageSlotStateWithExpiryServiceGetData, IntStorageSlotStateWithExpiryServiceGetError, IntStorageSlotStateWithExpiryServiceGetResponse, IntStorageSlotStateWithExpiryServiceListData, IntStorageSlotStateWithExpiryServiceListError, IntStorageSlotStateWithExpiryServiceListResponse, IntTokenContractStorageStateByBlockServiceGetData, IntTokenContractStorageStateByBlockServiceGetError, IntTokenContractStorageStateByBlockServiceGetResponse, IntTokenContractStorageStateByBlockServiceListData, IntTokenContractStorageStateByBlockServiceListError, IntTokenContractStorageStateByBlockServiceListResponse, IntTransactionCallFrameOpcodeGasServiceGetData, IntTransactionCallFrameOpcodeGasServiceGetError, IntTransactionCallFrameOpcodeGasServiceGetResponse, IntTransactionCallFrameOpcodeGasServiceListData, IntTransactionCallFrameOpcodeGasServiceListError, IntTransactionCallFrameOpcodeGasServiceListResponse, IntTransactionCallFrameOpcodeResourceGasServiceGetData, IntTransactionCallFrameOpcodeResourceGasServiceGetError, IntTransactionCallFrameOpcodeResourceGasServiceGetResponse, IntTransactionCallFrameOpcodeResourceGasServiceListData, IntTransactionCallFrameOpcodeResourceGasServiceListError, IntTransactionCallFrameOpcodeResourceGasServiceListResponse, IntTransactionCallFrameServiceGetData, IntTransactionCallFrameServiceGetError, IntTransactionCallFrameServiceGetResponse, IntTransactionCallFrameServiceListData, IntTransactionCallFrameServiceListError, IntTransactionCallFrameServiceListResponse, IntTransactionOpcodeGasServiceGetData, IntTransactionOpcodeGasServiceGetError, IntTransactionOpcodeGasServiceGetResponse, IntTransactionOpcodeGasServiceListData, IntTransactionOpcodeGasServiceListError, IntTransactionOpcodeGasServiceListResponse, IntTransactionReceiptSizeServiceGetData, IntTransactionReceiptSizeServiceGetError, IntTransactionReceiptSizeServiceGetResponse, IntTransactionReceiptSizeServiceListData, IntTransactionReceiptSizeServiceListError, IntTransactionReceiptSizeServiceListResponse, IntTransactionResourceGasServiceGetData, IntTransactionResourceGasServiceGetError, IntTransactionResourceGasServiceGetResponse, IntTransactionResourceGasServiceListData, IntTransactionResourceGasServiceListError, IntTransactionResourceGasServiceListResponse } from '../types.gen'; +import { + adminCbtIncrementalServiceGet, + adminCbtIncrementalServiceList, + adminCbtScheduledServiceGet, + adminCbtScheduledServiceList, + dimBlockBlobSubmitterServiceGet, + dimBlockBlobSubmitterServiceList, + dimContractOwnerServiceGet, + dimContractOwnerServiceList, + dimFunctionSignatureServiceGet, + dimFunctionSignatureServiceList, + dimNodeServiceGet, + dimNodeServiceList, + dimRocketpoolNodeServiceGet, + dimRocketpoolNodeServiceList, + dimTokenContractServiceGet, + dimTokenContractServiceList, + dimValidatorPubkeyServiceGet, + dimValidatorPubkeyServiceList, + dimValidatorStatusServiceGet, + dimValidatorStatusServiceList, + fctAttestationCorrectnessByValidatorCanonicalServiceGet, + fctAttestationCorrectnessByValidatorCanonicalServiceList, + fctAttestationCorrectnessByValidatorHeadServiceGet, + fctAttestationCorrectnessByValidatorHeadServiceList, + fctAttestationCorrectnessByValidatorServiceGet, + fctAttestationCorrectnessByValidatorServiceList, + fctAttestationCorrectnessCanonicalServiceGet, + fctAttestationCorrectnessCanonicalServiceList, + fctAttestationCorrectnessHeadServiceGet, + fctAttestationCorrectnessHeadServiceList, + fctAttestationCorrectnessServiceGet, + fctAttestationCorrectnessServiceList, + fctAttestationFirstSeenByValidatorServiceGet, + fctAttestationFirstSeenByValidatorServiceList, + fctAttestationFirstSeenChunked50MsServiceGet, + fctAttestationFirstSeenChunked50MsServiceList, + fctAttestationInclusionDelayDailyServiceGet, + fctAttestationInclusionDelayDailyServiceList, + fctAttestationInclusionDelayHourlyServiceGet, + fctAttestationInclusionDelayHourlyServiceList, + fctAttestationLivenessByEntityHeadServiceGet, + fctAttestationLivenessByEntityHeadServiceList, + fctAttestationLivenessByEntityServiceGet, + fctAttestationLivenessByEntityServiceList, + fctAttestationObservationByNodeServiceGet, + fctAttestationObservationByNodeServiceList, + fctAttestationParticipationRateDailyServiceGet, + fctAttestationParticipationRateDailyServiceList, + fctAttestationParticipationRateHourlyServiceGet, + fctAttestationParticipationRateHourlyServiceList, + fctAttestationVoteCorrectnessByValidatorDailyServiceGet, + fctAttestationVoteCorrectnessByValidatorDailyServiceList, + fctAttestationVoteCorrectnessByValidatorHourlyServiceGet, + fctAttestationVoteCorrectnessByValidatorHourlyServiceList, + fctAttestationVoteCorrectnessByValidatorServiceGet, + fctAttestationVoteCorrectnessByValidatorServiceList, + fctBlobCountDailyServiceGet, + fctBlobCountDailyServiceList, + fctBlobCountHourlyServiceGet, + fctBlobCountHourlyServiceList, + fctBlockBlobCountHeadServiceGet, + fctBlockBlobCountHeadServiceList, + fctBlockBlobCountServiceGet, + fctBlockBlobCountServiceList, + fctBlockBlobFirstSeenByNodeServiceGet, + fctBlockBlobFirstSeenByNodeServiceList, + fctBlockBlobHeadServiceGet, + fctBlockBlobHeadServiceList, + fctBlockDataColumnSidecarFirstSeenByNodeServiceGet, + fctBlockDataColumnSidecarFirstSeenByNodeServiceList, + fctBlockDataColumnSidecarFirstSeenServiceGet, + fctBlockDataColumnSidecarFirstSeenServiceList, + fctBlockFirstSeenByNodeServiceGet, + fctBlockFirstSeenByNodeServiceList, + fctBlockHeadServiceGet, + fctBlockHeadServiceList, + fctBlockMevHeadServiceGet, + fctBlockMevHeadServiceList, + fctBlockMevServiceGet, + fctBlockMevServiceList, + fctBlockPayloadAvailableByNodeServiceGet, + fctBlockPayloadAvailableByNodeServiceList, + fctBlockPayloadBidServiceGet, + fctBlockPayloadBidServiceList, + fctBlockPayloadFirstSeenByNodeServiceGet, + fctBlockPayloadFirstSeenByNodeServiceList, + fctBlockPayloadPtcVoteHeadServiceGet, + fctBlockPayloadPtcVoteHeadServiceList, + fctBlockPayloadPtcVoteServiceGet, + fctBlockPayloadPtcVoteServiceList, + fctBlockProposalStatusDailyServiceGet, + fctBlockProposalStatusDailyServiceList, + fctBlockProposalStatusHourlyServiceGet, + fctBlockProposalStatusHourlyServiceList, + fctBlockProposerByValidatorServiceGet, + fctBlockProposerByValidatorServiceList, + fctBlockProposerEntityServiceGet, + fctBlockProposerEntityServiceList, + fctBlockProposerHeadServiceGet, + fctBlockProposerHeadServiceList, + fctBlockProposerServiceGet, + fctBlockProposerServiceList, + fctBlockServiceGet, + fctBlockServiceList, + fctContractStorageStateByAddressDailyServiceGet, + fctContractStorageStateByAddressDailyServiceList, + fctContractStorageStateByAddressHourlyServiceGet, + fctContractStorageStateByAddressHourlyServiceList, + fctContractStorageStateByBlockDailyServiceGet, + fctContractStorageStateByBlockDailyServiceList, + fctContractStorageStateByBlockHourlyServiceGet, + fctContractStorageStateByBlockHourlyServiceList, + fctContractStorageStateWithExpiryByAddressDailyServiceGet, + fctContractStorageStateWithExpiryByAddressDailyServiceList, + fctContractStorageStateWithExpiryByAddressHourlyServiceGet, + fctContractStorageStateWithExpiryByAddressHourlyServiceList, + fctContractStorageStateWithExpiryByBlockDailyServiceGet, + fctContractStorageStateWithExpiryByBlockDailyServiceList, + fctContractStorageStateWithExpiryByBlockHourlyServiceGet, + fctContractStorageStateWithExpiryByBlockHourlyServiceList, + fctDataColumnAvailabilityByEpochServiceGet, + fctDataColumnAvailabilityByEpochServiceList, + fctDataColumnAvailabilityBySlotBlobServiceGet, + fctDataColumnAvailabilityBySlotBlobServiceList, + fctDataColumnAvailabilityBySlotServiceGet, + fctDataColumnAvailabilityBySlotServiceList, + fctDataColumnAvailabilityDailyServiceGet, + fctDataColumnAvailabilityDailyServiceList, + fctDataColumnAvailabilityHourlyServiceGet, + fctDataColumnAvailabilityHourlyServiceList, + fctEngineGetBlobsByElClientHourlyServiceGet, + fctEngineGetBlobsByElClientHourlyServiceList, + fctEngineGetBlobsByElClientServiceGet, + fctEngineGetBlobsByElClientServiceList, + fctEngineGetBlobsBySlotServiceGet, + fctEngineGetBlobsBySlotServiceList, + fctEngineGetBlobsDurationChunked50MsServiceGet, + fctEngineGetBlobsDurationChunked50MsServiceList, + fctEngineNewPayloadByElClientHourlyServiceGet, + fctEngineNewPayloadByElClientHourlyServiceList, + fctEngineNewPayloadByElClientServiceGet, + fctEngineNewPayloadByElClientServiceList, + fctEngineNewPayloadBySlotServiceGet, + fctEngineNewPayloadBySlotServiceList, + fctEngineNewPayloadDurationChunked50MsServiceGet, + fctEngineNewPayloadDurationChunked50MsServiceList, + fctEngineNewPayloadWinrateDailyServiceGet, + fctEngineNewPayloadWinrateDailyServiceList, + fctEngineNewPayloadWinrateHourlyServiceGet, + fctEngineNewPayloadWinrateHourlyServiceList, + fctExecutionGasLimitDailyServiceGet, + fctExecutionGasLimitDailyServiceList, + fctExecutionGasLimitHourlyServiceGet, + fctExecutionGasLimitHourlyServiceList, + fctExecutionGasLimitSignallingDailyServiceGet, + fctExecutionGasLimitSignallingDailyServiceList, + fctExecutionGasLimitSignallingHourlyServiceGet, + fctExecutionGasLimitSignallingHourlyServiceList, + fctExecutionGasUsedDailyServiceGet, + fctExecutionGasUsedDailyServiceList, + fctExecutionGasUsedHourlyServiceGet, + fctExecutionGasUsedHourlyServiceList, + fctExecutionReceiptSizeDailyServiceGet, + fctExecutionReceiptSizeDailyServiceList, + fctExecutionReceiptSizeHourlyServiceGet, + fctExecutionReceiptSizeHourlyServiceList, + fctExecutionStateSizeDailyServiceGet, + fctExecutionStateSizeDailyServiceList, + fctExecutionStateSizeHourlyServiceGet, + fctExecutionStateSizeHourlyServiceList, + fctExecutionTpsDailyServiceGet, + fctExecutionTpsDailyServiceList, + fctExecutionTpsHourlyServiceGet, + fctExecutionTpsHourlyServiceList, + fctExecutionTransactionsDailyServiceGet, + fctExecutionTransactionsDailyServiceList, + fctExecutionTransactionsHourlyServiceGet, + fctExecutionTransactionsHourlyServiceList, + fctHeadFirstSeenByNodeServiceGet, + fctHeadFirstSeenByNodeServiceList, + fctHeadVoteCorrectnessRateDailyServiceGet, + fctHeadVoteCorrectnessRateDailyServiceList, + fctHeadVoteCorrectnessRateHourlyServiceGet, + fctHeadVoteCorrectnessRateHourlyServiceList, + fctMevBidCountByBuilderServiceGet, + fctMevBidCountByBuilderServiceList, + fctMevBidCountByRelayServiceGet, + fctMevBidCountByRelayServiceList, + fctMevBidHighestValueByBuilderChunked50MsServiceGet, + fctMevBidHighestValueByBuilderChunked50MsServiceList, + fctMissedSlotRateDailyServiceGet, + fctMissedSlotRateDailyServiceList, + fctMissedSlotRateHourlyServiceGet, + fctMissedSlotRateHourlyServiceList, + fctNodeActiveLast24hServiceGet, + fctNodeActiveLast24hServiceList, + fctNodeCpuUtilizationByProcessServiceGet, + fctNodeCpuUtilizationByProcessServiceList, + fctNodeDiskIoByProcessServiceGet, + fctNodeDiskIoByProcessServiceList, + fctNodeMemoryUsageByProcessServiceGet, + fctNodeMemoryUsageByProcessServiceList, + fctNodeNetworkIoByProcessServiceGet, + fctNodeNetworkIoByProcessServiceList, + fctOpcodeGasByOpcodeDailyServiceGet, + fctOpcodeGasByOpcodeDailyServiceList, + fctOpcodeGasByOpcodeHourlyServiceGet, + fctOpcodeGasByOpcodeHourlyServiceList, + fctOpcodeOpsDailyServiceGet, + fctOpcodeOpsDailyServiceList, + fctOpcodeOpsHourlyServiceGet, + fctOpcodeOpsHourlyServiceList, + fctPayloadBidHighestValueByBuilderChunked50MsServiceGet, + fctPayloadBidHighestValueByBuilderChunked50MsServiceList, + fctPreparedBlockServiceGet, + fctPreparedBlockServiceList, + fctProposerRewardDailyServiceGet, + fctProposerRewardDailyServiceList, + fctProposerRewardHourlyServiceGet, + fctProposerRewardHourlyServiceList, + fctReorgDailyServiceGet, + fctReorgDailyServiceList, + fctReorgHourlyServiceGet, + fctReorgHourlyServiceList, + fctRocketpoolValidatorServiceGet, + fctRocketpoolValidatorServiceList, + fctStorageSlotStateByAddressDailyServiceGet, + fctStorageSlotStateByAddressDailyServiceList, + fctStorageSlotStateByAddressHourlyServiceGet, + fctStorageSlotStateByAddressHourlyServiceList, + fctStorageSlotStateByBlockDailyServiceGet, + fctStorageSlotStateByBlockDailyServiceList, + fctStorageSlotStateByBlockHourlyServiceGet, + fctStorageSlotStateByBlockHourlyServiceList, + fctStorageSlotStateWithExpiryByAddressDailyServiceGet, + fctStorageSlotStateWithExpiryByAddressDailyServiceList, + fctStorageSlotStateWithExpiryByAddressHourlyServiceGet, + fctStorageSlotStateWithExpiryByAddressHourlyServiceList, + fctStorageSlotStateWithExpiryByBlockDailyServiceGet, + fctStorageSlotStateWithExpiryByBlockDailyServiceList, + fctStorageSlotStateWithExpiryByBlockHourlyServiceGet, + fctStorageSlotStateWithExpiryByBlockHourlyServiceList, + fctStorageSlotTop100ByBytesServiceGet, + fctStorageSlotTop100ByBytesServiceList, + fctStorageSlotTop100BySlotsServiceGet, + fctStorageSlotTop100BySlotsServiceList, + fctSyncCommitteeParticipationByValidatorDailyServiceGet, + fctSyncCommitteeParticipationByValidatorDailyServiceList, + fctSyncCommitteeParticipationByValidatorHourlyServiceGet, + fctSyncCommitteeParticipationByValidatorHourlyServiceList, + fctSyncCommitteeParticipationByValidatorServiceGet, + fctSyncCommitteeParticipationByValidatorServiceList, + fctTokenContractStorageStateByBlockDailyServiceGet, + fctTokenContractStorageStateByBlockDailyServiceList, + fctValidatorBalanceDailyServiceGet, + fctValidatorBalanceDailyServiceList, + fctValidatorBalanceHourlyServiceGet, + fctValidatorBalanceHourlyServiceList, + fctValidatorBalanceServiceGet, + fctValidatorBalanceServiceList, + fctValidatorCountByEntityByStatusDailyServiceGet, + fctValidatorCountByEntityByStatusDailyServiceList, + intAttestationAttestedCanonicalServiceGet, + intAttestationAttestedCanonicalServiceList, + intAttestationAttestedHeadServiceGet, + intAttestationAttestedHeadServiceList, + intAttestationAttestedServiceGet, + intAttestationAttestedServiceList, + intAttestationFirstSeenAggregateServiceGet, + intAttestationFirstSeenAggregateServiceList, + intAttestationFirstSeenServiceGet, + intAttestationFirstSeenServiceList, + intBeaconCommitteeHeadServiceGet, + intBeaconCommitteeHeadServiceList, + intBeaconCommitteeServiceGet, + intBeaconCommitteeServiceList, + intBlockBlobCountCanonicalServiceGet, + intBlockBlobCountCanonicalServiceList, + intBlockCanonicalServiceGet, + intBlockCanonicalServiceList, + intBlockMevCanonicalServiceGet, + intBlockMevCanonicalServiceList, + intBlockOpcodeGasServiceGet, + intBlockOpcodeGasServiceList, + intBlockPayloadPtcVoteCanonicalServiceGet, + intBlockPayloadPtcVoteCanonicalServiceList, + intBlockProposerCanonicalServiceGet, + intBlockProposerCanonicalServiceList, + intBlockReceiptSizeServiceGet, + intBlockReceiptSizeServiceList, + intBlockResourceGasServiceGet, + intBlockResourceGasServiceList, + intContractCreationServiceGet, + intContractCreationServiceList, + intContractSelfdestructServiceGet, + intContractSelfdestructServiceList, + intContractStorageExpiry12mServiceGet, + intContractStorageExpiry12mServiceList, + intContractStorageExpiry18mServiceGet, + intContractStorageExpiry18mServiceList, + intContractStorageExpiry1mServiceGet, + intContractStorageExpiry1mServiceList, + intContractStorageExpiry24mServiceGet, + intContractStorageExpiry24mServiceList, + intContractStorageExpiry6mServiceGet, + intContractStorageExpiry6mServiceList, + intContractStorageNextTouchServiceGet, + intContractStorageNextTouchServiceList, + intContractStorageReactivation12mServiceGet, + intContractStorageReactivation12mServiceList, + intContractStorageReactivation18mServiceGet, + intContractStorageReactivation18mServiceList, + intContractStorageReactivation1mServiceGet, + intContractStorageReactivation1mServiceList, + intContractStorageReactivation24mServiceGet, + intContractStorageReactivation24mServiceList, + intContractStorageReactivation6mServiceGet, + intContractStorageReactivation6mServiceList, + intContractStorageStateByAddressServiceGet, + intContractStorageStateByAddressServiceList, + intContractStorageStateByBlockServiceGet, + intContractStorageStateByBlockServiceList, + intContractStorageStateServiceGet, + intContractStorageStateServiceList, + intContractStorageStateWithExpiryByAddressServiceGet, + intContractStorageStateWithExpiryByAddressServiceList, + intContractStorageStateWithExpiryByBlockServiceGet, + intContractStorageStateWithExpiryByBlockServiceList, + intContractStorageStateWithExpiryServiceGet, + intContractStorageStateWithExpiryServiceList, + intCustodyProbeOrderBySlotServiceGet, + intCustodyProbeOrderBySlotServiceList, + intCustodyProbeServiceGet, + intCustodyProbeServiceList, + intEngineGetBlobsServiceGet, + intEngineGetBlobsServiceList, + intEngineNewPayloadFastestExecutionByNodeClassServiceGet, + intEngineNewPayloadFastestExecutionByNodeClassServiceList, + intEngineNewPayloadServiceGet, + intEngineNewPayloadServiceList, + intExecutionBlockByDateServiceGet, + intExecutionBlockByDateServiceList, + intExecutionStateSizeByBlockServiceGet, + intExecutionStateSizeByBlockServiceList, + intRocketpoolMegapoolServiceGet, + intRocketpoolMegapoolServiceList, + intRocketpoolMinipoolServiceGet, + intRocketpoolMinipoolServiceList, + intRocketpoolNodeEventServiceGet, + intRocketpoolNodeEventServiceList, + intRocketpoolNodeTimezoneServiceGet, + intRocketpoolNodeTimezoneServiceList, + intStorageSelfdestructDiffsServiceGet, + intStorageSelfdestructDiffsServiceList, + intStorageSlotDiffByAddressSlotServiceGet, + intStorageSlotDiffByAddressSlotServiceList, + intStorageSlotDiffServiceGet, + intStorageSlotDiffServiceList, + intStorageSlotExpiry12mServiceGet, + intStorageSlotExpiry12mServiceList, + intStorageSlotExpiry18mServiceGet, + intStorageSlotExpiry18mServiceList, + intStorageSlotExpiry1mServiceGet, + intStorageSlotExpiry1mServiceList, + intStorageSlotExpiry24mServiceGet, + intStorageSlotExpiry24mServiceList, + intStorageSlotExpiry6mServiceGet, + intStorageSlotExpiry6mServiceList, + intStorageSlotLifecycleBoundaryServiceGet, + intStorageSlotLifecycleBoundaryServiceList, + intStorageSlotLifecycleServiceGet, + intStorageSlotLifecycleServiceList, + intStorageSlotNextTouchServiceGet, + intStorageSlotNextTouchServiceList, + intStorageSlotReactivation12mServiceGet, + intStorageSlotReactivation12mServiceList, + intStorageSlotReactivation18mServiceGet, + intStorageSlotReactivation18mServiceList, + intStorageSlotReactivation1mServiceGet, + intStorageSlotReactivation1mServiceList, + intStorageSlotReactivation24mServiceGet, + intStorageSlotReactivation24mServiceList, + intStorageSlotReactivation6mServiceGet, + intStorageSlotReactivation6mServiceList, + intStorageSlotReadServiceGet, + intStorageSlotReadServiceList, + intStorageSlotStateByAddressServiceGet, + intStorageSlotStateByAddressServiceList, + intStorageSlotStateByBlockServiceGet, + intStorageSlotStateByBlockServiceList, + intStorageSlotStateServiceGet, + intStorageSlotStateServiceList, + intStorageSlotStateWithExpiryByAddressServiceGet, + intStorageSlotStateWithExpiryByAddressServiceList, + intStorageSlotStateWithExpiryByBlockServiceGet, + intStorageSlotStateWithExpiryByBlockServiceList, + intStorageSlotStateWithExpiryServiceGet, + intStorageSlotStateWithExpiryServiceList, + intTokenContractStorageStateByBlockServiceGet, + intTokenContractStorageStateByBlockServiceList, + intTransactionCallFrameOpcodeGasServiceGet, + intTransactionCallFrameOpcodeGasServiceList, + intTransactionCallFrameOpcodeResourceGasServiceGet, + intTransactionCallFrameOpcodeResourceGasServiceList, + intTransactionCallFrameServiceGet, + intTransactionCallFrameServiceList, + intTransactionOpcodeGasServiceGet, + intTransactionOpcodeGasServiceList, + intTransactionReceiptSizeServiceGet, + intTransactionReceiptSizeServiceList, + intTransactionResourceGasServiceGet, + intTransactionResourceGasServiceList, + type Options, +} from '../sdk.gen'; +import type { + AdminCbtIncrementalServiceGetData, + AdminCbtIncrementalServiceGetError, + AdminCbtIncrementalServiceGetResponse, + AdminCbtIncrementalServiceListData, + AdminCbtIncrementalServiceListError, + AdminCbtIncrementalServiceListResponse, + AdminCbtScheduledServiceGetData, + AdminCbtScheduledServiceGetError, + AdminCbtScheduledServiceGetResponse, + AdminCbtScheduledServiceListData, + AdminCbtScheduledServiceListError, + AdminCbtScheduledServiceListResponse, + DimBlockBlobSubmitterServiceGetData, + DimBlockBlobSubmitterServiceGetError, + DimBlockBlobSubmitterServiceGetResponse, + DimBlockBlobSubmitterServiceListData, + DimBlockBlobSubmitterServiceListError, + DimBlockBlobSubmitterServiceListResponse, + DimContractOwnerServiceGetData, + DimContractOwnerServiceGetError, + DimContractOwnerServiceGetResponse, + DimContractOwnerServiceListData, + DimContractOwnerServiceListError, + DimContractOwnerServiceListResponse, + DimFunctionSignatureServiceGetData, + DimFunctionSignatureServiceGetError, + DimFunctionSignatureServiceGetResponse, + DimFunctionSignatureServiceListData, + DimFunctionSignatureServiceListError, + DimFunctionSignatureServiceListResponse, + DimNodeServiceGetData, + DimNodeServiceGetError, + DimNodeServiceGetResponse, + DimNodeServiceListData, + DimNodeServiceListError, + DimNodeServiceListResponse, + DimRocketpoolNodeServiceGetData, + DimRocketpoolNodeServiceGetError, + DimRocketpoolNodeServiceGetResponse, + DimRocketpoolNodeServiceListData, + DimRocketpoolNodeServiceListError, + DimRocketpoolNodeServiceListResponse, + DimTokenContractServiceGetData, + DimTokenContractServiceGetError, + DimTokenContractServiceGetResponse, + DimTokenContractServiceListData, + DimTokenContractServiceListError, + DimTokenContractServiceListResponse, + DimValidatorPubkeyServiceGetData, + DimValidatorPubkeyServiceGetError, + DimValidatorPubkeyServiceGetResponse, + DimValidatorPubkeyServiceListData, + DimValidatorPubkeyServiceListError, + DimValidatorPubkeyServiceListResponse, + DimValidatorStatusServiceGetData, + DimValidatorStatusServiceGetError, + DimValidatorStatusServiceGetResponse, + DimValidatorStatusServiceListData, + DimValidatorStatusServiceListError, + DimValidatorStatusServiceListResponse, + FctAttestationCorrectnessByValidatorCanonicalServiceGetData, + FctAttestationCorrectnessByValidatorCanonicalServiceGetError, + FctAttestationCorrectnessByValidatorCanonicalServiceGetResponse, + FctAttestationCorrectnessByValidatorCanonicalServiceListData, + FctAttestationCorrectnessByValidatorCanonicalServiceListError, + FctAttestationCorrectnessByValidatorCanonicalServiceListResponse, + FctAttestationCorrectnessByValidatorHeadServiceGetData, + FctAttestationCorrectnessByValidatorHeadServiceGetError, + FctAttestationCorrectnessByValidatorHeadServiceGetResponse, + FctAttestationCorrectnessByValidatorHeadServiceListData, + FctAttestationCorrectnessByValidatorHeadServiceListError, + FctAttestationCorrectnessByValidatorHeadServiceListResponse, + FctAttestationCorrectnessByValidatorServiceGetData, + FctAttestationCorrectnessByValidatorServiceGetError, + FctAttestationCorrectnessByValidatorServiceGetResponse, + FctAttestationCorrectnessByValidatorServiceListData, + FctAttestationCorrectnessByValidatorServiceListError, + FctAttestationCorrectnessByValidatorServiceListResponse, + FctAttestationCorrectnessCanonicalServiceGetData, + FctAttestationCorrectnessCanonicalServiceGetError, + FctAttestationCorrectnessCanonicalServiceGetResponse, + FctAttestationCorrectnessCanonicalServiceListData, + FctAttestationCorrectnessCanonicalServiceListError, + FctAttestationCorrectnessCanonicalServiceListResponse, + FctAttestationCorrectnessHeadServiceGetData, + FctAttestationCorrectnessHeadServiceGetError, + FctAttestationCorrectnessHeadServiceGetResponse, + FctAttestationCorrectnessHeadServiceListData, + FctAttestationCorrectnessHeadServiceListError, + FctAttestationCorrectnessHeadServiceListResponse, + FctAttestationCorrectnessServiceGetData, + FctAttestationCorrectnessServiceGetError, + FctAttestationCorrectnessServiceGetResponse, + FctAttestationCorrectnessServiceListData, + FctAttestationCorrectnessServiceListError, + FctAttestationCorrectnessServiceListResponse, + FctAttestationFirstSeenByValidatorServiceGetData, + FctAttestationFirstSeenByValidatorServiceGetError, + FctAttestationFirstSeenByValidatorServiceGetResponse, + FctAttestationFirstSeenByValidatorServiceListData, + FctAttestationFirstSeenByValidatorServiceListError, + FctAttestationFirstSeenByValidatorServiceListResponse, + FctAttestationFirstSeenChunked50MsServiceGetData, + FctAttestationFirstSeenChunked50MsServiceGetError, + FctAttestationFirstSeenChunked50MsServiceGetResponse, + FctAttestationFirstSeenChunked50MsServiceListData, + FctAttestationFirstSeenChunked50MsServiceListError, + FctAttestationFirstSeenChunked50MsServiceListResponse, + FctAttestationInclusionDelayDailyServiceGetData, + FctAttestationInclusionDelayDailyServiceGetError, + FctAttestationInclusionDelayDailyServiceGetResponse, + FctAttestationInclusionDelayDailyServiceListData, + FctAttestationInclusionDelayDailyServiceListError, + FctAttestationInclusionDelayDailyServiceListResponse, + FctAttestationInclusionDelayHourlyServiceGetData, + FctAttestationInclusionDelayHourlyServiceGetError, + FctAttestationInclusionDelayHourlyServiceGetResponse, + FctAttestationInclusionDelayHourlyServiceListData, + FctAttestationInclusionDelayHourlyServiceListError, + FctAttestationInclusionDelayHourlyServiceListResponse, + FctAttestationLivenessByEntityHeadServiceGetData, + FctAttestationLivenessByEntityHeadServiceGetError, + FctAttestationLivenessByEntityHeadServiceGetResponse, + FctAttestationLivenessByEntityHeadServiceListData, + FctAttestationLivenessByEntityHeadServiceListError, + FctAttestationLivenessByEntityHeadServiceListResponse, + FctAttestationLivenessByEntityServiceGetData, + FctAttestationLivenessByEntityServiceGetError, + FctAttestationLivenessByEntityServiceGetResponse, + FctAttestationLivenessByEntityServiceListData, + FctAttestationLivenessByEntityServiceListError, + FctAttestationLivenessByEntityServiceListResponse, + FctAttestationObservationByNodeServiceGetData, + FctAttestationObservationByNodeServiceGetError, + FctAttestationObservationByNodeServiceGetResponse, + FctAttestationObservationByNodeServiceListData, + FctAttestationObservationByNodeServiceListError, + FctAttestationObservationByNodeServiceListResponse, + FctAttestationParticipationRateDailyServiceGetData, + FctAttestationParticipationRateDailyServiceGetError, + FctAttestationParticipationRateDailyServiceGetResponse, + FctAttestationParticipationRateDailyServiceListData, + FctAttestationParticipationRateDailyServiceListError, + FctAttestationParticipationRateDailyServiceListResponse, + FctAttestationParticipationRateHourlyServiceGetData, + FctAttestationParticipationRateHourlyServiceGetError, + FctAttestationParticipationRateHourlyServiceGetResponse, + FctAttestationParticipationRateHourlyServiceListData, + FctAttestationParticipationRateHourlyServiceListError, + FctAttestationParticipationRateHourlyServiceListResponse, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetData, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetError, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse, + FctAttestationVoteCorrectnessByValidatorDailyServiceListData, + FctAttestationVoteCorrectnessByValidatorDailyServiceListError, + FctAttestationVoteCorrectnessByValidatorDailyServiceListResponse, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetData, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetError, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListData, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListError, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse, + FctAttestationVoteCorrectnessByValidatorServiceGetData, + FctAttestationVoteCorrectnessByValidatorServiceGetError, + FctAttestationVoteCorrectnessByValidatorServiceGetResponse, + FctAttestationVoteCorrectnessByValidatorServiceListData, + FctAttestationVoteCorrectnessByValidatorServiceListError, + FctAttestationVoteCorrectnessByValidatorServiceListResponse, + FctBlobCountDailyServiceGetData, + FctBlobCountDailyServiceGetError, + FctBlobCountDailyServiceGetResponse, + FctBlobCountDailyServiceListData, + FctBlobCountDailyServiceListError, + FctBlobCountDailyServiceListResponse, + FctBlobCountHourlyServiceGetData, + FctBlobCountHourlyServiceGetError, + FctBlobCountHourlyServiceGetResponse, + FctBlobCountHourlyServiceListData, + FctBlobCountHourlyServiceListError, + FctBlobCountHourlyServiceListResponse, + FctBlockBlobCountHeadServiceGetData, + FctBlockBlobCountHeadServiceGetError, + FctBlockBlobCountHeadServiceGetResponse, + FctBlockBlobCountHeadServiceListData, + FctBlockBlobCountHeadServiceListError, + FctBlockBlobCountHeadServiceListResponse, + FctBlockBlobCountServiceGetData, + FctBlockBlobCountServiceGetError, + FctBlockBlobCountServiceGetResponse, + FctBlockBlobCountServiceListData, + FctBlockBlobCountServiceListError, + FctBlockBlobCountServiceListResponse, + FctBlockBlobFirstSeenByNodeServiceGetData, + FctBlockBlobFirstSeenByNodeServiceGetError, + FctBlockBlobFirstSeenByNodeServiceGetResponse, + FctBlockBlobFirstSeenByNodeServiceListData, + FctBlockBlobFirstSeenByNodeServiceListError, + FctBlockBlobFirstSeenByNodeServiceListResponse, + FctBlockBlobHeadServiceGetData, + FctBlockBlobHeadServiceGetError, + FctBlockBlobHeadServiceGetResponse, + FctBlockBlobHeadServiceListData, + FctBlockBlobHeadServiceListError, + FctBlockBlobHeadServiceListResponse, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetData, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetError, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListData, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListError, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse, + FctBlockDataColumnSidecarFirstSeenServiceGetData, + FctBlockDataColumnSidecarFirstSeenServiceGetError, + FctBlockDataColumnSidecarFirstSeenServiceGetResponse, + FctBlockDataColumnSidecarFirstSeenServiceListData, + FctBlockDataColumnSidecarFirstSeenServiceListError, + FctBlockDataColumnSidecarFirstSeenServiceListResponse, + FctBlockFirstSeenByNodeServiceGetData, + FctBlockFirstSeenByNodeServiceGetError, + FctBlockFirstSeenByNodeServiceGetResponse, + FctBlockFirstSeenByNodeServiceListData, + FctBlockFirstSeenByNodeServiceListError, + FctBlockFirstSeenByNodeServiceListResponse, + FctBlockHeadServiceGetData, + FctBlockHeadServiceGetError, + FctBlockHeadServiceGetResponse, + FctBlockHeadServiceListData, + FctBlockHeadServiceListError, + FctBlockHeadServiceListResponse, + FctBlockMevHeadServiceGetData, + FctBlockMevHeadServiceGetError, + FctBlockMevHeadServiceGetResponse, + FctBlockMevHeadServiceListData, + FctBlockMevHeadServiceListError, + FctBlockMevHeadServiceListResponse, + FctBlockMevServiceGetData, + FctBlockMevServiceGetError, + FctBlockMevServiceGetResponse, + FctBlockMevServiceListData, + FctBlockMevServiceListError, + FctBlockMevServiceListResponse, + FctBlockPayloadAvailableByNodeServiceGetData, + FctBlockPayloadAvailableByNodeServiceGetError, + FctBlockPayloadAvailableByNodeServiceGetResponse, + FctBlockPayloadAvailableByNodeServiceListData, + FctBlockPayloadAvailableByNodeServiceListError, + FctBlockPayloadAvailableByNodeServiceListResponse, + FctBlockPayloadBidServiceGetData, + FctBlockPayloadBidServiceGetError, + FctBlockPayloadBidServiceGetResponse, + FctBlockPayloadBidServiceListData, + FctBlockPayloadBidServiceListError, + FctBlockPayloadBidServiceListResponse, + FctBlockPayloadFirstSeenByNodeServiceGetData, + FctBlockPayloadFirstSeenByNodeServiceGetError, + FctBlockPayloadFirstSeenByNodeServiceGetResponse, + FctBlockPayloadFirstSeenByNodeServiceListData, + FctBlockPayloadFirstSeenByNodeServiceListError, + FctBlockPayloadFirstSeenByNodeServiceListResponse, + FctBlockPayloadPtcVoteHeadServiceGetData, + FctBlockPayloadPtcVoteHeadServiceGetError, + FctBlockPayloadPtcVoteHeadServiceGetResponse, + FctBlockPayloadPtcVoteHeadServiceListData, + FctBlockPayloadPtcVoteHeadServiceListError, + FctBlockPayloadPtcVoteHeadServiceListResponse, + FctBlockPayloadPtcVoteServiceGetData, + FctBlockPayloadPtcVoteServiceGetError, + FctBlockPayloadPtcVoteServiceGetResponse, + FctBlockPayloadPtcVoteServiceListData, + FctBlockPayloadPtcVoteServiceListError, + FctBlockPayloadPtcVoteServiceListResponse, + FctBlockProposalStatusDailyServiceGetData, + FctBlockProposalStatusDailyServiceGetError, + FctBlockProposalStatusDailyServiceGetResponse, + FctBlockProposalStatusDailyServiceListData, + FctBlockProposalStatusDailyServiceListError, + FctBlockProposalStatusDailyServiceListResponse, + FctBlockProposalStatusHourlyServiceGetData, + FctBlockProposalStatusHourlyServiceGetError, + FctBlockProposalStatusHourlyServiceGetResponse, + FctBlockProposalStatusHourlyServiceListData, + FctBlockProposalStatusHourlyServiceListError, + FctBlockProposalStatusHourlyServiceListResponse, + FctBlockProposerByValidatorServiceGetData, + FctBlockProposerByValidatorServiceGetError, + FctBlockProposerByValidatorServiceGetResponse, + FctBlockProposerByValidatorServiceListData, + FctBlockProposerByValidatorServiceListError, + FctBlockProposerByValidatorServiceListResponse, + FctBlockProposerEntityServiceGetData, + FctBlockProposerEntityServiceGetError, + FctBlockProposerEntityServiceGetResponse, + FctBlockProposerEntityServiceListData, + FctBlockProposerEntityServiceListError, + FctBlockProposerEntityServiceListResponse, + FctBlockProposerHeadServiceGetData, + FctBlockProposerHeadServiceGetError, + FctBlockProposerHeadServiceGetResponse, + FctBlockProposerHeadServiceListData, + FctBlockProposerHeadServiceListError, + FctBlockProposerHeadServiceListResponse, + FctBlockProposerServiceGetData, + FctBlockProposerServiceGetError, + FctBlockProposerServiceGetResponse, + FctBlockProposerServiceListData, + FctBlockProposerServiceListError, + FctBlockProposerServiceListResponse, + FctBlockServiceGetData, + FctBlockServiceGetError, + FctBlockServiceGetResponse, + FctBlockServiceListData, + FctBlockServiceListError, + FctBlockServiceListResponse, + FctContractStorageStateByAddressDailyServiceGetData, + FctContractStorageStateByAddressDailyServiceGetError, + FctContractStorageStateByAddressDailyServiceGetResponse, + FctContractStorageStateByAddressDailyServiceListData, + FctContractStorageStateByAddressDailyServiceListError, + FctContractStorageStateByAddressDailyServiceListResponse, + FctContractStorageStateByAddressHourlyServiceGetData, + FctContractStorageStateByAddressHourlyServiceGetError, + FctContractStorageStateByAddressHourlyServiceGetResponse, + FctContractStorageStateByAddressHourlyServiceListData, + FctContractStorageStateByAddressHourlyServiceListError, + FctContractStorageStateByAddressHourlyServiceListResponse, + FctContractStorageStateByBlockDailyServiceGetData, + FctContractStorageStateByBlockDailyServiceGetError, + FctContractStorageStateByBlockDailyServiceGetResponse, + FctContractStorageStateByBlockDailyServiceListData, + FctContractStorageStateByBlockDailyServiceListError, + FctContractStorageStateByBlockDailyServiceListResponse, + FctContractStorageStateByBlockHourlyServiceGetData, + FctContractStorageStateByBlockHourlyServiceGetError, + FctContractStorageStateByBlockHourlyServiceGetResponse, + FctContractStorageStateByBlockHourlyServiceListData, + FctContractStorageStateByBlockHourlyServiceListError, + FctContractStorageStateByBlockHourlyServiceListResponse, + FctContractStorageStateWithExpiryByAddressDailyServiceGetData, + FctContractStorageStateWithExpiryByAddressDailyServiceGetError, + FctContractStorageStateWithExpiryByAddressDailyServiceGetResponse, + FctContractStorageStateWithExpiryByAddressDailyServiceListData, + FctContractStorageStateWithExpiryByAddressDailyServiceListError, + FctContractStorageStateWithExpiryByAddressDailyServiceListResponse, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetData, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetError, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse, + FctContractStorageStateWithExpiryByAddressHourlyServiceListData, + FctContractStorageStateWithExpiryByAddressHourlyServiceListError, + FctContractStorageStateWithExpiryByAddressHourlyServiceListResponse, + FctContractStorageStateWithExpiryByBlockDailyServiceGetData, + FctContractStorageStateWithExpiryByBlockDailyServiceGetError, + FctContractStorageStateWithExpiryByBlockDailyServiceGetResponse, + FctContractStorageStateWithExpiryByBlockDailyServiceListData, + FctContractStorageStateWithExpiryByBlockDailyServiceListError, + FctContractStorageStateWithExpiryByBlockDailyServiceListResponse, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetData, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetError, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse, + FctContractStorageStateWithExpiryByBlockHourlyServiceListData, + FctContractStorageStateWithExpiryByBlockHourlyServiceListError, + FctContractStorageStateWithExpiryByBlockHourlyServiceListResponse, + FctDataColumnAvailabilityByEpochServiceGetData, + FctDataColumnAvailabilityByEpochServiceGetError, + FctDataColumnAvailabilityByEpochServiceGetResponse, + FctDataColumnAvailabilityByEpochServiceListData, + FctDataColumnAvailabilityByEpochServiceListError, + FctDataColumnAvailabilityByEpochServiceListResponse, + FctDataColumnAvailabilityBySlotBlobServiceGetData, + FctDataColumnAvailabilityBySlotBlobServiceGetError, + FctDataColumnAvailabilityBySlotBlobServiceGetResponse, + FctDataColumnAvailabilityBySlotBlobServiceListData, + FctDataColumnAvailabilityBySlotBlobServiceListError, + FctDataColumnAvailabilityBySlotBlobServiceListResponse, + FctDataColumnAvailabilityBySlotServiceGetData, + FctDataColumnAvailabilityBySlotServiceGetError, + FctDataColumnAvailabilityBySlotServiceGetResponse, + FctDataColumnAvailabilityBySlotServiceListData, + FctDataColumnAvailabilityBySlotServiceListError, + FctDataColumnAvailabilityBySlotServiceListResponse, + FctDataColumnAvailabilityDailyServiceGetData, + FctDataColumnAvailabilityDailyServiceGetError, + FctDataColumnAvailabilityDailyServiceGetResponse, + FctDataColumnAvailabilityDailyServiceListData, + FctDataColumnAvailabilityDailyServiceListError, + FctDataColumnAvailabilityDailyServiceListResponse, + FctDataColumnAvailabilityHourlyServiceGetData, + FctDataColumnAvailabilityHourlyServiceGetError, + FctDataColumnAvailabilityHourlyServiceGetResponse, + FctDataColumnAvailabilityHourlyServiceListData, + FctDataColumnAvailabilityHourlyServiceListError, + FctDataColumnAvailabilityHourlyServiceListResponse, + FctEngineGetBlobsByElClientHourlyServiceGetData, + FctEngineGetBlobsByElClientHourlyServiceGetError, + FctEngineGetBlobsByElClientHourlyServiceGetResponse, + FctEngineGetBlobsByElClientHourlyServiceListData, + FctEngineGetBlobsByElClientHourlyServiceListError, + FctEngineGetBlobsByElClientHourlyServiceListResponse, + FctEngineGetBlobsByElClientServiceGetData, + FctEngineGetBlobsByElClientServiceGetError, + FctEngineGetBlobsByElClientServiceGetResponse, + FctEngineGetBlobsByElClientServiceListData, + FctEngineGetBlobsByElClientServiceListError, + FctEngineGetBlobsByElClientServiceListResponse, + FctEngineGetBlobsBySlotServiceGetData, + FctEngineGetBlobsBySlotServiceGetError, + FctEngineGetBlobsBySlotServiceGetResponse, + FctEngineGetBlobsBySlotServiceListData, + FctEngineGetBlobsBySlotServiceListError, + FctEngineGetBlobsBySlotServiceListResponse, + FctEngineGetBlobsDurationChunked50MsServiceGetData, + FctEngineGetBlobsDurationChunked50MsServiceGetError, + FctEngineGetBlobsDurationChunked50MsServiceGetResponse, + FctEngineGetBlobsDurationChunked50MsServiceListData, + FctEngineGetBlobsDurationChunked50MsServiceListError, + FctEngineGetBlobsDurationChunked50MsServiceListResponse, + FctEngineNewPayloadByElClientHourlyServiceGetData, + FctEngineNewPayloadByElClientHourlyServiceGetError, + FctEngineNewPayloadByElClientHourlyServiceGetResponse, + FctEngineNewPayloadByElClientHourlyServiceListData, + FctEngineNewPayloadByElClientHourlyServiceListError, + FctEngineNewPayloadByElClientHourlyServiceListResponse, + FctEngineNewPayloadByElClientServiceGetData, + FctEngineNewPayloadByElClientServiceGetError, + FctEngineNewPayloadByElClientServiceGetResponse, + FctEngineNewPayloadByElClientServiceListData, + FctEngineNewPayloadByElClientServiceListError, + FctEngineNewPayloadByElClientServiceListResponse, + FctEngineNewPayloadBySlotServiceGetData, + FctEngineNewPayloadBySlotServiceGetError, + FctEngineNewPayloadBySlotServiceGetResponse, + FctEngineNewPayloadBySlotServiceListData, + FctEngineNewPayloadBySlotServiceListError, + FctEngineNewPayloadBySlotServiceListResponse, + FctEngineNewPayloadDurationChunked50MsServiceGetData, + FctEngineNewPayloadDurationChunked50MsServiceGetError, + FctEngineNewPayloadDurationChunked50MsServiceGetResponse, + FctEngineNewPayloadDurationChunked50MsServiceListData, + FctEngineNewPayloadDurationChunked50MsServiceListError, + FctEngineNewPayloadDurationChunked50MsServiceListResponse, + FctEngineNewPayloadWinrateDailyServiceGetData, + FctEngineNewPayloadWinrateDailyServiceGetError, + FctEngineNewPayloadWinrateDailyServiceGetResponse, + FctEngineNewPayloadWinrateDailyServiceListData, + FctEngineNewPayloadWinrateDailyServiceListError, + FctEngineNewPayloadWinrateDailyServiceListResponse, + FctEngineNewPayloadWinrateHourlyServiceGetData, + FctEngineNewPayloadWinrateHourlyServiceGetError, + FctEngineNewPayloadWinrateHourlyServiceGetResponse, + FctEngineNewPayloadWinrateHourlyServiceListData, + FctEngineNewPayloadWinrateHourlyServiceListError, + FctEngineNewPayloadWinrateHourlyServiceListResponse, + FctExecutionGasLimitDailyServiceGetData, + FctExecutionGasLimitDailyServiceGetError, + FctExecutionGasLimitDailyServiceGetResponse, + FctExecutionGasLimitDailyServiceListData, + FctExecutionGasLimitDailyServiceListError, + FctExecutionGasLimitDailyServiceListResponse, + FctExecutionGasLimitHourlyServiceGetData, + FctExecutionGasLimitHourlyServiceGetError, + FctExecutionGasLimitHourlyServiceGetResponse, + FctExecutionGasLimitHourlyServiceListData, + FctExecutionGasLimitHourlyServiceListError, + FctExecutionGasLimitHourlyServiceListResponse, + FctExecutionGasLimitSignallingDailyServiceGetData, + FctExecutionGasLimitSignallingDailyServiceGetError, + FctExecutionGasLimitSignallingDailyServiceGetResponse, + FctExecutionGasLimitSignallingDailyServiceListData, + FctExecutionGasLimitSignallingDailyServiceListError, + FctExecutionGasLimitSignallingDailyServiceListResponse, + FctExecutionGasLimitSignallingHourlyServiceGetData, + FctExecutionGasLimitSignallingHourlyServiceGetError, + FctExecutionGasLimitSignallingHourlyServiceGetResponse, + FctExecutionGasLimitSignallingHourlyServiceListData, + FctExecutionGasLimitSignallingHourlyServiceListError, + FctExecutionGasLimitSignallingHourlyServiceListResponse, + FctExecutionGasUsedDailyServiceGetData, + FctExecutionGasUsedDailyServiceGetError, + FctExecutionGasUsedDailyServiceGetResponse, + FctExecutionGasUsedDailyServiceListData, + FctExecutionGasUsedDailyServiceListError, + FctExecutionGasUsedDailyServiceListResponse, + FctExecutionGasUsedHourlyServiceGetData, + FctExecutionGasUsedHourlyServiceGetError, + FctExecutionGasUsedHourlyServiceGetResponse, + FctExecutionGasUsedHourlyServiceListData, + FctExecutionGasUsedHourlyServiceListError, + FctExecutionGasUsedHourlyServiceListResponse, + FctExecutionReceiptSizeDailyServiceGetData, + FctExecutionReceiptSizeDailyServiceGetError, + FctExecutionReceiptSizeDailyServiceGetResponse, + FctExecutionReceiptSizeDailyServiceListData, + FctExecutionReceiptSizeDailyServiceListError, + FctExecutionReceiptSizeDailyServiceListResponse, + FctExecutionReceiptSizeHourlyServiceGetData, + FctExecutionReceiptSizeHourlyServiceGetError, + FctExecutionReceiptSizeHourlyServiceGetResponse, + FctExecutionReceiptSizeHourlyServiceListData, + FctExecutionReceiptSizeHourlyServiceListError, + FctExecutionReceiptSizeHourlyServiceListResponse, + FctExecutionStateSizeDailyServiceGetData, + FctExecutionStateSizeDailyServiceGetError, + FctExecutionStateSizeDailyServiceGetResponse, + FctExecutionStateSizeDailyServiceListData, + FctExecutionStateSizeDailyServiceListError, + FctExecutionStateSizeDailyServiceListResponse, + FctExecutionStateSizeHourlyServiceGetData, + FctExecutionStateSizeHourlyServiceGetError, + FctExecutionStateSizeHourlyServiceGetResponse, + FctExecutionStateSizeHourlyServiceListData, + FctExecutionStateSizeHourlyServiceListError, + FctExecutionStateSizeHourlyServiceListResponse, + FctExecutionTpsDailyServiceGetData, + FctExecutionTpsDailyServiceGetError, + FctExecutionTpsDailyServiceGetResponse, + FctExecutionTpsDailyServiceListData, + FctExecutionTpsDailyServiceListError, + FctExecutionTpsDailyServiceListResponse, + FctExecutionTpsHourlyServiceGetData, + FctExecutionTpsHourlyServiceGetError, + FctExecutionTpsHourlyServiceGetResponse, + FctExecutionTpsHourlyServiceListData, + FctExecutionTpsHourlyServiceListError, + FctExecutionTpsHourlyServiceListResponse, + FctExecutionTransactionsDailyServiceGetData, + FctExecutionTransactionsDailyServiceGetError, + FctExecutionTransactionsDailyServiceGetResponse, + FctExecutionTransactionsDailyServiceListData, + FctExecutionTransactionsDailyServiceListError, + FctExecutionTransactionsDailyServiceListResponse, + FctExecutionTransactionsHourlyServiceGetData, + FctExecutionTransactionsHourlyServiceGetError, + FctExecutionTransactionsHourlyServiceGetResponse, + FctExecutionTransactionsHourlyServiceListData, + FctExecutionTransactionsHourlyServiceListError, + FctExecutionTransactionsHourlyServiceListResponse, + FctHeadFirstSeenByNodeServiceGetData, + FctHeadFirstSeenByNodeServiceGetError, + FctHeadFirstSeenByNodeServiceGetResponse, + FctHeadFirstSeenByNodeServiceListData, + FctHeadFirstSeenByNodeServiceListError, + FctHeadFirstSeenByNodeServiceListResponse, + FctHeadVoteCorrectnessRateDailyServiceGetData, + FctHeadVoteCorrectnessRateDailyServiceGetError, + FctHeadVoteCorrectnessRateDailyServiceGetResponse, + FctHeadVoteCorrectnessRateDailyServiceListData, + FctHeadVoteCorrectnessRateDailyServiceListError, + FctHeadVoteCorrectnessRateDailyServiceListResponse, + FctHeadVoteCorrectnessRateHourlyServiceGetData, + FctHeadVoteCorrectnessRateHourlyServiceGetError, + FctHeadVoteCorrectnessRateHourlyServiceGetResponse, + FctHeadVoteCorrectnessRateHourlyServiceListData, + FctHeadVoteCorrectnessRateHourlyServiceListError, + FctHeadVoteCorrectnessRateHourlyServiceListResponse, + FctMevBidCountByBuilderServiceGetData, + FctMevBidCountByBuilderServiceGetError, + FctMevBidCountByBuilderServiceGetResponse, + FctMevBidCountByBuilderServiceListData, + FctMevBidCountByBuilderServiceListError, + FctMevBidCountByBuilderServiceListResponse, + FctMevBidCountByRelayServiceGetData, + FctMevBidCountByRelayServiceGetError, + FctMevBidCountByRelayServiceGetResponse, + FctMevBidCountByRelayServiceListData, + FctMevBidCountByRelayServiceListError, + FctMevBidCountByRelayServiceListResponse, + FctMevBidHighestValueByBuilderChunked50MsServiceGetData, + FctMevBidHighestValueByBuilderChunked50MsServiceGetError, + FctMevBidHighestValueByBuilderChunked50MsServiceGetResponse, + FctMevBidHighestValueByBuilderChunked50MsServiceListData, + FctMevBidHighestValueByBuilderChunked50MsServiceListError, + FctMevBidHighestValueByBuilderChunked50MsServiceListResponse, + FctMissedSlotRateDailyServiceGetData, + FctMissedSlotRateDailyServiceGetError, + FctMissedSlotRateDailyServiceGetResponse, + FctMissedSlotRateDailyServiceListData, + FctMissedSlotRateDailyServiceListError, + FctMissedSlotRateDailyServiceListResponse, + FctMissedSlotRateHourlyServiceGetData, + FctMissedSlotRateHourlyServiceGetError, + FctMissedSlotRateHourlyServiceGetResponse, + FctMissedSlotRateHourlyServiceListData, + FctMissedSlotRateHourlyServiceListError, + FctMissedSlotRateHourlyServiceListResponse, + FctNodeActiveLast24hServiceGetData, + FctNodeActiveLast24hServiceGetError, + FctNodeActiveLast24hServiceGetResponse, + FctNodeActiveLast24hServiceListData, + FctNodeActiveLast24hServiceListError, + FctNodeActiveLast24hServiceListResponse, + FctNodeCpuUtilizationByProcessServiceGetData, + FctNodeCpuUtilizationByProcessServiceGetError, + FctNodeCpuUtilizationByProcessServiceGetResponse, + FctNodeCpuUtilizationByProcessServiceListData, + FctNodeCpuUtilizationByProcessServiceListError, + FctNodeCpuUtilizationByProcessServiceListResponse, + FctNodeDiskIoByProcessServiceGetData, + FctNodeDiskIoByProcessServiceGetError, + FctNodeDiskIoByProcessServiceGetResponse, + FctNodeDiskIoByProcessServiceListData, + FctNodeDiskIoByProcessServiceListError, + FctNodeDiskIoByProcessServiceListResponse, + FctNodeMemoryUsageByProcessServiceGetData, + FctNodeMemoryUsageByProcessServiceGetError, + FctNodeMemoryUsageByProcessServiceGetResponse, + FctNodeMemoryUsageByProcessServiceListData, + FctNodeMemoryUsageByProcessServiceListError, + FctNodeMemoryUsageByProcessServiceListResponse, + FctNodeNetworkIoByProcessServiceGetData, + FctNodeNetworkIoByProcessServiceGetError, + FctNodeNetworkIoByProcessServiceGetResponse, + FctNodeNetworkIoByProcessServiceListData, + FctNodeNetworkIoByProcessServiceListError, + FctNodeNetworkIoByProcessServiceListResponse, + FctOpcodeGasByOpcodeDailyServiceGetData, + FctOpcodeGasByOpcodeDailyServiceGetError, + FctOpcodeGasByOpcodeDailyServiceGetResponse, + FctOpcodeGasByOpcodeDailyServiceListData, + FctOpcodeGasByOpcodeDailyServiceListError, + FctOpcodeGasByOpcodeDailyServiceListResponse, + FctOpcodeGasByOpcodeHourlyServiceGetData, + FctOpcodeGasByOpcodeHourlyServiceGetError, + FctOpcodeGasByOpcodeHourlyServiceGetResponse, + FctOpcodeGasByOpcodeHourlyServiceListData, + FctOpcodeGasByOpcodeHourlyServiceListError, + FctOpcodeGasByOpcodeHourlyServiceListResponse, + FctOpcodeOpsDailyServiceGetData, + FctOpcodeOpsDailyServiceGetError, + FctOpcodeOpsDailyServiceGetResponse, + FctOpcodeOpsDailyServiceListData, + FctOpcodeOpsDailyServiceListError, + FctOpcodeOpsDailyServiceListResponse, + FctOpcodeOpsHourlyServiceGetData, + FctOpcodeOpsHourlyServiceGetError, + FctOpcodeOpsHourlyServiceGetResponse, + FctOpcodeOpsHourlyServiceListData, + FctOpcodeOpsHourlyServiceListError, + FctOpcodeOpsHourlyServiceListResponse, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetData, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetError, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListData, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListError, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse, + FctPreparedBlockServiceGetData, + FctPreparedBlockServiceGetError, + FctPreparedBlockServiceGetResponse, + FctPreparedBlockServiceListData, + FctPreparedBlockServiceListError, + FctPreparedBlockServiceListResponse, + FctProposerRewardDailyServiceGetData, + FctProposerRewardDailyServiceGetError, + FctProposerRewardDailyServiceGetResponse, + FctProposerRewardDailyServiceListData, + FctProposerRewardDailyServiceListError, + FctProposerRewardDailyServiceListResponse, + FctProposerRewardHourlyServiceGetData, + FctProposerRewardHourlyServiceGetError, + FctProposerRewardHourlyServiceGetResponse, + FctProposerRewardHourlyServiceListData, + FctProposerRewardHourlyServiceListError, + FctProposerRewardHourlyServiceListResponse, + FctReorgDailyServiceGetData, + FctReorgDailyServiceGetError, + FctReorgDailyServiceGetResponse, + FctReorgDailyServiceListData, + FctReorgDailyServiceListError, + FctReorgDailyServiceListResponse, + FctReorgHourlyServiceGetData, + FctReorgHourlyServiceGetError, + FctReorgHourlyServiceGetResponse, + FctReorgHourlyServiceListData, + FctReorgHourlyServiceListError, + FctReorgHourlyServiceListResponse, + FctRocketpoolValidatorServiceGetData, + FctRocketpoolValidatorServiceGetError, + FctRocketpoolValidatorServiceGetResponse, + FctRocketpoolValidatorServiceListData, + FctRocketpoolValidatorServiceListError, + FctRocketpoolValidatorServiceListResponse, + FctStorageSlotStateByAddressDailyServiceGetData, + FctStorageSlotStateByAddressDailyServiceGetError, + FctStorageSlotStateByAddressDailyServiceGetResponse, + FctStorageSlotStateByAddressDailyServiceListData, + FctStorageSlotStateByAddressDailyServiceListError, + FctStorageSlotStateByAddressDailyServiceListResponse, + FctStorageSlotStateByAddressHourlyServiceGetData, + FctStorageSlotStateByAddressHourlyServiceGetError, + FctStorageSlotStateByAddressHourlyServiceGetResponse, + FctStorageSlotStateByAddressHourlyServiceListData, + FctStorageSlotStateByAddressHourlyServiceListError, + FctStorageSlotStateByAddressHourlyServiceListResponse, + FctStorageSlotStateByBlockDailyServiceGetData, + FctStorageSlotStateByBlockDailyServiceGetError, + FctStorageSlotStateByBlockDailyServiceGetResponse, + FctStorageSlotStateByBlockDailyServiceListData, + FctStorageSlotStateByBlockDailyServiceListError, + FctStorageSlotStateByBlockDailyServiceListResponse, + FctStorageSlotStateByBlockHourlyServiceGetData, + FctStorageSlotStateByBlockHourlyServiceGetError, + FctStorageSlotStateByBlockHourlyServiceGetResponse, + FctStorageSlotStateByBlockHourlyServiceListData, + FctStorageSlotStateByBlockHourlyServiceListError, + FctStorageSlotStateByBlockHourlyServiceListResponse, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetData, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetError, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse, + FctStorageSlotStateWithExpiryByAddressDailyServiceListData, + FctStorageSlotStateWithExpiryByAddressDailyServiceListError, + FctStorageSlotStateWithExpiryByAddressDailyServiceListResponse, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetData, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetError, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListData, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListError, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetData, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetError, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse, + FctStorageSlotStateWithExpiryByBlockDailyServiceListData, + FctStorageSlotStateWithExpiryByBlockDailyServiceListError, + FctStorageSlotStateWithExpiryByBlockDailyServiceListResponse, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetData, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetError, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListData, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListError, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse, + FctStorageSlotTop100ByBytesServiceGetData, + FctStorageSlotTop100ByBytesServiceGetError, + FctStorageSlotTop100ByBytesServiceGetResponse, + FctStorageSlotTop100ByBytesServiceListData, + FctStorageSlotTop100ByBytesServiceListError, + FctStorageSlotTop100ByBytesServiceListResponse, + FctStorageSlotTop100BySlotsServiceGetData, + FctStorageSlotTop100BySlotsServiceGetError, + FctStorageSlotTop100BySlotsServiceGetResponse, + FctStorageSlotTop100BySlotsServiceListData, + FctStorageSlotTop100BySlotsServiceListError, + FctStorageSlotTop100BySlotsServiceListResponse, + FctSyncCommitteeParticipationByValidatorDailyServiceGetData, + FctSyncCommitteeParticipationByValidatorDailyServiceGetError, + FctSyncCommitteeParticipationByValidatorDailyServiceGetResponse, + FctSyncCommitteeParticipationByValidatorDailyServiceListData, + FctSyncCommitteeParticipationByValidatorDailyServiceListError, + FctSyncCommitteeParticipationByValidatorDailyServiceListResponse, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetData, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetError, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse, + FctSyncCommitteeParticipationByValidatorHourlyServiceListData, + FctSyncCommitteeParticipationByValidatorHourlyServiceListError, + FctSyncCommitteeParticipationByValidatorHourlyServiceListResponse, + FctSyncCommitteeParticipationByValidatorServiceGetData, + FctSyncCommitteeParticipationByValidatorServiceGetError, + FctSyncCommitteeParticipationByValidatorServiceGetResponse, + FctSyncCommitteeParticipationByValidatorServiceListData, + FctSyncCommitteeParticipationByValidatorServiceListError, + FctSyncCommitteeParticipationByValidatorServiceListResponse, + FctTokenContractStorageStateByBlockDailyServiceGetData, + FctTokenContractStorageStateByBlockDailyServiceGetError, + FctTokenContractStorageStateByBlockDailyServiceGetResponse, + FctTokenContractStorageStateByBlockDailyServiceListData, + FctTokenContractStorageStateByBlockDailyServiceListError, + FctTokenContractStorageStateByBlockDailyServiceListResponse, + FctValidatorBalanceDailyServiceGetData, + FctValidatorBalanceDailyServiceGetError, + FctValidatorBalanceDailyServiceGetResponse, + FctValidatorBalanceDailyServiceListData, + FctValidatorBalanceDailyServiceListError, + FctValidatorBalanceDailyServiceListResponse, + FctValidatorBalanceHourlyServiceGetData, + FctValidatorBalanceHourlyServiceGetError, + FctValidatorBalanceHourlyServiceGetResponse, + FctValidatorBalanceHourlyServiceListData, + FctValidatorBalanceHourlyServiceListError, + FctValidatorBalanceHourlyServiceListResponse, + FctValidatorBalanceServiceGetData, + FctValidatorBalanceServiceGetError, + FctValidatorBalanceServiceGetResponse, + FctValidatorBalanceServiceListData, + FctValidatorBalanceServiceListError, + FctValidatorBalanceServiceListResponse, + FctValidatorCountByEntityByStatusDailyServiceGetData, + FctValidatorCountByEntityByStatusDailyServiceGetError, + FctValidatorCountByEntityByStatusDailyServiceGetResponse, + FctValidatorCountByEntityByStatusDailyServiceListData, + FctValidatorCountByEntityByStatusDailyServiceListError, + FctValidatorCountByEntityByStatusDailyServiceListResponse, + IntAttestationAttestedCanonicalServiceGetData, + IntAttestationAttestedCanonicalServiceGetError, + IntAttestationAttestedCanonicalServiceGetResponse, + IntAttestationAttestedCanonicalServiceListData, + IntAttestationAttestedCanonicalServiceListError, + IntAttestationAttestedCanonicalServiceListResponse, + IntAttestationAttestedHeadServiceGetData, + IntAttestationAttestedHeadServiceGetError, + IntAttestationAttestedHeadServiceGetResponse, + IntAttestationAttestedHeadServiceListData, + IntAttestationAttestedHeadServiceListError, + IntAttestationAttestedHeadServiceListResponse, + IntAttestationAttestedServiceGetData, + IntAttestationAttestedServiceGetError, + IntAttestationAttestedServiceGetResponse, + IntAttestationAttestedServiceListData, + IntAttestationAttestedServiceListError, + IntAttestationAttestedServiceListResponse, + IntAttestationFirstSeenAggregateServiceGetData, + IntAttestationFirstSeenAggregateServiceGetError, + IntAttestationFirstSeenAggregateServiceGetResponse, + IntAttestationFirstSeenAggregateServiceListData, + IntAttestationFirstSeenAggregateServiceListError, + IntAttestationFirstSeenAggregateServiceListResponse, + IntAttestationFirstSeenServiceGetData, + IntAttestationFirstSeenServiceGetError, + IntAttestationFirstSeenServiceGetResponse, + IntAttestationFirstSeenServiceListData, + IntAttestationFirstSeenServiceListError, + IntAttestationFirstSeenServiceListResponse, + IntBeaconCommitteeHeadServiceGetData, + IntBeaconCommitteeHeadServiceGetError, + IntBeaconCommitteeHeadServiceGetResponse, + IntBeaconCommitteeHeadServiceListData, + IntBeaconCommitteeHeadServiceListError, + IntBeaconCommitteeHeadServiceListResponse, + IntBeaconCommitteeServiceGetData, + IntBeaconCommitteeServiceGetError, + IntBeaconCommitteeServiceGetResponse, + IntBeaconCommitteeServiceListData, + IntBeaconCommitteeServiceListError, + IntBeaconCommitteeServiceListResponse, + IntBlockBlobCountCanonicalServiceGetData, + IntBlockBlobCountCanonicalServiceGetError, + IntBlockBlobCountCanonicalServiceGetResponse, + IntBlockBlobCountCanonicalServiceListData, + IntBlockBlobCountCanonicalServiceListError, + IntBlockBlobCountCanonicalServiceListResponse, + IntBlockCanonicalServiceGetData, + IntBlockCanonicalServiceGetError, + IntBlockCanonicalServiceGetResponse, + IntBlockCanonicalServiceListData, + IntBlockCanonicalServiceListError, + IntBlockCanonicalServiceListResponse, + IntBlockMevCanonicalServiceGetData, + IntBlockMevCanonicalServiceGetError, + IntBlockMevCanonicalServiceGetResponse, + IntBlockMevCanonicalServiceListData, + IntBlockMevCanonicalServiceListError, + IntBlockMevCanonicalServiceListResponse, + IntBlockOpcodeGasServiceGetData, + IntBlockOpcodeGasServiceGetError, + IntBlockOpcodeGasServiceGetResponse, + IntBlockOpcodeGasServiceListData, + IntBlockOpcodeGasServiceListError, + IntBlockOpcodeGasServiceListResponse, + IntBlockPayloadPtcVoteCanonicalServiceGetData, + IntBlockPayloadPtcVoteCanonicalServiceGetError, + IntBlockPayloadPtcVoteCanonicalServiceGetResponse, + IntBlockPayloadPtcVoteCanonicalServiceListData, + IntBlockPayloadPtcVoteCanonicalServiceListError, + IntBlockPayloadPtcVoteCanonicalServiceListResponse, + IntBlockProposerCanonicalServiceGetData, + IntBlockProposerCanonicalServiceGetError, + IntBlockProposerCanonicalServiceGetResponse, + IntBlockProposerCanonicalServiceListData, + IntBlockProposerCanonicalServiceListError, + IntBlockProposerCanonicalServiceListResponse, + IntBlockReceiptSizeServiceGetData, + IntBlockReceiptSizeServiceGetError, + IntBlockReceiptSizeServiceGetResponse, + IntBlockReceiptSizeServiceListData, + IntBlockReceiptSizeServiceListError, + IntBlockReceiptSizeServiceListResponse, + IntBlockResourceGasServiceGetData, + IntBlockResourceGasServiceGetError, + IntBlockResourceGasServiceGetResponse, + IntBlockResourceGasServiceListData, + IntBlockResourceGasServiceListError, + IntBlockResourceGasServiceListResponse, + IntContractCreationServiceGetData, + IntContractCreationServiceGetError, + IntContractCreationServiceGetResponse, + IntContractCreationServiceListData, + IntContractCreationServiceListError, + IntContractCreationServiceListResponse, + IntContractSelfdestructServiceGetData, + IntContractSelfdestructServiceGetError, + IntContractSelfdestructServiceGetResponse, + IntContractSelfdestructServiceListData, + IntContractSelfdestructServiceListError, + IntContractSelfdestructServiceListResponse, + IntContractStorageExpiry12mServiceGetData, + IntContractStorageExpiry12mServiceGetError, + IntContractStorageExpiry12mServiceGetResponse, + IntContractStorageExpiry12mServiceListData, + IntContractStorageExpiry12mServiceListError, + IntContractStorageExpiry12mServiceListResponse, + IntContractStorageExpiry18mServiceGetData, + IntContractStorageExpiry18mServiceGetError, + IntContractStorageExpiry18mServiceGetResponse, + IntContractStorageExpiry18mServiceListData, + IntContractStorageExpiry18mServiceListError, + IntContractStorageExpiry18mServiceListResponse, + IntContractStorageExpiry1mServiceGetData, + IntContractStorageExpiry1mServiceGetError, + IntContractStorageExpiry1mServiceGetResponse, + IntContractStorageExpiry1mServiceListData, + IntContractStorageExpiry1mServiceListError, + IntContractStorageExpiry1mServiceListResponse, + IntContractStorageExpiry24mServiceGetData, + IntContractStorageExpiry24mServiceGetError, + IntContractStorageExpiry24mServiceGetResponse, + IntContractStorageExpiry24mServiceListData, + IntContractStorageExpiry24mServiceListError, + IntContractStorageExpiry24mServiceListResponse, + IntContractStorageExpiry6mServiceGetData, + IntContractStorageExpiry6mServiceGetError, + IntContractStorageExpiry6mServiceGetResponse, + IntContractStorageExpiry6mServiceListData, + IntContractStorageExpiry6mServiceListError, + IntContractStorageExpiry6mServiceListResponse, + IntContractStorageNextTouchServiceGetData, + IntContractStorageNextTouchServiceGetError, + IntContractStorageNextTouchServiceGetResponse, + IntContractStorageNextTouchServiceListData, + IntContractStorageNextTouchServiceListError, + IntContractStorageNextTouchServiceListResponse, + IntContractStorageReactivation12mServiceGetData, + IntContractStorageReactivation12mServiceGetError, + IntContractStorageReactivation12mServiceGetResponse, + IntContractStorageReactivation12mServiceListData, + IntContractStorageReactivation12mServiceListError, + IntContractStorageReactivation12mServiceListResponse, + IntContractStorageReactivation18mServiceGetData, + IntContractStorageReactivation18mServiceGetError, + IntContractStorageReactivation18mServiceGetResponse, + IntContractStorageReactivation18mServiceListData, + IntContractStorageReactivation18mServiceListError, + IntContractStorageReactivation18mServiceListResponse, + IntContractStorageReactivation1mServiceGetData, + IntContractStorageReactivation1mServiceGetError, + IntContractStorageReactivation1mServiceGetResponse, + IntContractStorageReactivation1mServiceListData, + IntContractStorageReactivation1mServiceListError, + IntContractStorageReactivation1mServiceListResponse, + IntContractStorageReactivation24mServiceGetData, + IntContractStorageReactivation24mServiceGetError, + IntContractStorageReactivation24mServiceGetResponse, + IntContractStorageReactivation24mServiceListData, + IntContractStorageReactivation24mServiceListError, + IntContractStorageReactivation24mServiceListResponse, + IntContractStorageReactivation6mServiceGetData, + IntContractStorageReactivation6mServiceGetError, + IntContractStorageReactivation6mServiceGetResponse, + IntContractStorageReactivation6mServiceListData, + IntContractStorageReactivation6mServiceListError, + IntContractStorageReactivation6mServiceListResponse, + IntContractStorageStateByAddressServiceGetData, + IntContractStorageStateByAddressServiceGetError, + IntContractStorageStateByAddressServiceGetResponse, + IntContractStorageStateByAddressServiceListData, + IntContractStorageStateByAddressServiceListError, + IntContractStorageStateByAddressServiceListResponse, + IntContractStorageStateByBlockServiceGetData, + IntContractStorageStateByBlockServiceGetError, + IntContractStorageStateByBlockServiceGetResponse, + IntContractStorageStateByBlockServiceListData, + IntContractStorageStateByBlockServiceListError, + IntContractStorageStateByBlockServiceListResponse, + IntContractStorageStateServiceGetData, + IntContractStorageStateServiceGetError, + IntContractStorageStateServiceGetResponse, + IntContractStorageStateServiceListData, + IntContractStorageStateServiceListError, + IntContractStorageStateServiceListResponse, + IntContractStorageStateWithExpiryByAddressServiceGetData, + IntContractStorageStateWithExpiryByAddressServiceGetError, + IntContractStorageStateWithExpiryByAddressServiceGetResponse, + IntContractStorageStateWithExpiryByAddressServiceListData, + IntContractStorageStateWithExpiryByAddressServiceListError, + IntContractStorageStateWithExpiryByAddressServiceListResponse, + IntContractStorageStateWithExpiryByBlockServiceGetData, + IntContractStorageStateWithExpiryByBlockServiceGetError, + IntContractStorageStateWithExpiryByBlockServiceGetResponse, + IntContractStorageStateWithExpiryByBlockServiceListData, + IntContractStorageStateWithExpiryByBlockServiceListError, + IntContractStorageStateWithExpiryByBlockServiceListResponse, + IntContractStorageStateWithExpiryServiceGetData, + IntContractStorageStateWithExpiryServiceGetError, + IntContractStorageStateWithExpiryServiceGetResponse, + IntContractStorageStateWithExpiryServiceListData, + IntContractStorageStateWithExpiryServiceListError, + IntContractStorageStateWithExpiryServiceListResponse, + IntCustodyProbeOrderBySlotServiceGetData, + IntCustodyProbeOrderBySlotServiceGetError, + IntCustodyProbeOrderBySlotServiceGetResponse, + IntCustodyProbeOrderBySlotServiceListData, + IntCustodyProbeOrderBySlotServiceListError, + IntCustodyProbeOrderBySlotServiceListResponse, + IntCustodyProbeServiceGetData, + IntCustodyProbeServiceGetError, + IntCustodyProbeServiceGetResponse, + IntCustodyProbeServiceListData, + IntCustodyProbeServiceListError, + IntCustodyProbeServiceListResponse, + IntEngineGetBlobsServiceGetData, + IntEngineGetBlobsServiceGetError, + IntEngineGetBlobsServiceGetResponse, + IntEngineGetBlobsServiceListData, + IntEngineGetBlobsServiceListError, + IntEngineGetBlobsServiceListResponse, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetData, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetError, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListData, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListError, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse, + IntEngineNewPayloadServiceGetData, + IntEngineNewPayloadServiceGetError, + IntEngineNewPayloadServiceGetResponse, + IntEngineNewPayloadServiceListData, + IntEngineNewPayloadServiceListError, + IntEngineNewPayloadServiceListResponse, + IntExecutionBlockByDateServiceGetData, + IntExecutionBlockByDateServiceGetError, + IntExecutionBlockByDateServiceGetResponse, + IntExecutionBlockByDateServiceListData, + IntExecutionBlockByDateServiceListError, + IntExecutionBlockByDateServiceListResponse, + IntExecutionStateSizeByBlockServiceGetData, + IntExecutionStateSizeByBlockServiceGetError, + IntExecutionStateSizeByBlockServiceGetResponse, + IntExecutionStateSizeByBlockServiceListData, + IntExecutionStateSizeByBlockServiceListError, + IntExecutionStateSizeByBlockServiceListResponse, + IntRocketpoolMegapoolServiceGetData, + IntRocketpoolMegapoolServiceGetError, + IntRocketpoolMegapoolServiceGetResponse, + IntRocketpoolMegapoolServiceListData, + IntRocketpoolMegapoolServiceListError, + IntRocketpoolMegapoolServiceListResponse, + IntRocketpoolMinipoolServiceGetData, + IntRocketpoolMinipoolServiceGetError, + IntRocketpoolMinipoolServiceGetResponse, + IntRocketpoolMinipoolServiceListData, + IntRocketpoolMinipoolServiceListError, + IntRocketpoolMinipoolServiceListResponse, + IntRocketpoolNodeEventServiceGetData, + IntRocketpoolNodeEventServiceGetError, + IntRocketpoolNodeEventServiceGetResponse, + IntRocketpoolNodeEventServiceListData, + IntRocketpoolNodeEventServiceListError, + IntRocketpoolNodeEventServiceListResponse, + IntRocketpoolNodeTimezoneServiceGetData, + IntRocketpoolNodeTimezoneServiceGetError, + IntRocketpoolNodeTimezoneServiceGetResponse, + IntRocketpoolNodeTimezoneServiceListData, + IntRocketpoolNodeTimezoneServiceListError, + IntRocketpoolNodeTimezoneServiceListResponse, + IntStorageSelfdestructDiffsServiceGetData, + IntStorageSelfdestructDiffsServiceGetError, + IntStorageSelfdestructDiffsServiceGetResponse, + IntStorageSelfdestructDiffsServiceListData, + IntStorageSelfdestructDiffsServiceListError, + IntStorageSelfdestructDiffsServiceListResponse, + IntStorageSlotDiffByAddressSlotServiceGetData, + IntStorageSlotDiffByAddressSlotServiceGetError, + IntStorageSlotDiffByAddressSlotServiceGetResponse, + IntStorageSlotDiffByAddressSlotServiceListData, + IntStorageSlotDiffByAddressSlotServiceListError, + IntStorageSlotDiffByAddressSlotServiceListResponse, + IntStorageSlotDiffServiceGetData, + IntStorageSlotDiffServiceGetError, + IntStorageSlotDiffServiceGetResponse, + IntStorageSlotDiffServiceListData, + IntStorageSlotDiffServiceListError, + IntStorageSlotDiffServiceListResponse, + IntStorageSlotExpiry12mServiceGetData, + IntStorageSlotExpiry12mServiceGetError, + IntStorageSlotExpiry12mServiceGetResponse, + IntStorageSlotExpiry12mServiceListData, + IntStorageSlotExpiry12mServiceListError, + IntStorageSlotExpiry12mServiceListResponse, + IntStorageSlotExpiry18mServiceGetData, + IntStorageSlotExpiry18mServiceGetError, + IntStorageSlotExpiry18mServiceGetResponse, + IntStorageSlotExpiry18mServiceListData, + IntStorageSlotExpiry18mServiceListError, + IntStorageSlotExpiry18mServiceListResponse, + IntStorageSlotExpiry1mServiceGetData, + IntStorageSlotExpiry1mServiceGetError, + IntStorageSlotExpiry1mServiceGetResponse, + IntStorageSlotExpiry1mServiceListData, + IntStorageSlotExpiry1mServiceListError, + IntStorageSlotExpiry1mServiceListResponse, + IntStorageSlotExpiry24mServiceGetData, + IntStorageSlotExpiry24mServiceGetError, + IntStorageSlotExpiry24mServiceGetResponse, + IntStorageSlotExpiry24mServiceListData, + IntStorageSlotExpiry24mServiceListError, + IntStorageSlotExpiry24mServiceListResponse, + IntStorageSlotExpiry6mServiceGetData, + IntStorageSlotExpiry6mServiceGetError, + IntStorageSlotExpiry6mServiceGetResponse, + IntStorageSlotExpiry6mServiceListData, + IntStorageSlotExpiry6mServiceListError, + IntStorageSlotExpiry6mServiceListResponse, + IntStorageSlotLifecycleBoundaryServiceGetData, + IntStorageSlotLifecycleBoundaryServiceGetError, + IntStorageSlotLifecycleBoundaryServiceGetResponse, + IntStorageSlotLifecycleBoundaryServiceListData, + IntStorageSlotLifecycleBoundaryServiceListError, + IntStorageSlotLifecycleBoundaryServiceListResponse, + IntStorageSlotLifecycleServiceGetData, + IntStorageSlotLifecycleServiceGetError, + IntStorageSlotLifecycleServiceGetResponse, + IntStorageSlotLifecycleServiceListData, + IntStorageSlotLifecycleServiceListError, + IntStorageSlotLifecycleServiceListResponse, + IntStorageSlotNextTouchServiceGetData, + IntStorageSlotNextTouchServiceGetError, + IntStorageSlotNextTouchServiceGetResponse, + IntStorageSlotNextTouchServiceListData, + IntStorageSlotNextTouchServiceListError, + IntStorageSlotNextTouchServiceListResponse, + IntStorageSlotReactivation12mServiceGetData, + IntStorageSlotReactivation12mServiceGetError, + IntStorageSlotReactivation12mServiceGetResponse, + IntStorageSlotReactivation12mServiceListData, + IntStorageSlotReactivation12mServiceListError, + IntStorageSlotReactivation12mServiceListResponse, + IntStorageSlotReactivation18mServiceGetData, + IntStorageSlotReactivation18mServiceGetError, + IntStorageSlotReactivation18mServiceGetResponse, + IntStorageSlotReactivation18mServiceListData, + IntStorageSlotReactivation18mServiceListError, + IntStorageSlotReactivation18mServiceListResponse, + IntStorageSlotReactivation1mServiceGetData, + IntStorageSlotReactivation1mServiceGetError, + IntStorageSlotReactivation1mServiceGetResponse, + IntStorageSlotReactivation1mServiceListData, + IntStorageSlotReactivation1mServiceListError, + IntStorageSlotReactivation1mServiceListResponse, + IntStorageSlotReactivation24mServiceGetData, + IntStorageSlotReactivation24mServiceGetError, + IntStorageSlotReactivation24mServiceGetResponse, + IntStorageSlotReactivation24mServiceListData, + IntStorageSlotReactivation24mServiceListError, + IntStorageSlotReactivation24mServiceListResponse, + IntStorageSlotReactivation6mServiceGetData, + IntStorageSlotReactivation6mServiceGetError, + IntStorageSlotReactivation6mServiceGetResponse, + IntStorageSlotReactivation6mServiceListData, + IntStorageSlotReactivation6mServiceListError, + IntStorageSlotReactivation6mServiceListResponse, + IntStorageSlotReadServiceGetData, + IntStorageSlotReadServiceGetError, + IntStorageSlotReadServiceGetResponse, + IntStorageSlotReadServiceListData, + IntStorageSlotReadServiceListError, + IntStorageSlotReadServiceListResponse, + IntStorageSlotStateByAddressServiceGetData, + IntStorageSlotStateByAddressServiceGetError, + IntStorageSlotStateByAddressServiceGetResponse, + IntStorageSlotStateByAddressServiceListData, + IntStorageSlotStateByAddressServiceListError, + IntStorageSlotStateByAddressServiceListResponse, + IntStorageSlotStateByBlockServiceGetData, + IntStorageSlotStateByBlockServiceGetError, + IntStorageSlotStateByBlockServiceGetResponse, + IntStorageSlotStateByBlockServiceListData, + IntStorageSlotStateByBlockServiceListError, + IntStorageSlotStateByBlockServiceListResponse, + IntStorageSlotStateServiceGetData, + IntStorageSlotStateServiceGetError, + IntStorageSlotStateServiceGetResponse, + IntStorageSlotStateServiceListData, + IntStorageSlotStateServiceListError, + IntStorageSlotStateServiceListResponse, + IntStorageSlotStateWithExpiryByAddressServiceGetData, + IntStorageSlotStateWithExpiryByAddressServiceGetError, + IntStorageSlotStateWithExpiryByAddressServiceGetResponse, + IntStorageSlotStateWithExpiryByAddressServiceListData, + IntStorageSlotStateWithExpiryByAddressServiceListError, + IntStorageSlotStateWithExpiryByAddressServiceListResponse, + IntStorageSlotStateWithExpiryByBlockServiceGetData, + IntStorageSlotStateWithExpiryByBlockServiceGetError, + IntStorageSlotStateWithExpiryByBlockServiceGetResponse, + IntStorageSlotStateWithExpiryByBlockServiceListData, + IntStorageSlotStateWithExpiryByBlockServiceListError, + IntStorageSlotStateWithExpiryByBlockServiceListResponse, + IntStorageSlotStateWithExpiryServiceGetData, + IntStorageSlotStateWithExpiryServiceGetError, + IntStorageSlotStateWithExpiryServiceGetResponse, + IntStorageSlotStateWithExpiryServiceListData, + IntStorageSlotStateWithExpiryServiceListError, + IntStorageSlotStateWithExpiryServiceListResponse, + IntTokenContractStorageStateByBlockServiceGetData, + IntTokenContractStorageStateByBlockServiceGetError, + IntTokenContractStorageStateByBlockServiceGetResponse, + IntTokenContractStorageStateByBlockServiceListData, + IntTokenContractStorageStateByBlockServiceListError, + IntTokenContractStorageStateByBlockServiceListResponse, + IntTransactionCallFrameOpcodeGasServiceGetData, + IntTransactionCallFrameOpcodeGasServiceGetError, + IntTransactionCallFrameOpcodeGasServiceGetResponse, + IntTransactionCallFrameOpcodeGasServiceListData, + IntTransactionCallFrameOpcodeGasServiceListError, + IntTransactionCallFrameOpcodeGasServiceListResponse, + IntTransactionCallFrameOpcodeResourceGasServiceGetData, + IntTransactionCallFrameOpcodeResourceGasServiceGetError, + IntTransactionCallFrameOpcodeResourceGasServiceGetResponse, + IntTransactionCallFrameOpcodeResourceGasServiceListData, + IntTransactionCallFrameOpcodeResourceGasServiceListError, + IntTransactionCallFrameOpcodeResourceGasServiceListResponse, + IntTransactionCallFrameServiceGetData, + IntTransactionCallFrameServiceGetError, + IntTransactionCallFrameServiceGetResponse, + IntTransactionCallFrameServiceListData, + IntTransactionCallFrameServiceListError, + IntTransactionCallFrameServiceListResponse, + IntTransactionOpcodeGasServiceGetData, + IntTransactionOpcodeGasServiceGetError, + IntTransactionOpcodeGasServiceGetResponse, + IntTransactionOpcodeGasServiceListData, + IntTransactionOpcodeGasServiceListError, + IntTransactionOpcodeGasServiceListResponse, + IntTransactionReceiptSizeServiceGetData, + IntTransactionReceiptSizeServiceGetError, + IntTransactionReceiptSizeServiceGetResponse, + IntTransactionReceiptSizeServiceListData, + IntTransactionReceiptSizeServiceListError, + IntTransactionReceiptSizeServiceListResponse, + IntTransactionResourceGasServiceGetData, + IntTransactionResourceGasServiceGetError, + IntTransactionResourceGasServiceGetResponse, + IntTransactionResourceGasServiceListData, + IntTransactionResourceGasServiceListError, + IntTransactionResourceGasServiceListResponse, +} from '../types.gen'; export type QueryKey = [ - Pick & { - _id: string; - _infinite?: boolean; - tags?: ReadonlyArray; - } + Pick & { + _id: string; + _infinite?: boolean; + tags?: ReadonlyArray; + }, ]; -const createQueryKey = (id: string, options?: TOptions, infinite?: boolean, tags?: ReadonlyArray): [ - QueryKey[0] -] => { - const params: QueryKey[0] = { _id: id, baseUrl: options?.baseUrl || (options?.client ?? client).getConfig().baseUrl } as QueryKey[0]; - if (infinite) { - params._infinite = infinite; - } - if (tags) { - params.tags = tags; - } - if (options?.body) { - params.body = options.body; - } - if (options?.headers) { - params.headers = options.headers; - } - if (options?.path) { - params.path = options.path; - } - if (options?.query) { - params.query = options.query; - } - return [params]; +const createQueryKey = ( + id: string, + options?: TOptions, + infinite?: boolean, + tags?: ReadonlyArray +): [QueryKey[0]] => { + const params: QueryKey[0] = { + _id: id, + baseUrl: options?.baseUrl || (options?.client ?? client).getConfig().baseUrl, + } as QueryKey[0]; + if (infinite) { + params._infinite = infinite; + } + if (tags) { + params.tags = tags; + } + if (options?.body) { + params.body = options.body; + } + if (options?.headers) { + params.headers = options.headers; + } + if (options?.path) { + params.path = options.path; + } + if (options?.query) { + params.query = options.query; + } + return [params]; }; -export const adminCbtIncrementalServiceListQueryKey = (options?: Options) => createQueryKey('adminCbtIncrementalServiceList', options); +export const adminCbtIncrementalServiceListQueryKey = (options?: Options) => + createQueryKey('adminCbtIncrementalServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const adminCbtIncrementalServiceListOptions = (options?: Options) => queryOptions>({ +export const adminCbtIncrementalServiceListOptions = (options?: Options) => + queryOptions< + AdminCbtIncrementalServiceListResponse, + AdminCbtIncrementalServiceListError, + AdminCbtIncrementalServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await adminCbtIncrementalServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await adminCbtIncrementalServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: adminCbtIncrementalServiceListQueryKey(options) -}); + queryKey: adminCbtIncrementalServiceListQueryKey(options), + }); -export const adminCbtIncrementalServiceGetQueryKey = (options: Options) => createQueryKey('adminCbtIncrementalServiceGet', options); +export const adminCbtIncrementalServiceGetQueryKey = (options: Options) => + createQueryKey('adminCbtIncrementalServiceGet', options); /** * Get record * * Retrieve a single record by database */ -export const adminCbtIncrementalServiceGetOptions = (options: Options) => queryOptions>({ +export const adminCbtIncrementalServiceGetOptions = (options: Options) => + queryOptions< + AdminCbtIncrementalServiceGetResponse, + AdminCbtIncrementalServiceGetError, + AdminCbtIncrementalServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await adminCbtIncrementalServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await adminCbtIncrementalServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: adminCbtIncrementalServiceGetQueryKey(options) -}); + queryKey: adminCbtIncrementalServiceGetQueryKey(options), + }); -export const dimBlockBlobSubmitterServiceListQueryKey = (options?: Options) => createQueryKey('dimBlockBlobSubmitterServiceList', options); +export const adminCbtScheduledServiceListQueryKey = (options?: Options) => + createQueryKey('adminCbtScheduledServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimBlockBlobSubmitterServiceListOptions = (options?: Options) => queryOptions>({ +export const adminCbtScheduledServiceListOptions = (options?: Options) => + queryOptions< + AdminCbtScheduledServiceListResponse, + AdminCbtScheduledServiceListError, + AdminCbtScheduledServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimBlockBlobSubmitterServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await adminCbtScheduledServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimBlockBlobSubmitterServiceListQueryKey(options) -}); + queryKey: adminCbtScheduledServiceListQueryKey(options), + }); -export const dimBlockBlobSubmitterServiceGetQueryKey = (options: Options) => createQueryKey('dimBlockBlobSubmitterServiceGet', options); +export const adminCbtScheduledServiceGetQueryKey = (options: Options) => + createQueryKey('adminCbtScheduledServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by database + */ +export const adminCbtScheduledServiceGetOptions = (options: Options) => + queryOptions< + AdminCbtScheduledServiceGetResponse, + AdminCbtScheduledServiceGetError, + AdminCbtScheduledServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await adminCbtScheduledServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: adminCbtScheduledServiceGetQueryKey(options), + }); + +export const dimBlockBlobSubmitterServiceListQueryKey = (options?: Options) => + createQueryKey('dimBlockBlobSubmitterServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const dimBlockBlobSubmitterServiceListOptions = (options?: Options) => + queryOptions< + DimBlockBlobSubmitterServiceListResponse, + DimBlockBlobSubmitterServiceListError, + DimBlockBlobSubmitterServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await dimBlockBlobSubmitterServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: dimBlockBlobSubmitterServiceListQueryKey(options), + }); + +export const dimBlockBlobSubmitterServiceGetQueryKey = (options: Options) => + createQueryKey('dimBlockBlobSubmitterServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const dimBlockBlobSubmitterServiceGetOptions = (options: Options) => queryOptions>({ +export const dimBlockBlobSubmitterServiceGetOptions = (options: Options) => + queryOptions< + DimBlockBlobSubmitterServiceGetResponse, + DimBlockBlobSubmitterServiceGetError, + DimBlockBlobSubmitterServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimBlockBlobSubmitterServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimBlockBlobSubmitterServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimBlockBlobSubmitterServiceGetQueryKey(options) -}); + queryKey: dimBlockBlobSubmitterServiceGetQueryKey(options), + }); -export const dimContractOwnerServiceListQueryKey = (options?: Options) => createQueryKey('dimContractOwnerServiceList', options); +export const dimContractOwnerServiceListQueryKey = (options?: Options) => + createQueryKey('dimContractOwnerServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimContractOwnerServiceListOptions = (options?: Options) => queryOptions>({ +export const dimContractOwnerServiceListOptions = (options?: Options) => + queryOptions< + DimContractOwnerServiceListResponse, + DimContractOwnerServiceListError, + DimContractOwnerServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimContractOwnerServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimContractOwnerServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimContractOwnerServiceListQueryKey(options) -}); + queryKey: dimContractOwnerServiceListQueryKey(options), + }); -export const dimContractOwnerServiceGetQueryKey = (options: Options) => createQueryKey('dimContractOwnerServiceGet', options); +export const dimContractOwnerServiceGetQueryKey = (options: Options) => + createQueryKey('dimContractOwnerServiceGet', options); /** * Get record * * Retrieve a single record by contract_address */ -export const dimContractOwnerServiceGetOptions = (options: Options) => queryOptions>({ +export const dimContractOwnerServiceGetOptions = (options: Options) => + queryOptions< + DimContractOwnerServiceGetResponse, + DimContractOwnerServiceGetError, + DimContractOwnerServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimContractOwnerServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimContractOwnerServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimContractOwnerServiceGetQueryKey(options) -}); + queryKey: dimContractOwnerServiceGetQueryKey(options), + }); -export const dimFunctionSignatureServiceListQueryKey = (options?: Options) => createQueryKey('dimFunctionSignatureServiceList', options); +export const dimFunctionSignatureServiceListQueryKey = (options?: Options) => + createQueryKey('dimFunctionSignatureServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimFunctionSignatureServiceListOptions = (options?: Options) => queryOptions>({ +export const dimFunctionSignatureServiceListOptions = (options?: Options) => + queryOptions< + DimFunctionSignatureServiceListResponse, + DimFunctionSignatureServiceListError, + DimFunctionSignatureServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimFunctionSignatureServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimFunctionSignatureServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimFunctionSignatureServiceListQueryKey(options) -}); + queryKey: dimFunctionSignatureServiceListQueryKey(options), + }); -export const dimFunctionSignatureServiceGetQueryKey = (options: Options) => createQueryKey('dimFunctionSignatureServiceGet', options); +export const dimFunctionSignatureServiceGetQueryKey = (options: Options) => + createQueryKey('dimFunctionSignatureServiceGet', options); /** * Get record * * Retrieve a single record by selector */ -export const dimFunctionSignatureServiceGetOptions = (options: Options) => queryOptions>({ +export const dimFunctionSignatureServiceGetOptions = (options: Options) => + queryOptions< + DimFunctionSignatureServiceGetResponse, + DimFunctionSignatureServiceGetError, + DimFunctionSignatureServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimFunctionSignatureServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimFunctionSignatureServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimFunctionSignatureServiceGetQueryKey(options) -}); + queryKey: dimFunctionSignatureServiceGetQueryKey(options), + }); -export const dimNodeServiceListQueryKey = (options?: Options) => createQueryKey('dimNodeServiceList', options); +export const dimNodeServiceListQueryKey = (options?: Options) => + createQueryKey('dimNodeServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimNodeServiceListOptions = (options?: Options) => queryOptions>({ +export const dimNodeServiceListOptions = (options?: Options) => + queryOptions< + DimNodeServiceListResponse, + DimNodeServiceListError, + DimNodeServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimNodeServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimNodeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimNodeServiceListQueryKey(options) -}); + queryKey: dimNodeServiceListQueryKey(options), + }); -export const dimNodeServiceGetQueryKey = (options: Options) => createQueryKey('dimNodeServiceGet', options); +export const dimNodeServiceGetQueryKey = (options: Options) => + createQueryKey('dimNodeServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const dimNodeServiceGetOptions = (options: Options) => queryOptions>({ +export const dimNodeServiceGetOptions = (options: Options) => + queryOptions< + DimNodeServiceGetResponse, + DimNodeServiceGetError, + DimNodeServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimNodeServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimNodeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimNodeServiceGetQueryKey(options) -}); + queryKey: dimNodeServiceGetQueryKey(options), + }); -export const dimRocketpoolNodeServiceListQueryKey = (options?: Options) => createQueryKey('dimRocketpoolNodeServiceList', options); +export const dimRocketpoolNodeServiceListQueryKey = (options?: Options) => + createQueryKey('dimRocketpoolNodeServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimRocketpoolNodeServiceListOptions = (options?: Options) => queryOptions>({ +export const dimRocketpoolNodeServiceListOptions = (options?: Options) => + queryOptions< + DimRocketpoolNodeServiceListResponse, + DimRocketpoolNodeServiceListError, + DimRocketpoolNodeServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimRocketpoolNodeServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimRocketpoolNodeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimRocketpoolNodeServiceListQueryKey(options) -}); + queryKey: dimRocketpoolNodeServiceListQueryKey(options), + }); -export const dimRocketpoolNodeServiceGetQueryKey = (options: Options) => createQueryKey('dimRocketpoolNodeServiceGet', options); +export const dimRocketpoolNodeServiceGetQueryKey = (options: Options) => + createQueryKey('dimRocketpoolNodeServiceGet', options); /** * Get record * * Retrieve a single record by node_operator */ -export const dimRocketpoolNodeServiceGetOptions = (options: Options) => queryOptions>({ +export const dimRocketpoolNodeServiceGetOptions = (options: Options) => + queryOptions< + DimRocketpoolNodeServiceGetResponse, + DimRocketpoolNodeServiceGetError, + DimRocketpoolNodeServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimRocketpoolNodeServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimRocketpoolNodeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimRocketpoolNodeServiceGetQueryKey(options) -}); + queryKey: dimRocketpoolNodeServiceGetQueryKey(options), + }); -export const dimTokenContractServiceListQueryKey = (options?: Options) => createQueryKey('dimTokenContractServiceList', options); +export const dimTokenContractServiceListQueryKey = (options?: Options) => + createQueryKey('dimTokenContractServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimTokenContractServiceListOptions = (options?: Options) => queryOptions>({ +export const dimTokenContractServiceListOptions = (options?: Options) => + queryOptions< + DimTokenContractServiceListResponse, + DimTokenContractServiceListError, + DimTokenContractServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimTokenContractServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimTokenContractServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimTokenContractServiceListQueryKey(options) -}); + queryKey: dimTokenContractServiceListQueryKey(options), + }); -export const dimTokenContractServiceGetQueryKey = (options: Options) => createQueryKey('dimTokenContractServiceGet', options); +export const dimTokenContractServiceGetQueryKey = (options: Options) => + createQueryKey('dimTokenContractServiceGet', options); /** * Get record * * Retrieve a single record by contract_address */ -export const dimTokenContractServiceGetOptions = (options: Options) => queryOptions>({ +export const dimTokenContractServiceGetOptions = (options: Options) => + queryOptions< + DimTokenContractServiceGetResponse, + DimTokenContractServiceGetError, + DimTokenContractServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimTokenContractServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimTokenContractServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimTokenContractServiceGetQueryKey(options) -}); + queryKey: dimTokenContractServiceGetQueryKey(options), + }); -export const dimValidatorPubkeyServiceListQueryKey = (options?: Options) => createQueryKey('dimValidatorPubkeyServiceList', options); +export const dimValidatorPubkeyServiceListQueryKey = (options?: Options) => + createQueryKey('dimValidatorPubkeyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimValidatorPubkeyServiceListOptions = (options?: Options) => queryOptions>({ +export const dimValidatorPubkeyServiceListOptions = (options?: Options) => + queryOptions< + DimValidatorPubkeyServiceListResponse, + DimValidatorPubkeyServiceListError, + DimValidatorPubkeyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimValidatorPubkeyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimValidatorPubkeyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimValidatorPubkeyServiceListQueryKey(options) -}); + queryKey: dimValidatorPubkeyServiceListQueryKey(options), + }); -export const dimValidatorPubkeyServiceGetQueryKey = (options: Options) => createQueryKey('dimValidatorPubkeyServiceGet', options); +export const dimValidatorPubkeyServiceGetQueryKey = (options: Options) => + createQueryKey('dimValidatorPubkeyServiceGet', options); /** * Get record * * Retrieve a single record by pubkey */ -export const dimValidatorPubkeyServiceGetOptions = (options: Options) => queryOptions>({ +export const dimValidatorPubkeyServiceGetOptions = (options: Options) => + queryOptions< + DimValidatorPubkeyServiceGetResponse, + DimValidatorPubkeyServiceGetError, + DimValidatorPubkeyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimValidatorPubkeyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimValidatorPubkeyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimValidatorPubkeyServiceGetQueryKey(options) -}); + queryKey: dimValidatorPubkeyServiceGetQueryKey(options), + }); -export const dimValidatorStatusServiceListQueryKey = (options?: Options) => createQueryKey('dimValidatorStatusServiceList', options); +export const dimValidatorStatusServiceListQueryKey = (options?: Options) => + createQueryKey('dimValidatorStatusServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimValidatorStatusServiceListOptions = (options?: Options) => queryOptions>({ +export const dimValidatorStatusServiceListOptions = (options?: Options) => + queryOptions< + DimValidatorStatusServiceListResponse, + DimValidatorStatusServiceListError, + DimValidatorStatusServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimValidatorStatusServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimValidatorStatusServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimValidatorStatusServiceListQueryKey(options) -}); + queryKey: dimValidatorStatusServiceListQueryKey(options), + }); -export const dimValidatorStatusServiceGetQueryKey = (options: Options) => createQueryKey('dimValidatorStatusServiceGet', options); +export const dimValidatorStatusServiceGetQueryKey = (options: Options) => + createQueryKey('dimValidatorStatusServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const dimValidatorStatusServiceGetOptions = (options: Options) => queryOptions>({ +export const dimValidatorStatusServiceGetOptions = (options: Options) => + queryOptions< + DimValidatorStatusServiceGetResponse, + DimValidatorStatusServiceGetError, + DimValidatorStatusServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await dimValidatorStatusServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await dimValidatorStatusServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: dimValidatorStatusServiceGetQueryKey(options) -}); + queryKey: dimValidatorStatusServiceGetQueryKey(options), + }); -export const fctAttestationCorrectnessByValidatorCanonicalServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationCorrectnessByValidatorCanonicalServiceList', options); +export const fctAttestationCorrectnessServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationCorrectnessServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationCorrectnessByValidatorCanonicalServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationCorrectnessServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationCorrectnessServiceListResponse, + FctAttestationCorrectnessServiceListError, + FctAttestationCorrectnessServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationCorrectnessByValidatorCanonicalServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationCorrectnessServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationCorrectnessByValidatorCanonicalServiceListQueryKey(options) -}); + queryKey: fctAttestationCorrectnessServiceListQueryKey(options), + }); -export const fctAttestationCorrectnessByValidatorCanonicalServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationCorrectnessByValidatorCanonicalServiceGet', options); +export const fctAttestationCorrectnessServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationCorrectnessServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationCorrectnessByValidatorCanonicalServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationCorrectnessServiceGetOptions = (options: Options) => + queryOptions< + FctAttestationCorrectnessServiceGetResponse, + FctAttestationCorrectnessServiceGetError, + FctAttestationCorrectnessServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationCorrectnessByValidatorCanonicalServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationCorrectnessServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationCorrectnessByValidatorCanonicalServiceGetQueryKey(options) -}); + queryKey: fctAttestationCorrectnessServiceGetQueryKey(options), + }); -export const fctAttestationCorrectnessByValidatorHeadServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationCorrectnessByValidatorHeadServiceList', options); +export const fctAttestationCorrectnessByValidatorServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationCorrectnessByValidatorServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationCorrectnessByValidatorHeadServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationCorrectnessByValidatorServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationCorrectnessByValidatorServiceListResponse, + FctAttestationCorrectnessByValidatorServiceListError, + FctAttestationCorrectnessByValidatorServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationCorrectnessByValidatorHeadServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationCorrectnessByValidatorServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationCorrectnessByValidatorHeadServiceListQueryKey(options) -}); + queryKey: fctAttestationCorrectnessByValidatorServiceListQueryKey(options), + }); -export const fctAttestationCorrectnessByValidatorHeadServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationCorrectnessByValidatorHeadServiceGet', options); +export const fctAttestationCorrectnessByValidatorServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationCorrectnessByValidatorServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationCorrectnessByValidatorHeadServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationCorrectnessByValidatorServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationCorrectnessByValidatorServiceGetResponse, + FctAttestationCorrectnessByValidatorServiceGetError, + FctAttestationCorrectnessByValidatorServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationCorrectnessByValidatorHeadServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationCorrectnessByValidatorServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationCorrectnessByValidatorHeadServiceGetQueryKey(options) -}); + queryKey: fctAttestationCorrectnessByValidatorServiceGetQueryKey(options), + }); -export const fctAttestationCorrectnessCanonicalServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationCorrectnessCanonicalServiceList', options); +export const fctAttestationCorrectnessByValidatorCanonicalServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationCorrectnessByValidatorCanonicalServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationCorrectnessCanonicalServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationCorrectnessByValidatorCanonicalServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationCorrectnessByValidatorCanonicalServiceListResponse, + FctAttestationCorrectnessByValidatorCanonicalServiceListError, + FctAttestationCorrectnessByValidatorCanonicalServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationCorrectnessCanonicalServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationCorrectnessByValidatorCanonicalServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationCorrectnessCanonicalServiceListQueryKey(options) -}); + queryKey: fctAttestationCorrectnessByValidatorCanonicalServiceListQueryKey(options), + }); -export const fctAttestationCorrectnessCanonicalServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationCorrectnessCanonicalServiceGet', options); +export const fctAttestationCorrectnessByValidatorCanonicalServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationCorrectnessByValidatorCanonicalServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationCorrectnessCanonicalServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationCorrectnessByValidatorCanonicalServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationCorrectnessByValidatorCanonicalServiceGetResponse, + FctAttestationCorrectnessByValidatorCanonicalServiceGetError, + FctAttestationCorrectnessByValidatorCanonicalServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationCorrectnessCanonicalServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationCorrectnessByValidatorCanonicalServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationCorrectnessCanonicalServiceGetQueryKey(options) -}); + queryKey: fctAttestationCorrectnessByValidatorCanonicalServiceGetQueryKey(options), + }); -export const fctAttestationCorrectnessHeadServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationCorrectnessHeadServiceList', options); +export const fctAttestationCorrectnessByValidatorHeadServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationCorrectnessByValidatorHeadServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationCorrectnessHeadServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationCorrectnessByValidatorHeadServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationCorrectnessByValidatorHeadServiceListResponse, + FctAttestationCorrectnessByValidatorHeadServiceListError, + FctAttestationCorrectnessByValidatorHeadServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationCorrectnessHeadServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationCorrectnessByValidatorHeadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationCorrectnessHeadServiceListQueryKey(options) -}); + queryKey: fctAttestationCorrectnessByValidatorHeadServiceListQueryKey(options), + }); -export const fctAttestationCorrectnessHeadServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationCorrectnessHeadServiceGet', options); +export const fctAttestationCorrectnessByValidatorHeadServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationCorrectnessByValidatorHeadServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationCorrectnessHeadServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationCorrectnessByValidatorHeadServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationCorrectnessByValidatorHeadServiceGetResponse, + FctAttestationCorrectnessByValidatorHeadServiceGetError, + FctAttestationCorrectnessByValidatorHeadServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationCorrectnessHeadServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationCorrectnessByValidatorHeadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationCorrectnessHeadServiceGetQueryKey(options) -}); + queryKey: fctAttestationCorrectnessByValidatorHeadServiceGetQueryKey(options), + }); -export const fctAttestationFirstSeenByValidatorServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationFirstSeenByValidatorServiceList', options); +export const fctAttestationCorrectnessCanonicalServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationCorrectnessCanonicalServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationFirstSeenByValidatorServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationCorrectnessCanonicalServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationCorrectnessCanonicalServiceListResponse, + FctAttestationCorrectnessCanonicalServiceListError, + FctAttestationCorrectnessCanonicalServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationFirstSeenByValidatorServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationCorrectnessCanonicalServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationFirstSeenByValidatorServiceListQueryKey(options) -}); + queryKey: fctAttestationCorrectnessCanonicalServiceListQueryKey(options), + }); -export const fctAttestationFirstSeenByValidatorServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationFirstSeenByValidatorServiceGet', options); +export const fctAttestationCorrectnessCanonicalServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationCorrectnessCanonicalServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationFirstSeenByValidatorServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationCorrectnessCanonicalServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationCorrectnessCanonicalServiceGetResponse, + FctAttestationCorrectnessCanonicalServiceGetError, + FctAttestationCorrectnessCanonicalServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationFirstSeenByValidatorServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationCorrectnessCanonicalServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationFirstSeenByValidatorServiceGetQueryKey(options) -}); + queryKey: fctAttestationCorrectnessCanonicalServiceGetQueryKey(options), + }); -export const fctAttestationFirstSeenChunked50MsServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationFirstSeenChunked50MsServiceList', options); +export const fctAttestationCorrectnessHeadServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationCorrectnessHeadServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationFirstSeenChunked50MsServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationCorrectnessHeadServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationCorrectnessHeadServiceListResponse, + FctAttestationCorrectnessHeadServiceListError, + FctAttestationCorrectnessHeadServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationFirstSeenChunked50MsServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationCorrectnessHeadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationFirstSeenChunked50MsServiceListQueryKey(options) -}); + queryKey: fctAttestationCorrectnessHeadServiceListQueryKey(options), + }); -export const fctAttestationFirstSeenChunked50MsServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationFirstSeenChunked50MsServiceGet', options); +export const fctAttestationCorrectnessHeadServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationCorrectnessHeadServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationFirstSeenChunked50MsServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationCorrectnessHeadServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationCorrectnessHeadServiceGetResponse, + FctAttestationCorrectnessHeadServiceGetError, + FctAttestationCorrectnessHeadServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationFirstSeenChunked50MsServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationCorrectnessHeadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationFirstSeenChunked50MsServiceGetQueryKey(options) -}); + queryKey: fctAttestationCorrectnessHeadServiceGetQueryKey(options), + }); -export const fctAttestationInclusionDelayDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationInclusionDelayDailyServiceList', options); +export const fctAttestationFirstSeenByValidatorServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationFirstSeenByValidatorServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationInclusionDelayDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationFirstSeenByValidatorServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationFirstSeenByValidatorServiceListResponse, + FctAttestationFirstSeenByValidatorServiceListError, + FctAttestationFirstSeenByValidatorServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationInclusionDelayDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationFirstSeenByValidatorServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationInclusionDelayDailyServiceListQueryKey(options) -}); + queryKey: fctAttestationFirstSeenByValidatorServiceListQueryKey(options), + }); -export const fctAttestationInclusionDelayDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationInclusionDelayDailyServiceGet', options); +export const fctAttestationFirstSeenByValidatorServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationFirstSeenByValidatorServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctAttestationFirstSeenByValidatorServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationFirstSeenByValidatorServiceGetResponse, + FctAttestationFirstSeenByValidatorServiceGetError, + FctAttestationFirstSeenByValidatorServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctAttestationFirstSeenByValidatorServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctAttestationFirstSeenByValidatorServiceGetQueryKey(options), + }); + +export const fctAttestationFirstSeenChunked50MsServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationFirstSeenChunked50MsServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctAttestationFirstSeenChunked50MsServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationFirstSeenChunked50MsServiceListResponse, + FctAttestationFirstSeenChunked50MsServiceListError, + FctAttestationFirstSeenChunked50MsServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctAttestationFirstSeenChunked50MsServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctAttestationFirstSeenChunked50MsServiceListQueryKey(options), + }); + +export const fctAttestationFirstSeenChunked50MsServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationFirstSeenChunked50MsServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctAttestationFirstSeenChunked50MsServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationFirstSeenChunked50MsServiceGetResponse, + FctAttestationFirstSeenChunked50MsServiceGetError, + FctAttestationFirstSeenChunked50MsServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctAttestationFirstSeenChunked50MsServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctAttestationFirstSeenChunked50MsServiceGetQueryKey(options), + }); + +export const fctAttestationInclusionDelayDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationInclusionDelayDailyServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctAttestationInclusionDelayDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationInclusionDelayDailyServiceListResponse, + FctAttestationInclusionDelayDailyServiceListError, + FctAttestationInclusionDelayDailyServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctAttestationInclusionDelayDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctAttestationInclusionDelayDailyServiceListQueryKey(options), + }); + +export const fctAttestationInclusionDelayDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationInclusionDelayDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctAttestationInclusionDelayDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationInclusionDelayDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationInclusionDelayDailyServiceGetResponse, + FctAttestationInclusionDelayDailyServiceGetError, + FctAttestationInclusionDelayDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationInclusionDelayDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationInclusionDelayDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationInclusionDelayDailyServiceGetQueryKey(options) -}); + queryKey: fctAttestationInclusionDelayDailyServiceGetQueryKey(options), + }); -export const fctAttestationInclusionDelayHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationInclusionDelayHourlyServiceList', options); +export const fctAttestationInclusionDelayHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationInclusionDelayHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationInclusionDelayHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationInclusionDelayHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationInclusionDelayHourlyServiceListResponse, + FctAttestationInclusionDelayHourlyServiceListError, + FctAttestationInclusionDelayHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationInclusionDelayHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationInclusionDelayHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationInclusionDelayHourlyServiceListQueryKey(options) -}); + queryKey: fctAttestationInclusionDelayHourlyServiceListQueryKey(options), + }); -export const fctAttestationInclusionDelayHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationInclusionDelayHourlyServiceGet', options); +export const fctAttestationInclusionDelayHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationInclusionDelayHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctAttestationInclusionDelayHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationInclusionDelayHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationInclusionDelayHourlyServiceGetResponse, + FctAttestationInclusionDelayHourlyServiceGetError, + FctAttestationInclusionDelayHourlyServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctAttestationInclusionDelayHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctAttestationInclusionDelayHourlyServiceGetQueryKey(options), + }); + +export const fctAttestationLivenessByEntityServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationLivenessByEntityServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctAttestationLivenessByEntityServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationLivenessByEntityServiceListResponse, + FctAttestationLivenessByEntityServiceListError, + FctAttestationLivenessByEntityServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationInclusionDelayHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationLivenessByEntityServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationInclusionDelayHourlyServiceGetQueryKey(options) -}); + queryKey: fctAttestationLivenessByEntityServiceListQueryKey(options), + }); -export const fctAttestationLivenessByEntityHeadServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationLivenessByEntityHeadServiceList', options); +export const fctAttestationLivenessByEntityServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationLivenessByEntityServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctAttestationLivenessByEntityServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationLivenessByEntityServiceGetResponse, + FctAttestationLivenessByEntityServiceGetError, + FctAttestationLivenessByEntityServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctAttestationLivenessByEntityServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctAttestationLivenessByEntityServiceGetQueryKey(options), + }); + +export const fctAttestationLivenessByEntityHeadServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationLivenessByEntityHeadServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationLivenessByEntityHeadServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationLivenessByEntityHeadServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationLivenessByEntityHeadServiceListResponse, + FctAttestationLivenessByEntityHeadServiceListError, + FctAttestationLivenessByEntityHeadServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationLivenessByEntityHeadServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationLivenessByEntityHeadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationLivenessByEntityHeadServiceListQueryKey(options) -}); + queryKey: fctAttestationLivenessByEntityHeadServiceListQueryKey(options), + }); -export const fctAttestationLivenessByEntityHeadServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationLivenessByEntityHeadServiceGet', options); +export const fctAttestationLivenessByEntityHeadServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationLivenessByEntityHeadServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationLivenessByEntityHeadServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationLivenessByEntityHeadServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationLivenessByEntityHeadServiceGetResponse, + FctAttestationLivenessByEntityHeadServiceGetError, + FctAttestationLivenessByEntityHeadServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationLivenessByEntityHeadServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationLivenessByEntityHeadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationLivenessByEntityHeadServiceGetQueryKey(options) -}); + queryKey: fctAttestationLivenessByEntityHeadServiceGetQueryKey(options), + }); -export const fctAttestationObservationByNodeServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationObservationByNodeServiceList', options); +export const fctAttestationObservationByNodeServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationObservationByNodeServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationObservationByNodeServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationObservationByNodeServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationObservationByNodeServiceListResponse, + FctAttestationObservationByNodeServiceListError, + FctAttestationObservationByNodeServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationObservationByNodeServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationObservationByNodeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationObservationByNodeServiceListQueryKey(options) -}); + queryKey: fctAttestationObservationByNodeServiceListQueryKey(options), + }); -export const fctAttestationObservationByNodeServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationObservationByNodeServiceGet', options); +export const fctAttestationObservationByNodeServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationObservationByNodeServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationObservationByNodeServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationObservationByNodeServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationObservationByNodeServiceGetResponse, + FctAttestationObservationByNodeServiceGetError, + FctAttestationObservationByNodeServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationObservationByNodeServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationObservationByNodeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationObservationByNodeServiceGetQueryKey(options) -}); + queryKey: fctAttestationObservationByNodeServiceGetQueryKey(options), + }); -export const fctAttestationParticipationRateDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationParticipationRateDailyServiceList', options); +export const fctAttestationParticipationRateDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationParticipationRateDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationParticipationRateDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationParticipationRateDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationParticipationRateDailyServiceListResponse, + FctAttestationParticipationRateDailyServiceListError, + FctAttestationParticipationRateDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationParticipationRateDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationParticipationRateDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationParticipationRateDailyServiceListQueryKey(options) -}); + queryKey: fctAttestationParticipationRateDailyServiceListQueryKey(options), + }); -export const fctAttestationParticipationRateDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationParticipationRateDailyServiceGet', options); +export const fctAttestationParticipationRateDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationParticipationRateDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctAttestationParticipationRateDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationParticipationRateDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationParticipationRateDailyServiceGetResponse, + FctAttestationParticipationRateDailyServiceGetError, + FctAttestationParticipationRateDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationParticipationRateDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationParticipationRateDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationParticipationRateDailyServiceGetQueryKey(options) -}); + queryKey: fctAttestationParticipationRateDailyServiceGetQueryKey(options), + }); -export const fctAttestationParticipationRateHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationParticipationRateHourlyServiceList', options); +export const fctAttestationParticipationRateHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationParticipationRateHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationParticipationRateHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationParticipationRateHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationParticipationRateHourlyServiceListResponse, + FctAttestationParticipationRateHourlyServiceListError, + FctAttestationParticipationRateHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationParticipationRateHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationParticipationRateHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationParticipationRateHourlyServiceListQueryKey(options) -}); + queryKey: fctAttestationParticipationRateHourlyServiceListQueryKey(options), + }); -export const fctAttestationParticipationRateHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationParticipationRateHourlyServiceGet', options); +export const fctAttestationParticipationRateHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationParticipationRateHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctAttestationParticipationRateHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationParticipationRateHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationParticipationRateHourlyServiceGetResponse, + FctAttestationParticipationRateHourlyServiceGetError, + FctAttestationParticipationRateHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationParticipationRateHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationParticipationRateHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationParticipationRateHourlyServiceGetQueryKey(options) -}); + queryKey: fctAttestationParticipationRateHourlyServiceGetQueryKey(options), + }); -export const fctAttestationVoteCorrectnessByValidatorServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationVoteCorrectnessByValidatorServiceList', options); +export const fctAttestationVoteCorrectnessByValidatorServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationVoteCorrectnessByValidatorServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationVoteCorrectnessByValidatorServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationVoteCorrectnessByValidatorServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationVoteCorrectnessByValidatorServiceListResponse, + FctAttestationVoteCorrectnessByValidatorServiceListError, + FctAttestationVoteCorrectnessByValidatorServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationVoteCorrectnessByValidatorServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationVoteCorrectnessByValidatorServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationVoteCorrectnessByValidatorServiceListQueryKey(options) -}); + queryKey: fctAttestationVoteCorrectnessByValidatorServiceListQueryKey(options), + }); -export const fctAttestationVoteCorrectnessByValidatorServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationVoteCorrectnessByValidatorServiceGet', options); +export const fctAttestationVoteCorrectnessByValidatorServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationVoteCorrectnessByValidatorServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const fctAttestationVoteCorrectnessByValidatorServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationVoteCorrectnessByValidatorServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationVoteCorrectnessByValidatorServiceGetResponse, + FctAttestationVoteCorrectnessByValidatorServiceGetError, + FctAttestationVoteCorrectnessByValidatorServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationVoteCorrectnessByValidatorServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationVoteCorrectnessByValidatorServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationVoteCorrectnessByValidatorServiceGetQueryKey(options) -}); + queryKey: fctAttestationVoteCorrectnessByValidatorServiceGetQueryKey(options), + }); -export const fctAttestationVoteCorrectnessByValidatorDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationVoteCorrectnessByValidatorDailyServiceList', options); +export const fctAttestationVoteCorrectnessByValidatorDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationVoteCorrectnessByValidatorDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationVoteCorrectnessByValidatorDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationVoteCorrectnessByValidatorDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationVoteCorrectnessByValidatorDailyServiceListResponse, + FctAttestationVoteCorrectnessByValidatorDailyServiceListError, + FctAttestationVoteCorrectnessByValidatorDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationVoteCorrectnessByValidatorDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationVoteCorrectnessByValidatorDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationVoteCorrectnessByValidatorDailyServiceListQueryKey(options) -}); + queryKey: fctAttestationVoteCorrectnessByValidatorDailyServiceListQueryKey(options), + }); -export const fctAttestationVoteCorrectnessByValidatorDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationVoteCorrectnessByValidatorDailyServiceGet', options); +export const fctAttestationVoteCorrectnessByValidatorDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationVoteCorrectnessByValidatorDailyServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const fctAttestationVoteCorrectnessByValidatorDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationVoteCorrectnessByValidatorDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetError, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationVoteCorrectnessByValidatorDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationVoteCorrectnessByValidatorDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationVoteCorrectnessByValidatorDailyServiceGetQueryKey(options) -}); + queryKey: fctAttestationVoteCorrectnessByValidatorDailyServiceGetQueryKey(options), + }); -export const fctAttestationVoteCorrectnessByValidatorHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctAttestationVoteCorrectnessByValidatorHourlyServiceList', options); +export const fctAttestationVoteCorrectnessByValidatorHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctAttestationVoteCorrectnessByValidatorHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationVoteCorrectnessByValidatorHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctAttestationVoteCorrectnessByValidatorHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListError, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationVoteCorrectnessByValidatorHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationVoteCorrectnessByValidatorHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationVoteCorrectnessByValidatorHourlyServiceListQueryKey(options) -}); + queryKey: fctAttestationVoteCorrectnessByValidatorHourlyServiceListQueryKey(options), + }); -export const fctAttestationVoteCorrectnessByValidatorHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctAttestationVoteCorrectnessByValidatorHourlyServiceGet', options); +export const fctAttestationVoteCorrectnessByValidatorHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctAttestationVoteCorrectnessByValidatorHourlyServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const fctAttestationVoteCorrectnessByValidatorHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctAttestationVoteCorrectnessByValidatorHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetError, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctAttestationVoteCorrectnessByValidatorHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctAttestationVoteCorrectnessByValidatorHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctAttestationVoteCorrectnessByValidatorHourlyServiceGetQueryKey(options) -}); + queryKey: fctAttestationVoteCorrectnessByValidatorHourlyServiceGetQueryKey(options), + }); -export const fctBlobCountDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctBlobCountDailyServiceList', options); +export const fctBlobCountDailyServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlobCountDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlobCountDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlobCountDailyServiceListOptions = (options?: Options) => + queryOptions< + FctBlobCountDailyServiceListResponse, + FctBlobCountDailyServiceListError, + FctBlobCountDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlobCountDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlobCountDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlobCountDailyServiceListQueryKey(options) -}); + queryKey: fctBlobCountDailyServiceListQueryKey(options), + }); -export const fctBlobCountDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctBlobCountDailyServiceGet', options); +export const fctBlobCountDailyServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlobCountDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctBlobCountDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlobCountDailyServiceGetOptions = (options: Options) => + queryOptions< + FctBlobCountDailyServiceGetResponse, + FctBlobCountDailyServiceGetError, + FctBlobCountDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlobCountDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlobCountDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlobCountDailyServiceGetQueryKey(options) -}); + queryKey: fctBlobCountDailyServiceGetQueryKey(options), + }); -export const fctBlobCountHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctBlobCountHourlyServiceList', options); +export const fctBlobCountHourlyServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlobCountHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlobCountHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlobCountHourlyServiceListOptions = (options?: Options) => + queryOptions< + FctBlobCountHourlyServiceListResponse, + FctBlobCountHourlyServiceListError, + FctBlobCountHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlobCountHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlobCountHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlobCountHourlyServiceListQueryKey(options) -}); + queryKey: fctBlobCountHourlyServiceListQueryKey(options), + }); -export const fctBlobCountHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctBlobCountHourlyServiceGet', options); +export const fctBlobCountHourlyServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlobCountHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctBlobCountHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlobCountHourlyServiceGetOptions = (options: Options) => + queryOptions< + FctBlobCountHourlyServiceGetResponse, + FctBlobCountHourlyServiceGetError, + FctBlobCountHourlyServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlobCountHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlobCountHourlyServiceGetQueryKey(options), + }); + +export const fctBlockServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockServiceListOptions = (options?: Options) => + queryOptions< + FctBlockServiceListResponse, + FctBlockServiceListError, + FctBlockServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockServiceListQueryKey(options), + }); + +export const fctBlockServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctBlockServiceGetOptions = (options: Options) => + queryOptions< + FctBlockServiceGetResponse, + FctBlockServiceGetError, + FctBlockServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockServiceGetQueryKey(options), + }); + +export const fctBlockBlobCountServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockBlobCountServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockBlobCountServiceListOptions = (options?: Options) => + queryOptions< + FctBlockBlobCountServiceListResponse, + FctBlockBlobCountServiceListError, + FctBlockBlobCountServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockBlobCountServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockBlobCountServiceListQueryKey(options), + }); + +export const fctBlockBlobCountServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockBlobCountServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctBlockBlobCountServiceGetOptions = (options: Options) => + queryOptions< + FctBlockBlobCountServiceGetResponse, + FctBlockBlobCountServiceGetError, + FctBlockBlobCountServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockBlobCountServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockBlobCountServiceGetQueryKey(options), + }); + +export const fctBlockBlobCountHeadServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockBlobCountHeadServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockBlobCountHeadServiceListOptions = (options?: Options) => + queryOptions< + FctBlockBlobCountHeadServiceListResponse, + FctBlockBlobCountHeadServiceListError, + FctBlockBlobCountHeadServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockBlobCountHeadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockBlobCountHeadServiceListQueryKey(options), + }); + +export const fctBlockBlobCountHeadServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockBlobCountHeadServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctBlockBlobCountHeadServiceGetOptions = (options: Options) => + queryOptions< + FctBlockBlobCountHeadServiceGetResponse, + FctBlockBlobCountHeadServiceGetError, + FctBlockBlobCountHeadServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockBlobCountHeadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockBlobCountHeadServiceGetQueryKey(options), + }); + +export const fctBlockBlobFirstSeenByNodeServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctBlockBlobFirstSeenByNodeServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockBlobFirstSeenByNodeServiceListOptions = ( + options?: Options +) => + queryOptions< + FctBlockBlobFirstSeenByNodeServiceListResponse, + FctBlockBlobFirstSeenByNodeServiceListError, + FctBlockBlobFirstSeenByNodeServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlobCountHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockBlobFirstSeenByNodeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlobCountHourlyServiceGetQueryKey(options) -}); + queryKey: fctBlockBlobFirstSeenByNodeServiceListQueryKey(options), + }); -export const fctBlockServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockServiceList', options); +export const fctBlockBlobFirstSeenByNodeServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctBlockBlobFirstSeenByNodeServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctBlockBlobFirstSeenByNodeServiceGetOptions = ( + options: Options +) => + queryOptions< + FctBlockBlobFirstSeenByNodeServiceGetResponse, + FctBlockBlobFirstSeenByNodeServiceGetError, + FctBlockBlobFirstSeenByNodeServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockBlobFirstSeenByNodeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockBlobFirstSeenByNodeServiceGetQueryKey(options), + }); + +export const fctBlockBlobHeadServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockBlobHeadServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockBlobHeadServiceListOptions = (options?: Options) => + queryOptions< + FctBlockBlobHeadServiceListResponse, + FctBlockBlobHeadServiceListError, + FctBlockBlobHeadServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockBlobHeadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockServiceListQueryKey(options) -}); + queryKey: fctBlockBlobHeadServiceListQueryKey(options), + }); -export const fctBlockServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockServiceGet', options); +export const fctBlockBlobHeadServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockBlobHeadServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockBlobHeadServiceGetOptions = (options: Options) => + queryOptions< + FctBlockBlobHeadServiceGetResponse, + FctBlockBlobHeadServiceGetError, + FctBlockBlobHeadServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockBlobHeadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockServiceGetQueryKey(options) -}); + queryKey: fctBlockBlobHeadServiceGetQueryKey(options), + }); -export const fctBlockBlobCountServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockBlobCountServiceList', options); +export const fctBlockDataColumnSidecarFirstSeenServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctBlockDataColumnSidecarFirstSeenServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockBlobCountServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockDataColumnSidecarFirstSeenServiceListOptions = ( + options?: Options +) => + queryOptions< + FctBlockDataColumnSidecarFirstSeenServiceListResponse, + FctBlockDataColumnSidecarFirstSeenServiceListError, + FctBlockDataColumnSidecarFirstSeenServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockBlobCountServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockDataColumnSidecarFirstSeenServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockBlobCountServiceListQueryKey(options) -}); + queryKey: fctBlockDataColumnSidecarFirstSeenServiceListQueryKey(options), + }); -export const fctBlockBlobCountServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockBlobCountServiceGet', options); +export const fctBlockDataColumnSidecarFirstSeenServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctBlockDataColumnSidecarFirstSeenServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockBlobCountServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockDataColumnSidecarFirstSeenServiceGetOptions = ( + options: Options +) => + queryOptions< + FctBlockDataColumnSidecarFirstSeenServiceGetResponse, + FctBlockDataColumnSidecarFirstSeenServiceGetError, + FctBlockDataColumnSidecarFirstSeenServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockBlobCountServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockDataColumnSidecarFirstSeenServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockBlobCountServiceGetQueryKey(options) -}); + queryKey: fctBlockDataColumnSidecarFirstSeenServiceGetQueryKey(options), + }); -export const fctBlockBlobCountHeadServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockBlobCountHeadServiceList', options); +export const fctBlockDataColumnSidecarFirstSeenByNodeServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctBlockDataColumnSidecarFirstSeenByNodeServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockBlobCountHeadServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockDataColumnSidecarFirstSeenByNodeServiceListOptions = ( + options?: Options +) => + queryOptions< + FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListError, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockBlobCountHeadServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockDataColumnSidecarFirstSeenByNodeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockBlobCountHeadServiceListQueryKey(options) -}); + queryKey: fctBlockDataColumnSidecarFirstSeenByNodeServiceListQueryKey(options), + }); -export const fctBlockBlobCountHeadServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockBlobCountHeadServiceGet', options); +export const fctBlockDataColumnSidecarFirstSeenByNodeServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctBlockDataColumnSidecarFirstSeenByNodeServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockBlobCountHeadServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockDataColumnSidecarFirstSeenByNodeServiceGetOptions = ( + options: Options +) => + queryOptions< + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetError, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockBlobCountHeadServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockDataColumnSidecarFirstSeenByNodeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockBlobCountHeadServiceGetQueryKey(options) -}); + queryKey: fctBlockDataColumnSidecarFirstSeenByNodeServiceGetQueryKey(options), + }); -export const fctBlockBlobFirstSeenByNodeServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockBlobFirstSeenByNodeServiceList', options); +export const fctBlockFirstSeenByNodeServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockFirstSeenByNodeServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockBlobFirstSeenByNodeServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockFirstSeenByNodeServiceListOptions = (options?: Options) => + queryOptions< + FctBlockFirstSeenByNodeServiceListResponse, + FctBlockFirstSeenByNodeServiceListError, + FctBlockFirstSeenByNodeServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockBlobFirstSeenByNodeServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockFirstSeenByNodeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockBlobFirstSeenByNodeServiceListQueryKey(options) -}); + queryKey: fctBlockFirstSeenByNodeServiceListQueryKey(options), + }); -export const fctBlockBlobFirstSeenByNodeServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockBlobFirstSeenByNodeServiceGet', options); +export const fctBlockFirstSeenByNodeServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockFirstSeenByNodeServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockBlobFirstSeenByNodeServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockFirstSeenByNodeServiceGetOptions = (options: Options) => + queryOptions< + FctBlockFirstSeenByNodeServiceGetResponse, + FctBlockFirstSeenByNodeServiceGetError, + FctBlockFirstSeenByNodeServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockBlobFirstSeenByNodeServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockFirstSeenByNodeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockBlobFirstSeenByNodeServiceGetQueryKey(options) -}); + queryKey: fctBlockFirstSeenByNodeServiceGetQueryKey(options), + }); -export const fctBlockBlobHeadServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockBlobHeadServiceList', options); +export const fctBlockHeadServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockHeadServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockBlobHeadServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockHeadServiceListOptions = (options?: Options) => + queryOptions< + FctBlockHeadServiceListResponse, + FctBlockHeadServiceListError, + FctBlockHeadServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockBlobHeadServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockHeadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockBlobHeadServiceListQueryKey(options) -}); + queryKey: fctBlockHeadServiceListQueryKey(options), + }); -export const fctBlockBlobHeadServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockBlobHeadServiceGet', options); +export const fctBlockHeadServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockHeadServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockBlobHeadServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockHeadServiceGetOptions = (options: Options) => + queryOptions< + FctBlockHeadServiceGetResponse, + FctBlockHeadServiceGetError, + FctBlockHeadServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockBlobHeadServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockHeadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockBlobHeadServiceGetQueryKey(options) -}); + queryKey: fctBlockHeadServiceGetQueryKey(options), + }); -export const fctBlockDataColumnSidecarFirstSeenServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockDataColumnSidecarFirstSeenServiceList', options); +export const fctBlockMevServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockMevServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockDataColumnSidecarFirstSeenServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockMevServiceListOptions = (options?: Options) => + queryOptions< + FctBlockMevServiceListResponse, + FctBlockMevServiceListError, + FctBlockMevServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockDataColumnSidecarFirstSeenServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockMevServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockDataColumnSidecarFirstSeenServiceListQueryKey(options) -}); + queryKey: fctBlockMevServiceListQueryKey(options), + }); -export const fctBlockDataColumnSidecarFirstSeenServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockDataColumnSidecarFirstSeenServiceGet', options); +export const fctBlockMevServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockMevServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockDataColumnSidecarFirstSeenServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockMevServiceGetOptions = (options: Options) => + queryOptions< + FctBlockMevServiceGetResponse, + FctBlockMevServiceGetError, + FctBlockMevServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockDataColumnSidecarFirstSeenServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockMevServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockDataColumnSidecarFirstSeenServiceGetQueryKey(options) -}); + queryKey: fctBlockMevServiceGetQueryKey(options), + }); -export const fctBlockDataColumnSidecarFirstSeenByNodeServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockDataColumnSidecarFirstSeenByNodeServiceList', options); +export const fctBlockMevHeadServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockMevHeadServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockDataColumnSidecarFirstSeenByNodeServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockMevHeadServiceListOptions = (options?: Options) => + queryOptions< + FctBlockMevHeadServiceListResponse, + FctBlockMevHeadServiceListError, + FctBlockMevHeadServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockDataColumnSidecarFirstSeenByNodeServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockMevHeadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockDataColumnSidecarFirstSeenByNodeServiceListQueryKey(options) -}); + queryKey: fctBlockMevHeadServiceListQueryKey(options), + }); -export const fctBlockDataColumnSidecarFirstSeenByNodeServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockDataColumnSidecarFirstSeenByNodeServiceGet', options); +export const fctBlockMevHeadServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockMevHeadServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockDataColumnSidecarFirstSeenByNodeServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockMevHeadServiceGetOptions = (options: Options) => + queryOptions< + FctBlockMevHeadServiceGetResponse, + FctBlockMevHeadServiceGetError, + FctBlockMevHeadServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockDataColumnSidecarFirstSeenByNodeServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockMevHeadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockDataColumnSidecarFirstSeenByNodeServiceGetQueryKey(options) -}); + queryKey: fctBlockMevHeadServiceGetQueryKey(options), + }); -export const fctBlockFirstSeenByNodeServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockFirstSeenByNodeServiceList', options); +export const fctBlockPayloadAvailableByNodeServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctBlockPayloadAvailableByNodeServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockFirstSeenByNodeServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockPayloadAvailableByNodeServiceListOptions = ( + options?: Options +) => + queryOptions< + FctBlockPayloadAvailableByNodeServiceListResponse, + FctBlockPayloadAvailableByNodeServiceListError, + FctBlockPayloadAvailableByNodeServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockFirstSeenByNodeServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockPayloadAvailableByNodeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockFirstSeenByNodeServiceListQueryKey(options) -}); + queryKey: fctBlockPayloadAvailableByNodeServiceListQueryKey(options), + }); -export const fctBlockFirstSeenByNodeServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockFirstSeenByNodeServiceGet', options); +export const fctBlockPayloadAvailableByNodeServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctBlockPayloadAvailableByNodeServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockFirstSeenByNodeServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockPayloadAvailableByNodeServiceGetOptions = ( + options: Options +) => + queryOptions< + FctBlockPayloadAvailableByNodeServiceGetResponse, + FctBlockPayloadAvailableByNodeServiceGetError, + FctBlockPayloadAvailableByNodeServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockFirstSeenByNodeServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockPayloadAvailableByNodeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockFirstSeenByNodeServiceGetQueryKey(options) -}); + queryKey: fctBlockPayloadAvailableByNodeServiceGetQueryKey(options), + }); -export const fctBlockHeadServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockHeadServiceList', options); +export const fctBlockPayloadBidServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockPayloadBidServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockHeadServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockPayloadBidServiceListOptions = (options?: Options) => + queryOptions< + FctBlockPayloadBidServiceListResponse, + FctBlockPayloadBidServiceListError, + FctBlockPayloadBidServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockHeadServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockPayloadBidServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockHeadServiceListQueryKey(options) -}); + queryKey: fctBlockPayloadBidServiceListQueryKey(options), + }); -export const fctBlockHeadServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockHeadServiceGet', options); +export const fctBlockPayloadBidServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockPayloadBidServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockHeadServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockPayloadBidServiceGetOptions = (options: Options) => + queryOptions< + FctBlockPayloadBidServiceGetResponse, + FctBlockPayloadBidServiceGetError, + FctBlockPayloadBidServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockHeadServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockPayloadBidServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockHeadServiceGetQueryKey(options) -}); + queryKey: fctBlockPayloadBidServiceGetQueryKey(options), + }); -export const fctBlockMevServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockMevServiceList', options); +export const fctBlockPayloadFirstSeenByNodeServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctBlockPayloadFirstSeenByNodeServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockMevServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockPayloadFirstSeenByNodeServiceListOptions = ( + options?: Options +) => + queryOptions< + FctBlockPayloadFirstSeenByNodeServiceListResponse, + FctBlockPayloadFirstSeenByNodeServiceListError, + FctBlockPayloadFirstSeenByNodeServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockMevServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockPayloadFirstSeenByNodeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockMevServiceListQueryKey(options) -}); + queryKey: fctBlockPayloadFirstSeenByNodeServiceListQueryKey(options), + }); -export const fctBlockMevServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockMevServiceGet', options); +export const fctBlockPayloadFirstSeenByNodeServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctBlockPayloadFirstSeenByNodeServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockMevServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockPayloadFirstSeenByNodeServiceGetOptions = ( + options: Options +) => + queryOptions< + FctBlockPayloadFirstSeenByNodeServiceGetResponse, + FctBlockPayloadFirstSeenByNodeServiceGetError, + FctBlockPayloadFirstSeenByNodeServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockMevServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockPayloadFirstSeenByNodeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockMevServiceGetQueryKey(options) -}); + queryKey: fctBlockPayloadFirstSeenByNodeServiceGetQueryKey(options), + }); -export const fctBlockMevHeadServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockMevHeadServiceList', options); +export const fctBlockPayloadPtcVoteServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockPayloadPtcVoteServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockMevHeadServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockPayloadPtcVoteServiceListOptions = (options?: Options) => + queryOptions< + FctBlockPayloadPtcVoteServiceListResponse, + FctBlockPayloadPtcVoteServiceListError, + FctBlockPayloadPtcVoteServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockMevHeadServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockPayloadPtcVoteServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockMevHeadServiceListQueryKey(options) -}); + queryKey: fctBlockPayloadPtcVoteServiceListQueryKey(options), + }); -export const fctBlockMevHeadServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockMevHeadServiceGet', options); +export const fctBlockPayloadPtcVoteServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockPayloadPtcVoteServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockMevHeadServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockPayloadPtcVoteServiceGetOptions = (options: Options) => + queryOptions< + FctBlockPayloadPtcVoteServiceGetResponse, + FctBlockPayloadPtcVoteServiceGetError, + FctBlockPayloadPtcVoteServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockMevHeadServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockPayloadPtcVoteServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockMevHeadServiceGetQueryKey(options) -}); + queryKey: fctBlockPayloadPtcVoteServiceGetQueryKey(options), + }); -export const fctBlockProposalStatusDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockProposalStatusDailyServiceList', options); +export const fctBlockPayloadPtcVoteHeadServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctBlockPayloadPtcVoteHeadServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockProposalStatusDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockPayloadPtcVoteHeadServiceListOptions = ( + options?: Options +) => + queryOptions< + FctBlockPayloadPtcVoteHeadServiceListResponse, + FctBlockPayloadPtcVoteHeadServiceListError, + FctBlockPayloadPtcVoteHeadServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockProposalStatusDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockPayloadPtcVoteHeadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockProposalStatusDailyServiceListQueryKey(options) -}); + queryKey: fctBlockPayloadPtcVoteHeadServiceListQueryKey(options), + }); -export const fctBlockProposalStatusDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockProposalStatusDailyServiceGet', options); +export const fctBlockPayloadPtcVoteHeadServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctBlockPayloadPtcVoteHeadServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctBlockPayloadPtcVoteHeadServiceGetOptions = ( + options: Options +) => + queryOptions< + FctBlockPayloadPtcVoteHeadServiceGetResponse, + FctBlockPayloadPtcVoteHeadServiceGetError, + FctBlockPayloadPtcVoteHeadServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockPayloadPtcVoteHeadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockPayloadPtcVoteHeadServiceGetQueryKey(options), + }); + +export const fctBlockProposalStatusDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctBlockProposalStatusDailyServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockProposalStatusDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctBlockProposalStatusDailyServiceListResponse, + FctBlockProposalStatusDailyServiceListError, + FctBlockProposalStatusDailyServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockProposalStatusDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockProposalStatusDailyServiceListQueryKey(options), + }); + +export const fctBlockProposalStatusDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctBlockProposalStatusDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctBlockProposalStatusDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockProposalStatusDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctBlockProposalStatusDailyServiceGetResponse, + FctBlockProposalStatusDailyServiceGetError, + FctBlockProposalStatusDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockProposalStatusDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockProposalStatusDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockProposalStatusDailyServiceGetQueryKey(options) -}); + queryKey: fctBlockProposalStatusDailyServiceGetQueryKey(options), + }); -export const fctBlockProposalStatusHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockProposalStatusHourlyServiceList', options); +export const fctBlockProposalStatusHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctBlockProposalStatusHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockProposalStatusHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockProposalStatusHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctBlockProposalStatusHourlyServiceListResponse, + FctBlockProposalStatusHourlyServiceListError, + FctBlockProposalStatusHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockProposalStatusHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockProposalStatusHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockProposalStatusHourlyServiceListQueryKey(options) -}); + queryKey: fctBlockProposalStatusHourlyServiceListQueryKey(options), + }); -export const fctBlockProposalStatusHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockProposalStatusHourlyServiceGet', options); +export const fctBlockProposalStatusHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctBlockProposalStatusHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctBlockProposalStatusHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockProposalStatusHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctBlockProposalStatusHourlyServiceGetResponse, + FctBlockProposalStatusHourlyServiceGetError, + FctBlockProposalStatusHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockProposalStatusHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockProposalStatusHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockProposalStatusHourlyServiceGetQueryKey(options) -}); + queryKey: fctBlockProposalStatusHourlyServiceGetQueryKey(options), + }); -export const fctBlockProposerServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockProposerServiceList', options); +export const fctBlockProposerServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockProposerServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockProposerServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockProposerServiceListOptions = (options?: Options) => + queryOptions< + FctBlockProposerServiceListResponse, + FctBlockProposerServiceListError, + FctBlockProposerServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockProposerServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockProposerServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockProposerServiceListQueryKey(options) -}); + queryKey: fctBlockProposerServiceListQueryKey(options), + }); -export const fctBlockProposerServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockProposerServiceGet', options); +export const fctBlockProposerServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockProposerServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockProposerServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockProposerServiceGetOptions = (options: Options) => + queryOptions< + FctBlockProposerServiceGetResponse, + FctBlockProposerServiceGetError, + FctBlockProposerServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockProposerServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockProposerServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockProposerServiceGetQueryKey(options) -}); + queryKey: fctBlockProposerServiceGetQueryKey(options), + }); -export const fctBlockProposerByValidatorServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockProposerByValidatorServiceList', options); +export const fctBlockProposerByValidatorServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctBlockProposerByValidatorServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockProposerByValidatorServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockProposerByValidatorServiceListOptions = ( + options?: Options +) => + queryOptions< + FctBlockProposerByValidatorServiceListResponse, + FctBlockProposerByValidatorServiceListError, + FctBlockProposerByValidatorServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockProposerByValidatorServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockProposerByValidatorServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockProposerByValidatorServiceListQueryKey(options) -}); + queryKey: fctBlockProposerByValidatorServiceListQueryKey(options), + }); -export const fctBlockProposerByValidatorServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockProposerByValidatorServiceGet', options); +export const fctBlockProposerByValidatorServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctBlockProposerByValidatorServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const fctBlockProposerByValidatorServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockProposerByValidatorServiceGetOptions = ( + options: Options +) => + queryOptions< + FctBlockProposerByValidatorServiceGetResponse, + FctBlockProposerByValidatorServiceGetError, + FctBlockProposerByValidatorServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockProposerByValidatorServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockProposerByValidatorServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockProposerByValidatorServiceGetQueryKey(options) -}); + queryKey: fctBlockProposerByValidatorServiceGetQueryKey(options), + }); -export const fctBlockProposerEntityServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockProposerEntityServiceList', options); +export const fctBlockProposerEntityServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockProposerEntityServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockProposerEntityServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockProposerEntityServiceListOptions = (options?: Options) => + queryOptions< + FctBlockProposerEntityServiceListResponse, + FctBlockProposerEntityServiceListError, + FctBlockProposerEntityServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockProposerEntityServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockProposerEntityServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockProposerEntityServiceListQueryKey(options) -}); + queryKey: fctBlockProposerEntityServiceListQueryKey(options), + }); -export const fctBlockProposerEntityServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockProposerEntityServiceGet', options); +export const fctBlockProposerEntityServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockProposerEntityServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockProposerEntityServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockProposerEntityServiceGetOptions = (options: Options) => + queryOptions< + FctBlockProposerEntityServiceGetResponse, + FctBlockProposerEntityServiceGetError, + FctBlockProposerEntityServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockProposerEntityServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockProposerEntityServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockProposerEntityServiceGetQueryKey(options) -}); + queryKey: fctBlockProposerEntityServiceGetQueryKey(options), + }); -export const fctBlockProposerHeadServiceListQueryKey = (options?: Options) => createQueryKey('fctBlockProposerHeadServiceList', options); +export const fctBlockProposerHeadServiceListQueryKey = (options?: Options) => + createQueryKey('fctBlockProposerHeadServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockProposerHeadServiceListOptions = (options?: Options) => queryOptions>({ +export const fctBlockProposerHeadServiceListOptions = (options?: Options) => + queryOptions< + FctBlockProposerHeadServiceListResponse, + FctBlockProposerHeadServiceListError, + FctBlockProposerHeadServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockProposerHeadServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockProposerHeadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockProposerHeadServiceListQueryKey(options) -}); + queryKey: fctBlockProposerHeadServiceListQueryKey(options), + }); -export const fctBlockProposerHeadServiceGetQueryKey = (options: Options) => createQueryKey('fctBlockProposerHeadServiceGet', options); +export const fctBlockProposerHeadServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockProposerHeadServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockProposerHeadServiceGetOptions = (options: Options) => queryOptions>({ +export const fctBlockProposerHeadServiceGetOptions = (options: Options) => + queryOptions< + FctBlockProposerHeadServiceGetResponse, + FctBlockProposerHeadServiceGetError, + FctBlockProposerHeadServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctBlockProposerHeadServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctBlockProposerHeadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctBlockProposerHeadServiceGetQueryKey(options) -}); + queryKey: fctBlockProposerHeadServiceGetQueryKey(options), + }); -export const fctContractStorageStateByAddressDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctContractStorageStateByAddressDailyServiceList', options); +export const fctContractStorageStateByAddressDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctContractStorageStateByAddressDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateByAddressDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctContractStorageStateByAddressDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctContractStorageStateByAddressDailyServiceListResponse, + FctContractStorageStateByAddressDailyServiceListError, + FctContractStorageStateByAddressDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateByAddressDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateByAddressDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateByAddressDailyServiceListQueryKey(options) -}); + queryKey: fctContractStorageStateByAddressDailyServiceListQueryKey(options), + }); -export const fctContractStorageStateByAddressDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctContractStorageStateByAddressDailyServiceGet', options); +export const fctContractStorageStateByAddressDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctContractStorageStateByAddressDailyServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const fctContractStorageStateByAddressDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctContractStorageStateByAddressDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctContractStorageStateByAddressDailyServiceGetResponse, + FctContractStorageStateByAddressDailyServiceGetError, + FctContractStorageStateByAddressDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateByAddressDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateByAddressDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateByAddressDailyServiceGetQueryKey(options) -}); + queryKey: fctContractStorageStateByAddressDailyServiceGetQueryKey(options), + }); -export const fctContractStorageStateByAddressHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctContractStorageStateByAddressHourlyServiceList', options); +export const fctContractStorageStateByAddressHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctContractStorageStateByAddressHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateByAddressHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctContractStorageStateByAddressHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctContractStorageStateByAddressHourlyServiceListResponse, + FctContractStorageStateByAddressHourlyServiceListError, + FctContractStorageStateByAddressHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateByAddressHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateByAddressHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateByAddressHourlyServiceListQueryKey(options) -}); + queryKey: fctContractStorageStateByAddressHourlyServiceListQueryKey(options), + }); -export const fctContractStorageStateByAddressHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctContractStorageStateByAddressHourlyServiceGet', options); +export const fctContractStorageStateByAddressHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctContractStorageStateByAddressHourlyServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const fctContractStorageStateByAddressHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctContractStorageStateByAddressHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctContractStorageStateByAddressHourlyServiceGetResponse, + FctContractStorageStateByAddressHourlyServiceGetError, + FctContractStorageStateByAddressHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateByAddressHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateByAddressHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateByAddressHourlyServiceGetQueryKey(options) -}); + queryKey: fctContractStorageStateByAddressHourlyServiceGetQueryKey(options), + }); -export const fctContractStorageStateByBlockDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctContractStorageStateByBlockDailyServiceList', options); +export const fctContractStorageStateByBlockDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctContractStorageStateByBlockDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateByBlockDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctContractStorageStateByBlockDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctContractStorageStateByBlockDailyServiceListResponse, + FctContractStorageStateByBlockDailyServiceListError, + FctContractStorageStateByBlockDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateByBlockDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateByBlockDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateByBlockDailyServiceListQueryKey(options) -}); + queryKey: fctContractStorageStateByBlockDailyServiceListQueryKey(options), + }); -export const fctContractStorageStateByBlockDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctContractStorageStateByBlockDailyServiceGet', options); +export const fctContractStorageStateByBlockDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctContractStorageStateByBlockDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctContractStorageStateByBlockDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctContractStorageStateByBlockDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctContractStorageStateByBlockDailyServiceGetResponse, + FctContractStorageStateByBlockDailyServiceGetError, + FctContractStorageStateByBlockDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateByBlockDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateByBlockDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateByBlockDailyServiceGetQueryKey(options) -}); + queryKey: fctContractStorageStateByBlockDailyServiceGetQueryKey(options), + }); -export const fctContractStorageStateByBlockHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctContractStorageStateByBlockHourlyServiceList', options); +export const fctContractStorageStateByBlockHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctContractStorageStateByBlockHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateByBlockHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctContractStorageStateByBlockHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctContractStorageStateByBlockHourlyServiceListResponse, + FctContractStorageStateByBlockHourlyServiceListError, + FctContractStorageStateByBlockHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateByBlockHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateByBlockHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateByBlockHourlyServiceListQueryKey(options) -}); + queryKey: fctContractStorageStateByBlockHourlyServiceListQueryKey(options), + }); -export const fctContractStorageStateByBlockHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctContractStorageStateByBlockHourlyServiceGet', options); +export const fctContractStorageStateByBlockHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctContractStorageStateByBlockHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctContractStorageStateByBlockHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctContractStorageStateByBlockHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctContractStorageStateByBlockHourlyServiceGetResponse, + FctContractStorageStateByBlockHourlyServiceGetError, + FctContractStorageStateByBlockHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateByBlockHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateByBlockHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateByBlockHourlyServiceGetQueryKey(options) -}); + queryKey: fctContractStorageStateByBlockHourlyServiceGetQueryKey(options), + }); -export const fctContractStorageStateWithExpiryByAddressDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctContractStorageStateWithExpiryByAddressDailyServiceList', options); +export const fctContractStorageStateWithExpiryByAddressDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctContractStorageStateWithExpiryByAddressDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateWithExpiryByAddressDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctContractStorageStateWithExpiryByAddressDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctContractStorageStateWithExpiryByAddressDailyServiceListResponse, + FctContractStorageStateWithExpiryByAddressDailyServiceListError, + FctContractStorageStateWithExpiryByAddressDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateWithExpiryByAddressDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateWithExpiryByAddressDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateWithExpiryByAddressDailyServiceListQueryKey(options) -}); + queryKey: fctContractStorageStateWithExpiryByAddressDailyServiceListQueryKey(options), + }); -export const fctContractStorageStateWithExpiryByAddressDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctContractStorageStateWithExpiryByAddressDailyServiceGet', options); +export const fctContractStorageStateWithExpiryByAddressDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctContractStorageStateWithExpiryByAddressDailyServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const fctContractStorageStateWithExpiryByAddressDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctContractStorageStateWithExpiryByAddressDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctContractStorageStateWithExpiryByAddressDailyServiceGetResponse, + FctContractStorageStateWithExpiryByAddressDailyServiceGetError, + FctContractStorageStateWithExpiryByAddressDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateWithExpiryByAddressDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateWithExpiryByAddressDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateWithExpiryByAddressDailyServiceGetQueryKey(options) -}); + queryKey: fctContractStorageStateWithExpiryByAddressDailyServiceGetQueryKey(options), + }); -export const fctContractStorageStateWithExpiryByAddressHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctContractStorageStateWithExpiryByAddressHourlyServiceList', options); +export const fctContractStorageStateWithExpiryByAddressHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctContractStorageStateWithExpiryByAddressHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateWithExpiryByAddressHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctContractStorageStateWithExpiryByAddressHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctContractStorageStateWithExpiryByAddressHourlyServiceListResponse, + FctContractStorageStateWithExpiryByAddressHourlyServiceListError, + FctContractStorageStateWithExpiryByAddressHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateWithExpiryByAddressHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateWithExpiryByAddressHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateWithExpiryByAddressHourlyServiceListQueryKey(options) -}); + queryKey: fctContractStorageStateWithExpiryByAddressHourlyServiceListQueryKey(options), + }); -export const fctContractStorageStateWithExpiryByAddressHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctContractStorageStateWithExpiryByAddressHourlyServiceGet', options); +export const fctContractStorageStateWithExpiryByAddressHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctContractStorageStateWithExpiryByAddressHourlyServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const fctContractStorageStateWithExpiryByAddressHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctContractStorageStateWithExpiryByAddressHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetError, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateWithExpiryByAddressHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateWithExpiryByAddressHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateWithExpiryByAddressHourlyServiceGetQueryKey(options) -}); + queryKey: fctContractStorageStateWithExpiryByAddressHourlyServiceGetQueryKey(options), + }); -export const fctContractStorageStateWithExpiryByBlockDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctContractStorageStateWithExpiryByBlockDailyServiceList', options); +export const fctContractStorageStateWithExpiryByBlockDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctContractStorageStateWithExpiryByBlockDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateWithExpiryByBlockDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctContractStorageStateWithExpiryByBlockDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctContractStorageStateWithExpiryByBlockDailyServiceListResponse, + FctContractStorageStateWithExpiryByBlockDailyServiceListError, + FctContractStorageStateWithExpiryByBlockDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateWithExpiryByBlockDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateWithExpiryByBlockDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateWithExpiryByBlockDailyServiceListQueryKey(options) -}); + queryKey: fctContractStorageStateWithExpiryByBlockDailyServiceListQueryKey(options), + }); -export const fctContractStorageStateWithExpiryByBlockDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctContractStorageStateWithExpiryByBlockDailyServiceGet', options); +export const fctContractStorageStateWithExpiryByBlockDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctContractStorageStateWithExpiryByBlockDailyServiceGet', options); /** * Get record * * Retrieve a single record by expiry_policy */ -export const fctContractStorageStateWithExpiryByBlockDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctContractStorageStateWithExpiryByBlockDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctContractStorageStateWithExpiryByBlockDailyServiceGetResponse, + FctContractStorageStateWithExpiryByBlockDailyServiceGetError, + FctContractStorageStateWithExpiryByBlockDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateWithExpiryByBlockDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateWithExpiryByBlockDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateWithExpiryByBlockDailyServiceGetQueryKey(options) -}); + queryKey: fctContractStorageStateWithExpiryByBlockDailyServiceGetQueryKey(options), + }); -export const fctContractStorageStateWithExpiryByBlockHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctContractStorageStateWithExpiryByBlockHourlyServiceList', options); +export const fctContractStorageStateWithExpiryByBlockHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctContractStorageStateWithExpiryByBlockHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateWithExpiryByBlockHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctContractStorageStateWithExpiryByBlockHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctContractStorageStateWithExpiryByBlockHourlyServiceListResponse, + FctContractStorageStateWithExpiryByBlockHourlyServiceListError, + FctContractStorageStateWithExpiryByBlockHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateWithExpiryByBlockHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateWithExpiryByBlockHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateWithExpiryByBlockHourlyServiceListQueryKey(options) -}); + queryKey: fctContractStorageStateWithExpiryByBlockHourlyServiceListQueryKey(options), + }); -export const fctContractStorageStateWithExpiryByBlockHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctContractStorageStateWithExpiryByBlockHourlyServiceGet', options); +export const fctContractStorageStateWithExpiryByBlockHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctContractStorageStateWithExpiryByBlockHourlyServiceGet', options); /** * Get record * * Retrieve a single record by expiry_policy */ -export const fctContractStorageStateWithExpiryByBlockHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctContractStorageStateWithExpiryByBlockHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetError, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctContractStorageStateWithExpiryByBlockHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctContractStorageStateWithExpiryByBlockHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctContractStorageStateWithExpiryByBlockHourlyServiceGetQueryKey(options) -}); + queryKey: fctContractStorageStateWithExpiryByBlockHourlyServiceGetQueryKey(options), + }); -export const fctDataColumnAvailabilityByEpochServiceListQueryKey = (options?: Options) => createQueryKey('fctDataColumnAvailabilityByEpochServiceList', options); +export const fctDataColumnAvailabilityByEpochServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctDataColumnAvailabilityByEpochServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctDataColumnAvailabilityByEpochServiceListOptions = (options?: Options) => queryOptions>({ +export const fctDataColumnAvailabilityByEpochServiceListOptions = ( + options?: Options +) => + queryOptions< + FctDataColumnAvailabilityByEpochServiceListResponse, + FctDataColumnAvailabilityByEpochServiceListError, + FctDataColumnAvailabilityByEpochServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctDataColumnAvailabilityByEpochServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctDataColumnAvailabilityByEpochServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctDataColumnAvailabilityByEpochServiceListQueryKey(options) -}); + queryKey: fctDataColumnAvailabilityByEpochServiceListQueryKey(options), + }); -export const fctDataColumnAvailabilityByEpochServiceGetQueryKey = (options: Options) => createQueryKey('fctDataColumnAvailabilityByEpochServiceGet', options); +export const fctDataColumnAvailabilityByEpochServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctDataColumnAvailabilityByEpochServiceGet', options); /** * Get record * * Retrieve a single record by epoch_start_date_time */ -export const fctDataColumnAvailabilityByEpochServiceGetOptions = (options: Options) => queryOptions>({ +export const fctDataColumnAvailabilityByEpochServiceGetOptions = ( + options: Options +) => + queryOptions< + FctDataColumnAvailabilityByEpochServiceGetResponse, + FctDataColumnAvailabilityByEpochServiceGetError, + FctDataColumnAvailabilityByEpochServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctDataColumnAvailabilityByEpochServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctDataColumnAvailabilityByEpochServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctDataColumnAvailabilityByEpochServiceGetQueryKey(options) -}); + queryKey: fctDataColumnAvailabilityByEpochServiceGetQueryKey(options), + }); -export const fctDataColumnAvailabilityBySlotServiceListQueryKey = (options?: Options) => createQueryKey('fctDataColumnAvailabilityBySlotServiceList', options); +export const fctDataColumnAvailabilityBySlotServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctDataColumnAvailabilityBySlotServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctDataColumnAvailabilityBySlotServiceListOptions = (options?: Options) => queryOptions>({ +export const fctDataColumnAvailabilityBySlotServiceListOptions = ( + options?: Options +) => + queryOptions< + FctDataColumnAvailabilityBySlotServiceListResponse, + FctDataColumnAvailabilityBySlotServiceListError, + FctDataColumnAvailabilityBySlotServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctDataColumnAvailabilityBySlotServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctDataColumnAvailabilityBySlotServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctDataColumnAvailabilityBySlotServiceListQueryKey(options) -}); + queryKey: fctDataColumnAvailabilityBySlotServiceListQueryKey(options), + }); -export const fctDataColumnAvailabilityBySlotServiceGetQueryKey = (options: Options) => createQueryKey('fctDataColumnAvailabilityBySlotServiceGet', options); +export const fctDataColumnAvailabilityBySlotServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctDataColumnAvailabilityBySlotServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctDataColumnAvailabilityBySlotServiceGetOptions = (options: Options) => queryOptions>({ +export const fctDataColumnAvailabilityBySlotServiceGetOptions = ( + options: Options +) => + queryOptions< + FctDataColumnAvailabilityBySlotServiceGetResponse, + FctDataColumnAvailabilityBySlotServiceGetError, + FctDataColumnAvailabilityBySlotServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctDataColumnAvailabilityBySlotServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctDataColumnAvailabilityBySlotServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctDataColumnAvailabilityBySlotServiceGetQueryKey(options) -}); + queryKey: fctDataColumnAvailabilityBySlotServiceGetQueryKey(options), + }); -export const fctDataColumnAvailabilityBySlotBlobServiceListQueryKey = (options?: Options) => createQueryKey('fctDataColumnAvailabilityBySlotBlobServiceList', options); +export const fctDataColumnAvailabilityBySlotBlobServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctDataColumnAvailabilityBySlotBlobServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctDataColumnAvailabilityBySlotBlobServiceListOptions = (options?: Options) => queryOptions>({ +export const fctDataColumnAvailabilityBySlotBlobServiceListOptions = ( + options?: Options +) => + queryOptions< + FctDataColumnAvailabilityBySlotBlobServiceListResponse, + FctDataColumnAvailabilityBySlotBlobServiceListError, + FctDataColumnAvailabilityBySlotBlobServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctDataColumnAvailabilityBySlotBlobServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctDataColumnAvailabilityBySlotBlobServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctDataColumnAvailabilityBySlotBlobServiceListQueryKey(options) -}); + queryKey: fctDataColumnAvailabilityBySlotBlobServiceListQueryKey(options), + }); -export const fctDataColumnAvailabilityBySlotBlobServiceGetQueryKey = (options: Options) => createQueryKey('fctDataColumnAvailabilityBySlotBlobServiceGet', options); +export const fctDataColumnAvailabilityBySlotBlobServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctDataColumnAvailabilityBySlotBlobServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctDataColumnAvailabilityBySlotBlobServiceGetOptions = (options: Options) => queryOptions>({ +export const fctDataColumnAvailabilityBySlotBlobServiceGetOptions = ( + options: Options +) => + queryOptions< + FctDataColumnAvailabilityBySlotBlobServiceGetResponse, + FctDataColumnAvailabilityBySlotBlobServiceGetError, + FctDataColumnAvailabilityBySlotBlobServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctDataColumnAvailabilityBySlotBlobServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctDataColumnAvailabilityBySlotBlobServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctDataColumnAvailabilityBySlotBlobServiceGetQueryKey(options) -}); + queryKey: fctDataColumnAvailabilityBySlotBlobServiceGetQueryKey(options), + }); -export const fctDataColumnAvailabilityDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctDataColumnAvailabilityDailyServiceList', options); +export const fctDataColumnAvailabilityDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctDataColumnAvailabilityDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctDataColumnAvailabilityDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctDataColumnAvailabilityDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctDataColumnAvailabilityDailyServiceListResponse, + FctDataColumnAvailabilityDailyServiceListError, + FctDataColumnAvailabilityDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctDataColumnAvailabilityDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctDataColumnAvailabilityDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctDataColumnAvailabilityDailyServiceListQueryKey(options) -}); + queryKey: fctDataColumnAvailabilityDailyServiceListQueryKey(options), + }); -export const fctDataColumnAvailabilityDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctDataColumnAvailabilityDailyServiceGet', options); +export const fctDataColumnAvailabilityDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctDataColumnAvailabilityDailyServiceGet', options); /** * Get record * * Retrieve a single record by date */ -export const fctDataColumnAvailabilityDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctDataColumnAvailabilityDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctDataColumnAvailabilityDailyServiceGetResponse, + FctDataColumnAvailabilityDailyServiceGetError, + FctDataColumnAvailabilityDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctDataColumnAvailabilityDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctDataColumnAvailabilityDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctDataColumnAvailabilityDailyServiceGetQueryKey(options) -}); + queryKey: fctDataColumnAvailabilityDailyServiceGetQueryKey(options), + }); -export const fctDataColumnAvailabilityHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctDataColumnAvailabilityHourlyServiceList', options); +export const fctDataColumnAvailabilityHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctDataColumnAvailabilityHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctDataColumnAvailabilityHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctDataColumnAvailabilityHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctDataColumnAvailabilityHourlyServiceListResponse, + FctDataColumnAvailabilityHourlyServiceListError, + FctDataColumnAvailabilityHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctDataColumnAvailabilityHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctDataColumnAvailabilityHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctDataColumnAvailabilityHourlyServiceListQueryKey(options) -}); + queryKey: fctDataColumnAvailabilityHourlyServiceListQueryKey(options), + }); -export const fctDataColumnAvailabilityHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctDataColumnAvailabilityHourlyServiceGet', options); +export const fctDataColumnAvailabilityHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctDataColumnAvailabilityHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctDataColumnAvailabilityHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctDataColumnAvailabilityHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctDataColumnAvailabilityHourlyServiceGetResponse, + FctDataColumnAvailabilityHourlyServiceGetError, + FctDataColumnAvailabilityHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctDataColumnAvailabilityHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctDataColumnAvailabilityHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctDataColumnAvailabilityHourlyServiceGetQueryKey(options) -}); + queryKey: fctDataColumnAvailabilityHourlyServiceGetQueryKey(options), + }); -export const fctEngineGetBlobsByElClientServiceListQueryKey = (options?: Options) => createQueryKey('fctEngineGetBlobsByElClientServiceList', options); +export const fctEngineGetBlobsByElClientServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctEngineGetBlobsByElClientServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineGetBlobsByElClientServiceListOptions = (options?: Options) => queryOptions>({ +export const fctEngineGetBlobsByElClientServiceListOptions = ( + options?: Options +) => + queryOptions< + FctEngineGetBlobsByElClientServiceListResponse, + FctEngineGetBlobsByElClientServiceListError, + FctEngineGetBlobsByElClientServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineGetBlobsByElClientServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineGetBlobsByElClientServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineGetBlobsByElClientServiceListQueryKey(options) -}); + queryKey: fctEngineGetBlobsByElClientServiceListQueryKey(options), + }); -export const fctEngineGetBlobsByElClientServiceGetQueryKey = (options: Options) => createQueryKey('fctEngineGetBlobsByElClientServiceGet', options); +export const fctEngineGetBlobsByElClientServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctEngineGetBlobsByElClientServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctEngineGetBlobsByElClientServiceGetOptions = (options: Options) => queryOptions>({ +export const fctEngineGetBlobsByElClientServiceGetOptions = ( + options: Options +) => + queryOptions< + FctEngineGetBlobsByElClientServiceGetResponse, + FctEngineGetBlobsByElClientServiceGetError, + FctEngineGetBlobsByElClientServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineGetBlobsByElClientServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineGetBlobsByElClientServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineGetBlobsByElClientServiceGetQueryKey(options) -}); + queryKey: fctEngineGetBlobsByElClientServiceGetQueryKey(options), + }); -export const fctEngineGetBlobsByElClientHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctEngineGetBlobsByElClientHourlyServiceList', options); +export const fctEngineGetBlobsByElClientHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctEngineGetBlobsByElClientHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineGetBlobsByElClientHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctEngineGetBlobsByElClientHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctEngineGetBlobsByElClientHourlyServiceListResponse, + FctEngineGetBlobsByElClientHourlyServiceListError, + FctEngineGetBlobsByElClientHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineGetBlobsByElClientHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineGetBlobsByElClientHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineGetBlobsByElClientHourlyServiceListQueryKey(options) -}); + queryKey: fctEngineGetBlobsByElClientHourlyServiceListQueryKey(options), + }); -export const fctEngineGetBlobsByElClientHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctEngineGetBlobsByElClientHourlyServiceGet', options); +export const fctEngineGetBlobsByElClientHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctEngineGetBlobsByElClientHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctEngineGetBlobsByElClientHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctEngineGetBlobsByElClientHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctEngineGetBlobsByElClientHourlyServiceGetResponse, + FctEngineGetBlobsByElClientHourlyServiceGetError, + FctEngineGetBlobsByElClientHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineGetBlobsByElClientHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineGetBlobsByElClientHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineGetBlobsByElClientHourlyServiceGetQueryKey(options) -}); + queryKey: fctEngineGetBlobsByElClientHourlyServiceGetQueryKey(options), + }); -export const fctEngineGetBlobsBySlotServiceListQueryKey = (options?: Options) => createQueryKey('fctEngineGetBlobsBySlotServiceList', options); +export const fctEngineGetBlobsBySlotServiceListQueryKey = (options?: Options) => + createQueryKey('fctEngineGetBlobsBySlotServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineGetBlobsBySlotServiceListOptions = (options?: Options) => queryOptions>({ +export const fctEngineGetBlobsBySlotServiceListOptions = (options?: Options) => + queryOptions< + FctEngineGetBlobsBySlotServiceListResponse, + FctEngineGetBlobsBySlotServiceListError, + FctEngineGetBlobsBySlotServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineGetBlobsBySlotServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineGetBlobsBySlotServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineGetBlobsBySlotServiceListQueryKey(options) -}); + queryKey: fctEngineGetBlobsBySlotServiceListQueryKey(options), + }); -export const fctEngineGetBlobsBySlotServiceGetQueryKey = (options: Options) => createQueryKey('fctEngineGetBlobsBySlotServiceGet', options); +export const fctEngineGetBlobsBySlotServiceGetQueryKey = (options: Options) => + createQueryKey('fctEngineGetBlobsBySlotServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctEngineGetBlobsBySlotServiceGetOptions = (options: Options) => queryOptions>({ +export const fctEngineGetBlobsBySlotServiceGetOptions = (options: Options) => + queryOptions< + FctEngineGetBlobsBySlotServiceGetResponse, + FctEngineGetBlobsBySlotServiceGetError, + FctEngineGetBlobsBySlotServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineGetBlobsBySlotServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineGetBlobsBySlotServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineGetBlobsBySlotServiceGetQueryKey(options) -}); + queryKey: fctEngineGetBlobsBySlotServiceGetQueryKey(options), + }); -export const fctEngineGetBlobsDurationChunked50MsServiceListQueryKey = (options?: Options) => createQueryKey('fctEngineGetBlobsDurationChunked50MsServiceList', options); +export const fctEngineGetBlobsDurationChunked50MsServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctEngineGetBlobsDurationChunked50MsServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineGetBlobsDurationChunked50MsServiceListOptions = (options?: Options) => queryOptions>({ +export const fctEngineGetBlobsDurationChunked50MsServiceListOptions = ( + options?: Options +) => + queryOptions< + FctEngineGetBlobsDurationChunked50MsServiceListResponse, + FctEngineGetBlobsDurationChunked50MsServiceListError, + FctEngineGetBlobsDurationChunked50MsServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineGetBlobsDurationChunked50MsServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineGetBlobsDurationChunked50MsServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineGetBlobsDurationChunked50MsServiceListQueryKey(options) -}); + queryKey: fctEngineGetBlobsDurationChunked50MsServiceListQueryKey(options), + }); -export const fctEngineGetBlobsDurationChunked50MsServiceGetQueryKey = (options: Options) => createQueryKey('fctEngineGetBlobsDurationChunked50MsServiceGet', options); +export const fctEngineGetBlobsDurationChunked50MsServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctEngineGetBlobsDurationChunked50MsServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctEngineGetBlobsDurationChunked50MsServiceGetOptions = (options: Options) => queryOptions>({ +export const fctEngineGetBlobsDurationChunked50MsServiceGetOptions = ( + options: Options +) => + queryOptions< + FctEngineGetBlobsDurationChunked50MsServiceGetResponse, + FctEngineGetBlobsDurationChunked50MsServiceGetError, + FctEngineGetBlobsDurationChunked50MsServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineGetBlobsDurationChunked50MsServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineGetBlobsDurationChunked50MsServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineGetBlobsDurationChunked50MsServiceGetQueryKey(options) -}); + queryKey: fctEngineGetBlobsDurationChunked50MsServiceGetQueryKey(options), + }); -export const fctEngineNewPayloadByElClientServiceListQueryKey = (options?: Options) => createQueryKey('fctEngineNewPayloadByElClientServiceList', options); +export const fctEngineNewPayloadByElClientServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctEngineNewPayloadByElClientServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineNewPayloadByElClientServiceListOptions = (options?: Options) => queryOptions>({ +export const fctEngineNewPayloadByElClientServiceListOptions = ( + options?: Options +) => + queryOptions< + FctEngineNewPayloadByElClientServiceListResponse, + FctEngineNewPayloadByElClientServiceListError, + FctEngineNewPayloadByElClientServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineNewPayloadByElClientServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineNewPayloadByElClientServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineNewPayloadByElClientServiceListQueryKey(options) -}); + queryKey: fctEngineNewPayloadByElClientServiceListQueryKey(options), + }); -export const fctEngineNewPayloadByElClientServiceGetQueryKey = (options: Options) => createQueryKey('fctEngineNewPayloadByElClientServiceGet', options); +export const fctEngineNewPayloadByElClientServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctEngineNewPayloadByElClientServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctEngineNewPayloadByElClientServiceGetOptions = (options: Options) => queryOptions>({ +export const fctEngineNewPayloadByElClientServiceGetOptions = ( + options: Options +) => + queryOptions< + FctEngineNewPayloadByElClientServiceGetResponse, + FctEngineNewPayloadByElClientServiceGetError, + FctEngineNewPayloadByElClientServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineNewPayloadByElClientServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineNewPayloadByElClientServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineNewPayloadByElClientServiceGetQueryKey(options) -}); + queryKey: fctEngineNewPayloadByElClientServiceGetQueryKey(options), + }); -export const fctEngineNewPayloadByElClientHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctEngineNewPayloadByElClientHourlyServiceList', options); +export const fctEngineNewPayloadByElClientHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctEngineNewPayloadByElClientHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineNewPayloadByElClientHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctEngineNewPayloadByElClientHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctEngineNewPayloadByElClientHourlyServiceListResponse, + FctEngineNewPayloadByElClientHourlyServiceListError, + FctEngineNewPayloadByElClientHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineNewPayloadByElClientHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineNewPayloadByElClientHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineNewPayloadByElClientHourlyServiceListQueryKey(options) -}); + queryKey: fctEngineNewPayloadByElClientHourlyServiceListQueryKey(options), + }); -export const fctEngineNewPayloadByElClientHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctEngineNewPayloadByElClientHourlyServiceGet', options); +export const fctEngineNewPayloadByElClientHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctEngineNewPayloadByElClientHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctEngineNewPayloadByElClientHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctEngineNewPayloadByElClientHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctEngineNewPayloadByElClientHourlyServiceGetResponse, + FctEngineNewPayloadByElClientHourlyServiceGetError, + FctEngineNewPayloadByElClientHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineNewPayloadByElClientHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineNewPayloadByElClientHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineNewPayloadByElClientHourlyServiceGetQueryKey(options) -}); + queryKey: fctEngineNewPayloadByElClientHourlyServiceGetQueryKey(options), + }); -export const fctEngineNewPayloadBySlotServiceListQueryKey = (options?: Options) => createQueryKey('fctEngineNewPayloadBySlotServiceList', options); +export const fctEngineNewPayloadBySlotServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctEngineNewPayloadBySlotServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineNewPayloadBySlotServiceListOptions = (options?: Options) => queryOptions>({ +export const fctEngineNewPayloadBySlotServiceListOptions = ( + options?: Options +) => + queryOptions< + FctEngineNewPayloadBySlotServiceListResponse, + FctEngineNewPayloadBySlotServiceListError, + FctEngineNewPayloadBySlotServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineNewPayloadBySlotServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineNewPayloadBySlotServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineNewPayloadBySlotServiceListQueryKey(options) -}); + queryKey: fctEngineNewPayloadBySlotServiceListQueryKey(options), + }); -export const fctEngineNewPayloadBySlotServiceGetQueryKey = (options: Options) => createQueryKey('fctEngineNewPayloadBySlotServiceGet', options); +export const fctEngineNewPayloadBySlotServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctEngineNewPayloadBySlotServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctEngineNewPayloadBySlotServiceGetOptions = (options: Options) => queryOptions>({ +export const fctEngineNewPayloadBySlotServiceGetOptions = (options: Options) => + queryOptions< + FctEngineNewPayloadBySlotServiceGetResponse, + FctEngineNewPayloadBySlotServiceGetError, + FctEngineNewPayloadBySlotServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineNewPayloadBySlotServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineNewPayloadBySlotServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineNewPayloadBySlotServiceGetQueryKey(options) -}); + queryKey: fctEngineNewPayloadBySlotServiceGetQueryKey(options), + }); -export const fctEngineNewPayloadDurationChunked50MsServiceListQueryKey = (options?: Options) => createQueryKey('fctEngineNewPayloadDurationChunked50MsServiceList', options); +export const fctEngineNewPayloadDurationChunked50MsServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctEngineNewPayloadDurationChunked50MsServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineNewPayloadDurationChunked50MsServiceListOptions = (options?: Options) => queryOptions>({ +export const fctEngineNewPayloadDurationChunked50MsServiceListOptions = ( + options?: Options +) => + queryOptions< + FctEngineNewPayloadDurationChunked50MsServiceListResponse, + FctEngineNewPayloadDurationChunked50MsServiceListError, + FctEngineNewPayloadDurationChunked50MsServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineNewPayloadDurationChunked50MsServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineNewPayloadDurationChunked50MsServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineNewPayloadDurationChunked50MsServiceListQueryKey(options) -}); + queryKey: fctEngineNewPayloadDurationChunked50MsServiceListQueryKey(options), + }); -export const fctEngineNewPayloadDurationChunked50MsServiceGetQueryKey = (options: Options) => createQueryKey('fctEngineNewPayloadDurationChunked50MsServiceGet', options); +export const fctEngineNewPayloadDurationChunked50MsServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctEngineNewPayloadDurationChunked50MsServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctEngineNewPayloadDurationChunked50MsServiceGetOptions = (options: Options) => queryOptions>({ +export const fctEngineNewPayloadDurationChunked50MsServiceGetOptions = ( + options: Options +) => + queryOptions< + FctEngineNewPayloadDurationChunked50MsServiceGetResponse, + FctEngineNewPayloadDurationChunked50MsServiceGetError, + FctEngineNewPayloadDurationChunked50MsServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineNewPayloadDurationChunked50MsServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineNewPayloadDurationChunked50MsServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineNewPayloadDurationChunked50MsServiceGetQueryKey(options) -}); + queryKey: fctEngineNewPayloadDurationChunked50MsServiceGetQueryKey(options), + }); -export const fctEngineNewPayloadWinrateDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctEngineNewPayloadWinrateDailyServiceList', options); +export const fctEngineNewPayloadWinrateDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctEngineNewPayloadWinrateDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineNewPayloadWinrateDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctEngineNewPayloadWinrateDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctEngineNewPayloadWinrateDailyServiceListResponse, + FctEngineNewPayloadWinrateDailyServiceListError, + FctEngineNewPayloadWinrateDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineNewPayloadWinrateDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineNewPayloadWinrateDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineNewPayloadWinrateDailyServiceListQueryKey(options) -}); + queryKey: fctEngineNewPayloadWinrateDailyServiceListQueryKey(options), + }); -export const fctEngineNewPayloadWinrateDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctEngineNewPayloadWinrateDailyServiceGet', options); +export const fctEngineNewPayloadWinrateDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctEngineNewPayloadWinrateDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctEngineNewPayloadWinrateDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctEngineNewPayloadWinrateDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctEngineNewPayloadWinrateDailyServiceGetResponse, + FctEngineNewPayloadWinrateDailyServiceGetError, + FctEngineNewPayloadWinrateDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineNewPayloadWinrateDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineNewPayloadWinrateDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineNewPayloadWinrateDailyServiceGetQueryKey(options) -}); + queryKey: fctEngineNewPayloadWinrateDailyServiceGetQueryKey(options), + }); -export const fctEngineNewPayloadWinrateHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctEngineNewPayloadWinrateHourlyServiceList', options); +export const fctEngineNewPayloadWinrateHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctEngineNewPayloadWinrateHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineNewPayloadWinrateHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctEngineNewPayloadWinrateHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctEngineNewPayloadWinrateHourlyServiceListResponse, + FctEngineNewPayloadWinrateHourlyServiceListError, + FctEngineNewPayloadWinrateHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineNewPayloadWinrateHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineNewPayloadWinrateHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineNewPayloadWinrateHourlyServiceListQueryKey(options) -}); + queryKey: fctEngineNewPayloadWinrateHourlyServiceListQueryKey(options), + }); -export const fctEngineNewPayloadWinrateHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctEngineNewPayloadWinrateHourlyServiceGet', options); +export const fctEngineNewPayloadWinrateHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctEngineNewPayloadWinrateHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctEngineNewPayloadWinrateHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctEngineNewPayloadWinrateHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctEngineNewPayloadWinrateHourlyServiceGetResponse, + FctEngineNewPayloadWinrateHourlyServiceGetError, + FctEngineNewPayloadWinrateHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctEngineNewPayloadWinrateHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctEngineNewPayloadWinrateHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctEngineNewPayloadWinrateHourlyServiceGetQueryKey(options) -}); + queryKey: fctEngineNewPayloadWinrateHourlyServiceGetQueryKey(options), + }); -export const fctExecutionGasLimitDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionGasLimitDailyServiceList', options); +export const fctExecutionGasLimitDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctExecutionGasLimitDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionGasLimitDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionGasLimitDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctExecutionGasLimitDailyServiceListResponse, + FctExecutionGasLimitDailyServiceListError, + FctExecutionGasLimitDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionGasLimitDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionGasLimitDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionGasLimitDailyServiceListQueryKey(options) -}); + queryKey: fctExecutionGasLimitDailyServiceListQueryKey(options), + }); -export const fctExecutionGasLimitDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionGasLimitDailyServiceGet', options); +export const fctExecutionGasLimitDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctExecutionGasLimitDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionGasLimitDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionGasLimitDailyServiceGetOptions = (options: Options) => + queryOptions< + FctExecutionGasLimitDailyServiceGetResponse, + FctExecutionGasLimitDailyServiceGetError, + FctExecutionGasLimitDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionGasLimitDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionGasLimitDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionGasLimitDailyServiceGetQueryKey(options) -}); + queryKey: fctExecutionGasLimitDailyServiceGetQueryKey(options), + }); -export const fctExecutionGasLimitHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionGasLimitHourlyServiceList', options); +export const fctExecutionGasLimitHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctExecutionGasLimitHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionGasLimitHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionGasLimitHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctExecutionGasLimitHourlyServiceListResponse, + FctExecutionGasLimitHourlyServiceListError, + FctExecutionGasLimitHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionGasLimitHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionGasLimitHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionGasLimitHourlyServiceListQueryKey(options) -}); + queryKey: fctExecutionGasLimitHourlyServiceListQueryKey(options), + }); -export const fctExecutionGasLimitHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionGasLimitHourlyServiceGet', options); +export const fctExecutionGasLimitHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctExecutionGasLimitHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionGasLimitHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionGasLimitHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctExecutionGasLimitHourlyServiceGetResponse, + FctExecutionGasLimitHourlyServiceGetError, + FctExecutionGasLimitHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionGasLimitHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionGasLimitHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionGasLimitHourlyServiceGetQueryKey(options) -}); + queryKey: fctExecutionGasLimitHourlyServiceGetQueryKey(options), + }); -export const fctExecutionGasLimitSignallingDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionGasLimitSignallingDailyServiceList', options); +export const fctExecutionGasLimitSignallingDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctExecutionGasLimitSignallingDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionGasLimitSignallingDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionGasLimitSignallingDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctExecutionGasLimitSignallingDailyServiceListResponse, + FctExecutionGasLimitSignallingDailyServiceListError, + FctExecutionGasLimitSignallingDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionGasLimitSignallingDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionGasLimitSignallingDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionGasLimitSignallingDailyServiceListQueryKey(options) -}); + queryKey: fctExecutionGasLimitSignallingDailyServiceListQueryKey(options), + }); -export const fctExecutionGasLimitSignallingDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionGasLimitSignallingDailyServiceGet', options); +export const fctExecutionGasLimitSignallingDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctExecutionGasLimitSignallingDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionGasLimitSignallingDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionGasLimitSignallingDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctExecutionGasLimitSignallingDailyServiceGetResponse, + FctExecutionGasLimitSignallingDailyServiceGetError, + FctExecutionGasLimitSignallingDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionGasLimitSignallingDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionGasLimitSignallingDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionGasLimitSignallingDailyServiceGetQueryKey(options) -}); + queryKey: fctExecutionGasLimitSignallingDailyServiceGetQueryKey(options), + }); -export const fctExecutionGasLimitSignallingHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionGasLimitSignallingHourlyServiceList', options); +export const fctExecutionGasLimitSignallingHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctExecutionGasLimitSignallingHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionGasLimitSignallingHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionGasLimitSignallingHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctExecutionGasLimitSignallingHourlyServiceListResponse, + FctExecutionGasLimitSignallingHourlyServiceListError, + FctExecutionGasLimitSignallingHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionGasLimitSignallingHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionGasLimitSignallingHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionGasLimitSignallingHourlyServiceListQueryKey(options) -}); + queryKey: fctExecutionGasLimitSignallingHourlyServiceListQueryKey(options), + }); -export const fctExecutionGasLimitSignallingHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionGasLimitSignallingHourlyServiceGet', options); +export const fctExecutionGasLimitSignallingHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctExecutionGasLimitSignallingHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionGasLimitSignallingHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionGasLimitSignallingHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctExecutionGasLimitSignallingHourlyServiceGetResponse, + FctExecutionGasLimitSignallingHourlyServiceGetError, + FctExecutionGasLimitSignallingHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionGasLimitSignallingHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionGasLimitSignallingHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionGasLimitSignallingHourlyServiceGetQueryKey(options) -}); + queryKey: fctExecutionGasLimitSignallingHourlyServiceGetQueryKey(options), + }); -export const fctExecutionGasUsedDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionGasUsedDailyServiceList', options); +export const fctExecutionGasUsedDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctExecutionGasUsedDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionGasUsedDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionGasUsedDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctExecutionGasUsedDailyServiceListResponse, + FctExecutionGasUsedDailyServiceListError, + FctExecutionGasUsedDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionGasUsedDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionGasUsedDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionGasUsedDailyServiceListQueryKey(options) -}); + queryKey: fctExecutionGasUsedDailyServiceListQueryKey(options), + }); -export const fctExecutionGasUsedDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionGasUsedDailyServiceGet', options); +export const fctExecutionGasUsedDailyServiceGetQueryKey = (options: Options) => + createQueryKey('fctExecutionGasUsedDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionGasUsedDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionGasUsedDailyServiceGetOptions = (options: Options) => + queryOptions< + FctExecutionGasUsedDailyServiceGetResponse, + FctExecutionGasUsedDailyServiceGetError, + FctExecutionGasUsedDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionGasUsedDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionGasUsedDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionGasUsedDailyServiceGetQueryKey(options) -}); + queryKey: fctExecutionGasUsedDailyServiceGetQueryKey(options), + }); -export const fctExecutionGasUsedHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionGasUsedHourlyServiceList', options); +export const fctExecutionGasUsedHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctExecutionGasUsedHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionGasUsedHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionGasUsedHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctExecutionGasUsedHourlyServiceListResponse, + FctExecutionGasUsedHourlyServiceListError, + FctExecutionGasUsedHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionGasUsedHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionGasUsedHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionGasUsedHourlyServiceListQueryKey(options) -}); + queryKey: fctExecutionGasUsedHourlyServiceListQueryKey(options), + }); -export const fctExecutionGasUsedHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionGasUsedHourlyServiceGet', options); +export const fctExecutionGasUsedHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctExecutionGasUsedHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionGasUsedHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionGasUsedHourlyServiceGetOptions = (options: Options) => + queryOptions< + FctExecutionGasUsedHourlyServiceGetResponse, + FctExecutionGasUsedHourlyServiceGetError, + FctExecutionGasUsedHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionGasUsedHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionGasUsedHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionGasUsedHourlyServiceGetQueryKey(options) -}); + queryKey: fctExecutionGasUsedHourlyServiceGetQueryKey(options), + }); -export const fctExecutionReceiptSizeDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionReceiptSizeDailyServiceList', options); +export const fctExecutionReceiptSizeDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctExecutionReceiptSizeDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionReceiptSizeDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionReceiptSizeDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctExecutionReceiptSizeDailyServiceListResponse, + FctExecutionReceiptSizeDailyServiceListError, + FctExecutionReceiptSizeDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionReceiptSizeDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionReceiptSizeDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionReceiptSizeDailyServiceListQueryKey(options) -}); + queryKey: fctExecutionReceiptSizeDailyServiceListQueryKey(options), + }); -export const fctExecutionReceiptSizeDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionReceiptSizeDailyServiceGet', options); +export const fctExecutionReceiptSizeDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctExecutionReceiptSizeDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionReceiptSizeDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionReceiptSizeDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctExecutionReceiptSizeDailyServiceGetResponse, + FctExecutionReceiptSizeDailyServiceGetError, + FctExecutionReceiptSizeDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionReceiptSizeDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionReceiptSizeDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionReceiptSizeDailyServiceGetQueryKey(options) -}); + queryKey: fctExecutionReceiptSizeDailyServiceGetQueryKey(options), + }); -export const fctExecutionReceiptSizeHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionReceiptSizeHourlyServiceList', options); +export const fctExecutionReceiptSizeHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctExecutionReceiptSizeHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionReceiptSizeHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionReceiptSizeHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctExecutionReceiptSizeHourlyServiceListResponse, + FctExecutionReceiptSizeHourlyServiceListError, + FctExecutionReceiptSizeHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionReceiptSizeHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionReceiptSizeHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionReceiptSizeHourlyServiceListQueryKey(options) -}); + queryKey: fctExecutionReceiptSizeHourlyServiceListQueryKey(options), + }); -export const fctExecutionReceiptSizeHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionReceiptSizeHourlyServiceGet', options); +export const fctExecutionReceiptSizeHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctExecutionReceiptSizeHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionReceiptSizeHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionReceiptSizeHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctExecutionReceiptSizeHourlyServiceGetResponse, + FctExecutionReceiptSizeHourlyServiceGetError, + FctExecutionReceiptSizeHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionReceiptSizeHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionReceiptSizeHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionReceiptSizeHourlyServiceGetQueryKey(options) -}); + queryKey: fctExecutionReceiptSizeHourlyServiceGetQueryKey(options), + }); -export const fctExecutionStateSizeDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionStateSizeDailyServiceList', options); +export const fctExecutionStateSizeDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctExecutionStateSizeDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionStateSizeDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionStateSizeDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctExecutionStateSizeDailyServiceListResponse, + FctExecutionStateSizeDailyServiceListError, + FctExecutionStateSizeDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionStateSizeDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionStateSizeDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionStateSizeDailyServiceListQueryKey(options) -}); + queryKey: fctExecutionStateSizeDailyServiceListQueryKey(options), + }); -export const fctExecutionStateSizeDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionStateSizeDailyServiceGet', options); +export const fctExecutionStateSizeDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctExecutionStateSizeDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionStateSizeDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionStateSizeDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctExecutionStateSizeDailyServiceGetResponse, + FctExecutionStateSizeDailyServiceGetError, + FctExecutionStateSizeDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionStateSizeDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionStateSizeDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionStateSizeDailyServiceGetQueryKey(options) -}); + queryKey: fctExecutionStateSizeDailyServiceGetQueryKey(options), + }); -export const fctExecutionStateSizeHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionStateSizeHourlyServiceList', options); +export const fctExecutionStateSizeHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctExecutionStateSizeHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionStateSizeHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionStateSizeHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctExecutionStateSizeHourlyServiceListResponse, + FctExecutionStateSizeHourlyServiceListError, + FctExecutionStateSizeHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionStateSizeHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionStateSizeHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionStateSizeHourlyServiceListQueryKey(options) -}); + queryKey: fctExecutionStateSizeHourlyServiceListQueryKey(options), + }); -export const fctExecutionStateSizeHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionStateSizeHourlyServiceGet', options); +export const fctExecutionStateSizeHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctExecutionStateSizeHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionStateSizeHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionStateSizeHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctExecutionStateSizeHourlyServiceGetResponse, + FctExecutionStateSizeHourlyServiceGetError, + FctExecutionStateSizeHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionStateSizeHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionStateSizeHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionStateSizeHourlyServiceGetQueryKey(options) -}); + queryKey: fctExecutionStateSizeHourlyServiceGetQueryKey(options), + }); -export const fctExecutionTpsDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionTpsDailyServiceList', options); +export const fctExecutionTpsDailyServiceListQueryKey = (options?: Options) => + createQueryKey('fctExecutionTpsDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionTpsDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionTpsDailyServiceListOptions = (options?: Options) => + queryOptions< + FctExecutionTpsDailyServiceListResponse, + FctExecutionTpsDailyServiceListError, + FctExecutionTpsDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionTpsDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionTpsDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionTpsDailyServiceListQueryKey(options) -}); + queryKey: fctExecutionTpsDailyServiceListQueryKey(options), + }); -export const fctExecutionTpsDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionTpsDailyServiceGet', options); +export const fctExecutionTpsDailyServiceGetQueryKey = (options: Options) => + createQueryKey('fctExecutionTpsDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionTpsDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionTpsDailyServiceGetOptions = (options: Options) => + queryOptions< + FctExecutionTpsDailyServiceGetResponse, + FctExecutionTpsDailyServiceGetError, + FctExecutionTpsDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionTpsDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionTpsDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionTpsDailyServiceGetQueryKey(options) -}); + queryKey: fctExecutionTpsDailyServiceGetQueryKey(options), + }); -export const fctExecutionTpsHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionTpsHourlyServiceList', options); +export const fctExecutionTpsHourlyServiceListQueryKey = (options?: Options) => + createQueryKey('fctExecutionTpsHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionTpsHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionTpsHourlyServiceListOptions = (options?: Options) => + queryOptions< + FctExecutionTpsHourlyServiceListResponse, + FctExecutionTpsHourlyServiceListError, + FctExecutionTpsHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionTpsHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionTpsHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionTpsHourlyServiceListQueryKey(options) -}); + queryKey: fctExecutionTpsHourlyServiceListQueryKey(options), + }); -export const fctExecutionTpsHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionTpsHourlyServiceGet', options); +export const fctExecutionTpsHourlyServiceGetQueryKey = (options: Options) => + createQueryKey('fctExecutionTpsHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionTpsHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionTpsHourlyServiceGetOptions = (options: Options) => + queryOptions< + FctExecutionTpsHourlyServiceGetResponse, + FctExecutionTpsHourlyServiceGetError, + FctExecutionTpsHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionTpsHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionTpsHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionTpsHourlyServiceGetQueryKey(options) -}); + queryKey: fctExecutionTpsHourlyServiceGetQueryKey(options), + }); -export const fctExecutionTransactionsDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionTransactionsDailyServiceList', options); +export const fctExecutionTransactionsDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctExecutionTransactionsDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionTransactionsDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionTransactionsDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctExecutionTransactionsDailyServiceListResponse, + FctExecutionTransactionsDailyServiceListError, + FctExecutionTransactionsDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionTransactionsDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionTransactionsDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionTransactionsDailyServiceListQueryKey(options) -}); + queryKey: fctExecutionTransactionsDailyServiceListQueryKey(options), + }); -export const fctExecutionTransactionsDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionTransactionsDailyServiceGet', options); +export const fctExecutionTransactionsDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctExecutionTransactionsDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionTransactionsDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionTransactionsDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctExecutionTransactionsDailyServiceGetResponse, + FctExecutionTransactionsDailyServiceGetError, + FctExecutionTransactionsDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionTransactionsDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionTransactionsDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionTransactionsDailyServiceGetQueryKey(options) -}); + queryKey: fctExecutionTransactionsDailyServiceGetQueryKey(options), + }); -export const fctExecutionTransactionsHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctExecutionTransactionsHourlyServiceList', options); +export const fctExecutionTransactionsHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctExecutionTransactionsHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionTransactionsHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctExecutionTransactionsHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctExecutionTransactionsHourlyServiceListResponse, + FctExecutionTransactionsHourlyServiceListError, + FctExecutionTransactionsHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionTransactionsHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionTransactionsHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionTransactionsHourlyServiceListQueryKey(options) -}); + queryKey: fctExecutionTransactionsHourlyServiceListQueryKey(options), + }); -export const fctExecutionTransactionsHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctExecutionTransactionsHourlyServiceGet', options); +export const fctExecutionTransactionsHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctExecutionTransactionsHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionTransactionsHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctExecutionTransactionsHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctExecutionTransactionsHourlyServiceGetResponse, + FctExecutionTransactionsHourlyServiceGetError, + FctExecutionTransactionsHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctExecutionTransactionsHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctExecutionTransactionsHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctExecutionTransactionsHourlyServiceGetQueryKey(options) -}); + queryKey: fctExecutionTransactionsHourlyServiceGetQueryKey(options), + }); -export const fctHeadFirstSeenByNodeServiceListQueryKey = (options?: Options) => createQueryKey('fctHeadFirstSeenByNodeServiceList', options); +export const fctHeadFirstSeenByNodeServiceListQueryKey = (options?: Options) => + createQueryKey('fctHeadFirstSeenByNodeServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctHeadFirstSeenByNodeServiceListOptions = (options?: Options) => queryOptions>({ +export const fctHeadFirstSeenByNodeServiceListOptions = (options?: Options) => + queryOptions< + FctHeadFirstSeenByNodeServiceListResponse, + FctHeadFirstSeenByNodeServiceListError, + FctHeadFirstSeenByNodeServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctHeadFirstSeenByNodeServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctHeadFirstSeenByNodeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctHeadFirstSeenByNodeServiceListQueryKey(options) -}); + queryKey: fctHeadFirstSeenByNodeServiceListQueryKey(options), + }); -export const fctHeadFirstSeenByNodeServiceGetQueryKey = (options: Options) => createQueryKey('fctHeadFirstSeenByNodeServiceGet', options); +export const fctHeadFirstSeenByNodeServiceGetQueryKey = (options: Options) => + createQueryKey('fctHeadFirstSeenByNodeServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctHeadFirstSeenByNodeServiceGetOptions = (options: Options) => queryOptions>({ +export const fctHeadFirstSeenByNodeServiceGetOptions = (options: Options) => + queryOptions< + FctHeadFirstSeenByNodeServiceGetResponse, + FctHeadFirstSeenByNodeServiceGetError, + FctHeadFirstSeenByNodeServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctHeadFirstSeenByNodeServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctHeadFirstSeenByNodeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctHeadFirstSeenByNodeServiceGetQueryKey(options) -}); + queryKey: fctHeadFirstSeenByNodeServiceGetQueryKey(options), + }); -export const fctHeadVoteCorrectnessRateDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctHeadVoteCorrectnessRateDailyServiceList', options); +export const fctHeadVoteCorrectnessRateDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctHeadVoteCorrectnessRateDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctHeadVoteCorrectnessRateDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctHeadVoteCorrectnessRateDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctHeadVoteCorrectnessRateDailyServiceListResponse, + FctHeadVoteCorrectnessRateDailyServiceListError, + FctHeadVoteCorrectnessRateDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctHeadVoteCorrectnessRateDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctHeadVoteCorrectnessRateDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctHeadVoteCorrectnessRateDailyServiceListQueryKey(options) -}); + queryKey: fctHeadVoteCorrectnessRateDailyServiceListQueryKey(options), + }); -export const fctHeadVoteCorrectnessRateDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctHeadVoteCorrectnessRateDailyServiceGet', options); +export const fctHeadVoteCorrectnessRateDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctHeadVoteCorrectnessRateDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctHeadVoteCorrectnessRateDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctHeadVoteCorrectnessRateDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctHeadVoteCorrectnessRateDailyServiceGetResponse, + FctHeadVoteCorrectnessRateDailyServiceGetError, + FctHeadVoteCorrectnessRateDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctHeadVoteCorrectnessRateDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctHeadVoteCorrectnessRateDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctHeadVoteCorrectnessRateDailyServiceGetQueryKey(options) -}); + queryKey: fctHeadVoteCorrectnessRateDailyServiceGetQueryKey(options), + }); -export const fctHeadVoteCorrectnessRateHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctHeadVoteCorrectnessRateHourlyServiceList', options); +export const fctHeadVoteCorrectnessRateHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctHeadVoteCorrectnessRateHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctHeadVoteCorrectnessRateHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctHeadVoteCorrectnessRateHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctHeadVoteCorrectnessRateHourlyServiceListResponse, + FctHeadVoteCorrectnessRateHourlyServiceListError, + FctHeadVoteCorrectnessRateHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctHeadVoteCorrectnessRateHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctHeadVoteCorrectnessRateHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctHeadVoteCorrectnessRateHourlyServiceListQueryKey(options) -}); + queryKey: fctHeadVoteCorrectnessRateHourlyServiceListQueryKey(options), + }); -export const fctHeadVoteCorrectnessRateHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctHeadVoteCorrectnessRateHourlyServiceGet', options); +export const fctHeadVoteCorrectnessRateHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctHeadVoteCorrectnessRateHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctHeadVoteCorrectnessRateHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctHeadVoteCorrectnessRateHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctHeadVoteCorrectnessRateHourlyServiceGetResponse, + FctHeadVoteCorrectnessRateHourlyServiceGetError, + FctHeadVoteCorrectnessRateHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctHeadVoteCorrectnessRateHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctHeadVoteCorrectnessRateHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctHeadVoteCorrectnessRateHourlyServiceGetQueryKey(options) -}); + queryKey: fctHeadVoteCorrectnessRateHourlyServiceGetQueryKey(options), + }); -export const fctMevBidCountByBuilderServiceListQueryKey = (options?: Options) => createQueryKey('fctMevBidCountByBuilderServiceList', options); +export const fctMevBidCountByBuilderServiceListQueryKey = (options?: Options) => + createQueryKey('fctMevBidCountByBuilderServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctMevBidCountByBuilderServiceListOptions = (options?: Options) => queryOptions>({ +export const fctMevBidCountByBuilderServiceListOptions = (options?: Options) => + queryOptions< + FctMevBidCountByBuilderServiceListResponse, + FctMevBidCountByBuilderServiceListError, + FctMevBidCountByBuilderServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctMevBidCountByBuilderServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctMevBidCountByBuilderServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctMevBidCountByBuilderServiceListQueryKey(options) -}); + queryKey: fctMevBidCountByBuilderServiceListQueryKey(options), + }); -export const fctMevBidCountByBuilderServiceGetQueryKey = (options: Options) => createQueryKey('fctMevBidCountByBuilderServiceGet', options); +export const fctMevBidCountByBuilderServiceGetQueryKey = (options: Options) => + createQueryKey('fctMevBidCountByBuilderServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctMevBidCountByBuilderServiceGetOptions = (options: Options) => queryOptions>({ +export const fctMevBidCountByBuilderServiceGetOptions = (options: Options) => + queryOptions< + FctMevBidCountByBuilderServiceGetResponse, + FctMevBidCountByBuilderServiceGetError, + FctMevBidCountByBuilderServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctMevBidCountByBuilderServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctMevBidCountByBuilderServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctMevBidCountByBuilderServiceGetQueryKey(options) -}); + queryKey: fctMevBidCountByBuilderServiceGetQueryKey(options), + }); -export const fctMevBidCountByRelayServiceListQueryKey = (options?: Options) => createQueryKey('fctMevBidCountByRelayServiceList', options); +export const fctMevBidCountByRelayServiceListQueryKey = (options?: Options) => + createQueryKey('fctMevBidCountByRelayServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctMevBidCountByRelayServiceListOptions = (options?: Options) => queryOptions>({ +export const fctMevBidCountByRelayServiceListOptions = (options?: Options) => + queryOptions< + FctMevBidCountByRelayServiceListResponse, + FctMevBidCountByRelayServiceListError, + FctMevBidCountByRelayServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctMevBidCountByRelayServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctMevBidCountByRelayServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctMevBidCountByRelayServiceListQueryKey(options) -}); + queryKey: fctMevBidCountByRelayServiceListQueryKey(options), + }); -export const fctMevBidCountByRelayServiceGetQueryKey = (options: Options) => createQueryKey('fctMevBidCountByRelayServiceGet', options); +export const fctMevBidCountByRelayServiceGetQueryKey = (options: Options) => + createQueryKey('fctMevBidCountByRelayServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctMevBidCountByRelayServiceGetOptions = (options: Options) => queryOptions>({ +export const fctMevBidCountByRelayServiceGetOptions = (options: Options) => + queryOptions< + FctMevBidCountByRelayServiceGetResponse, + FctMevBidCountByRelayServiceGetError, + FctMevBidCountByRelayServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctMevBidCountByRelayServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctMevBidCountByRelayServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctMevBidCountByRelayServiceGetQueryKey(options) -}); + queryKey: fctMevBidCountByRelayServiceGetQueryKey(options), + }); -export const fctMevBidHighestValueByBuilderChunked50MsServiceListQueryKey = (options?: Options) => createQueryKey('fctMevBidHighestValueByBuilderChunked50MsServiceList', options); +export const fctMevBidHighestValueByBuilderChunked50MsServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctMevBidHighestValueByBuilderChunked50MsServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctMevBidHighestValueByBuilderChunked50MsServiceListOptions = (options?: Options) => queryOptions>({ +export const fctMevBidHighestValueByBuilderChunked50MsServiceListOptions = ( + options?: Options +) => + queryOptions< + FctMevBidHighestValueByBuilderChunked50MsServiceListResponse, + FctMevBidHighestValueByBuilderChunked50MsServiceListError, + FctMevBidHighestValueByBuilderChunked50MsServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctMevBidHighestValueByBuilderChunked50MsServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctMevBidHighestValueByBuilderChunked50MsServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctMevBidHighestValueByBuilderChunked50MsServiceListQueryKey(options) -}); + queryKey: fctMevBidHighestValueByBuilderChunked50MsServiceListQueryKey(options), + }); -export const fctMevBidHighestValueByBuilderChunked50MsServiceGetQueryKey = (options: Options) => createQueryKey('fctMevBidHighestValueByBuilderChunked50MsServiceGet', options); +export const fctMevBidHighestValueByBuilderChunked50MsServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctMevBidHighestValueByBuilderChunked50MsServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctMevBidHighestValueByBuilderChunked50MsServiceGetOptions = (options: Options) => queryOptions>({ +export const fctMevBidHighestValueByBuilderChunked50MsServiceGetOptions = ( + options: Options +) => + queryOptions< + FctMevBidHighestValueByBuilderChunked50MsServiceGetResponse, + FctMevBidHighestValueByBuilderChunked50MsServiceGetError, + FctMevBidHighestValueByBuilderChunked50MsServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctMevBidHighestValueByBuilderChunked50MsServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctMevBidHighestValueByBuilderChunked50MsServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctMevBidHighestValueByBuilderChunked50MsServiceGetQueryKey(options) -}); + queryKey: fctMevBidHighestValueByBuilderChunked50MsServiceGetQueryKey(options), + }); -export const fctMissedSlotRateDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctMissedSlotRateDailyServiceList', options); +export const fctMissedSlotRateDailyServiceListQueryKey = (options?: Options) => + createQueryKey('fctMissedSlotRateDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctMissedSlotRateDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctMissedSlotRateDailyServiceListOptions = (options?: Options) => + queryOptions< + FctMissedSlotRateDailyServiceListResponse, + FctMissedSlotRateDailyServiceListError, + FctMissedSlotRateDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctMissedSlotRateDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctMissedSlotRateDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctMissedSlotRateDailyServiceListQueryKey(options) -}); + queryKey: fctMissedSlotRateDailyServiceListQueryKey(options), + }); -export const fctMissedSlotRateDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctMissedSlotRateDailyServiceGet', options); +export const fctMissedSlotRateDailyServiceGetQueryKey = (options: Options) => + createQueryKey('fctMissedSlotRateDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctMissedSlotRateDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctMissedSlotRateDailyServiceGetOptions = (options: Options) => + queryOptions< + FctMissedSlotRateDailyServiceGetResponse, + FctMissedSlotRateDailyServiceGetError, + FctMissedSlotRateDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctMissedSlotRateDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctMissedSlotRateDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctMissedSlotRateDailyServiceGetQueryKey(options) -}); + queryKey: fctMissedSlotRateDailyServiceGetQueryKey(options), + }); -export const fctMissedSlotRateHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctMissedSlotRateHourlyServiceList', options); +export const fctMissedSlotRateHourlyServiceListQueryKey = (options?: Options) => + createQueryKey('fctMissedSlotRateHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctMissedSlotRateHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctMissedSlotRateHourlyServiceListOptions = (options?: Options) => + queryOptions< + FctMissedSlotRateHourlyServiceListResponse, + FctMissedSlotRateHourlyServiceListError, + FctMissedSlotRateHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctMissedSlotRateHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctMissedSlotRateHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctMissedSlotRateHourlyServiceListQueryKey(options) -}); + queryKey: fctMissedSlotRateHourlyServiceListQueryKey(options), + }); -export const fctMissedSlotRateHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctMissedSlotRateHourlyServiceGet', options); +export const fctMissedSlotRateHourlyServiceGetQueryKey = (options: Options) => + createQueryKey('fctMissedSlotRateHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctMissedSlotRateHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctMissedSlotRateHourlyServiceGetOptions = (options: Options) => + queryOptions< + FctMissedSlotRateHourlyServiceGetResponse, + FctMissedSlotRateHourlyServiceGetError, + FctMissedSlotRateHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctMissedSlotRateHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctMissedSlotRateHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctMissedSlotRateHourlyServiceGetQueryKey(options) -}); + queryKey: fctMissedSlotRateHourlyServiceGetQueryKey(options), + }); -export const fctNodeActiveLast24hServiceListQueryKey = (options?: Options) => createQueryKey('fctNodeActiveLast24hServiceList', options); +export const fctNodeActiveLast24hServiceListQueryKey = (options?: Options) => + createQueryKey('fctNodeActiveLast24hServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctNodeActiveLast24hServiceListOptions = (options?: Options) => queryOptions>({ +export const fctNodeActiveLast24hServiceListOptions = (options?: Options) => + queryOptions< + FctNodeActiveLast24hServiceListResponse, + FctNodeActiveLast24hServiceListError, + FctNodeActiveLast24hServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctNodeActiveLast24hServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctNodeActiveLast24hServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctNodeActiveLast24hServiceListQueryKey(options) -}); + queryKey: fctNodeActiveLast24hServiceListQueryKey(options), + }); -export const fctNodeActiveLast24hServiceGetQueryKey = (options: Options) => createQueryKey('fctNodeActiveLast24hServiceGet', options); +export const fctNodeActiveLast24hServiceGetQueryKey = (options: Options) => + createQueryKey('fctNodeActiveLast24hServiceGet', options); /** * Get record * * Retrieve a single record by meta_client_name */ -export const fctNodeActiveLast24hServiceGetOptions = (options: Options) => queryOptions>({ +export const fctNodeActiveLast24hServiceGetOptions = (options: Options) => + queryOptions< + FctNodeActiveLast24hServiceGetResponse, + FctNodeActiveLast24hServiceGetError, + FctNodeActiveLast24hServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctNodeActiveLast24hServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctNodeActiveLast24hServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctNodeActiveLast24hServiceGetQueryKey(options) -}); + queryKey: fctNodeActiveLast24hServiceGetQueryKey(options), + }); -export const fctNodeCpuUtilizationByProcessServiceListQueryKey = (options?: Options) => createQueryKey('fctNodeCpuUtilizationByProcessServiceList', options); +export const fctNodeCpuUtilizationByProcessServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctNodeCpuUtilizationByProcessServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctNodeCpuUtilizationByProcessServiceListOptions = (options?: Options) => queryOptions>({ +export const fctNodeCpuUtilizationByProcessServiceListOptions = ( + options?: Options +) => + queryOptions< + FctNodeCpuUtilizationByProcessServiceListResponse, + FctNodeCpuUtilizationByProcessServiceListError, + FctNodeCpuUtilizationByProcessServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctNodeCpuUtilizationByProcessServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctNodeCpuUtilizationByProcessServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctNodeCpuUtilizationByProcessServiceListQueryKey(options) -}); + queryKey: fctNodeCpuUtilizationByProcessServiceListQueryKey(options), + }); -export const fctNodeCpuUtilizationByProcessServiceGetQueryKey = (options: Options) => createQueryKey('fctNodeCpuUtilizationByProcessServiceGet', options); +export const fctNodeCpuUtilizationByProcessServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctNodeCpuUtilizationByProcessServiceGet', options); /** * Get record * * Retrieve a single record by wallclock_slot_start_date_time */ -export const fctNodeCpuUtilizationByProcessServiceGetOptions = (options: Options) => queryOptions>({ +export const fctNodeCpuUtilizationByProcessServiceGetOptions = ( + options: Options +) => + queryOptions< + FctNodeCpuUtilizationByProcessServiceGetResponse, + FctNodeCpuUtilizationByProcessServiceGetError, + FctNodeCpuUtilizationByProcessServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctNodeCpuUtilizationByProcessServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctNodeCpuUtilizationByProcessServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctNodeCpuUtilizationByProcessServiceGetQueryKey(options) -}); + queryKey: fctNodeCpuUtilizationByProcessServiceGetQueryKey(options), + }); -export const fctNodeDiskIoByProcessServiceListQueryKey = (options?: Options) => createQueryKey('fctNodeDiskIoByProcessServiceList', options); +export const fctNodeDiskIoByProcessServiceListQueryKey = (options?: Options) => + createQueryKey('fctNodeDiskIoByProcessServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctNodeDiskIoByProcessServiceListOptions = (options?: Options) => queryOptions>({ +export const fctNodeDiskIoByProcessServiceListOptions = (options?: Options) => + queryOptions< + FctNodeDiskIoByProcessServiceListResponse, + FctNodeDiskIoByProcessServiceListError, + FctNodeDiskIoByProcessServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctNodeDiskIoByProcessServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctNodeDiskIoByProcessServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctNodeDiskIoByProcessServiceListQueryKey(options) -}); + queryKey: fctNodeDiskIoByProcessServiceListQueryKey(options), + }); -export const fctNodeDiskIoByProcessServiceGetQueryKey = (options: Options) => createQueryKey('fctNodeDiskIoByProcessServiceGet', options); +export const fctNodeDiskIoByProcessServiceGetQueryKey = (options: Options) => + createQueryKey('fctNodeDiskIoByProcessServiceGet', options); /** * Get record * * Retrieve a single record by wallclock_slot_start_date_time */ -export const fctNodeDiskIoByProcessServiceGetOptions = (options: Options) => queryOptions>({ +export const fctNodeDiskIoByProcessServiceGetOptions = (options: Options) => + queryOptions< + FctNodeDiskIoByProcessServiceGetResponse, + FctNodeDiskIoByProcessServiceGetError, + FctNodeDiskIoByProcessServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctNodeDiskIoByProcessServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctNodeDiskIoByProcessServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctNodeDiskIoByProcessServiceGetQueryKey(options) -}); + queryKey: fctNodeDiskIoByProcessServiceGetQueryKey(options), + }); -export const fctNodeMemoryUsageByProcessServiceListQueryKey = (options?: Options) => createQueryKey('fctNodeMemoryUsageByProcessServiceList', options); +export const fctNodeMemoryUsageByProcessServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctNodeMemoryUsageByProcessServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctNodeMemoryUsageByProcessServiceListOptions = (options?: Options) => queryOptions>({ +export const fctNodeMemoryUsageByProcessServiceListOptions = ( + options?: Options +) => + queryOptions< + FctNodeMemoryUsageByProcessServiceListResponse, + FctNodeMemoryUsageByProcessServiceListError, + FctNodeMemoryUsageByProcessServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctNodeMemoryUsageByProcessServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctNodeMemoryUsageByProcessServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctNodeMemoryUsageByProcessServiceListQueryKey(options) -}); + queryKey: fctNodeMemoryUsageByProcessServiceListQueryKey(options), + }); -export const fctNodeMemoryUsageByProcessServiceGetQueryKey = (options: Options) => createQueryKey('fctNodeMemoryUsageByProcessServiceGet', options); +export const fctNodeMemoryUsageByProcessServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctNodeMemoryUsageByProcessServiceGet', options); /** * Get record * * Retrieve a single record by wallclock_slot_start_date_time */ -export const fctNodeMemoryUsageByProcessServiceGetOptions = (options: Options) => queryOptions>({ +export const fctNodeMemoryUsageByProcessServiceGetOptions = ( + options: Options +) => + queryOptions< + FctNodeMemoryUsageByProcessServiceGetResponse, + FctNodeMemoryUsageByProcessServiceGetError, + FctNodeMemoryUsageByProcessServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctNodeMemoryUsageByProcessServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctNodeMemoryUsageByProcessServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctNodeMemoryUsageByProcessServiceGetQueryKey(options) -}); + queryKey: fctNodeMemoryUsageByProcessServiceGetQueryKey(options), + }); -export const fctNodeNetworkIoByProcessServiceListQueryKey = (options?: Options) => createQueryKey('fctNodeNetworkIoByProcessServiceList', options); +export const fctNodeNetworkIoByProcessServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctNodeNetworkIoByProcessServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctNodeNetworkIoByProcessServiceListOptions = (options?: Options) => queryOptions>({ +export const fctNodeNetworkIoByProcessServiceListOptions = ( + options?: Options +) => + queryOptions< + FctNodeNetworkIoByProcessServiceListResponse, + FctNodeNetworkIoByProcessServiceListError, + FctNodeNetworkIoByProcessServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctNodeNetworkIoByProcessServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctNodeNetworkIoByProcessServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctNodeNetworkIoByProcessServiceListQueryKey(options) -}); + queryKey: fctNodeNetworkIoByProcessServiceListQueryKey(options), + }); -export const fctNodeNetworkIoByProcessServiceGetQueryKey = (options: Options) => createQueryKey('fctNodeNetworkIoByProcessServiceGet', options); +export const fctNodeNetworkIoByProcessServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctNodeNetworkIoByProcessServiceGet', options); /** * Get record * * Retrieve a single record by wallclock_slot_start_date_time */ -export const fctNodeNetworkIoByProcessServiceGetOptions = (options: Options) => queryOptions>({ +export const fctNodeNetworkIoByProcessServiceGetOptions = (options: Options) => + queryOptions< + FctNodeNetworkIoByProcessServiceGetResponse, + FctNodeNetworkIoByProcessServiceGetError, + FctNodeNetworkIoByProcessServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctNodeNetworkIoByProcessServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctNodeNetworkIoByProcessServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctNodeNetworkIoByProcessServiceGetQueryKey(options) -}); + queryKey: fctNodeNetworkIoByProcessServiceGetQueryKey(options), + }); -export const fctOpcodeGasByOpcodeDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctOpcodeGasByOpcodeDailyServiceList', options); +export const fctOpcodeGasByOpcodeDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctOpcodeGasByOpcodeDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctOpcodeGasByOpcodeDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctOpcodeGasByOpcodeDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctOpcodeGasByOpcodeDailyServiceListResponse, + FctOpcodeGasByOpcodeDailyServiceListError, + FctOpcodeGasByOpcodeDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctOpcodeGasByOpcodeDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctOpcodeGasByOpcodeDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctOpcodeGasByOpcodeDailyServiceListQueryKey(options) -}); + queryKey: fctOpcodeGasByOpcodeDailyServiceListQueryKey(options), + }); -export const fctOpcodeGasByOpcodeDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctOpcodeGasByOpcodeDailyServiceGet', options); +export const fctOpcodeGasByOpcodeDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctOpcodeGasByOpcodeDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctOpcodeGasByOpcodeDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctOpcodeGasByOpcodeDailyServiceGetOptions = (options: Options) => + queryOptions< + FctOpcodeGasByOpcodeDailyServiceGetResponse, + FctOpcodeGasByOpcodeDailyServiceGetError, + FctOpcodeGasByOpcodeDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctOpcodeGasByOpcodeDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctOpcodeGasByOpcodeDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctOpcodeGasByOpcodeDailyServiceGetQueryKey(options) -}); + queryKey: fctOpcodeGasByOpcodeDailyServiceGetQueryKey(options), + }); -export const fctOpcodeGasByOpcodeHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctOpcodeGasByOpcodeHourlyServiceList', options); +export const fctOpcodeGasByOpcodeHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctOpcodeGasByOpcodeHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctOpcodeGasByOpcodeHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctOpcodeGasByOpcodeHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctOpcodeGasByOpcodeHourlyServiceListResponse, + FctOpcodeGasByOpcodeHourlyServiceListError, + FctOpcodeGasByOpcodeHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctOpcodeGasByOpcodeHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctOpcodeGasByOpcodeHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctOpcodeGasByOpcodeHourlyServiceListQueryKey(options) -}); + queryKey: fctOpcodeGasByOpcodeHourlyServiceListQueryKey(options), + }); -export const fctOpcodeGasByOpcodeHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctOpcodeGasByOpcodeHourlyServiceGet', options); +export const fctOpcodeGasByOpcodeHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctOpcodeGasByOpcodeHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctOpcodeGasByOpcodeHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctOpcodeGasByOpcodeHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctOpcodeGasByOpcodeHourlyServiceGetResponse, + FctOpcodeGasByOpcodeHourlyServiceGetError, + FctOpcodeGasByOpcodeHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctOpcodeGasByOpcodeHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctOpcodeGasByOpcodeHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctOpcodeGasByOpcodeHourlyServiceGetQueryKey(options) -}); + queryKey: fctOpcodeGasByOpcodeHourlyServiceGetQueryKey(options), + }); -export const fctOpcodeOpsDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctOpcodeOpsDailyServiceList', options); +export const fctOpcodeOpsDailyServiceListQueryKey = (options?: Options) => + createQueryKey('fctOpcodeOpsDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctOpcodeOpsDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctOpcodeOpsDailyServiceListOptions = (options?: Options) => + queryOptions< + FctOpcodeOpsDailyServiceListResponse, + FctOpcodeOpsDailyServiceListError, + FctOpcodeOpsDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctOpcodeOpsDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctOpcodeOpsDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctOpcodeOpsDailyServiceListQueryKey(options) -}); + queryKey: fctOpcodeOpsDailyServiceListQueryKey(options), + }); -export const fctOpcodeOpsDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctOpcodeOpsDailyServiceGet', options); +export const fctOpcodeOpsDailyServiceGetQueryKey = (options: Options) => + createQueryKey('fctOpcodeOpsDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctOpcodeOpsDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctOpcodeOpsDailyServiceGetOptions = (options: Options) => + queryOptions< + FctOpcodeOpsDailyServiceGetResponse, + FctOpcodeOpsDailyServiceGetError, + FctOpcodeOpsDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctOpcodeOpsDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctOpcodeOpsDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctOpcodeOpsDailyServiceGetQueryKey(options) -}); + queryKey: fctOpcodeOpsDailyServiceGetQueryKey(options), + }); -export const fctOpcodeOpsHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctOpcodeOpsHourlyServiceList', options); +export const fctOpcodeOpsHourlyServiceListQueryKey = (options?: Options) => + createQueryKey('fctOpcodeOpsHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctOpcodeOpsHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctOpcodeOpsHourlyServiceListOptions = (options?: Options) => + queryOptions< + FctOpcodeOpsHourlyServiceListResponse, + FctOpcodeOpsHourlyServiceListError, + FctOpcodeOpsHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctOpcodeOpsHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctOpcodeOpsHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctOpcodeOpsHourlyServiceListQueryKey(options) -}); + queryKey: fctOpcodeOpsHourlyServiceListQueryKey(options), + }); -export const fctOpcodeOpsHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctOpcodeOpsHourlyServiceGet', options); +export const fctOpcodeOpsHourlyServiceGetQueryKey = (options: Options) => + createQueryKey('fctOpcodeOpsHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctOpcodeOpsHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctOpcodeOpsHourlyServiceGetOptions = (options: Options) => + queryOptions< + FctOpcodeOpsHourlyServiceGetResponse, + FctOpcodeOpsHourlyServiceGetError, + FctOpcodeOpsHourlyServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctOpcodeOpsHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctOpcodeOpsHourlyServiceGetQueryKey(options), + }); + +export const fctPayloadBidHighestValueByBuilderChunked50MsServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctPayloadBidHighestValueByBuilderChunked50MsServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctPayloadBidHighestValueByBuilderChunked50MsServiceListOptions = ( + options?: Options +) => + queryOptions< + FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListError, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctPayloadBidHighestValueByBuilderChunked50MsServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctPayloadBidHighestValueByBuilderChunked50MsServiceListQueryKey(options), + }); + +export const fctPayloadBidHighestValueByBuilderChunked50MsServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctPayloadBidHighestValueByBuilderChunked50MsServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctPayloadBidHighestValueByBuilderChunked50MsServiceGetOptions = ( + options: Options +) => + queryOptions< + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetError, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctOpcodeOpsHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctPayloadBidHighestValueByBuilderChunked50MsServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctOpcodeOpsHourlyServiceGetQueryKey(options) -}); + queryKey: fctPayloadBidHighestValueByBuilderChunked50MsServiceGetQueryKey(options), + }); -export const fctPreparedBlockServiceListQueryKey = (options?: Options) => createQueryKey('fctPreparedBlockServiceList', options); +export const fctPreparedBlockServiceListQueryKey = (options?: Options) => + createQueryKey('fctPreparedBlockServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctPreparedBlockServiceListOptions = (options?: Options) => queryOptions>({ +export const fctPreparedBlockServiceListOptions = (options?: Options) => + queryOptions< + FctPreparedBlockServiceListResponse, + FctPreparedBlockServiceListError, + FctPreparedBlockServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctPreparedBlockServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctPreparedBlockServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctPreparedBlockServiceListQueryKey(options) -}); + queryKey: fctPreparedBlockServiceListQueryKey(options), + }); -export const fctPreparedBlockServiceGetQueryKey = (options: Options) => createQueryKey('fctPreparedBlockServiceGet', options); +export const fctPreparedBlockServiceGetQueryKey = (options: Options) => + createQueryKey('fctPreparedBlockServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctPreparedBlockServiceGetOptions = (options: Options) => queryOptions>({ +export const fctPreparedBlockServiceGetOptions = (options: Options) => + queryOptions< + FctPreparedBlockServiceGetResponse, + FctPreparedBlockServiceGetError, + FctPreparedBlockServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctPreparedBlockServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctPreparedBlockServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctPreparedBlockServiceGetQueryKey(options) -}); + queryKey: fctPreparedBlockServiceGetQueryKey(options), + }); -export const fctProposerRewardDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctProposerRewardDailyServiceList', options); +export const fctProposerRewardDailyServiceListQueryKey = (options?: Options) => + createQueryKey('fctProposerRewardDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctProposerRewardDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctProposerRewardDailyServiceListOptions = (options?: Options) => + queryOptions< + FctProposerRewardDailyServiceListResponse, + FctProposerRewardDailyServiceListError, + FctProposerRewardDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctProposerRewardDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctProposerRewardDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctProposerRewardDailyServiceListQueryKey(options) -}); + queryKey: fctProposerRewardDailyServiceListQueryKey(options), + }); -export const fctProposerRewardDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctProposerRewardDailyServiceGet', options); +export const fctProposerRewardDailyServiceGetQueryKey = (options: Options) => + createQueryKey('fctProposerRewardDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctProposerRewardDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctProposerRewardDailyServiceGetOptions = (options: Options) => + queryOptions< + FctProposerRewardDailyServiceGetResponse, + FctProposerRewardDailyServiceGetError, + FctProposerRewardDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctProposerRewardDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctProposerRewardDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctProposerRewardDailyServiceGetQueryKey(options) -}); + queryKey: fctProposerRewardDailyServiceGetQueryKey(options), + }); -export const fctProposerRewardHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctProposerRewardHourlyServiceList', options); +export const fctProposerRewardHourlyServiceListQueryKey = (options?: Options) => + createQueryKey('fctProposerRewardHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctProposerRewardHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctProposerRewardHourlyServiceListOptions = (options?: Options) => + queryOptions< + FctProposerRewardHourlyServiceListResponse, + FctProposerRewardHourlyServiceListError, + FctProposerRewardHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctProposerRewardHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctProposerRewardHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctProposerRewardHourlyServiceListQueryKey(options) -}); + queryKey: fctProposerRewardHourlyServiceListQueryKey(options), + }); -export const fctProposerRewardHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctProposerRewardHourlyServiceGet', options); +export const fctProposerRewardHourlyServiceGetQueryKey = (options: Options) => + createQueryKey('fctProposerRewardHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctProposerRewardHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctProposerRewardHourlyServiceGetOptions = (options: Options) => + queryOptions< + FctProposerRewardHourlyServiceGetResponse, + FctProposerRewardHourlyServiceGetError, + FctProposerRewardHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctProposerRewardHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctProposerRewardHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctProposerRewardHourlyServiceGetQueryKey(options) -}); + queryKey: fctProposerRewardHourlyServiceGetQueryKey(options), + }); -export const fctReorgDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctReorgDailyServiceList', options); +export const fctReorgDailyServiceListQueryKey = (options?: Options) => + createQueryKey('fctReorgDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctReorgDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctReorgDailyServiceListOptions = (options?: Options) => + queryOptions< + FctReorgDailyServiceListResponse, + FctReorgDailyServiceListError, + FctReorgDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctReorgDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctReorgDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctReorgDailyServiceListQueryKey(options) -}); + queryKey: fctReorgDailyServiceListQueryKey(options), + }); -export const fctReorgDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctReorgDailyServiceGet', options); +export const fctReorgDailyServiceGetQueryKey = (options: Options) => + createQueryKey('fctReorgDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctReorgDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctReorgDailyServiceGetOptions = (options: Options) => + queryOptions< + FctReorgDailyServiceGetResponse, + FctReorgDailyServiceGetError, + FctReorgDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctReorgDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctReorgDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctReorgDailyServiceGetQueryKey(options) -}); + queryKey: fctReorgDailyServiceGetQueryKey(options), + }); -export const fctReorgHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctReorgHourlyServiceList', options); +export const fctReorgHourlyServiceListQueryKey = (options?: Options) => + createQueryKey('fctReorgHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctReorgHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctReorgHourlyServiceListOptions = (options?: Options) => + queryOptions< + FctReorgHourlyServiceListResponse, + FctReorgHourlyServiceListError, + FctReorgHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctReorgHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctReorgHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctReorgHourlyServiceListQueryKey(options) -}); + queryKey: fctReorgHourlyServiceListQueryKey(options), + }); -export const fctReorgHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctReorgHourlyServiceGet', options); +export const fctReorgHourlyServiceGetQueryKey = (options: Options) => + createQueryKey('fctReorgHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctReorgHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctReorgHourlyServiceGetOptions = (options: Options) => + queryOptions< + FctReorgHourlyServiceGetResponse, + FctReorgHourlyServiceGetError, + FctReorgHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctReorgHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctReorgHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctReorgHourlyServiceGetQueryKey(options) -}); + queryKey: fctReorgHourlyServiceGetQueryKey(options), + }); -export const fctRocketpoolValidatorServiceListQueryKey = (options?: Options) => createQueryKey('fctRocketpoolValidatorServiceList', options); +export const fctRocketpoolValidatorServiceListQueryKey = (options?: Options) => + createQueryKey('fctRocketpoolValidatorServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctRocketpoolValidatorServiceListOptions = (options?: Options) => queryOptions>({ +export const fctRocketpoolValidatorServiceListOptions = (options?: Options) => + queryOptions< + FctRocketpoolValidatorServiceListResponse, + FctRocketpoolValidatorServiceListError, + FctRocketpoolValidatorServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctRocketpoolValidatorServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctRocketpoolValidatorServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctRocketpoolValidatorServiceListQueryKey(options) -}); + queryKey: fctRocketpoolValidatorServiceListQueryKey(options), + }); -export const fctRocketpoolValidatorServiceGetQueryKey = (options: Options) => createQueryKey('fctRocketpoolValidatorServiceGet', options); +export const fctRocketpoolValidatorServiceGetQueryKey = (options: Options) => + createQueryKey('fctRocketpoolValidatorServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const fctRocketpoolValidatorServiceGetOptions = (options: Options) => queryOptions>({ +export const fctRocketpoolValidatorServiceGetOptions = (options: Options) => + queryOptions< + FctRocketpoolValidatorServiceGetResponse, + FctRocketpoolValidatorServiceGetError, + FctRocketpoolValidatorServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctRocketpoolValidatorServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctRocketpoolValidatorServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctRocketpoolValidatorServiceGetQueryKey(options) -}); + queryKey: fctRocketpoolValidatorServiceGetQueryKey(options), + }); -export const fctStorageSlotStateByAddressDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctStorageSlotStateByAddressDailyServiceList', options); +export const fctStorageSlotStateByAddressDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctStorageSlotStateByAddressDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateByAddressDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctStorageSlotStateByAddressDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctStorageSlotStateByAddressDailyServiceListResponse, + FctStorageSlotStateByAddressDailyServiceListError, + FctStorageSlotStateByAddressDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateByAddressDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateByAddressDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateByAddressDailyServiceListQueryKey(options) -}); + queryKey: fctStorageSlotStateByAddressDailyServiceListQueryKey(options), + }); -export const fctStorageSlotStateByAddressDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctStorageSlotStateByAddressDailyServiceGet', options); +export const fctStorageSlotStateByAddressDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctStorageSlotStateByAddressDailyServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const fctStorageSlotStateByAddressDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctStorageSlotStateByAddressDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctStorageSlotStateByAddressDailyServiceGetResponse, + FctStorageSlotStateByAddressDailyServiceGetError, + FctStorageSlotStateByAddressDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateByAddressDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateByAddressDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateByAddressDailyServiceGetQueryKey(options) -}); + queryKey: fctStorageSlotStateByAddressDailyServiceGetQueryKey(options), + }); -export const fctStorageSlotStateByAddressHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctStorageSlotStateByAddressHourlyServiceList', options); +export const fctStorageSlotStateByAddressHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctStorageSlotStateByAddressHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateByAddressHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctStorageSlotStateByAddressHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctStorageSlotStateByAddressHourlyServiceListResponse, + FctStorageSlotStateByAddressHourlyServiceListError, + FctStorageSlotStateByAddressHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateByAddressHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateByAddressHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateByAddressHourlyServiceListQueryKey(options) -}); + queryKey: fctStorageSlotStateByAddressHourlyServiceListQueryKey(options), + }); -export const fctStorageSlotStateByAddressHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctStorageSlotStateByAddressHourlyServiceGet', options); +export const fctStorageSlotStateByAddressHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctStorageSlotStateByAddressHourlyServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const fctStorageSlotStateByAddressHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctStorageSlotStateByAddressHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctStorageSlotStateByAddressHourlyServiceGetResponse, + FctStorageSlotStateByAddressHourlyServiceGetError, + FctStorageSlotStateByAddressHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateByAddressHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateByAddressHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateByAddressHourlyServiceGetQueryKey(options) -}); + queryKey: fctStorageSlotStateByAddressHourlyServiceGetQueryKey(options), + }); -export const fctStorageSlotStateByBlockDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctStorageSlotStateByBlockDailyServiceList', options); +export const fctStorageSlotStateByBlockDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctStorageSlotStateByBlockDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateByBlockDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctStorageSlotStateByBlockDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctStorageSlotStateByBlockDailyServiceListResponse, + FctStorageSlotStateByBlockDailyServiceListError, + FctStorageSlotStateByBlockDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateByBlockDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateByBlockDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateByBlockDailyServiceListQueryKey(options) -}); + queryKey: fctStorageSlotStateByBlockDailyServiceListQueryKey(options), + }); -export const fctStorageSlotStateByBlockDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctStorageSlotStateByBlockDailyServiceGet', options); +export const fctStorageSlotStateByBlockDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctStorageSlotStateByBlockDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctStorageSlotStateByBlockDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctStorageSlotStateByBlockDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctStorageSlotStateByBlockDailyServiceGetResponse, + FctStorageSlotStateByBlockDailyServiceGetError, + FctStorageSlotStateByBlockDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateByBlockDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateByBlockDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateByBlockDailyServiceGetQueryKey(options) -}); + queryKey: fctStorageSlotStateByBlockDailyServiceGetQueryKey(options), + }); -export const fctStorageSlotStateByBlockHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctStorageSlotStateByBlockHourlyServiceList', options); +export const fctStorageSlotStateByBlockHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctStorageSlotStateByBlockHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateByBlockHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctStorageSlotStateByBlockHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctStorageSlotStateByBlockHourlyServiceListResponse, + FctStorageSlotStateByBlockHourlyServiceListError, + FctStorageSlotStateByBlockHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateByBlockHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateByBlockHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateByBlockHourlyServiceListQueryKey(options) -}); + queryKey: fctStorageSlotStateByBlockHourlyServiceListQueryKey(options), + }); -export const fctStorageSlotStateByBlockHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctStorageSlotStateByBlockHourlyServiceGet', options); +export const fctStorageSlotStateByBlockHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctStorageSlotStateByBlockHourlyServiceGet', options); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctStorageSlotStateByBlockHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctStorageSlotStateByBlockHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctStorageSlotStateByBlockHourlyServiceGetResponse, + FctStorageSlotStateByBlockHourlyServiceGetError, + FctStorageSlotStateByBlockHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateByBlockHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateByBlockHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateByBlockHourlyServiceGetQueryKey(options) -}); + queryKey: fctStorageSlotStateByBlockHourlyServiceGetQueryKey(options), + }); -export const fctStorageSlotStateWithExpiryByAddressDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctStorageSlotStateWithExpiryByAddressDailyServiceList', options); +export const fctStorageSlotStateWithExpiryByAddressDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctStorageSlotStateWithExpiryByAddressDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateWithExpiryByAddressDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctStorageSlotStateWithExpiryByAddressDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctStorageSlotStateWithExpiryByAddressDailyServiceListResponse, + FctStorageSlotStateWithExpiryByAddressDailyServiceListError, + FctStorageSlotStateWithExpiryByAddressDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateWithExpiryByAddressDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateWithExpiryByAddressDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateWithExpiryByAddressDailyServiceListQueryKey(options) -}); + queryKey: fctStorageSlotStateWithExpiryByAddressDailyServiceListQueryKey(options), + }); -export const fctStorageSlotStateWithExpiryByAddressDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctStorageSlotStateWithExpiryByAddressDailyServiceGet', options); +export const fctStorageSlotStateWithExpiryByAddressDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctStorageSlotStateWithExpiryByAddressDailyServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const fctStorageSlotStateWithExpiryByAddressDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctStorageSlotStateWithExpiryByAddressDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetError, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateWithExpiryByAddressDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateWithExpiryByAddressDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateWithExpiryByAddressDailyServiceGetQueryKey(options) -}); + queryKey: fctStorageSlotStateWithExpiryByAddressDailyServiceGetQueryKey(options), + }); -export const fctStorageSlotStateWithExpiryByAddressHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctStorageSlotStateWithExpiryByAddressHourlyServiceList', options); +export const fctStorageSlotStateWithExpiryByAddressHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctStorageSlotStateWithExpiryByAddressHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateWithExpiryByAddressHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctStorageSlotStateWithExpiryByAddressHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListError, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateWithExpiryByAddressHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateWithExpiryByAddressHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateWithExpiryByAddressHourlyServiceListQueryKey(options) -}); + queryKey: fctStorageSlotStateWithExpiryByAddressHourlyServiceListQueryKey(options), + }); -export const fctStorageSlotStateWithExpiryByAddressHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctStorageSlotStateWithExpiryByAddressHourlyServiceGet', options); +export const fctStorageSlotStateWithExpiryByAddressHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctStorageSlotStateWithExpiryByAddressHourlyServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const fctStorageSlotStateWithExpiryByAddressHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctStorageSlotStateWithExpiryByAddressHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetError, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateWithExpiryByAddressHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateWithExpiryByAddressHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateWithExpiryByAddressHourlyServiceGetQueryKey(options) -}); + queryKey: fctStorageSlotStateWithExpiryByAddressHourlyServiceGetQueryKey(options), + }); -export const fctStorageSlotStateWithExpiryByBlockDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctStorageSlotStateWithExpiryByBlockDailyServiceList', options); +export const fctStorageSlotStateWithExpiryByBlockDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctStorageSlotStateWithExpiryByBlockDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateWithExpiryByBlockDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctStorageSlotStateWithExpiryByBlockDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctStorageSlotStateWithExpiryByBlockDailyServiceListResponse, + FctStorageSlotStateWithExpiryByBlockDailyServiceListError, + FctStorageSlotStateWithExpiryByBlockDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateWithExpiryByBlockDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateWithExpiryByBlockDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateWithExpiryByBlockDailyServiceListQueryKey(options) -}); + queryKey: fctStorageSlotStateWithExpiryByBlockDailyServiceListQueryKey(options), + }); -export const fctStorageSlotStateWithExpiryByBlockDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctStorageSlotStateWithExpiryByBlockDailyServiceGet', options); +export const fctStorageSlotStateWithExpiryByBlockDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctStorageSlotStateWithExpiryByBlockDailyServiceGet', options); /** * Get record * * Retrieve a single record by expiry_policy */ -export const fctStorageSlotStateWithExpiryByBlockDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctStorageSlotStateWithExpiryByBlockDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetError, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateWithExpiryByBlockDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateWithExpiryByBlockDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateWithExpiryByBlockDailyServiceGetQueryKey(options) -}); + queryKey: fctStorageSlotStateWithExpiryByBlockDailyServiceGetQueryKey(options), + }); -export const fctStorageSlotStateWithExpiryByBlockHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctStorageSlotStateWithExpiryByBlockHourlyServiceList', options); +export const fctStorageSlotStateWithExpiryByBlockHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctStorageSlotStateWithExpiryByBlockHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateWithExpiryByBlockHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctStorageSlotStateWithExpiryByBlockHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListError, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateWithExpiryByBlockHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateWithExpiryByBlockHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateWithExpiryByBlockHourlyServiceListQueryKey(options) -}); + queryKey: fctStorageSlotStateWithExpiryByBlockHourlyServiceListQueryKey(options), + }); -export const fctStorageSlotStateWithExpiryByBlockHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctStorageSlotStateWithExpiryByBlockHourlyServiceGet', options); +export const fctStorageSlotStateWithExpiryByBlockHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctStorageSlotStateWithExpiryByBlockHourlyServiceGet', options); /** * Get record * * Retrieve a single record by expiry_policy */ -export const fctStorageSlotStateWithExpiryByBlockHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctStorageSlotStateWithExpiryByBlockHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetError, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotStateWithExpiryByBlockHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotStateWithExpiryByBlockHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotStateWithExpiryByBlockHourlyServiceGetQueryKey(options) -}); + queryKey: fctStorageSlotStateWithExpiryByBlockHourlyServiceGetQueryKey(options), + }); -export const fctStorageSlotTop100ByBytesServiceListQueryKey = (options?: Options) => createQueryKey('fctStorageSlotTop100ByBytesServiceList', options); +export const fctStorageSlotTop100ByBytesServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctStorageSlotTop100ByBytesServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotTop100ByBytesServiceListOptions = (options?: Options) => queryOptions>({ +export const fctStorageSlotTop100ByBytesServiceListOptions = ( + options?: Options +) => + queryOptions< + FctStorageSlotTop100ByBytesServiceListResponse, + FctStorageSlotTop100ByBytesServiceListError, + FctStorageSlotTop100ByBytesServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotTop100ByBytesServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotTop100ByBytesServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotTop100ByBytesServiceListQueryKey(options) -}); + queryKey: fctStorageSlotTop100ByBytesServiceListQueryKey(options), + }); -export const fctStorageSlotTop100ByBytesServiceGetQueryKey = (options: Options) => createQueryKey('fctStorageSlotTop100ByBytesServiceGet', options); +export const fctStorageSlotTop100ByBytesServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctStorageSlotTop100ByBytesServiceGet', options); /** * Get record * * Retrieve a single record by rank */ -export const fctStorageSlotTop100ByBytesServiceGetOptions = (options: Options) => queryOptions>({ +export const fctStorageSlotTop100ByBytesServiceGetOptions = ( + options: Options +) => + queryOptions< + FctStorageSlotTop100ByBytesServiceGetResponse, + FctStorageSlotTop100ByBytesServiceGetError, + FctStorageSlotTop100ByBytesServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotTop100ByBytesServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotTop100ByBytesServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotTop100ByBytesServiceGetQueryKey(options) -}); + queryKey: fctStorageSlotTop100ByBytesServiceGetQueryKey(options), + }); -export const fctStorageSlotTop100BySlotsServiceListQueryKey = (options?: Options) => createQueryKey('fctStorageSlotTop100BySlotsServiceList', options); +export const fctStorageSlotTop100BySlotsServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctStorageSlotTop100BySlotsServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotTop100BySlotsServiceListOptions = (options?: Options) => queryOptions>({ +export const fctStorageSlotTop100BySlotsServiceListOptions = ( + options?: Options +) => + queryOptions< + FctStorageSlotTop100BySlotsServiceListResponse, + FctStorageSlotTop100BySlotsServiceListError, + FctStorageSlotTop100BySlotsServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotTop100BySlotsServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotTop100BySlotsServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotTop100BySlotsServiceListQueryKey(options) -}); + queryKey: fctStorageSlotTop100BySlotsServiceListQueryKey(options), + }); -export const fctStorageSlotTop100BySlotsServiceGetQueryKey = (options: Options) => createQueryKey('fctStorageSlotTop100BySlotsServiceGet', options); +export const fctStorageSlotTop100BySlotsServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctStorageSlotTop100BySlotsServiceGet', options); /** * Get record * * Retrieve a single record by rank */ -export const fctStorageSlotTop100BySlotsServiceGetOptions = (options: Options) => queryOptions>({ +export const fctStorageSlotTop100BySlotsServiceGetOptions = ( + options: Options +) => + queryOptions< + FctStorageSlotTop100BySlotsServiceGetResponse, + FctStorageSlotTop100BySlotsServiceGetError, + FctStorageSlotTop100BySlotsServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctStorageSlotTop100BySlotsServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctStorageSlotTop100BySlotsServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctStorageSlotTop100BySlotsServiceGetQueryKey(options) -}); + queryKey: fctStorageSlotTop100BySlotsServiceGetQueryKey(options), + }); -export const fctSyncCommitteeParticipationByValidatorServiceListQueryKey = (options?: Options) => createQueryKey('fctSyncCommitteeParticipationByValidatorServiceList', options); +export const fctSyncCommitteeParticipationByValidatorServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctSyncCommitteeParticipationByValidatorServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctSyncCommitteeParticipationByValidatorServiceListOptions = (options?: Options) => queryOptions>({ +export const fctSyncCommitteeParticipationByValidatorServiceListOptions = ( + options?: Options +) => + queryOptions< + FctSyncCommitteeParticipationByValidatorServiceListResponse, + FctSyncCommitteeParticipationByValidatorServiceListError, + FctSyncCommitteeParticipationByValidatorServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctSyncCommitteeParticipationByValidatorServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctSyncCommitteeParticipationByValidatorServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctSyncCommitteeParticipationByValidatorServiceListQueryKey(options) -}); + queryKey: fctSyncCommitteeParticipationByValidatorServiceListQueryKey(options), + }); -export const fctSyncCommitteeParticipationByValidatorServiceGetQueryKey = (options: Options) => createQueryKey('fctSyncCommitteeParticipationByValidatorServiceGet', options); +export const fctSyncCommitteeParticipationByValidatorServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctSyncCommitteeParticipationByValidatorServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const fctSyncCommitteeParticipationByValidatorServiceGetOptions = (options: Options) => queryOptions>({ +export const fctSyncCommitteeParticipationByValidatorServiceGetOptions = ( + options: Options +) => + queryOptions< + FctSyncCommitteeParticipationByValidatorServiceGetResponse, + FctSyncCommitteeParticipationByValidatorServiceGetError, + FctSyncCommitteeParticipationByValidatorServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctSyncCommitteeParticipationByValidatorServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctSyncCommitteeParticipationByValidatorServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctSyncCommitteeParticipationByValidatorServiceGetQueryKey(options) -}); + queryKey: fctSyncCommitteeParticipationByValidatorServiceGetQueryKey(options), + }); -export const fctSyncCommitteeParticipationByValidatorDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctSyncCommitteeParticipationByValidatorDailyServiceList', options); +export const fctSyncCommitteeParticipationByValidatorDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctSyncCommitteeParticipationByValidatorDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctSyncCommitteeParticipationByValidatorDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctSyncCommitteeParticipationByValidatorDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctSyncCommitteeParticipationByValidatorDailyServiceListResponse, + FctSyncCommitteeParticipationByValidatorDailyServiceListError, + FctSyncCommitteeParticipationByValidatorDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctSyncCommitteeParticipationByValidatorDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctSyncCommitteeParticipationByValidatorDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctSyncCommitteeParticipationByValidatorDailyServiceListQueryKey(options) -}); + queryKey: fctSyncCommitteeParticipationByValidatorDailyServiceListQueryKey(options), + }); -export const fctSyncCommitteeParticipationByValidatorDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctSyncCommitteeParticipationByValidatorDailyServiceGet', options); +export const fctSyncCommitteeParticipationByValidatorDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctSyncCommitteeParticipationByValidatorDailyServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const fctSyncCommitteeParticipationByValidatorDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctSyncCommitteeParticipationByValidatorDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctSyncCommitteeParticipationByValidatorDailyServiceGetResponse, + FctSyncCommitteeParticipationByValidatorDailyServiceGetError, + FctSyncCommitteeParticipationByValidatorDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctSyncCommitteeParticipationByValidatorDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctSyncCommitteeParticipationByValidatorDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctSyncCommitteeParticipationByValidatorDailyServiceGetQueryKey(options) -}); + queryKey: fctSyncCommitteeParticipationByValidatorDailyServiceGetQueryKey(options), + }); -export const fctSyncCommitteeParticipationByValidatorHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctSyncCommitteeParticipationByValidatorHourlyServiceList', options); +export const fctSyncCommitteeParticipationByValidatorHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctSyncCommitteeParticipationByValidatorHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctSyncCommitteeParticipationByValidatorHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctSyncCommitteeParticipationByValidatorHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctSyncCommitteeParticipationByValidatorHourlyServiceListResponse, + FctSyncCommitteeParticipationByValidatorHourlyServiceListError, + FctSyncCommitteeParticipationByValidatorHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctSyncCommitteeParticipationByValidatorHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctSyncCommitteeParticipationByValidatorHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctSyncCommitteeParticipationByValidatorHourlyServiceListQueryKey(options) -}); + queryKey: fctSyncCommitteeParticipationByValidatorHourlyServiceListQueryKey(options), + }); -export const fctSyncCommitteeParticipationByValidatorHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctSyncCommitteeParticipationByValidatorHourlyServiceGet', options); +export const fctSyncCommitteeParticipationByValidatorHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctSyncCommitteeParticipationByValidatorHourlyServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const fctSyncCommitteeParticipationByValidatorHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctSyncCommitteeParticipationByValidatorHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetError, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctSyncCommitteeParticipationByValidatorHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctSyncCommitteeParticipationByValidatorHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctSyncCommitteeParticipationByValidatorHourlyServiceGetQueryKey(options) -}); + queryKey: fctSyncCommitteeParticipationByValidatorHourlyServiceGetQueryKey(options), + }); -export const fctTokenContractStorageStateByBlockDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctTokenContractStorageStateByBlockDailyServiceList', options); +export const fctTokenContractStorageStateByBlockDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctTokenContractStorageStateByBlockDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctTokenContractStorageStateByBlockDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctTokenContractStorageStateByBlockDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctTokenContractStorageStateByBlockDailyServiceListResponse, + FctTokenContractStorageStateByBlockDailyServiceListError, + FctTokenContractStorageStateByBlockDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctTokenContractStorageStateByBlockDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctTokenContractStorageStateByBlockDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctTokenContractStorageStateByBlockDailyServiceListQueryKey(options) -}); + queryKey: fctTokenContractStorageStateByBlockDailyServiceListQueryKey(options), + }); -export const fctTokenContractStorageStateByBlockDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctTokenContractStorageStateByBlockDailyServiceGet', options); +export const fctTokenContractStorageStateByBlockDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctTokenContractStorageStateByBlockDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctTokenContractStorageStateByBlockDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctTokenContractStorageStateByBlockDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctTokenContractStorageStateByBlockDailyServiceGetResponse, + FctTokenContractStorageStateByBlockDailyServiceGetError, + FctTokenContractStorageStateByBlockDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctTokenContractStorageStateByBlockDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctTokenContractStorageStateByBlockDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctTokenContractStorageStateByBlockDailyServiceGetQueryKey(options) -}); + queryKey: fctTokenContractStorageStateByBlockDailyServiceGetQueryKey(options), + }); -export const fctValidatorBalanceServiceListQueryKey = (options?: Options) => createQueryKey('fctValidatorBalanceServiceList', options); +export const fctValidatorBalanceServiceListQueryKey = (options?: Options) => + createQueryKey('fctValidatorBalanceServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctValidatorBalanceServiceListOptions = (options?: Options) => queryOptions>({ +export const fctValidatorBalanceServiceListOptions = (options?: Options) => + queryOptions< + FctValidatorBalanceServiceListResponse, + FctValidatorBalanceServiceListError, + FctValidatorBalanceServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctValidatorBalanceServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctValidatorBalanceServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctValidatorBalanceServiceListQueryKey(options) -}); + queryKey: fctValidatorBalanceServiceListQueryKey(options), + }); -export const fctValidatorBalanceServiceGetQueryKey = (options: Options) => createQueryKey('fctValidatorBalanceServiceGet', options); +export const fctValidatorBalanceServiceGetQueryKey = (options: Options) => + createQueryKey('fctValidatorBalanceServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const fctValidatorBalanceServiceGetOptions = (options: Options) => queryOptions>({ +export const fctValidatorBalanceServiceGetOptions = (options: Options) => + queryOptions< + FctValidatorBalanceServiceGetResponse, + FctValidatorBalanceServiceGetError, + FctValidatorBalanceServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctValidatorBalanceServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctValidatorBalanceServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctValidatorBalanceServiceGetQueryKey(options) -}); + queryKey: fctValidatorBalanceServiceGetQueryKey(options), + }); -export const fctValidatorBalanceDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctValidatorBalanceDailyServiceList', options); +export const fctValidatorBalanceDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctValidatorBalanceDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctValidatorBalanceDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctValidatorBalanceDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctValidatorBalanceDailyServiceListResponse, + FctValidatorBalanceDailyServiceListError, + FctValidatorBalanceDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctValidatorBalanceDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctValidatorBalanceDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctValidatorBalanceDailyServiceListQueryKey(options) -}); + queryKey: fctValidatorBalanceDailyServiceListQueryKey(options), + }); -export const fctValidatorBalanceDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctValidatorBalanceDailyServiceGet', options); +export const fctValidatorBalanceDailyServiceGetQueryKey = (options: Options) => + createQueryKey('fctValidatorBalanceDailyServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const fctValidatorBalanceDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctValidatorBalanceDailyServiceGetOptions = (options: Options) => + queryOptions< + FctValidatorBalanceDailyServiceGetResponse, + FctValidatorBalanceDailyServiceGetError, + FctValidatorBalanceDailyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctValidatorBalanceDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctValidatorBalanceDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctValidatorBalanceDailyServiceGetQueryKey(options) -}); + queryKey: fctValidatorBalanceDailyServiceGetQueryKey(options), + }); -export const fctValidatorBalanceHourlyServiceListQueryKey = (options?: Options) => createQueryKey('fctValidatorBalanceHourlyServiceList', options); +export const fctValidatorBalanceHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctValidatorBalanceHourlyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctValidatorBalanceHourlyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctValidatorBalanceHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctValidatorBalanceHourlyServiceListResponse, + FctValidatorBalanceHourlyServiceListError, + FctValidatorBalanceHourlyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctValidatorBalanceHourlyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctValidatorBalanceHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctValidatorBalanceHourlyServiceListQueryKey(options) -}); + queryKey: fctValidatorBalanceHourlyServiceListQueryKey(options), + }); -export const fctValidatorBalanceHourlyServiceGetQueryKey = (options: Options) => createQueryKey('fctValidatorBalanceHourlyServiceGet', options); +export const fctValidatorBalanceHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctValidatorBalanceHourlyServiceGet', options); /** * Get record * * Retrieve a single record by validator_index */ -export const fctValidatorBalanceHourlyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctValidatorBalanceHourlyServiceGetOptions = (options: Options) => + queryOptions< + FctValidatorBalanceHourlyServiceGetResponse, + FctValidatorBalanceHourlyServiceGetError, + FctValidatorBalanceHourlyServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctValidatorBalanceHourlyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctValidatorBalanceHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctValidatorBalanceHourlyServiceGetQueryKey(options) -}); + queryKey: fctValidatorBalanceHourlyServiceGetQueryKey(options), + }); -export const fctValidatorCountByEntityByStatusDailyServiceListQueryKey = (options?: Options) => createQueryKey('fctValidatorCountByEntityByStatusDailyServiceList', options); +export const fctValidatorCountByEntityByStatusDailyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctValidatorCountByEntityByStatusDailyServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctValidatorCountByEntityByStatusDailyServiceListOptions = (options?: Options) => queryOptions>({ +export const fctValidatorCountByEntityByStatusDailyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctValidatorCountByEntityByStatusDailyServiceListResponse, + FctValidatorCountByEntityByStatusDailyServiceListError, + FctValidatorCountByEntityByStatusDailyServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctValidatorCountByEntityByStatusDailyServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await fctValidatorCountByEntityByStatusDailyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctValidatorCountByEntityByStatusDailyServiceListQueryKey(options) -}); + queryKey: fctValidatorCountByEntityByStatusDailyServiceListQueryKey(options), + }); -export const fctValidatorCountByEntityByStatusDailyServiceGetQueryKey = (options: Options) => createQueryKey('fctValidatorCountByEntityByStatusDailyServiceGet', options); +export const fctValidatorCountByEntityByStatusDailyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctValidatorCountByEntityByStatusDailyServiceGet', options); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctValidatorCountByEntityByStatusDailyServiceGetOptions = (options: Options) => queryOptions>({ +export const fctValidatorCountByEntityByStatusDailyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctValidatorCountByEntityByStatusDailyServiceGetResponse, + FctValidatorCountByEntityByStatusDailyServiceGetError, + FctValidatorCountByEntityByStatusDailyServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctValidatorCountByEntityByStatusDailyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctValidatorCountByEntityByStatusDailyServiceGetQueryKey(options), + }); + +export const intAttestationAttestedServiceListQueryKey = (options?: Options) => + createQueryKey('intAttestationAttestedServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const intAttestationAttestedServiceListOptions = (options?: Options) => + queryOptions< + IntAttestationAttestedServiceListResponse, + IntAttestationAttestedServiceListError, + IntAttestationAttestedServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await intAttestationAttestedServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: intAttestationAttestedServiceListQueryKey(options), + }); + +export const intAttestationAttestedServiceGetQueryKey = (options: Options) => + createQueryKey('intAttestationAttestedServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const intAttestationAttestedServiceGetOptions = (options: Options) => + queryOptions< + IntAttestationAttestedServiceGetResponse, + IntAttestationAttestedServiceGetError, + IntAttestationAttestedServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await fctValidatorCountByEntityByStatusDailyServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intAttestationAttestedServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: fctValidatorCountByEntityByStatusDailyServiceGetQueryKey(options) -}); + queryKey: intAttestationAttestedServiceGetQueryKey(options), + }); -export const intAttestationAttestedCanonicalServiceListQueryKey = (options?: Options) => createQueryKey('intAttestationAttestedCanonicalServiceList', options); +export const intAttestationAttestedCanonicalServiceListQueryKey = ( + options?: Options +) => createQueryKey('intAttestationAttestedCanonicalServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intAttestationAttestedCanonicalServiceListOptions = (options?: Options) => queryOptions>({ +export const intAttestationAttestedCanonicalServiceListOptions = ( + options?: Options +) => + queryOptions< + IntAttestationAttestedCanonicalServiceListResponse, + IntAttestationAttestedCanonicalServiceListError, + IntAttestationAttestedCanonicalServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intAttestationAttestedCanonicalServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intAttestationAttestedCanonicalServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intAttestationAttestedCanonicalServiceListQueryKey(options) -}); + queryKey: intAttestationAttestedCanonicalServiceListQueryKey(options), + }); -export const intAttestationAttestedCanonicalServiceGetQueryKey = (options: Options) => createQueryKey('intAttestationAttestedCanonicalServiceGet', options); +export const intAttestationAttestedCanonicalServiceGetQueryKey = ( + options: Options +) => createQueryKey('intAttestationAttestedCanonicalServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intAttestationAttestedCanonicalServiceGetOptions = (options: Options) => queryOptions>({ +export const intAttestationAttestedCanonicalServiceGetOptions = ( + options: Options +) => + queryOptions< + IntAttestationAttestedCanonicalServiceGetResponse, + IntAttestationAttestedCanonicalServiceGetError, + IntAttestationAttestedCanonicalServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intAttestationAttestedCanonicalServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intAttestationAttestedCanonicalServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intAttestationAttestedCanonicalServiceGetQueryKey(options) -}); + queryKey: intAttestationAttestedCanonicalServiceGetQueryKey(options), + }); -export const intAttestationAttestedHeadServiceListQueryKey = (options?: Options) => createQueryKey('intAttestationAttestedHeadServiceList', options); +export const intAttestationAttestedHeadServiceListQueryKey = ( + options?: Options +) => createQueryKey('intAttestationAttestedHeadServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intAttestationAttestedHeadServiceListOptions = (options?: Options) => queryOptions>({ +export const intAttestationAttestedHeadServiceListOptions = ( + options?: Options +) => + queryOptions< + IntAttestationAttestedHeadServiceListResponse, + IntAttestationAttestedHeadServiceListError, + IntAttestationAttestedHeadServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intAttestationAttestedHeadServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intAttestationAttestedHeadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intAttestationAttestedHeadServiceListQueryKey(options) -}); + queryKey: intAttestationAttestedHeadServiceListQueryKey(options), + }); -export const intAttestationAttestedHeadServiceGetQueryKey = (options: Options) => createQueryKey('intAttestationAttestedHeadServiceGet', options); +export const intAttestationAttestedHeadServiceGetQueryKey = ( + options: Options +) => createQueryKey('intAttestationAttestedHeadServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intAttestationAttestedHeadServiceGetOptions = (options: Options) => queryOptions>({ +export const intAttestationAttestedHeadServiceGetOptions = ( + options: Options +) => + queryOptions< + IntAttestationAttestedHeadServiceGetResponse, + IntAttestationAttestedHeadServiceGetError, + IntAttestationAttestedHeadServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intAttestationAttestedHeadServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intAttestationAttestedHeadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intAttestationAttestedHeadServiceGetQueryKey(options) -}); + queryKey: intAttestationAttestedHeadServiceGetQueryKey(options), + }); -export const intAttestationFirstSeenServiceListQueryKey = (options?: Options) => createQueryKey('intAttestationFirstSeenServiceList', options); +export const intAttestationFirstSeenServiceListQueryKey = (options?: Options) => + createQueryKey('intAttestationFirstSeenServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intAttestationFirstSeenServiceListOptions = (options?: Options) => queryOptions>({ +export const intAttestationFirstSeenServiceListOptions = (options?: Options) => + queryOptions< + IntAttestationFirstSeenServiceListResponse, + IntAttestationFirstSeenServiceListError, + IntAttestationFirstSeenServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intAttestationFirstSeenServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intAttestationFirstSeenServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intAttestationFirstSeenServiceListQueryKey(options) -}); + queryKey: intAttestationFirstSeenServiceListQueryKey(options), + }); -export const intAttestationFirstSeenServiceGetQueryKey = (options: Options) => createQueryKey('intAttestationFirstSeenServiceGet', options); +export const intAttestationFirstSeenServiceGetQueryKey = (options: Options) => + createQueryKey('intAttestationFirstSeenServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intAttestationFirstSeenServiceGetOptions = (options: Options) => queryOptions>({ +export const intAttestationFirstSeenServiceGetOptions = (options: Options) => + queryOptions< + IntAttestationFirstSeenServiceGetResponse, + IntAttestationFirstSeenServiceGetError, + IntAttestationFirstSeenServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intAttestationFirstSeenServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intAttestationFirstSeenServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intAttestationFirstSeenServiceGetQueryKey(options) -}); + queryKey: intAttestationFirstSeenServiceGetQueryKey(options), + }); -export const intAttestationFirstSeenAggregateServiceListQueryKey = (options?: Options) => createQueryKey('intAttestationFirstSeenAggregateServiceList', options); +export const intAttestationFirstSeenAggregateServiceListQueryKey = ( + options?: Options +) => createQueryKey('intAttestationFirstSeenAggregateServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intAttestationFirstSeenAggregateServiceListOptions = (options?: Options) => queryOptions>({ +export const intAttestationFirstSeenAggregateServiceListOptions = ( + options?: Options +) => + queryOptions< + IntAttestationFirstSeenAggregateServiceListResponse, + IntAttestationFirstSeenAggregateServiceListError, + IntAttestationFirstSeenAggregateServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intAttestationFirstSeenAggregateServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intAttestationFirstSeenAggregateServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intAttestationFirstSeenAggregateServiceListQueryKey(options) -}); + queryKey: intAttestationFirstSeenAggregateServiceListQueryKey(options), + }); -export const intAttestationFirstSeenAggregateServiceGetQueryKey = (options: Options) => createQueryKey('intAttestationFirstSeenAggregateServiceGet', options); +export const intAttestationFirstSeenAggregateServiceGetQueryKey = ( + options: Options +) => createQueryKey('intAttestationFirstSeenAggregateServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intAttestationFirstSeenAggregateServiceGetOptions = (options: Options) => queryOptions>({ +export const intAttestationFirstSeenAggregateServiceGetOptions = ( + options: Options +) => + queryOptions< + IntAttestationFirstSeenAggregateServiceGetResponse, + IntAttestationFirstSeenAggregateServiceGetError, + IntAttestationFirstSeenAggregateServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intAttestationFirstSeenAggregateServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intAttestationFirstSeenAggregateServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intAttestationFirstSeenAggregateServiceGetQueryKey(options) -}); + queryKey: intAttestationFirstSeenAggregateServiceGetQueryKey(options), + }); -export const intBeaconCommitteeHeadServiceListQueryKey = (options?: Options) => createQueryKey('intBeaconCommitteeHeadServiceList', options); +export const intBeaconCommitteeServiceListQueryKey = (options?: Options) => + createQueryKey('intBeaconCommitteeServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBeaconCommitteeHeadServiceListOptions = (options?: Options) => queryOptions>({ +export const intBeaconCommitteeServiceListOptions = (options?: Options) => + queryOptions< + IntBeaconCommitteeServiceListResponse, + IntBeaconCommitteeServiceListError, + IntBeaconCommitteeServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBeaconCommitteeHeadServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBeaconCommitteeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBeaconCommitteeHeadServiceListQueryKey(options) -}); + queryKey: intBeaconCommitteeServiceListQueryKey(options), + }); -export const intBeaconCommitteeHeadServiceGetQueryKey = (options: Options) => createQueryKey('intBeaconCommitteeHeadServiceGet', options); +export const intBeaconCommitteeServiceGetQueryKey = (options: Options) => + createQueryKey('intBeaconCommitteeServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intBeaconCommitteeHeadServiceGetOptions = (options: Options) => queryOptions>({ +export const intBeaconCommitteeServiceGetOptions = (options: Options) => + queryOptions< + IntBeaconCommitteeServiceGetResponse, + IntBeaconCommitteeServiceGetError, + IntBeaconCommitteeServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBeaconCommitteeHeadServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBeaconCommitteeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBeaconCommitteeHeadServiceGetQueryKey(options) -}); + queryKey: intBeaconCommitteeServiceGetQueryKey(options), + }); -export const intBlockBlobCountCanonicalServiceListQueryKey = (options?: Options) => createQueryKey('intBlockBlobCountCanonicalServiceList', options); +export const intBeaconCommitteeHeadServiceListQueryKey = (options?: Options) => + createQueryKey('intBeaconCommitteeHeadServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockBlobCountCanonicalServiceListOptions = (options?: Options) => queryOptions>({ +export const intBeaconCommitteeHeadServiceListOptions = (options?: Options) => + queryOptions< + IntBeaconCommitteeHeadServiceListResponse, + IntBeaconCommitteeHeadServiceListError, + IntBeaconCommitteeHeadServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockBlobCountCanonicalServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBeaconCommitteeHeadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockBlobCountCanonicalServiceListQueryKey(options) -}); + queryKey: intBeaconCommitteeHeadServiceListQueryKey(options), + }); -export const intBlockBlobCountCanonicalServiceGetQueryKey = (options: Options) => createQueryKey('intBlockBlobCountCanonicalServiceGet', options); +export const intBeaconCommitteeHeadServiceGetQueryKey = (options: Options) => + createQueryKey('intBeaconCommitteeHeadServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intBlockBlobCountCanonicalServiceGetOptions = (options: Options) => queryOptions>({ +export const intBeaconCommitteeHeadServiceGetOptions = (options: Options) => + queryOptions< + IntBeaconCommitteeHeadServiceGetResponse, + IntBeaconCommitteeHeadServiceGetError, + IntBeaconCommitteeHeadServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockBlobCountCanonicalServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBeaconCommitteeHeadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockBlobCountCanonicalServiceGetQueryKey(options) -}); + queryKey: intBeaconCommitteeHeadServiceGetQueryKey(options), + }); -export const intBlockCanonicalServiceListQueryKey = (options?: Options) => createQueryKey('intBlockCanonicalServiceList', options); +export const intBlockBlobCountCanonicalServiceListQueryKey = ( + options?: Options +) => createQueryKey('intBlockBlobCountCanonicalServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockCanonicalServiceListOptions = (options?: Options) => queryOptions>({ +export const intBlockBlobCountCanonicalServiceListOptions = ( + options?: Options +) => + queryOptions< + IntBlockBlobCountCanonicalServiceListResponse, + IntBlockBlobCountCanonicalServiceListError, + IntBlockBlobCountCanonicalServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockCanonicalServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBlockBlobCountCanonicalServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockCanonicalServiceListQueryKey(options) -}); + queryKey: intBlockBlobCountCanonicalServiceListQueryKey(options), + }); -export const intBlockCanonicalServiceGetQueryKey = (options: Options) => createQueryKey('intBlockCanonicalServiceGet', options); +export const intBlockBlobCountCanonicalServiceGetQueryKey = ( + options: Options +) => createQueryKey('intBlockBlobCountCanonicalServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intBlockCanonicalServiceGetOptions = (options: Options) => queryOptions>({ +export const intBlockBlobCountCanonicalServiceGetOptions = ( + options: Options +) => + queryOptions< + IntBlockBlobCountCanonicalServiceGetResponse, + IntBlockBlobCountCanonicalServiceGetError, + IntBlockBlobCountCanonicalServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockCanonicalServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBlockBlobCountCanonicalServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockCanonicalServiceGetQueryKey(options) -}); + queryKey: intBlockBlobCountCanonicalServiceGetQueryKey(options), + }); -export const intBlockMevCanonicalServiceListQueryKey = (options?: Options) => createQueryKey('intBlockMevCanonicalServiceList', options); +export const intBlockCanonicalServiceListQueryKey = (options?: Options) => + createQueryKey('intBlockCanonicalServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockMevCanonicalServiceListOptions = (options?: Options) => queryOptions>({ +export const intBlockCanonicalServiceListOptions = (options?: Options) => + queryOptions< + IntBlockCanonicalServiceListResponse, + IntBlockCanonicalServiceListError, + IntBlockCanonicalServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockMevCanonicalServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBlockCanonicalServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockMevCanonicalServiceListQueryKey(options) -}); + queryKey: intBlockCanonicalServiceListQueryKey(options), + }); -export const intBlockMevCanonicalServiceGetQueryKey = (options: Options) => createQueryKey('intBlockMevCanonicalServiceGet', options); +export const intBlockCanonicalServiceGetQueryKey = (options: Options) => + createQueryKey('intBlockCanonicalServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intBlockMevCanonicalServiceGetOptions = (options: Options) => queryOptions>({ +export const intBlockCanonicalServiceGetOptions = (options: Options) => + queryOptions< + IntBlockCanonicalServiceGetResponse, + IntBlockCanonicalServiceGetError, + IntBlockCanonicalServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockMevCanonicalServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBlockCanonicalServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockMevCanonicalServiceGetQueryKey(options) -}); + queryKey: intBlockCanonicalServiceGetQueryKey(options), + }); -export const intBlockOpcodeGasServiceListQueryKey = (options?: Options) => createQueryKey('intBlockOpcodeGasServiceList', options); +export const intBlockMevCanonicalServiceListQueryKey = (options?: Options) => + createQueryKey('intBlockMevCanonicalServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockOpcodeGasServiceListOptions = (options?: Options) => queryOptions>({ +export const intBlockMevCanonicalServiceListOptions = (options?: Options) => + queryOptions< + IntBlockMevCanonicalServiceListResponse, + IntBlockMevCanonicalServiceListError, + IntBlockMevCanonicalServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockOpcodeGasServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBlockMevCanonicalServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockOpcodeGasServiceListQueryKey(options) -}); + queryKey: intBlockMevCanonicalServiceListQueryKey(options), + }); -export const intBlockOpcodeGasServiceGetQueryKey = (options: Options) => createQueryKey('intBlockOpcodeGasServiceGet', options); +export const intBlockMevCanonicalServiceGetQueryKey = (options: Options) => + createQueryKey('intBlockMevCanonicalServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const intBlockMevCanonicalServiceGetOptions = (options: Options) => + queryOptions< + IntBlockMevCanonicalServiceGetResponse, + IntBlockMevCanonicalServiceGetError, + IntBlockMevCanonicalServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await intBlockMevCanonicalServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: intBlockMevCanonicalServiceGetQueryKey(options), + }); + +export const intBlockOpcodeGasServiceListQueryKey = (options?: Options) => + createQueryKey('intBlockOpcodeGasServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const intBlockOpcodeGasServiceListOptions = (options?: Options) => + queryOptions< + IntBlockOpcodeGasServiceListResponse, + IntBlockOpcodeGasServiceListError, + IntBlockOpcodeGasServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await intBlockOpcodeGasServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: intBlockOpcodeGasServiceListQueryKey(options), + }); + +export const intBlockOpcodeGasServiceGetQueryKey = (options: Options) => + createQueryKey('intBlockOpcodeGasServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intBlockOpcodeGasServiceGetOptions = (options: Options) => queryOptions>({ +export const intBlockOpcodeGasServiceGetOptions = (options: Options) => + queryOptions< + IntBlockOpcodeGasServiceGetResponse, + IntBlockOpcodeGasServiceGetError, + IntBlockOpcodeGasServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockOpcodeGasServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBlockOpcodeGasServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockOpcodeGasServiceGetQueryKey(options) -}); + queryKey: intBlockOpcodeGasServiceGetQueryKey(options), + }); -export const intBlockProposerCanonicalServiceListQueryKey = (options?: Options) => createQueryKey('intBlockProposerCanonicalServiceList', options); +export const intBlockPayloadPtcVoteCanonicalServiceListQueryKey = ( + options?: Options +) => createQueryKey('intBlockPayloadPtcVoteCanonicalServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockProposerCanonicalServiceListOptions = (options?: Options) => queryOptions>({ +export const intBlockPayloadPtcVoteCanonicalServiceListOptions = ( + options?: Options +) => + queryOptions< + IntBlockPayloadPtcVoteCanonicalServiceListResponse, + IntBlockPayloadPtcVoteCanonicalServiceListError, + IntBlockPayloadPtcVoteCanonicalServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockProposerCanonicalServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBlockPayloadPtcVoteCanonicalServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockProposerCanonicalServiceListQueryKey(options) -}); + queryKey: intBlockPayloadPtcVoteCanonicalServiceListQueryKey(options), + }); -export const intBlockProposerCanonicalServiceGetQueryKey = (options: Options) => createQueryKey('intBlockProposerCanonicalServiceGet', options); +export const intBlockPayloadPtcVoteCanonicalServiceGetQueryKey = ( + options: Options +) => createQueryKey('intBlockPayloadPtcVoteCanonicalServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intBlockProposerCanonicalServiceGetOptions = (options: Options) => queryOptions>({ +export const intBlockPayloadPtcVoteCanonicalServiceGetOptions = ( + options: Options +) => + queryOptions< + IntBlockPayloadPtcVoteCanonicalServiceGetResponse, + IntBlockPayloadPtcVoteCanonicalServiceGetError, + IntBlockPayloadPtcVoteCanonicalServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockProposerCanonicalServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBlockPayloadPtcVoteCanonicalServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockProposerCanonicalServiceGetQueryKey(options) -}); + queryKey: intBlockPayloadPtcVoteCanonicalServiceGetQueryKey(options), + }); -export const intBlockReceiptSizeServiceListQueryKey = (options?: Options) => createQueryKey('intBlockReceiptSizeServiceList', options); +export const intBlockProposerCanonicalServiceListQueryKey = ( + options?: Options +) => createQueryKey('intBlockProposerCanonicalServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockReceiptSizeServiceListOptions = (options?: Options) => queryOptions>({ +export const intBlockProposerCanonicalServiceListOptions = ( + options?: Options +) => + queryOptions< + IntBlockProposerCanonicalServiceListResponse, + IntBlockProposerCanonicalServiceListError, + IntBlockProposerCanonicalServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockReceiptSizeServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBlockProposerCanonicalServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockReceiptSizeServiceListQueryKey(options) -}); + queryKey: intBlockProposerCanonicalServiceListQueryKey(options), + }); -export const intBlockReceiptSizeServiceGetQueryKey = (options: Options) => createQueryKey('intBlockReceiptSizeServiceGet', options); +export const intBlockProposerCanonicalServiceGetQueryKey = ( + options: Options +) => createQueryKey('intBlockProposerCanonicalServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const intBlockProposerCanonicalServiceGetOptions = (options: Options) => + queryOptions< + IntBlockProposerCanonicalServiceGetResponse, + IntBlockProposerCanonicalServiceGetError, + IntBlockProposerCanonicalServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await intBlockProposerCanonicalServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: intBlockProposerCanonicalServiceGetQueryKey(options), + }); + +export const intBlockReceiptSizeServiceListQueryKey = (options?: Options) => + createQueryKey('intBlockReceiptSizeServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const intBlockReceiptSizeServiceListOptions = (options?: Options) => + queryOptions< + IntBlockReceiptSizeServiceListResponse, + IntBlockReceiptSizeServiceListError, + IntBlockReceiptSizeServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await intBlockReceiptSizeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: intBlockReceiptSizeServiceListQueryKey(options), + }); + +export const intBlockReceiptSizeServiceGetQueryKey = (options: Options) => + createQueryKey('intBlockReceiptSizeServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intBlockReceiptSizeServiceGetOptions = (options: Options) => queryOptions>({ +export const intBlockReceiptSizeServiceGetOptions = (options: Options) => + queryOptions< + IntBlockReceiptSizeServiceGetResponse, + IntBlockReceiptSizeServiceGetError, + IntBlockReceiptSizeServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockReceiptSizeServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBlockReceiptSizeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockReceiptSizeServiceGetQueryKey(options) -}); + queryKey: intBlockReceiptSizeServiceGetQueryKey(options), + }); -export const intBlockResourceGasServiceListQueryKey = (options?: Options) => createQueryKey('intBlockResourceGasServiceList', options); +export const intBlockResourceGasServiceListQueryKey = (options?: Options) => + createQueryKey('intBlockResourceGasServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockResourceGasServiceListOptions = (options?: Options) => queryOptions>({ +export const intBlockResourceGasServiceListOptions = (options?: Options) => + queryOptions< + IntBlockResourceGasServiceListResponse, + IntBlockResourceGasServiceListError, + IntBlockResourceGasServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockResourceGasServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBlockResourceGasServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockResourceGasServiceListQueryKey(options) -}); + queryKey: intBlockResourceGasServiceListQueryKey(options), + }); -export const intBlockResourceGasServiceGetQueryKey = (options: Options) => createQueryKey('intBlockResourceGasServiceGet', options); +export const intBlockResourceGasServiceGetQueryKey = (options: Options) => + createQueryKey('intBlockResourceGasServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intBlockResourceGasServiceGetOptions = (options: Options) => queryOptions>({ +export const intBlockResourceGasServiceGetOptions = (options: Options) => + queryOptions< + IntBlockResourceGasServiceGetResponse, + IntBlockResourceGasServiceGetError, + IntBlockResourceGasServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intBlockResourceGasServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intBlockResourceGasServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intBlockResourceGasServiceGetQueryKey(options) -}); + queryKey: intBlockResourceGasServiceGetQueryKey(options), + }); -export const intContractCreationServiceListQueryKey = (options?: Options) => createQueryKey('intContractCreationServiceList', options); +export const intContractCreationServiceListQueryKey = (options?: Options) => + createQueryKey('intContractCreationServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractCreationServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractCreationServiceListOptions = (options?: Options) => + queryOptions< + IntContractCreationServiceListResponse, + IntContractCreationServiceListError, + IntContractCreationServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractCreationServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractCreationServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractCreationServiceListQueryKey(options) -}); + queryKey: intContractCreationServiceListQueryKey(options), + }); -export const intContractCreationServiceGetQueryKey = (options: Options) => createQueryKey('intContractCreationServiceGet', options); +export const intContractCreationServiceGetQueryKey = (options: Options) => + createQueryKey('intContractCreationServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractCreationServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractCreationServiceGetOptions = (options: Options) => + queryOptions< + IntContractCreationServiceGetResponse, + IntContractCreationServiceGetError, + IntContractCreationServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractCreationServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractCreationServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractCreationServiceGetQueryKey(options) -}); + queryKey: intContractCreationServiceGetQueryKey(options), + }); -export const intContractSelfdestructServiceListQueryKey = (options?: Options) => createQueryKey('intContractSelfdestructServiceList', options); +export const intContractSelfdestructServiceListQueryKey = (options?: Options) => + createQueryKey('intContractSelfdestructServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractSelfdestructServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractSelfdestructServiceListOptions = (options?: Options) => + queryOptions< + IntContractSelfdestructServiceListResponse, + IntContractSelfdestructServiceListError, + IntContractSelfdestructServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractSelfdestructServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractSelfdestructServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractSelfdestructServiceListQueryKey(options) -}); + queryKey: intContractSelfdestructServiceListQueryKey(options), + }); -export const intContractSelfdestructServiceGetQueryKey = (options: Options) => createQueryKey('intContractSelfdestructServiceGet', options); +export const intContractSelfdestructServiceGetQueryKey = (options: Options) => + createQueryKey('intContractSelfdestructServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractSelfdestructServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractSelfdestructServiceGetOptions = (options: Options) => + queryOptions< + IntContractSelfdestructServiceGetResponse, + IntContractSelfdestructServiceGetError, + IntContractSelfdestructServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractSelfdestructServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractSelfdestructServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractSelfdestructServiceGetQueryKey(options) -}); + queryKey: intContractSelfdestructServiceGetQueryKey(options), + }); -export const intContractStorageExpiry1mServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageExpiry1mServiceList', options); +export const intContractStorageExpiry1mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageExpiry1mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageExpiry1mServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageExpiry1mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageExpiry1mServiceListResponse, + IntContractStorageExpiry1mServiceListError, + IntContractStorageExpiry1mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageExpiry1mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageExpiry1mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageExpiry1mServiceListQueryKey(options) -}); + queryKey: intContractStorageExpiry1mServiceListQueryKey(options), + }); -export const intContractStorageExpiry1mServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageExpiry1mServiceGet', options); +export const intContractStorageExpiry1mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageExpiry1mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageExpiry1mServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageExpiry1mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageExpiry1mServiceGetResponse, + IntContractStorageExpiry1mServiceGetError, + IntContractStorageExpiry1mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageExpiry1mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageExpiry1mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageExpiry1mServiceGetQueryKey(options) -}); + queryKey: intContractStorageExpiry1mServiceGetQueryKey(options), + }); -export const intContractStorageExpiry6mServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageExpiry6mServiceList', options); +export const intContractStorageExpiry6mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageExpiry6mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageExpiry6mServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageExpiry6mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageExpiry6mServiceListResponse, + IntContractStorageExpiry6mServiceListError, + IntContractStorageExpiry6mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageExpiry6mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageExpiry6mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageExpiry6mServiceListQueryKey(options) -}); + queryKey: intContractStorageExpiry6mServiceListQueryKey(options), + }); -export const intContractStorageExpiry6mServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageExpiry6mServiceGet', options); +export const intContractStorageExpiry6mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageExpiry6mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageExpiry6mServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageExpiry6mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageExpiry6mServiceGetResponse, + IntContractStorageExpiry6mServiceGetError, + IntContractStorageExpiry6mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageExpiry6mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageExpiry6mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageExpiry6mServiceGetQueryKey(options) -}); + queryKey: intContractStorageExpiry6mServiceGetQueryKey(options), + }); -export const intContractStorageExpiry12mServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageExpiry12mServiceList', options); +export const intContractStorageExpiry12mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageExpiry12mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageExpiry12mServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageExpiry12mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageExpiry12mServiceListResponse, + IntContractStorageExpiry12mServiceListError, + IntContractStorageExpiry12mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageExpiry12mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageExpiry12mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageExpiry12mServiceListQueryKey(options) -}); + queryKey: intContractStorageExpiry12mServiceListQueryKey(options), + }); -export const intContractStorageExpiry12mServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageExpiry12mServiceGet', options); +export const intContractStorageExpiry12mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageExpiry12mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageExpiry12mServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageExpiry12mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageExpiry12mServiceGetResponse, + IntContractStorageExpiry12mServiceGetError, + IntContractStorageExpiry12mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageExpiry12mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageExpiry12mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageExpiry12mServiceGetQueryKey(options) -}); + queryKey: intContractStorageExpiry12mServiceGetQueryKey(options), + }); -export const intContractStorageExpiry18mServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageExpiry18mServiceList', options); +export const intContractStorageExpiry18mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageExpiry18mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageExpiry18mServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageExpiry18mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageExpiry18mServiceListResponse, + IntContractStorageExpiry18mServiceListError, + IntContractStorageExpiry18mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageExpiry18mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageExpiry18mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageExpiry18mServiceListQueryKey(options) -}); + queryKey: intContractStorageExpiry18mServiceListQueryKey(options), + }); -export const intContractStorageExpiry18mServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageExpiry18mServiceGet', options); +export const intContractStorageExpiry18mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageExpiry18mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageExpiry18mServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageExpiry18mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageExpiry18mServiceGetResponse, + IntContractStorageExpiry18mServiceGetError, + IntContractStorageExpiry18mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageExpiry18mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageExpiry18mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageExpiry18mServiceGetQueryKey(options) -}); + queryKey: intContractStorageExpiry18mServiceGetQueryKey(options), + }); -export const intContractStorageExpiry24mServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageExpiry24mServiceList', options); +export const intContractStorageExpiry24mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageExpiry24mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageExpiry24mServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageExpiry24mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageExpiry24mServiceListResponse, + IntContractStorageExpiry24mServiceListError, + IntContractStorageExpiry24mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageExpiry24mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageExpiry24mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageExpiry24mServiceListQueryKey(options) -}); + queryKey: intContractStorageExpiry24mServiceListQueryKey(options), + }); -export const intContractStorageExpiry24mServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageExpiry24mServiceGet', options); +export const intContractStorageExpiry24mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageExpiry24mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageExpiry24mServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageExpiry24mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageExpiry24mServiceGetResponse, + IntContractStorageExpiry24mServiceGetError, + IntContractStorageExpiry24mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageExpiry24mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageExpiry24mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageExpiry24mServiceGetQueryKey(options) -}); + queryKey: intContractStorageExpiry24mServiceGetQueryKey(options), + }); -export const intContractStorageNextTouchServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageNextTouchServiceList', options); +export const intContractStorageNextTouchServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageNextTouchServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageNextTouchServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageNextTouchServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageNextTouchServiceListResponse, + IntContractStorageNextTouchServiceListError, + IntContractStorageNextTouchServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageNextTouchServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageNextTouchServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageNextTouchServiceListQueryKey(options) -}); + queryKey: intContractStorageNextTouchServiceListQueryKey(options), + }); -export const intContractStorageNextTouchServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageNextTouchServiceGet', options); +export const intContractStorageNextTouchServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageNextTouchServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageNextTouchServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageNextTouchServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageNextTouchServiceGetResponse, + IntContractStorageNextTouchServiceGetError, + IntContractStorageNextTouchServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageNextTouchServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageNextTouchServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageNextTouchServiceGetQueryKey(options) -}); + queryKey: intContractStorageNextTouchServiceGetQueryKey(options), + }); -export const intContractStorageReactivation1mServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageReactivation1mServiceList', options); +export const intContractStorageReactivation1mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageReactivation1mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageReactivation1mServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageReactivation1mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageReactivation1mServiceListResponse, + IntContractStorageReactivation1mServiceListError, + IntContractStorageReactivation1mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageReactivation1mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageReactivation1mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageReactivation1mServiceListQueryKey(options) -}); + queryKey: intContractStorageReactivation1mServiceListQueryKey(options), + }); -export const intContractStorageReactivation1mServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageReactivation1mServiceGet', options); +export const intContractStorageReactivation1mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageReactivation1mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageReactivation1mServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageReactivation1mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageReactivation1mServiceGetResponse, + IntContractStorageReactivation1mServiceGetError, + IntContractStorageReactivation1mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageReactivation1mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageReactivation1mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageReactivation1mServiceGetQueryKey(options) -}); + queryKey: intContractStorageReactivation1mServiceGetQueryKey(options), + }); -export const intContractStorageReactivation6mServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageReactivation6mServiceList', options); +export const intContractStorageReactivation6mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageReactivation6mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageReactivation6mServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageReactivation6mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageReactivation6mServiceListResponse, + IntContractStorageReactivation6mServiceListError, + IntContractStorageReactivation6mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageReactivation6mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageReactivation6mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageReactivation6mServiceListQueryKey(options) -}); + queryKey: intContractStorageReactivation6mServiceListQueryKey(options), + }); -export const intContractStorageReactivation6mServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageReactivation6mServiceGet', options); +export const intContractStorageReactivation6mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageReactivation6mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageReactivation6mServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageReactivation6mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageReactivation6mServiceGetResponse, + IntContractStorageReactivation6mServiceGetError, + IntContractStorageReactivation6mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageReactivation6mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageReactivation6mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageReactivation6mServiceGetQueryKey(options) -}); + queryKey: intContractStorageReactivation6mServiceGetQueryKey(options), + }); -export const intContractStorageReactivation12mServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageReactivation12mServiceList', options); +export const intContractStorageReactivation12mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageReactivation12mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageReactivation12mServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageReactivation12mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageReactivation12mServiceListResponse, + IntContractStorageReactivation12mServiceListError, + IntContractStorageReactivation12mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageReactivation12mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageReactivation12mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageReactivation12mServiceListQueryKey(options) -}); + queryKey: intContractStorageReactivation12mServiceListQueryKey(options), + }); -export const intContractStorageReactivation12mServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageReactivation12mServiceGet', options); +export const intContractStorageReactivation12mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageReactivation12mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageReactivation12mServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageReactivation12mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageReactivation12mServiceGetResponse, + IntContractStorageReactivation12mServiceGetError, + IntContractStorageReactivation12mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageReactivation12mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageReactivation12mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageReactivation12mServiceGetQueryKey(options) -}); + queryKey: intContractStorageReactivation12mServiceGetQueryKey(options), + }); -export const intContractStorageReactivation18mServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageReactivation18mServiceList', options); +export const intContractStorageReactivation18mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageReactivation18mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageReactivation18mServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageReactivation18mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageReactivation18mServiceListResponse, + IntContractStorageReactivation18mServiceListError, + IntContractStorageReactivation18mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageReactivation18mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageReactivation18mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageReactivation18mServiceListQueryKey(options) -}); + queryKey: intContractStorageReactivation18mServiceListQueryKey(options), + }); -export const intContractStorageReactivation18mServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageReactivation18mServiceGet', options); +export const intContractStorageReactivation18mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageReactivation18mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageReactivation18mServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageReactivation18mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageReactivation18mServiceGetResponse, + IntContractStorageReactivation18mServiceGetError, + IntContractStorageReactivation18mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageReactivation18mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageReactivation18mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageReactivation18mServiceGetQueryKey(options) -}); + queryKey: intContractStorageReactivation18mServiceGetQueryKey(options), + }); -export const intContractStorageReactivation24mServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageReactivation24mServiceList', options); +export const intContractStorageReactivation24mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageReactivation24mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageReactivation24mServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageReactivation24mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageReactivation24mServiceListResponse, + IntContractStorageReactivation24mServiceListError, + IntContractStorageReactivation24mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageReactivation24mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageReactivation24mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageReactivation24mServiceListQueryKey(options) -}); + queryKey: intContractStorageReactivation24mServiceListQueryKey(options), + }); -export const intContractStorageReactivation24mServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageReactivation24mServiceGet', options); +export const intContractStorageReactivation24mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageReactivation24mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageReactivation24mServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageReactivation24mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageReactivation24mServiceGetResponse, + IntContractStorageReactivation24mServiceGetError, + IntContractStorageReactivation24mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageReactivation24mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageReactivation24mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageReactivation24mServiceGetQueryKey(options) -}); + queryKey: intContractStorageReactivation24mServiceGetQueryKey(options), + }); -export const intContractStorageStateServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageStateServiceList', options); +export const intContractStorageStateServiceListQueryKey = (options?: Options) => + createQueryKey('intContractStorageStateServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageStateServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageStateServiceListOptions = (options?: Options) => + queryOptions< + IntContractStorageStateServiceListResponse, + IntContractStorageStateServiceListError, + IntContractStorageStateServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageStateServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageStateServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageStateServiceListQueryKey(options) -}); + queryKey: intContractStorageStateServiceListQueryKey(options), + }); -export const intContractStorageStateServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageStateServiceGet', options); +export const intContractStorageStateServiceGetQueryKey = (options: Options) => + createQueryKey('intContractStorageStateServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageStateServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageStateServiceGetOptions = (options: Options) => + queryOptions< + IntContractStorageStateServiceGetResponse, + IntContractStorageStateServiceGetError, + IntContractStorageStateServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageStateServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageStateServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageStateServiceGetQueryKey(options) -}); + queryKey: intContractStorageStateServiceGetQueryKey(options), + }); -export const intContractStorageStateByAddressServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageStateByAddressServiceList', options); +export const intContractStorageStateByAddressServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageStateByAddressServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageStateByAddressServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageStateByAddressServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageStateByAddressServiceListResponse, + IntContractStorageStateByAddressServiceListError, + IntContractStorageStateByAddressServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageStateByAddressServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageStateByAddressServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageStateByAddressServiceListQueryKey(options) -}); + queryKey: intContractStorageStateByAddressServiceListQueryKey(options), + }); -export const intContractStorageStateByAddressServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageStateByAddressServiceGet', options); +export const intContractStorageStateByAddressServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageStateByAddressServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const intContractStorageStateByAddressServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageStateByAddressServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageStateByAddressServiceGetResponse, + IntContractStorageStateByAddressServiceGetError, + IntContractStorageStateByAddressServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageStateByAddressServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageStateByAddressServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageStateByAddressServiceGetQueryKey(options) -}); + queryKey: intContractStorageStateByAddressServiceGetQueryKey(options), + }); -export const intContractStorageStateByBlockServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageStateByBlockServiceList', options); +export const intContractStorageStateByBlockServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageStateByBlockServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageStateByBlockServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageStateByBlockServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageStateByBlockServiceListResponse, + IntContractStorageStateByBlockServiceListError, + IntContractStorageStateByBlockServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageStateByBlockServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageStateByBlockServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageStateByBlockServiceListQueryKey(options) -}); + queryKey: intContractStorageStateByBlockServiceListQueryKey(options), + }); -export const intContractStorageStateByBlockServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageStateByBlockServiceGet', options); +export const intContractStorageStateByBlockServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageStateByBlockServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageStateByBlockServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageStateByBlockServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageStateByBlockServiceGetResponse, + IntContractStorageStateByBlockServiceGetError, + IntContractStorageStateByBlockServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageStateByBlockServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageStateByBlockServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageStateByBlockServiceGetQueryKey(options) -}); + queryKey: intContractStorageStateByBlockServiceGetQueryKey(options), + }); -export const intContractStorageStateWithExpiryServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageStateWithExpiryServiceList', options); +export const intContractStorageStateWithExpiryServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageStateWithExpiryServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageStateWithExpiryServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageStateWithExpiryServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageStateWithExpiryServiceListResponse, + IntContractStorageStateWithExpiryServiceListError, + IntContractStorageStateWithExpiryServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageStateWithExpiryServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageStateWithExpiryServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageStateWithExpiryServiceListQueryKey(options) -}); + queryKey: intContractStorageStateWithExpiryServiceListQueryKey(options), + }); -export const intContractStorageStateWithExpiryServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageStateWithExpiryServiceGet', options); +export const intContractStorageStateWithExpiryServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageStateWithExpiryServiceGet', options); /** * Get record * * Retrieve a single record by expiry_policy */ -export const intContractStorageStateWithExpiryServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageStateWithExpiryServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageStateWithExpiryServiceGetResponse, + IntContractStorageStateWithExpiryServiceGetError, + IntContractStorageStateWithExpiryServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageStateWithExpiryServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageStateWithExpiryServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageStateWithExpiryServiceGetQueryKey(options) -}); + queryKey: intContractStorageStateWithExpiryServiceGetQueryKey(options), + }); -export const intContractStorageStateWithExpiryByAddressServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageStateWithExpiryByAddressServiceList', options); +export const intContractStorageStateWithExpiryByAddressServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageStateWithExpiryByAddressServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageStateWithExpiryByAddressServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageStateWithExpiryByAddressServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageStateWithExpiryByAddressServiceListResponse, + IntContractStorageStateWithExpiryByAddressServiceListError, + IntContractStorageStateWithExpiryByAddressServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageStateWithExpiryByAddressServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageStateWithExpiryByAddressServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageStateWithExpiryByAddressServiceListQueryKey(options) -}); + queryKey: intContractStorageStateWithExpiryByAddressServiceListQueryKey(options), + }); -export const intContractStorageStateWithExpiryByAddressServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageStateWithExpiryByAddressServiceGet', options); +export const intContractStorageStateWithExpiryByAddressServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageStateWithExpiryByAddressServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const intContractStorageStateWithExpiryByAddressServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageStateWithExpiryByAddressServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageStateWithExpiryByAddressServiceGetResponse, + IntContractStorageStateWithExpiryByAddressServiceGetError, + IntContractStorageStateWithExpiryByAddressServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageStateWithExpiryByAddressServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageStateWithExpiryByAddressServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageStateWithExpiryByAddressServiceGetQueryKey(options) -}); + queryKey: intContractStorageStateWithExpiryByAddressServiceGetQueryKey(options), + }); -export const intContractStorageStateWithExpiryByBlockServiceListQueryKey = (options?: Options) => createQueryKey('intContractStorageStateWithExpiryByBlockServiceList', options); +export const intContractStorageStateWithExpiryByBlockServiceListQueryKey = ( + options?: Options +) => createQueryKey('intContractStorageStateWithExpiryByBlockServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageStateWithExpiryByBlockServiceListOptions = (options?: Options) => queryOptions>({ +export const intContractStorageStateWithExpiryByBlockServiceListOptions = ( + options?: Options +) => + queryOptions< + IntContractStorageStateWithExpiryByBlockServiceListResponse, + IntContractStorageStateWithExpiryByBlockServiceListError, + IntContractStorageStateWithExpiryByBlockServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageStateWithExpiryByBlockServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageStateWithExpiryByBlockServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageStateWithExpiryByBlockServiceListQueryKey(options) -}); + queryKey: intContractStorageStateWithExpiryByBlockServiceListQueryKey(options), + }); -export const intContractStorageStateWithExpiryByBlockServiceGetQueryKey = (options: Options) => createQueryKey('intContractStorageStateWithExpiryByBlockServiceGet', options); +export const intContractStorageStateWithExpiryByBlockServiceGetQueryKey = ( + options: Options +) => createQueryKey('intContractStorageStateWithExpiryByBlockServiceGet', options); /** * Get record * * Retrieve a single record by expiry_policy */ -export const intContractStorageStateWithExpiryByBlockServiceGetOptions = (options: Options) => queryOptions>({ +export const intContractStorageStateWithExpiryByBlockServiceGetOptions = ( + options: Options +) => + queryOptions< + IntContractStorageStateWithExpiryByBlockServiceGetResponse, + IntContractStorageStateWithExpiryByBlockServiceGetError, + IntContractStorageStateWithExpiryByBlockServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intContractStorageStateWithExpiryByBlockServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intContractStorageStateWithExpiryByBlockServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intContractStorageStateWithExpiryByBlockServiceGetQueryKey(options) -}); + queryKey: intContractStorageStateWithExpiryByBlockServiceGetQueryKey(options), + }); -export const intCustodyProbeServiceListQueryKey = (options?: Options) => createQueryKey('intCustodyProbeServiceList', options); +export const intCustodyProbeServiceListQueryKey = (options?: Options) => + createQueryKey('intCustodyProbeServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intCustodyProbeServiceListOptions = (options?: Options) => queryOptions>({ +export const intCustodyProbeServiceListOptions = (options?: Options) => + queryOptions< + IntCustodyProbeServiceListResponse, + IntCustodyProbeServiceListError, + IntCustodyProbeServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intCustodyProbeServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intCustodyProbeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intCustodyProbeServiceListQueryKey(options) -}); + queryKey: intCustodyProbeServiceListQueryKey(options), + }); -export const intCustodyProbeServiceGetQueryKey = (options: Options) => createQueryKey('intCustodyProbeServiceGet', options); +export const intCustodyProbeServiceGetQueryKey = (options: Options) => + createQueryKey('intCustodyProbeServiceGet', options); /** * Get record * * Retrieve a single record by probe_date_time */ -export const intCustodyProbeServiceGetOptions = (options: Options) => queryOptions>({ +export const intCustodyProbeServiceGetOptions = (options: Options) => + queryOptions< + IntCustodyProbeServiceGetResponse, + IntCustodyProbeServiceGetError, + IntCustodyProbeServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intCustodyProbeServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intCustodyProbeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intCustodyProbeServiceGetQueryKey(options) -}); + queryKey: intCustodyProbeServiceGetQueryKey(options), + }); -export const intCustodyProbeOrderBySlotServiceListQueryKey = (options?: Options) => createQueryKey('intCustodyProbeOrderBySlotServiceList', options); +export const intCustodyProbeOrderBySlotServiceListQueryKey = ( + options?: Options +) => createQueryKey('intCustodyProbeOrderBySlotServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intCustodyProbeOrderBySlotServiceListOptions = (options?: Options) => queryOptions>({ +export const intCustodyProbeOrderBySlotServiceListOptions = ( + options?: Options +) => + queryOptions< + IntCustodyProbeOrderBySlotServiceListResponse, + IntCustodyProbeOrderBySlotServiceListError, + IntCustodyProbeOrderBySlotServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intCustodyProbeOrderBySlotServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intCustodyProbeOrderBySlotServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intCustodyProbeOrderBySlotServiceListQueryKey(options) -}); + queryKey: intCustodyProbeOrderBySlotServiceListQueryKey(options), + }); -export const intCustodyProbeOrderBySlotServiceGetQueryKey = (options: Options) => createQueryKey('intCustodyProbeOrderBySlotServiceGet', options); +export const intCustodyProbeOrderBySlotServiceGetQueryKey = ( + options: Options +) => createQueryKey('intCustodyProbeOrderBySlotServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intCustodyProbeOrderBySlotServiceGetOptions = (options: Options) => queryOptions>({ +export const intCustodyProbeOrderBySlotServiceGetOptions = ( + options: Options +) => + queryOptions< + IntCustodyProbeOrderBySlotServiceGetResponse, + IntCustodyProbeOrderBySlotServiceGetError, + IntCustodyProbeOrderBySlotServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intCustodyProbeOrderBySlotServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intCustodyProbeOrderBySlotServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intCustodyProbeOrderBySlotServiceGetQueryKey(options) -}); + queryKey: intCustodyProbeOrderBySlotServiceGetQueryKey(options), + }); -export const intEngineGetBlobsServiceListQueryKey = (options?: Options) => createQueryKey('intEngineGetBlobsServiceList', options); +export const intEngineGetBlobsServiceListQueryKey = (options?: Options) => + createQueryKey('intEngineGetBlobsServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intEngineGetBlobsServiceListOptions = (options?: Options) => queryOptions>({ +export const intEngineGetBlobsServiceListOptions = (options?: Options) => + queryOptions< + IntEngineGetBlobsServiceListResponse, + IntEngineGetBlobsServiceListError, + IntEngineGetBlobsServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intEngineGetBlobsServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intEngineGetBlobsServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intEngineGetBlobsServiceListQueryKey(options) -}); + queryKey: intEngineGetBlobsServiceListQueryKey(options), + }); -export const intEngineGetBlobsServiceGetQueryKey = (options: Options) => createQueryKey('intEngineGetBlobsServiceGet', options); +export const intEngineGetBlobsServiceGetQueryKey = (options: Options) => + createQueryKey('intEngineGetBlobsServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intEngineGetBlobsServiceGetOptions = (options: Options) => queryOptions>({ +export const intEngineGetBlobsServiceGetOptions = (options: Options) => + queryOptions< + IntEngineGetBlobsServiceGetResponse, + IntEngineGetBlobsServiceGetError, + IntEngineGetBlobsServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intEngineGetBlobsServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intEngineGetBlobsServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intEngineGetBlobsServiceGetQueryKey(options) -}); + queryKey: intEngineGetBlobsServiceGetQueryKey(options), + }); -export const intEngineNewPayloadServiceListQueryKey = (options?: Options) => createQueryKey('intEngineNewPayloadServiceList', options); +export const intEngineNewPayloadServiceListQueryKey = (options?: Options) => + createQueryKey('intEngineNewPayloadServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intEngineNewPayloadServiceListOptions = (options?: Options) => queryOptions>({ +export const intEngineNewPayloadServiceListOptions = (options?: Options) => + queryOptions< + IntEngineNewPayloadServiceListResponse, + IntEngineNewPayloadServiceListError, + IntEngineNewPayloadServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intEngineNewPayloadServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intEngineNewPayloadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intEngineNewPayloadServiceListQueryKey(options) -}); + queryKey: intEngineNewPayloadServiceListQueryKey(options), + }); -export const intEngineNewPayloadServiceGetQueryKey = (options: Options) => createQueryKey('intEngineNewPayloadServiceGet', options); +export const intEngineNewPayloadServiceGetQueryKey = (options: Options) => + createQueryKey('intEngineNewPayloadServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intEngineNewPayloadServiceGetOptions = (options: Options) => queryOptions>({ +export const intEngineNewPayloadServiceGetOptions = (options: Options) => + queryOptions< + IntEngineNewPayloadServiceGetResponse, + IntEngineNewPayloadServiceGetError, + IntEngineNewPayloadServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intEngineNewPayloadServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intEngineNewPayloadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intEngineNewPayloadServiceGetQueryKey(options) -}); + queryKey: intEngineNewPayloadServiceGetQueryKey(options), + }); -export const intEngineNewPayloadFastestExecutionByNodeClassServiceListQueryKey = (options?: Options) => createQueryKey('intEngineNewPayloadFastestExecutionByNodeClassServiceList', options); +export const intEngineNewPayloadFastestExecutionByNodeClassServiceListQueryKey = ( + options?: Options +) => createQueryKey('intEngineNewPayloadFastestExecutionByNodeClassServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intEngineNewPayloadFastestExecutionByNodeClassServiceListOptions = (options?: Options) => queryOptions>({ +export const intEngineNewPayloadFastestExecutionByNodeClassServiceListOptions = ( + options?: Options +) => + queryOptions< + IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListError, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intEngineNewPayloadFastestExecutionByNodeClassServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intEngineNewPayloadFastestExecutionByNodeClassServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intEngineNewPayloadFastestExecutionByNodeClassServiceListQueryKey(options) -}); + queryKey: intEngineNewPayloadFastestExecutionByNodeClassServiceListQueryKey(options), + }); -export const intEngineNewPayloadFastestExecutionByNodeClassServiceGetQueryKey = (options: Options) => createQueryKey('intEngineNewPayloadFastestExecutionByNodeClassServiceGet', options); +export const intEngineNewPayloadFastestExecutionByNodeClassServiceGetQueryKey = ( + options: Options +) => createQueryKey('intEngineNewPayloadFastestExecutionByNodeClassServiceGet', options); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intEngineNewPayloadFastestExecutionByNodeClassServiceGetOptions = (options: Options) => queryOptions>({ +export const intEngineNewPayloadFastestExecutionByNodeClassServiceGetOptions = ( + options: Options +) => + queryOptions< + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetError, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intEngineNewPayloadFastestExecutionByNodeClassServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intEngineNewPayloadFastestExecutionByNodeClassServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intEngineNewPayloadFastestExecutionByNodeClassServiceGetQueryKey(options) -}); + queryKey: intEngineNewPayloadFastestExecutionByNodeClassServiceGetQueryKey(options), + }); -export const intExecutionBlockByDateServiceListQueryKey = (options?: Options) => createQueryKey('intExecutionBlockByDateServiceList', options); +export const intExecutionBlockByDateServiceListQueryKey = (options?: Options) => + createQueryKey('intExecutionBlockByDateServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intExecutionBlockByDateServiceListOptions = (options?: Options) => queryOptions>({ +export const intExecutionBlockByDateServiceListOptions = (options?: Options) => + queryOptions< + IntExecutionBlockByDateServiceListResponse, + IntExecutionBlockByDateServiceListError, + IntExecutionBlockByDateServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intExecutionBlockByDateServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intExecutionBlockByDateServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intExecutionBlockByDateServiceListQueryKey(options) -}); + queryKey: intExecutionBlockByDateServiceListQueryKey(options), + }); -export const intExecutionBlockByDateServiceGetQueryKey = (options: Options) => createQueryKey('intExecutionBlockByDateServiceGet', options); +export const intExecutionBlockByDateServiceGetQueryKey = (options: Options) => + createQueryKey('intExecutionBlockByDateServiceGet', options); /** * Get record * * Retrieve a single record by block_date_time */ -export const intExecutionBlockByDateServiceGetOptions = (options: Options) => queryOptions>({ +export const intExecutionBlockByDateServiceGetOptions = (options: Options) => + queryOptions< + IntExecutionBlockByDateServiceGetResponse, + IntExecutionBlockByDateServiceGetError, + IntExecutionBlockByDateServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intExecutionBlockByDateServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intExecutionBlockByDateServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intExecutionBlockByDateServiceGetQueryKey(options) -}); + queryKey: intExecutionBlockByDateServiceGetQueryKey(options), + }); -export const intExecutionStateSizeByBlockServiceListQueryKey = (options?: Options) => createQueryKey('intExecutionStateSizeByBlockServiceList', options); +export const intExecutionStateSizeByBlockServiceListQueryKey = ( + options?: Options +) => createQueryKey('intExecutionStateSizeByBlockServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intExecutionStateSizeByBlockServiceListOptions = (options?: Options) => queryOptions>({ +export const intExecutionStateSizeByBlockServiceListOptions = ( + options?: Options +) => + queryOptions< + IntExecutionStateSizeByBlockServiceListResponse, + IntExecutionStateSizeByBlockServiceListError, + IntExecutionStateSizeByBlockServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intExecutionStateSizeByBlockServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intExecutionStateSizeByBlockServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intExecutionStateSizeByBlockServiceListQueryKey(options) -}); + queryKey: intExecutionStateSizeByBlockServiceListQueryKey(options), + }); -export const intExecutionStateSizeByBlockServiceGetQueryKey = (options: Options) => createQueryKey('intExecutionStateSizeByBlockServiceGet', options); +export const intExecutionStateSizeByBlockServiceGetQueryKey = ( + options: Options +) => createQueryKey('intExecutionStateSizeByBlockServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intExecutionStateSizeByBlockServiceGetOptions = (options: Options) => queryOptions>({ +export const intExecutionStateSizeByBlockServiceGetOptions = ( + options: Options +) => + queryOptions< + IntExecutionStateSizeByBlockServiceGetResponse, + IntExecutionStateSizeByBlockServiceGetError, + IntExecutionStateSizeByBlockServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intExecutionStateSizeByBlockServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intExecutionStateSizeByBlockServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intExecutionStateSizeByBlockServiceGetQueryKey(options) -}); + queryKey: intExecutionStateSizeByBlockServiceGetQueryKey(options), + }); -export const intRocketpoolMegapoolServiceListQueryKey = (options?: Options) => createQueryKey('intRocketpoolMegapoolServiceList', options); +export const intRocketpoolMegapoolServiceListQueryKey = (options?: Options) => + createQueryKey('intRocketpoolMegapoolServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intRocketpoolMegapoolServiceListOptions = (options?: Options) => queryOptions>({ +export const intRocketpoolMegapoolServiceListOptions = (options?: Options) => + queryOptions< + IntRocketpoolMegapoolServiceListResponse, + IntRocketpoolMegapoolServiceListError, + IntRocketpoolMegapoolServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intRocketpoolMegapoolServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intRocketpoolMegapoolServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intRocketpoolMegapoolServiceListQueryKey(options) -}); + queryKey: intRocketpoolMegapoolServiceListQueryKey(options), + }); -export const intRocketpoolMegapoolServiceGetQueryKey = (options: Options) => createQueryKey('intRocketpoolMegapoolServiceGet', options); +export const intRocketpoolMegapoolServiceGetQueryKey = (options: Options) => + createQueryKey('intRocketpoolMegapoolServiceGet', options); /** * Get record * * Retrieve a single record by megapool_address */ -export const intRocketpoolMegapoolServiceGetOptions = (options: Options) => queryOptions>({ +export const intRocketpoolMegapoolServiceGetOptions = (options: Options) => + queryOptions< + IntRocketpoolMegapoolServiceGetResponse, + IntRocketpoolMegapoolServiceGetError, + IntRocketpoolMegapoolServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intRocketpoolMegapoolServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intRocketpoolMegapoolServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intRocketpoolMegapoolServiceGetQueryKey(options) -}); + queryKey: intRocketpoolMegapoolServiceGetQueryKey(options), + }); -export const intRocketpoolMinipoolServiceListQueryKey = (options?: Options) => createQueryKey('intRocketpoolMinipoolServiceList', options); +export const intRocketpoolMinipoolServiceListQueryKey = (options?: Options) => + createQueryKey('intRocketpoolMinipoolServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intRocketpoolMinipoolServiceListOptions = (options?: Options) => queryOptions>({ +export const intRocketpoolMinipoolServiceListOptions = (options?: Options) => + queryOptions< + IntRocketpoolMinipoolServiceListResponse, + IntRocketpoolMinipoolServiceListError, + IntRocketpoolMinipoolServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intRocketpoolMinipoolServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intRocketpoolMinipoolServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intRocketpoolMinipoolServiceListQueryKey(options) -}); + queryKey: intRocketpoolMinipoolServiceListQueryKey(options), + }); -export const intRocketpoolMinipoolServiceGetQueryKey = (options: Options) => createQueryKey('intRocketpoolMinipoolServiceGet', options); +export const intRocketpoolMinipoolServiceGetQueryKey = (options: Options) => + createQueryKey('intRocketpoolMinipoolServiceGet', options); /** * Get record * * Retrieve a single record by event_name */ -export const intRocketpoolMinipoolServiceGetOptions = (options: Options) => queryOptions>({ +export const intRocketpoolMinipoolServiceGetOptions = (options: Options) => + queryOptions< + IntRocketpoolMinipoolServiceGetResponse, + IntRocketpoolMinipoolServiceGetError, + IntRocketpoolMinipoolServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intRocketpoolMinipoolServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intRocketpoolMinipoolServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intRocketpoolMinipoolServiceGetQueryKey(options) -}); + queryKey: intRocketpoolMinipoolServiceGetQueryKey(options), + }); -export const intRocketpoolNodeEventServiceListQueryKey = (options?: Options) => createQueryKey('intRocketpoolNodeEventServiceList', options); +export const intRocketpoolNodeEventServiceListQueryKey = (options?: Options) => + createQueryKey('intRocketpoolNodeEventServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intRocketpoolNodeEventServiceListOptions = (options?: Options) => queryOptions>({ +export const intRocketpoolNodeEventServiceListOptions = (options?: Options) => + queryOptions< + IntRocketpoolNodeEventServiceListResponse, + IntRocketpoolNodeEventServiceListError, + IntRocketpoolNodeEventServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intRocketpoolNodeEventServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intRocketpoolNodeEventServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intRocketpoolNodeEventServiceListQueryKey(options) -}); + queryKey: intRocketpoolNodeEventServiceListQueryKey(options), + }); -export const intRocketpoolNodeEventServiceGetQueryKey = (options: Options) => createQueryKey('intRocketpoolNodeEventServiceGet', options); +export const intRocketpoolNodeEventServiceGetQueryKey = (options: Options) => + createQueryKey('intRocketpoolNodeEventServiceGet', options); /** * Get record * * Retrieve a single record by event_name */ -export const intRocketpoolNodeEventServiceGetOptions = (options: Options) => queryOptions>({ +export const intRocketpoolNodeEventServiceGetOptions = (options: Options) => + queryOptions< + IntRocketpoolNodeEventServiceGetResponse, + IntRocketpoolNodeEventServiceGetError, + IntRocketpoolNodeEventServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intRocketpoolNodeEventServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intRocketpoolNodeEventServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intRocketpoolNodeEventServiceGetQueryKey(options) -}); + queryKey: intRocketpoolNodeEventServiceGetQueryKey(options), + }); -export const intRocketpoolNodeTimezoneServiceListQueryKey = (options?: Options) => createQueryKey('intRocketpoolNodeTimezoneServiceList', options); +export const intRocketpoolNodeTimezoneServiceListQueryKey = ( + options?: Options +) => createQueryKey('intRocketpoolNodeTimezoneServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intRocketpoolNodeTimezoneServiceListOptions = (options?: Options) => queryOptions>({ +export const intRocketpoolNodeTimezoneServiceListOptions = ( + options?: Options +) => + queryOptions< + IntRocketpoolNodeTimezoneServiceListResponse, + IntRocketpoolNodeTimezoneServiceListError, + IntRocketpoolNodeTimezoneServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intRocketpoolNodeTimezoneServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intRocketpoolNodeTimezoneServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intRocketpoolNodeTimezoneServiceListQueryKey(options) -}); + queryKey: intRocketpoolNodeTimezoneServiceListQueryKey(options), + }); -export const intRocketpoolNodeTimezoneServiceGetQueryKey = (options: Options) => createQueryKey('intRocketpoolNodeTimezoneServiceGet', options); +export const intRocketpoolNodeTimezoneServiceGetQueryKey = ( + options: Options +) => createQueryKey('intRocketpoolNodeTimezoneServiceGet', options); /** * Get record * * Retrieve a single record by node_address */ -export const intRocketpoolNodeTimezoneServiceGetOptions = (options: Options) => queryOptions>({ +export const intRocketpoolNodeTimezoneServiceGetOptions = (options: Options) => + queryOptions< + IntRocketpoolNodeTimezoneServiceGetResponse, + IntRocketpoolNodeTimezoneServiceGetError, + IntRocketpoolNodeTimezoneServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intRocketpoolNodeTimezoneServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intRocketpoolNodeTimezoneServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intRocketpoolNodeTimezoneServiceGetQueryKey(options) -}); + queryKey: intRocketpoolNodeTimezoneServiceGetQueryKey(options), + }); -export const intStorageSelfdestructDiffsServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSelfdestructDiffsServiceList', options); +export const intStorageSelfdestructDiffsServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSelfdestructDiffsServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSelfdestructDiffsServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSelfdestructDiffsServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSelfdestructDiffsServiceListResponse, + IntStorageSelfdestructDiffsServiceListError, + IntStorageSelfdestructDiffsServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSelfdestructDiffsServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSelfdestructDiffsServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSelfdestructDiffsServiceListQueryKey(options) -}); + queryKey: intStorageSelfdestructDiffsServiceListQueryKey(options), + }); -export const intStorageSelfdestructDiffsServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSelfdestructDiffsServiceGet', options); +export const intStorageSelfdestructDiffsServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSelfdestructDiffsServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSelfdestructDiffsServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSelfdestructDiffsServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSelfdestructDiffsServiceGetResponse, + IntStorageSelfdestructDiffsServiceGetError, + IntStorageSelfdestructDiffsServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSelfdestructDiffsServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSelfdestructDiffsServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSelfdestructDiffsServiceGetQueryKey(options) -}); + queryKey: intStorageSelfdestructDiffsServiceGetQueryKey(options), + }); -export const intStorageSlotDiffServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotDiffServiceList', options); +export const intStorageSlotDiffServiceListQueryKey = (options?: Options) => + createQueryKey('intStorageSlotDiffServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotDiffServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotDiffServiceListOptions = (options?: Options) => + queryOptions< + IntStorageSlotDiffServiceListResponse, + IntStorageSlotDiffServiceListError, + IntStorageSlotDiffServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotDiffServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotDiffServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotDiffServiceListQueryKey(options) -}); + queryKey: intStorageSlotDiffServiceListQueryKey(options), + }); -export const intStorageSlotDiffServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotDiffServiceGet', options); +export const intStorageSlotDiffServiceGetQueryKey = (options: Options) => + createQueryKey('intStorageSlotDiffServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotDiffServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotDiffServiceGetOptions = (options: Options) => + queryOptions< + IntStorageSlotDiffServiceGetResponse, + IntStorageSlotDiffServiceGetError, + IntStorageSlotDiffServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotDiffServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotDiffServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotDiffServiceGetQueryKey(options) -}); + queryKey: intStorageSlotDiffServiceGetQueryKey(options), + }); -export const intStorageSlotDiffByAddressSlotServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotDiffByAddressSlotServiceList', options); +export const intStorageSlotDiffByAddressSlotServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSlotDiffByAddressSlotServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotDiffByAddressSlotServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotDiffByAddressSlotServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSlotDiffByAddressSlotServiceListResponse, + IntStorageSlotDiffByAddressSlotServiceListError, + IntStorageSlotDiffByAddressSlotServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotDiffByAddressSlotServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotDiffByAddressSlotServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotDiffByAddressSlotServiceListQueryKey(options) -}); + queryKey: intStorageSlotDiffByAddressSlotServiceListQueryKey(options), + }); -export const intStorageSlotDiffByAddressSlotServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotDiffByAddressSlotServiceGet', options); +export const intStorageSlotDiffByAddressSlotServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSlotDiffByAddressSlotServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const intStorageSlotDiffByAddressSlotServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotDiffByAddressSlotServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSlotDiffByAddressSlotServiceGetResponse, + IntStorageSlotDiffByAddressSlotServiceGetError, + IntStorageSlotDiffByAddressSlotServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotDiffByAddressSlotServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotDiffByAddressSlotServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotDiffByAddressSlotServiceGetQueryKey(options) -}); + queryKey: intStorageSlotDiffByAddressSlotServiceGetQueryKey(options), + }); -export const intStorageSlotExpiry1mServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotExpiry1mServiceList', options); +export const intStorageSlotExpiry1mServiceListQueryKey = (options?: Options) => + createQueryKey('intStorageSlotExpiry1mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotExpiry1mServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotExpiry1mServiceListOptions = (options?: Options) => + queryOptions< + IntStorageSlotExpiry1mServiceListResponse, + IntStorageSlotExpiry1mServiceListError, + IntStorageSlotExpiry1mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotExpiry1mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotExpiry1mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotExpiry1mServiceListQueryKey(options) -}); + queryKey: intStorageSlotExpiry1mServiceListQueryKey(options), + }); -export const intStorageSlotExpiry1mServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotExpiry1mServiceGet', options); +export const intStorageSlotExpiry1mServiceGetQueryKey = (options: Options) => + createQueryKey('intStorageSlotExpiry1mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotExpiry1mServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotExpiry1mServiceGetOptions = (options: Options) => + queryOptions< + IntStorageSlotExpiry1mServiceGetResponse, + IntStorageSlotExpiry1mServiceGetError, + IntStorageSlotExpiry1mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotExpiry1mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotExpiry1mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotExpiry1mServiceGetQueryKey(options) -}); + queryKey: intStorageSlotExpiry1mServiceGetQueryKey(options), + }); -export const intStorageSlotExpiry6mServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotExpiry6mServiceList', options); +export const intStorageSlotExpiry6mServiceListQueryKey = (options?: Options) => + createQueryKey('intStorageSlotExpiry6mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotExpiry6mServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotExpiry6mServiceListOptions = (options?: Options) => + queryOptions< + IntStorageSlotExpiry6mServiceListResponse, + IntStorageSlotExpiry6mServiceListError, + IntStorageSlotExpiry6mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotExpiry6mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotExpiry6mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotExpiry6mServiceListQueryKey(options) -}); + queryKey: intStorageSlotExpiry6mServiceListQueryKey(options), + }); -export const intStorageSlotExpiry6mServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotExpiry6mServiceGet', options); +export const intStorageSlotExpiry6mServiceGetQueryKey = (options: Options) => + createQueryKey('intStorageSlotExpiry6mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotExpiry6mServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotExpiry6mServiceGetOptions = (options: Options) => + queryOptions< + IntStorageSlotExpiry6mServiceGetResponse, + IntStorageSlotExpiry6mServiceGetError, + IntStorageSlotExpiry6mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotExpiry6mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotExpiry6mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotExpiry6mServiceGetQueryKey(options) -}); + queryKey: intStorageSlotExpiry6mServiceGetQueryKey(options), + }); -export const intStorageSlotExpiry12mServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotExpiry12mServiceList', options); +export const intStorageSlotExpiry12mServiceListQueryKey = (options?: Options) => + createQueryKey('intStorageSlotExpiry12mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotExpiry12mServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotExpiry12mServiceListOptions = (options?: Options) => + queryOptions< + IntStorageSlotExpiry12mServiceListResponse, + IntStorageSlotExpiry12mServiceListError, + IntStorageSlotExpiry12mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotExpiry12mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotExpiry12mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotExpiry12mServiceListQueryKey(options) -}); + queryKey: intStorageSlotExpiry12mServiceListQueryKey(options), + }); -export const intStorageSlotExpiry12mServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotExpiry12mServiceGet', options); +export const intStorageSlotExpiry12mServiceGetQueryKey = (options: Options) => + createQueryKey('intStorageSlotExpiry12mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotExpiry12mServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotExpiry12mServiceGetOptions = (options: Options) => + queryOptions< + IntStorageSlotExpiry12mServiceGetResponse, + IntStorageSlotExpiry12mServiceGetError, + IntStorageSlotExpiry12mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotExpiry12mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotExpiry12mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotExpiry12mServiceGetQueryKey(options) -}); + queryKey: intStorageSlotExpiry12mServiceGetQueryKey(options), + }); -export const intStorageSlotExpiry18mServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotExpiry18mServiceList', options); +export const intStorageSlotExpiry18mServiceListQueryKey = (options?: Options) => + createQueryKey('intStorageSlotExpiry18mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotExpiry18mServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotExpiry18mServiceListOptions = (options?: Options) => + queryOptions< + IntStorageSlotExpiry18mServiceListResponse, + IntStorageSlotExpiry18mServiceListError, + IntStorageSlotExpiry18mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotExpiry18mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotExpiry18mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotExpiry18mServiceListQueryKey(options) -}); + queryKey: intStorageSlotExpiry18mServiceListQueryKey(options), + }); -export const intStorageSlotExpiry18mServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotExpiry18mServiceGet', options); +export const intStorageSlotExpiry18mServiceGetQueryKey = (options: Options) => + createQueryKey('intStorageSlotExpiry18mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotExpiry18mServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotExpiry18mServiceGetOptions = (options: Options) => + queryOptions< + IntStorageSlotExpiry18mServiceGetResponse, + IntStorageSlotExpiry18mServiceGetError, + IntStorageSlotExpiry18mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotExpiry18mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotExpiry18mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotExpiry18mServiceGetQueryKey(options) -}); + queryKey: intStorageSlotExpiry18mServiceGetQueryKey(options), + }); -export const intStorageSlotExpiry24mServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotExpiry24mServiceList', options); +export const intStorageSlotExpiry24mServiceListQueryKey = (options?: Options) => + createQueryKey('intStorageSlotExpiry24mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotExpiry24mServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotExpiry24mServiceListOptions = (options?: Options) => + queryOptions< + IntStorageSlotExpiry24mServiceListResponse, + IntStorageSlotExpiry24mServiceListError, + IntStorageSlotExpiry24mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotExpiry24mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotExpiry24mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotExpiry24mServiceListQueryKey(options) -}); + queryKey: intStorageSlotExpiry24mServiceListQueryKey(options), + }); -export const intStorageSlotExpiry24mServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotExpiry24mServiceGet', options); +export const intStorageSlotExpiry24mServiceGetQueryKey = (options: Options) => + createQueryKey('intStorageSlotExpiry24mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotExpiry24mServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotExpiry24mServiceGetOptions = (options: Options) => + queryOptions< + IntStorageSlotExpiry24mServiceGetResponse, + IntStorageSlotExpiry24mServiceGetError, + IntStorageSlotExpiry24mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotExpiry24mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotExpiry24mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotExpiry24mServiceGetQueryKey(options) -}); + queryKey: intStorageSlotExpiry24mServiceGetQueryKey(options), + }); -export const intStorageSlotLifecycleServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotLifecycleServiceList', options); +export const intStorageSlotLifecycleServiceListQueryKey = (options?: Options) => + createQueryKey('intStorageSlotLifecycleServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotLifecycleServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotLifecycleServiceListOptions = (options?: Options) => + queryOptions< + IntStorageSlotLifecycleServiceListResponse, + IntStorageSlotLifecycleServiceListError, + IntStorageSlotLifecycleServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotLifecycleServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotLifecycleServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotLifecycleServiceListQueryKey(options) -}); + queryKey: intStorageSlotLifecycleServiceListQueryKey(options), + }); -export const intStorageSlotLifecycleServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotLifecycleServiceGet', options); +export const intStorageSlotLifecycleServiceGetQueryKey = (options: Options) => + createQueryKey('intStorageSlotLifecycleServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const intStorageSlotLifecycleServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotLifecycleServiceGetOptions = (options: Options) => + queryOptions< + IntStorageSlotLifecycleServiceGetResponse, + IntStorageSlotLifecycleServiceGetError, + IntStorageSlotLifecycleServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotLifecycleServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotLifecycleServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotLifecycleServiceGetQueryKey(options) -}); + queryKey: intStorageSlotLifecycleServiceGetQueryKey(options), + }); -export const intStorageSlotLifecycleBoundaryServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotLifecycleBoundaryServiceList', options); +export const intStorageSlotLifecycleBoundaryServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSlotLifecycleBoundaryServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotLifecycleBoundaryServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotLifecycleBoundaryServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSlotLifecycleBoundaryServiceListResponse, + IntStorageSlotLifecycleBoundaryServiceListError, + IntStorageSlotLifecycleBoundaryServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotLifecycleBoundaryServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotLifecycleBoundaryServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotLifecycleBoundaryServiceListQueryKey(options) -}); + queryKey: intStorageSlotLifecycleBoundaryServiceListQueryKey(options), + }); -export const intStorageSlotLifecycleBoundaryServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotLifecycleBoundaryServiceGet', options); +export const intStorageSlotLifecycleBoundaryServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSlotLifecycleBoundaryServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const intStorageSlotLifecycleBoundaryServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotLifecycleBoundaryServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSlotLifecycleBoundaryServiceGetResponse, + IntStorageSlotLifecycleBoundaryServiceGetError, + IntStorageSlotLifecycleBoundaryServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotLifecycleBoundaryServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotLifecycleBoundaryServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotLifecycleBoundaryServiceGetQueryKey(options) -}); + queryKey: intStorageSlotLifecycleBoundaryServiceGetQueryKey(options), + }); -export const intStorageSlotNextTouchServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotNextTouchServiceList', options); +export const intStorageSlotNextTouchServiceListQueryKey = (options?: Options) => + createQueryKey('intStorageSlotNextTouchServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotNextTouchServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotNextTouchServiceListOptions = (options?: Options) => + queryOptions< + IntStorageSlotNextTouchServiceListResponse, + IntStorageSlotNextTouchServiceListError, + IntStorageSlotNextTouchServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotNextTouchServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotNextTouchServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotNextTouchServiceListQueryKey(options) -}); + queryKey: intStorageSlotNextTouchServiceListQueryKey(options), + }); -export const intStorageSlotNextTouchServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotNextTouchServiceGet', options); +export const intStorageSlotNextTouchServiceGetQueryKey = (options: Options) => + createQueryKey('intStorageSlotNextTouchServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotNextTouchServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotNextTouchServiceGetOptions = (options: Options) => + queryOptions< + IntStorageSlotNextTouchServiceGetResponse, + IntStorageSlotNextTouchServiceGetError, + IntStorageSlotNextTouchServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotNextTouchServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotNextTouchServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotNextTouchServiceGetQueryKey(options) -}); + queryKey: intStorageSlotNextTouchServiceGetQueryKey(options), + }); -export const intStorageSlotReactivation1mServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotReactivation1mServiceList', options); +export const intStorageSlotReactivation1mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSlotReactivation1mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotReactivation1mServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotReactivation1mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSlotReactivation1mServiceListResponse, + IntStorageSlotReactivation1mServiceListError, + IntStorageSlotReactivation1mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotReactivation1mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotReactivation1mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotReactivation1mServiceListQueryKey(options) -}); + queryKey: intStorageSlotReactivation1mServiceListQueryKey(options), + }); -export const intStorageSlotReactivation1mServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotReactivation1mServiceGet', options); +export const intStorageSlotReactivation1mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSlotReactivation1mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotReactivation1mServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotReactivation1mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSlotReactivation1mServiceGetResponse, + IntStorageSlotReactivation1mServiceGetError, + IntStorageSlotReactivation1mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotReactivation1mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotReactivation1mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotReactivation1mServiceGetQueryKey(options) -}); + queryKey: intStorageSlotReactivation1mServiceGetQueryKey(options), + }); -export const intStorageSlotReactivation6mServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotReactivation6mServiceList', options); +export const intStorageSlotReactivation6mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSlotReactivation6mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotReactivation6mServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotReactivation6mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSlotReactivation6mServiceListResponse, + IntStorageSlotReactivation6mServiceListError, + IntStorageSlotReactivation6mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotReactivation6mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotReactivation6mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotReactivation6mServiceListQueryKey(options) -}); + queryKey: intStorageSlotReactivation6mServiceListQueryKey(options), + }); -export const intStorageSlotReactivation6mServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotReactivation6mServiceGet', options); +export const intStorageSlotReactivation6mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSlotReactivation6mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotReactivation6mServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotReactivation6mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSlotReactivation6mServiceGetResponse, + IntStorageSlotReactivation6mServiceGetError, + IntStorageSlotReactivation6mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotReactivation6mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotReactivation6mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotReactivation6mServiceGetQueryKey(options) -}); + queryKey: intStorageSlotReactivation6mServiceGetQueryKey(options), + }); -export const intStorageSlotReactivation12mServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotReactivation12mServiceList', options); +export const intStorageSlotReactivation12mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSlotReactivation12mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotReactivation12mServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotReactivation12mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSlotReactivation12mServiceListResponse, + IntStorageSlotReactivation12mServiceListError, + IntStorageSlotReactivation12mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotReactivation12mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotReactivation12mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotReactivation12mServiceListQueryKey(options) -}); + queryKey: intStorageSlotReactivation12mServiceListQueryKey(options), + }); -export const intStorageSlotReactivation12mServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotReactivation12mServiceGet', options); +export const intStorageSlotReactivation12mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSlotReactivation12mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotReactivation12mServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotReactivation12mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSlotReactivation12mServiceGetResponse, + IntStorageSlotReactivation12mServiceGetError, + IntStorageSlotReactivation12mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotReactivation12mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotReactivation12mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotReactivation12mServiceGetQueryKey(options) -}); + queryKey: intStorageSlotReactivation12mServiceGetQueryKey(options), + }); -export const intStorageSlotReactivation18mServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotReactivation18mServiceList', options); +export const intStorageSlotReactivation18mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSlotReactivation18mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotReactivation18mServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotReactivation18mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSlotReactivation18mServiceListResponse, + IntStorageSlotReactivation18mServiceListError, + IntStorageSlotReactivation18mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotReactivation18mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotReactivation18mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotReactivation18mServiceListQueryKey(options) -}); + queryKey: intStorageSlotReactivation18mServiceListQueryKey(options), + }); -export const intStorageSlotReactivation18mServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotReactivation18mServiceGet', options); +export const intStorageSlotReactivation18mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSlotReactivation18mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotReactivation18mServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotReactivation18mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSlotReactivation18mServiceGetResponse, + IntStorageSlotReactivation18mServiceGetError, + IntStorageSlotReactivation18mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotReactivation18mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotReactivation18mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotReactivation18mServiceGetQueryKey(options) -}); + queryKey: intStorageSlotReactivation18mServiceGetQueryKey(options), + }); -export const intStorageSlotReactivation24mServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotReactivation24mServiceList', options); +export const intStorageSlotReactivation24mServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSlotReactivation24mServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotReactivation24mServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotReactivation24mServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSlotReactivation24mServiceListResponse, + IntStorageSlotReactivation24mServiceListError, + IntStorageSlotReactivation24mServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotReactivation24mServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotReactivation24mServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotReactivation24mServiceListQueryKey(options) -}); + queryKey: intStorageSlotReactivation24mServiceListQueryKey(options), + }); -export const intStorageSlotReactivation24mServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotReactivation24mServiceGet', options); +export const intStorageSlotReactivation24mServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSlotReactivation24mServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotReactivation24mServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotReactivation24mServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSlotReactivation24mServiceGetResponse, + IntStorageSlotReactivation24mServiceGetError, + IntStorageSlotReactivation24mServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotReactivation24mServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotReactivation24mServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotReactivation24mServiceGetQueryKey(options) -}); + queryKey: intStorageSlotReactivation24mServiceGetQueryKey(options), + }); -export const intStorageSlotReadServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotReadServiceList', options); +export const intStorageSlotReadServiceListQueryKey = (options?: Options) => + createQueryKey('intStorageSlotReadServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotReadServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotReadServiceListOptions = (options?: Options) => + queryOptions< + IntStorageSlotReadServiceListResponse, + IntStorageSlotReadServiceListError, + IntStorageSlotReadServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotReadServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotReadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotReadServiceListQueryKey(options) -}); + queryKey: intStorageSlotReadServiceListQueryKey(options), + }); -export const intStorageSlotReadServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotReadServiceGet', options); +export const intStorageSlotReadServiceGetQueryKey = (options: Options) => + createQueryKey('intStorageSlotReadServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotReadServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotReadServiceGetOptions = (options: Options) => + queryOptions< + IntStorageSlotReadServiceGetResponse, + IntStorageSlotReadServiceGetError, + IntStorageSlotReadServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotReadServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotReadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotReadServiceGetQueryKey(options) -}); + queryKey: intStorageSlotReadServiceGetQueryKey(options), + }); -export const intStorageSlotStateServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotStateServiceList', options); +export const intStorageSlotStateServiceListQueryKey = (options?: Options) => + createQueryKey('intStorageSlotStateServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotStateServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotStateServiceListOptions = (options?: Options) => + queryOptions< + IntStorageSlotStateServiceListResponse, + IntStorageSlotStateServiceListError, + IntStorageSlotStateServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotStateServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotStateServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotStateServiceListQueryKey(options) -}); + queryKey: intStorageSlotStateServiceListQueryKey(options), + }); -export const intStorageSlotStateServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotStateServiceGet', options); +export const intStorageSlotStateServiceGetQueryKey = (options: Options) => + createQueryKey('intStorageSlotStateServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotStateServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotStateServiceGetOptions = (options: Options) => + queryOptions< + IntStorageSlotStateServiceGetResponse, + IntStorageSlotStateServiceGetError, + IntStorageSlotStateServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotStateServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotStateServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotStateServiceGetQueryKey(options) -}); + queryKey: intStorageSlotStateServiceGetQueryKey(options), + }); -export const intStorageSlotStateByAddressServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotStateByAddressServiceList', options); +export const intStorageSlotStateByAddressServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSlotStateByAddressServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotStateByAddressServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotStateByAddressServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSlotStateByAddressServiceListResponse, + IntStorageSlotStateByAddressServiceListError, + IntStorageSlotStateByAddressServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotStateByAddressServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotStateByAddressServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotStateByAddressServiceListQueryKey(options) -}); + queryKey: intStorageSlotStateByAddressServiceListQueryKey(options), + }); -export const intStorageSlotStateByAddressServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotStateByAddressServiceGet', options); +export const intStorageSlotStateByAddressServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSlotStateByAddressServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const intStorageSlotStateByAddressServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotStateByAddressServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSlotStateByAddressServiceGetResponse, + IntStorageSlotStateByAddressServiceGetError, + IntStorageSlotStateByAddressServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotStateByAddressServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotStateByAddressServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotStateByAddressServiceGetQueryKey(options) -}); + queryKey: intStorageSlotStateByAddressServiceGetQueryKey(options), + }); -export const intStorageSlotStateByBlockServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotStateByBlockServiceList', options); +export const intStorageSlotStateByBlockServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSlotStateByBlockServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotStateByBlockServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotStateByBlockServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSlotStateByBlockServiceListResponse, + IntStorageSlotStateByBlockServiceListError, + IntStorageSlotStateByBlockServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotStateByBlockServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotStateByBlockServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotStateByBlockServiceListQueryKey(options) -}); + queryKey: intStorageSlotStateByBlockServiceListQueryKey(options), + }); -export const intStorageSlotStateByBlockServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotStateByBlockServiceGet', options); +export const intStorageSlotStateByBlockServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSlotStateByBlockServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotStateByBlockServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotStateByBlockServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSlotStateByBlockServiceGetResponse, + IntStorageSlotStateByBlockServiceGetError, + IntStorageSlotStateByBlockServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotStateByBlockServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotStateByBlockServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotStateByBlockServiceGetQueryKey(options) -}); + queryKey: intStorageSlotStateByBlockServiceGetQueryKey(options), + }); -export const intStorageSlotStateWithExpiryServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotStateWithExpiryServiceList', options); +export const intStorageSlotStateWithExpiryServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSlotStateWithExpiryServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotStateWithExpiryServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotStateWithExpiryServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSlotStateWithExpiryServiceListResponse, + IntStorageSlotStateWithExpiryServiceListError, + IntStorageSlotStateWithExpiryServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotStateWithExpiryServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotStateWithExpiryServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotStateWithExpiryServiceListQueryKey(options) -}); + queryKey: intStorageSlotStateWithExpiryServiceListQueryKey(options), + }); -export const intStorageSlotStateWithExpiryServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotStateWithExpiryServiceGet', options); +export const intStorageSlotStateWithExpiryServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSlotStateWithExpiryServiceGet', options); /** * Get record * * Retrieve a single record by expiry_policy */ -export const intStorageSlotStateWithExpiryServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotStateWithExpiryServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSlotStateWithExpiryServiceGetResponse, + IntStorageSlotStateWithExpiryServiceGetError, + IntStorageSlotStateWithExpiryServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotStateWithExpiryServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotStateWithExpiryServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotStateWithExpiryServiceGetQueryKey(options) -}); + queryKey: intStorageSlotStateWithExpiryServiceGetQueryKey(options), + }); -export const intStorageSlotStateWithExpiryByAddressServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotStateWithExpiryByAddressServiceList', options); +export const intStorageSlotStateWithExpiryByAddressServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSlotStateWithExpiryByAddressServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotStateWithExpiryByAddressServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotStateWithExpiryByAddressServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSlotStateWithExpiryByAddressServiceListResponse, + IntStorageSlotStateWithExpiryByAddressServiceListError, + IntStorageSlotStateWithExpiryByAddressServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotStateWithExpiryByAddressServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotStateWithExpiryByAddressServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotStateWithExpiryByAddressServiceListQueryKey(options) -}); + queryKey: intStorageSlotStateWithExpiryByAddressServiceListQueryKey(options), + }); -export const intStorageSlotStateWithExpiryByAddressServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotStateWithExpiryByAddressServiceGet', options); +export const intStorageSlotStateWithExpiryByAddressServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSlotStateWithExpiryByAddressServiceGet', options); /** * Get record * * Retrieve a single record by address */ -export const intStorageSlotStateWithExpiryByAddressServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotStateWithExpiryByAddressServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSlotStateWithExpiryByAddressServiceGetResponse, + IntStorageSlotStateWithExpiryByAddressServiceGetError, + IntStorageSlotStateWithExpiryByAddressServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotStateWithExpiryByAddressServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotStateWithExpiryByAddressServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotStateWithExpiryByAddressServiceGetQueryKey(options) -}); + queryKey: intStorageSlotStateWithExpiryByAddressServiceGetQueryKey(options), + }); -export const intStorageSlotStateWithExpiryByBlockServiceListQueryKey = (options?: Options) => createQueryKey('intStorageSlotStateWithExpiryByBlockServiceList', options); +export const intStorageSlotStateWithExpiryByBlockServiceListQueryKey = ( + options?: Options +) => createQueryKey('intStorageSlotStateWithExpiryByBlockServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotStateWithExpiryByBlockServiceListOptions = (options?: Options) => queryOptions>({ +export const intStorageSlotStateWithExpiryByBlockServiceListOptions = ( + options?: Options +) => + queryOptions< + IntStorageSlotStateWithExpiryByBlockServiceListResponse, + IntStorageSlotStateWithExpiryByBlockServiceListError, + IntStorageSlotStateWithExpiryByBlockServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotStateWithExpiryByBlockServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotStateWithExpiryByBlockServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotStateWithExpiryByBlockServiceListQueryKey(options) -}); + queryKey: intStorageSlotStateWithExpiryByBlockServiceListQueryKey(options), + }); -export const intStorageSlotStateWithExpiryByBlockServiceGetQueryKey = (options: Options) => createQueryKey('intStorageSlotStateWithExpiryByBlockServiceGet', options); +export const intStorageSlotStateWithExpiryByBlockServiceGetQueryKey = ( + options: Options +) => createQueryKey('intStorageSlotStateWithExpiryByBlockServiceGet', options); /** * Get record * * Retrieve a single record by expiry_policy */ -export const intStorageSlotStateWithExpiryByBlockServiceGetOptions = (options: Options) => queryOptions>({ +export const intStorageSlotStateWithExpiryByBlockServiceGetOptions = ( + options: Options +) => + queryOptions< + IntStorageSlotStateWithExpiryByBlockServiceGetResponse, + IntStorageSlotStateWithExpiryByBlockServiceGetError, + IntStorageSlotStateWithExpiryByBlockServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intStorageSlotStateWithExpiryByBlockServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intStorageSlotStateWithExpiryByBlockServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intStorageSlotStateWithExpiryByBlockServiceGetQueryKey(options) -}); + queryKey: intStorageSlotStateWithExpiryByBlockServiceGetQueryKey(options), + }); -export const intTokenContractStorageStateByBlockServiceListQueryKey = (options?: Options) => createQueryKey('intTokenContractStorageStateByBlockServiceList', options); +export const intTokenContractStorageStateByBlockServiceListQueryKey = ( + options?: Options +) => createQueryKey('intTokenContractStorageStateByBlockServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTokenContractStorageStateByBlockServiceListOptions = (options?: Options) => queryOptions>({ +export const intTokenContractStorageStateByBlockServiceListOptions = ( + options?: Options +) => + queryOptions< + IntTokenContractStorageStateByBlockServiceListResponse, + IntTokenContractStorageStateByBlockServiceListError, + IntTokenContractStorageStateByBlockServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTokenContractStorageStateByBlockServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTokenContractStorageStateByBlockServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTokenContractStorageStateByBlockServiceListQueryKey(options) -}); + queryKey: intTokenContractStorageStateByBlockServiceListQueryKey(options), + }); -export const intTokenContractStorageStateByBlockServiceGetQueryKey = (options: Options) => createQueryKey('intTokenContractStorageStateByBlockServiceGet', options); +export const intTokenContractStorageStateByBlockServiceGetQueryKey = ( + options: Options +) => createQueryKey('intTokenContractStorageStateByBlockServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intTokenContractStorageStateByBlockServiceGetOptions = (options: Options) => queryOptions>({ +export const intTokenContractStorageStateByBlockServiceGetOptions = ( + options: Options +) => + queryOptions< + IntTokenContractStorageStateByBlockServiceGetResponse, + IntTokenContractStorageStateByBlockServiceGetError, + IntTokenContractStorageStateByBlockServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTokenContractStorageStateByBlockServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTokenContractStorageStateByBlockServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTokenContractStorageStateByBlockServiceGetQueryKey(options) -}); + queryKey: intTokenContractStorageStateByBlockServiceGetQueryKey(options), + }); -export const intTransactionCallFrameServiceListQueryKey = (options?: Options) => createQueryKey('intTransactionCallFrameServiceList', options); +export const intTransactionCallFrameServiceListQueryKey = (options?: Options) => + createQueryKey('intTransactionCallFrameServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTransactionCallFrameServiceListOptions = (options?: Options) => queryOptions>({ +export const intTransactionCallFrameServiceListOptions = (options?: Options) => + queryOptions< + IntTransactionCallFrameServiceListResponse, + IntTransactionCallFrameServiceListError, + IntTransactionCallFrameServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTransactionCallFrameServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTransactionCallFrameServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTransactionCallFrameServiceListQueryKey(options) -}); + queryKey: intTransactionCallFrameServiceListQueryKey(options), + }); -export const intTransactionCallFrameServiceGetQueryKey = (options: Options) => createQueryKey('intTransactionCallFrameServiceGet', options); +export const intTransactionCallFrameServiceGetQueryKey = (options: Options) => + createQueryKey('intTransactionCallFrameServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intTransactionCallFrameServiceGetOptions = (options: Options) => queryOptions>({ +export const intTransactionCallFrameServiceGetOptions = (options: Options) => + queryOptions< + IntTransactionCallFrameServiceGetResponse, + IntTransactionCallFrameServiceGetError, + IntTransactionCallFrameServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTransactionCallFrameServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTransactionCallFrameServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTransactionCallFrameServiceGetQueryKey(options) -}); + queryKey: intTransactionCallFrameServiceGetQueryKey(options), + }); -export const intTransactionCallFrameOpcodeGasServiceListQueryKey = (options?: Options) => createQueryKey('intTransactionCallFrameOpcodeGasServiceList', options); +export const intTransactionCallFrameOpcodeGasServiceListQueryKey = ( + options?: Options +) => createQueryKey('intTransactionCallFrameOpcodeGasServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTransactionCallFrameOpcodeGasServiceListOptions = (options?: Options) => queryOptions>({ +export const intTransactionCallFrameOpcodeGasServiceListOptions = ( + options?: Options +) => + queryOptions< + IntTransactionCallFrameOpcodeGasServiceListResponse, + IntTransactionCallFrameOpcodeGasServiceListError, + IntTransactionCallFrameOpcodeGasServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTransactionCallFrameOpcodeGasServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTransactionCallFrameOpcodeGasServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTransactionCallFrameOpcodeGasServiceListQueryKey(options) -}); + queryKey: intTransactionCallFrameOpcodeGasServiceListQueryKey(options), + }); -export const intTransactionCallFrameOpcodeGasServiceGetQueryKey = (options: Options) => createQueryKey('intTransactionCallFrameOpcodeGasServiceGet', options); +export const intTransactionCallFrameOpcodeGasServiceGetQueryKey = ( + options: Options +) => createQueryKey('intTransactionCallFrameOpcodeGasServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intTransactionCallFrameOpcodeGasServiceGetOptions = (options: Options) => queryOptions>({ +export const intTransactionCallFrameOpcodeGasServiceGetOptions = ( + options: Options +) => + queryOptions< + IntTransactionCallFrameOpcodeGasServiceGetResponse, + IntTransactionCallFrameOpcodeGasServiceGetError, + IntTransactionCallFrameOpcodeGasServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTransactionCallFrameOpcodeGasServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTransactionCallFrameOpcodeGasServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTransactionCallFrameOpcodeGasServiceGetQueryKey(options) -}); + queryKey: intTransactionCallFrameOpcodeGasServiceGetQueryKey(options), + }); -export const intTransactionCallFrameOpcodeResourceGasServiceListQueryKey = (options?: Options) => createQueryKey('intTransactionCallFrameOpcodeResourceGasServiceList', options); +export const intTransactionCallFrameOpcodeResourceGasServiceListQueryKey = ( + options?: Options +) => createQueryKey('intTransactionCallFrameOpcodeResourceGasServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTransactionCallFrameOpcodeResourceGasServiceListOptions = (options?: Options) => queryOptions>({ +export const intTransactionCallFrameOpcodeResourceGasServiceListOptions = ( + options?: Options +) => + queryOptions< + IntTransactionCallFrameOpcodeResourceGasServiceListResponse, + IntTransactionCallFrameOpcodeResourceGasServiceListError, + IntTransactionCallFrameOpcodeResourceGasServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTransactionCallFrameOpcodeResourceGasServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTransactionCallFrameOpcodeResourceGasServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTransactionCallFrameOpcodeResourceGasServiceListQueryKey(options) -}); + queryKey: intTransactionCallFrameOpcodeResourceGasServiceListQueryKey(options), + }); -export const intTransactionCallFrameOpcodeResourceGasServiceGetQueryKey = (options: Options) => createQueryKey('intTransactionCallFrameOpcodeResourceGasServiceGet', options); +export const intTransactionCallFrameOpcodeResourceGasServiceGetQueryKey = ( + options: Options +) => createQueryKey('intTransactionCallFrameOpcodeResourceGasServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intTransactionCallFrameOpcodeResourceGasServiceGetOptions = (options: Options) => queryOptions>({ +export const intTransactionCallFrameOpcodeResourceGasServiceGetOptions = ( + options: Options +) => + queryOptions< + IntTransactionCallFrameOpcodeResourceGasServiceGetResponse, + IntTransactionCallFrameOpcodeResourceGasServiceGetError, + IntTransactionCallFrameOpcodeResourceGasServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTransactionCallFrameOpcodeResourceGasServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTransactionCallFrameOpcodeResourceGasServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTransactionCallFrameOpcodeResourceGasServiceGetQueryKey(options) -}); + queryKey: intTransactionCallFrameOpcodeResourceGasServiceGetQueryKey(options), + }); -export const intTransactionOpcodeGasServiceListQueryKey = (options?: Options) => createQueryKey('intTransactionOpcodeGasServiceList', options); +export const intTransactionOpcodeGasServiceListQueryKey = (options?: Options) => + createQueryKey('intTransactionOpcodeGasServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTransactionOpcodeGasServiceListOptions = (options?: Options) => queryOptions>({ +export const intTransactionOpcodeGasServiceListOptions = (options?: Options) => + queryOptions< + IntTransactionOpcodeGasServiceListResponse, + IntTransactionOpcodeGasServiceListError, + IntTransactionOpcodeGasServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTransactionOpcodeGasServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTransactionOpcodeGasServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTransactionOpcodeGasServiceListQueryKey(options) -}); + queryKey: intTransactionOpcodeGasServiceListQueryKey(options), + }); -export const intTransactionOpcodeGasServiceGetQueryKey = (options: Options) => createQueryKey('intTransactionOpcodeGasServiceGet', options); +export const intTransactionOpcodeGasServiceGetQueryKey = (options: Options) => + createQueryKey('intTransactionOpcodeGasServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intTransactionOpcodeGasServiceGetOptions = (options: Options) => queryOptions>({ +export const intTransactionOpcodeGasServiceGetOptions = (options: Options) => + queryOptions< + IntTransactionOpcodeGasServiceGetResponse, + IntTransactionOpcodeGasServiceGetError, + IntTransactionOpcodeGasServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTransactionOpcodeGasServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTransactionOpcodeGasServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTransactionOpcodeGasServiceGetQueryKey(options) -}); + queryKey: intTransactionOpcodeGasServiceGetQueryKey(options), + }); -export const intTransactionReceiptSizeServiceListQueryKey = (options?: Options) => createQueryKey('intTransactionReceiptSizeServiceList', options); +export const intTransactionReceiptSizeServiceListQueryKey = ( + options?: Options +) => createQueryKey('intTransactionReceiptSizeServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTransactionReceiptSizeServiceListOptions = (options?: Options) => queryOptions>({ +export const intTransactionReceiptSizeServiceListOptions = ( + options?: Options +) => + queryOptions< + IntTransactionReceiptSizeServiceListResponse, + IntTransactionReceiptSizeServiceListError, + IntTransactionReceiptSizeServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTransactionReceiptSizeServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTransactionReceiptSizeServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTransactionReceiptSizeServiceListQueryKey(options) -}); + queryKey: intTransactionReceiptSizeServiceListQueryKey(options), + }); -export const intTransactionReceiptSizeServiceGetQueryKey = (options: Options) => createQueryKey('intTransactionReceiptSizeServiceGet', options); +export const intTransactionReceiptSizeServiceGetQueryKey = ( + options: Options +) => createQueryKey('intTransactionReceiptSizeServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intTransactionReceiptSizeServiceGetOptions = (options: Options) => queryOptions>({ +export const intTransactionReceiptSizeServiceGetOptions = (options: Options) => + queryOptions< + IntTransactionReceiptSizeServiceGetResponse, + IntTransactionReceiptSizeServiceGetError, + IntTransactionReceiptSizeServiceGetResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTransactionReceiptSizeServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTransactionReceiptSizeServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTransactionReceiptSizeServiceGetQueryKey(options) -}); + queryKey: intTransactionReceiptSizeServiceGetQueryKey(options), + }); -export const intTransactionResourceGasServiceListQueryKey = (options?: Options) => createQueryKey('intTransactionResourceGasServiceList', options); +export const intTransactionResourceGasServiceListQueryKey = ( + options?: Options +) => createQueryKey('intTransactionResourceGasServiceList', options); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTransactionResourceGasServiceListOptions = (options?: Options) => queryOptions>({ +export const intTransactionResourceGasServiceListOptions = ( + options?: Options +) => + queryOptions< + IntTransactionResourceGasServiceListResponse, + IntTransactionResourceGasServiceListError, + IntTransactionResourceGasServiceListResponse, + ReturnType + >({ queryFn: async ({ queryKey, signal }) => { - const { data } = await intTransactionResourceGasServiceList({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; + const { data } = await intTransactionResourceGasServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; }, - queryKey: intTransactionResourceGasServiceListQueryKey(options) -}); + queryKey: intTransactionResourceGasServiceListQueryKey(options), + }); -export const intTransactionResourceGasServiceGetQueryKey = (options: Options) => createQueryKey('intTransactionResourceGasServiceGet', options); +export const intTransactionResourceGasServiceGetQueryKey = ( + options: Options +) => createQueryKey('intTransactionResourceGasServiceGet', options); /** * Get record * * Retrieve a single record by block_number */ -export const intTransactionResourceGasServiceGetOptions = (options: Options) => queryOptions>({ - queryFn: async ({ queryKey, signal }) => { - const { data } = await intTransactionResourceGasServiceGet({ - ...options, - ...queryKey[0], - signal, - throwOnError: true - }); - return data; - }, - queryKey: intTransactionResourceGasServiceGetQueryKey(options) -}); +export const intTransactionResourceGasServiceGetOptions = (options: Options) => + queryOptions< + IntTransactionResourceGasServiceGetResponse, + IntTransactionResourceGasServiceGetError, + IntTransactionResourceGasServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await intTransactionResourceGasServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: intTransactionResourceGasServiceGetQueryKey(options), + }); diff --git a/src/api/client.gen.ts b/src/api/client.gen.ts index 934d20a72..cc63d1ca1 100644 --- a/src/api/client.gen.ts +++ b/src/api/client.gen.ts @@ -13,6 +13,10 @@ import type { ClientOptions as ClientOptions2 } from './types.gen'; * `setConfig()`. This is useful for example if you're using Next.js * to ensure your client always has the correct values. */ -export type CreateClientConfig = (override?: Config) => Config & T>; +export type CreateClientConfig = ( + override?: Config +) => Config & T>; -export const client = createClient(createClientConfig(createConfig({ baseUrl: 'https://cbt-api-mainnet.analytics.production.platform.ethpandaops.io' }))); +export const client = createClient( + createClientConfig(createConfig({ baseUrl: 'http://localhost:9091' })) +); diff --git a/src/api/client/client.gen.ts b/src/api/client/client.gen.ts index d2e55a144..1eaee37dd 100644 --- a/src/api/client/client.gen.ts +++ b/src/api/client/client.gen.ts @@ -65,7 +65,7 @@ export const createClient = (config: Config = {}): Client => { return { opts, url }; }; - const request: Client['request'] = async (options) => { + const request: Client['request'] = async options => { // @ts-expect-error const { opts, url } = await beforeRequest(options); const requestInit: ReqInit = { @@ -128,9 +128,7 @@ export const createClient = (config: Config = {}): Client => { if (response.ok) { const parseAs = - (opts.parseAs === 'auto' - ? getParseAs(response.headers.get('Content-Type')) - : opts.parseAs) ?? 'json'; + (opts.parseAs === 'auto' ? getParseAs(response.headers.get('Content-Type')) : opts.parseAs) ?? 'json'; if (response.status === 204 || response.headers.get('Content-Length') === '0') { let emptyData: any; @@ -234,8 +232,7 @@ export const createClient = (config: Config = {}): Client => { }; }; - const makeMethodFn = (method: Uppercase) => (options: RequestOptions) => - request({ ...options, method }); + const makeMethodFn = (method: Uppercase) => (options: RequestOptions) => request({ ...options, method }); const makeSseFn = (method: Uppercase) => async (options: RequestOptions) => { const { opts, url } = await beforeRequest(options); diff --git a/src/api/client/index.ts b/src/api/client/index.ts index b295edeca..cfc7b779b 100644 --- a/src/api/client/index.ts +++ b/src/api/client/index.ts @@ -2,11 +2,7 @@ export type { Auth } from '../core/auth.gen'; export type { QuerySerializerOptions } from '../core/bodySerializer.gen'; -export { - formDataBodySerializer, - jsonBodySerializer, - urlSearchParamsBodySerializer, -} from '../core/bodySerializer.gen'; +export { formDataBodySerializer, jsonBodySerializer, urlSearchParamsBodySerializer } from '../core/bodySerializer.gen'; export { buildClientParams } from '../core/params.gen'; export { serializeQueryKeyValue } from '../core/queryKeySerializer.gen'; export { createClient } from './client.gen'; diff --git a/src/api/client/types.gen.ts b/src/api/client/types.gen.ts index cb6d0d54a..50f666c18 100644 --- a/src/api/client/types.gen.ts +++ b/src/api/client/types.gen.ts @@ -1,10 +1,7 @@ // This file is auto-generated by @hey-api/openapi-ts import type { Auth } from '../core/auth.gen'; -import type { - ServerSentEventsOptions, - ServerSentEventsResult, -} from '../core/serverSentEvents.gen'; +import type { ServerSentEventsOptions, ServerSentEventsResult } from '../core/serverSentEvents.gen'; import type { Client as CoreClient, Config as CoreConfig } from '../core/types.gen'; import type { Middleware } from './utils.gen'; @@ -66,11 +63,7 @@ export interface RequestOptions< }>, Pick< ServerSentEventsOptions, - | 'onSseError' - | 'onSseEvent' - | 'sseDefaultRetryDelay' - | 'sseMaxRetryAttempts' - | 'sseMaxRetryDelay' + 'onSseError' | 'onSseEvent' | 'sseDefaultRetryDelay' | 'sseMaxRetryAttempts' | 'sseMaxRetryDelay' > { /** * Any body that you want to add to your request. @@ -142,7 +135,7 @@ type MethodFn = < ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields', >( - options: Omit, 'method'>, + options: Omit, 'method'> ) => RequestResult; type SseFn = < @@ -151,7 +144,7 @@ type SseFn = < ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields', >( - options: Omit, 'method'>, + options: Omit, 'method'> ) => Promise>; type RequestFn = < @@ -161,7 +154,7 @@ type RequestFn = < TResponseStyle extends ResponseStyle = 'fields', >( options: Omit, 'method'> & - Pick>, 'method'>, + Pick>, 'method'> ) => RequestResult; type BuildUrlFn = < @@ -172,7 +165,7 @@ type BuildUrlFn = < url: string; }, >( - options: TData & Options, + options: TData & Options ) => string; export type Client = CoreClient & { @@ -188,7 +181,7 @@ export type Client = CoreClient * to ensure your client always has the correct values. */ export type CreateClientConfig = ( - override?: Config, + override?: Config ) => Config & T>; export interface TDataShape { @@ -206,8 +199,5 @@ export type Options< ThrowOnError extends boolean = boolean, TResponse = unknown, TResponseStyle extends ResponseStyle = 'fields', -> = OmitKeys< - RequestOptions, - 'body' | 'path' | 'query' | 'url' -> & +> = OmitKeys, 'body' | 'path' | 'query' | 'url'> & ([TData] extends [never] ? unknown : Omit); diff --git a/src/api/client/utils.gen.ts b/src/api/client/utils.gen.ts index b4bd2435c..e49bdb3ca 100644 --- a/src/api/client/utils.gen.ts +++ b/src/api/client/utils.gen.ts @@ -3,18 +3,11 @@ import { getAuthToken } from '../core/auth.gen'; import type { QuerySerializerOptions } from '../core/bodySerializer.gen'; import { jsonBodySerializer } from '../core/bodySerializer.gen'; -import { - serializeArrayParam, - serializeObjectParam, - serializePrimitiveParam, -} from '../core/pathSerializer.gen'; +import { serializeArrayParam, serializeObjectParam, serializePrimitiveParam } from '../core/pathSerializer.gen'; import { getUrl } from '../core/utils.gen'; import type { Client, ClientOptions, Config, RequestOptions } from './types.gen'; -export const createQuerySerializer = ({ - parameters = {}, - ...args -}: QuerySerializerOptions = {}) => { +export const createQuerySerializer = ({ parameters = {}, ...args }: QuerySerializerOptions = {}) => { const querySerializer = (queryParams: T) => { const search: string[] = []; if (queryParams && typeof queryParams === 'object') { @@ -86,9 +79,7 @@ export const getParseAs = (contentType: string | null): Exclude cleanContent.startsWith(type)) - ) { + if (['application/', 'audio/', 'image/', 'video/'].some(type => cleanContent.startsWith(type))) { return 'blob'; } @@ -103,16 +94,12 @@ const checkForExistence = ( options: Pick & { headers: Headers; }, - name?: string, + name?: string ): boolean => { if (!name) { return false; } - if ( - options.headers.has(name) || - options.query?.[name] || - options.headers.get('Cookie')?.includes(`${name}=`) - ) { + if (options.headers.has(name) || options.query?.[name] || options.headers.get('Cookie')?.includes(`${name}=`)) { return true; } return false; @@ -156,7 +143,7 @@ export const setAuthParams = async ({ } }; -export const buildUrl: Client['buildUrl'] = (options) => +export const buildUrl: Client['buildUrl'] = options => getUrl({ baseUrl: options.baseUrl as string, path: options.path, @@ -185,9 +172,7 @@ const headersEntries = (headers: Headers): Array<[string, string]> => { return entries; }; -export const mergeHeaders = ( - ...headers: Array['headers'] | undefined> -): Headers => { +export const mergeHeaders = (...headers: Array['headers'] | undefined>): Headers => { const mergedHeaders = new Headers(); for (const header of headers) { if (!header) { @@ -206,10 +191,7 @@ export const mergeHeaders = ( } else if (value !== undefined) { // assume object headers are meant to be JSON stringified, i.e. their // content value in OpenAPI specification is 'application/json' - mergedHeaders.set( - key, - typeof value === 'object' ? JSON.stringify(value) : (value as string), - ); + mergedHeaders.set(key, typeof value === 'object' ? JSON.stringify(value) : (value as string)); } } } @@ -220,16 +202,12 @@ type ErrInterceptor = ( error: Err, response: Res, request: Req, - options: Options, + options: Options ) => Err | Promise; type ReqInterceptor = (request: Req, options: Options) => Req | Promise; -type ResInterceptor = ( - response: Res, - request: Req, - options: Options, -) => Res | Promise; +type ResInterceptor = (response: Res, request: Req, options: Options) => Res | Promise; class Interceptors { fns: Array = []; @@ -278,12 +256,7 @@ export interface Middleware { response: Interceptors>; } -export const createInterceptors = (): Middleware< - Req, - Res, - Err, - Options -> => ({ +export const createInterceptors = (): Middleware => ({ error: new Interceptors>(), request: new Interceptors>(), response: new Interceptors>(), @@ -306,7 +279,7 @@ const defaultHeaders = { }; export const createConfig = ( - override: Config & T> = {}, + override: Config & T> = {} ): Config & T> => ({ ...jsonBodySerializer, headers: defaultHeaders, diff --git a/src/api/core/auth.gen.ts b/src/api/core/auth.gen.ts index 3ebf99478..b55878567 100644 --- a/src/api/core/auth.gen.ts +++ b/src/api/core/auth.gen.ts @@ -21,7 +21,7 @@ export interface Auth { export const getAuthToken = async ( auth: Auth, - callback: ((auth: Auth) => Promise | AuthToken) | AuthToken, + callback: ((auth: Auth) => Promise | AuthToken) | AuthToken ): Promise => { const token = typeof callback === 'function' ? await callback(auth) : callback; diff --git a/src/api/core/bodySerializer.gen.ts b/src/api/core/bodySerializer.gen.ts index 8ad92c9ff..45f63ef3c 100644 --- a/src/api/core/bodySerializer.gen.ts +++ b/src/api/core/bodySerializer.gen.ts @@ -39,9 +39,7 @@ const serializeUrlSearchParamsPair = (data: URLSearchParams, key: string, value: }; export const formDataBodySerializer = { - bodySerializer: | Array>>( - body: T, - ): FormData => { + bodySerializer: | Array>>(body: T): FormData => { const data = new FormData(); Object.entries(body).forEach(([key, value]) => { @@ -49,7 +47,7 @@ export const formDataBodySerializer = { return; } if (Array.isArray(value)) { - value.forEach((v) => serializeFormDataPair(data, key, v)); + value.forEach(v => serializeFormDataPair(data, key, v)); } else { serializeFormDataPair(data, key, value); } @@ -73,7 +71,7 @@ export const urlSearchParamsBodySerializer = { return; } if (Array.isArray(value)) { - value.forEach((v) => serializeUrlSearchParamsPair(data, key, v)); + value.forEach(v => serializeUrlSearchParamsPair(data, key, v)); } else { serializeUrlSearchParamsPair(data, key, value); } diff --git a/src/api/core/pathSerializer.gen.ts b/src/api/core/pathSerializer.gen.ts index 994b2848c..fd0eded5c 100644 --- a/src/api/core/pathSerializer.gen.ts +++ b/src/api/core/pathSerializer.gen.ts @@ -74,9 +74,9 @@ export const serializeArrayParam = ({ value: unknown[]; }) => { if (!explode) { - const joinedValues = ( - allowReserved ? value : value.map((v) => encodeURIComponent(v as string)) - ).join(separatorArrayNoExplode(style)); + const joinedValues = (allowReserved ? value : value.map(v => encodeURIComponent(v as string))).join( + separatorArrayNoExplode(style) + ); switch (style) { case 'label': return `.${joinedValues}`; @@ -91,7 +91,7 @@ export const serializeArrayParam = ({ const separator = separatorArrayExplode(style); const joinedValues = value - .map((v) => { + .map(v => { if (style === 'label' || style === 'simple') { return allowReserved ? v : encodeURIComponent(v as string); } @@ -106,18 +106,14 @@ export const serializeArrayParam = ({ return style === 'label' || style === 'matrix' ? separator + joinedValues : joinedValues; }; -export const serializePrimitiveParam = ({ - allowReserved, - name, - value, -}: SerializePrimitiveParam) => { +export const serializePrimitiveParam = ({ allowReserved, name, value }: SerializePrimitiveParam) => { if (value === undefined || value === null) { return ''; } if (typeof value === 'object') { throw new Error( - 'Deeply-nested arrays/objects aren’t supported. Provide your own `querySerializer()` to handle these.', + 'Deeply-nested arrays/objects aren’t supported. Provide your own `querySerializer()` to handle these.' ); } @@ -164,7 +160,7 @@ export const serializeObjectParam = ({ allowReserved, name: style === 'deepObject' ? `${name}[${key}]` : key, value: v as string, - }), + }) ) .join(separator); return style === 'label' || style === 'matrix' ? separator + joinedValues : joinedValues; diff --git a/src/api/core/queryKeySerializer.gen.ts b/src/api/core/queryKeySerializer.gen.ts index 5000df606..d5c9ad4e3 100644 --- a/src/api/core/queryKeySerializer.gen.ts +++ b/src/api/core/queryKeySerializer.gen.ts @@ -3,13 +3,7 @@ /** * JSON-friendly union that mirrors what Pinia Colada can hash. */ -export type JsonValue = - | null - | string - | number - | boolean - | JsonValue[] - | { [key: string]: JsonValue }; +export type JsonValue = null | string | number | boolean | JsonValue[] | { [key: string]: JsonValue }; /** * Replacer that converts non-JSON values (bigint, Date, etc.) to safe substitutes. diff --git a/src/api/core/serverSentEvents.gen.ts b/src/api/core/serverSentEvents.gen.ts index 6aa6cf02a..e9424b3ae 100644 --- a/src/api/core/serverSentEvents.gen.ts +++ b/src/api/core/serverSentEvents.gen.ts @@ -72,11 +72,7 @@ export interface StreamEvent { } export type ServerSentEventsResult = { - stream: AsyncGenerator< - TData extends Record ? TData[keyof TData] : TData, - TReturn, - TNext - >; + stream: AsyncGenerator ? TData[keyof TData] : TData, TReturn, TNext>; }; export const createSseClient = ({ @@ -94,7 +90,7 @@ export const createSseClient = ({ }: ServerSentEventsOptions): ServerSentEventsResult => { let lastEventId: string | undefined; - const sleep = sseSleepFn ?? ((ms: number) => new Promise((resolve) => setTimeout(resolve, ms))); + const sleep = sseSleepFn ?? ((ms: number) => new Promise(resolve => setTimeout(resolve, ms))); const createStream = async function* () { let retryDelay: number = sseDefaultRetryDelay ?? 3000; diff --git a/src/api/core/types.gen.ts b/src/api/core/types.gen.ts index 97463257e..28ee0b9f5 100644 --- a/src/api/core/types.gen.ts +++ b/src/api/core/types.gen.ts @@ -3,24 +3,9 @@ import type { Auth, AuthToken } from './auth.gen'; import type { BodySerializer, QuerySerializer, QuerySerializerOptions } from './bodySerializer.gen'; -export type HttpMethod = - | 'connect' - | 'delete' - | 'get' - | 'head' - | 'options' - | 'patch' - | 'post' - | 'put' - | 'trace'; +export type HttpMethod = 'connect' | 'delete' | 'get' | 'head' | 'options' | 'patch' | 'post' | 'put' | 'trace'; -export type Client< - RequestFn = never, - Config = unknown, - MethodFn = never, - BuildUrlFn = never, - SseFn = never, -> = { +export type Client = { /** * Returns the final request URL. */ @@ -51,10 +36,7 @@ export interface Config { */ headers?: | RequestInit['headers'] - | Record< - string, - string | number | boolean | (string | number | boolean)[] | null | undefined | unknown - >; + | Record; /** * The request method. * diff --git a/src/api/core/utils.gen.ts b/src/api/core/utils.gen.ts index e7ddbe354..9d49ae7e9 100644 --- a/src/api/core/utils.gen.ts +++ b/src/api/core/utils.gen.ts @@ -57,7 +57,7 @@ export const defaultPathSerializer = ({ path, url: _url }: PathSerializer) => { style, value: value as Record, valueOnly: true, - }), + }) ); continue; } @@ -68,14 +68,12 @@ export const defaultPathSerializer = ({ path, url: _url }: PathSerializer) => { `;${serializePrimitiveParam({ name, value: value as string, - })}`, + })}` ); continue; } - const replaceValue = encodeURIComponent( - style === 'label' ? `.${value as string}` : (value as string), - ); + const replaceValue = encodeURIComponent(style === 'label' ? `.${value as string}` : (value as string)); url = url.replace(match, replaceValue); } } @@ -120,8 +118,7 @@ export function getValidRequestBody(options: { if (isSerializedBody) { if ('serializedBody' in options) { - const hasSerializedBody = - options.serializedBody !== undefined && options.serializedBody !== ''; + const hasSerializedBody = options.serializedBody !== undefined && options.serializedBody !== ''; return hasSerializedBody ? options.serializedBody : null; } diff --git a/src/api/index.ts b/src/api/index.ts index 3483e54e2..16c1f8698 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -1,4 +1,3100 @@ // This file is auto-generated by @hey-api/openapi-ts -export { adminCbtIncrementalServiceGet, adminCbtIncrementalServiceList, dimBlockBlobSubmitterServiceGet, dimBlockBlobSubmitterServiceList, dimContractOwnerServiceGet, dimContractOwnerServiceList, dimFunctionSignatureServiceGet, dimFunctionSignatureServiceList, dimNodeServiceGet, dimNodeServiceList, dimRocketpoolNodeServiceGet, dimRocketpoolNodeServiceList, dimTokenContractServiceGet, dimTokenContractServiceList, dimValidatorPubkeyServiceGet, dimValidatorPubkeyServiceList, dimValidatorStatusServiceGet, dimValidatorStatusServiceList, fctAttestationCorrectnessByValidatorCanonicalServiceGet, fctAttestationCorrectnessByValidatorCanonicalServiceList, fctAttestationCorrectnessByValidatorHeadServiceGet, fctAttestationCorrectnessByValidatorHeadServiceList, fctAttestationCorrectnessCanonicalServiceGet, fctAttestationCorrectnessCanonicalServiceList, fctAttestationCorrectnessHeadServiceGet, fctAttestationCorrectnessHeadServiceList, fctAttestationFirstSeenByValidatorServiceGet, fctAttestationFirstSeenByValidatorServiceList, fctAttestationFirstSeenChunked50MsServiceGet, fctAttestationFirstSeenChunked50MsServiceList, fctAttestationInclusionDelayDailyServiceGet, fctAttestationInclusionDelayDailyServiceList, fctAttestationInclusionDelayHourlyServiceGet, fctAttestationInclusionDelayHourlyServiceList, fctAttestationLivenessByEntityHeadServiceGet, fctAttestationLivenessByEntityHeadServiceList, fctAttestationObservationByNodeServiceGet, fctAttestationObservationByNodeServiceList, fctAttestationParticipationRateDailyServiceGet, fctAttestationParticipationRateDailyServiceList, fctAttestationParticipationRateHourlyServiceGet, fctAttestationParticipationRateHourlyServiceList, fctAttestationVoteCorrectnessByValidatorDailyServiceGet, fctAttestationVoteCorrectnessByValidatorDailyServiceList, fctAttestationVoteCorrectnessByValidatorHourlyServiceGet, fctAttestationVoteCorrectnessByValidatorHourlyServiceList, fctAttestationVoteCorrectnessByValidatorServiceGet, fctAttestationVoteCorrectnessByValidatorServiceList, fctBlobCountDailyServiceGet, fctBlobCountDailyServiceList, fctBlobCountHourlyServiceGet, fctBlobCountHourlyServiceList, fctBlockBlobCountHeadServiceGet, fctBlockBlobCountHeadServiceList, fctBlockBlobCountServiceGet, fctBlockBlobCountServiceList, fctBlockBlobFirstSeenByNodeServiceGet, fctBlockBlobFirstSeenByNodeServiceList, fctBlockBlobHeadServiceGet, fctBlockBlobHeadServiceList, fctBlockDataColumnSidecarFirstSeenByNodeServiceGet, fctBlockDataColumnSidecarFirstSeenByNodeServiceList, fctBlockDataColumnSidecarFirstSeenServiceGet, fctBlockDataColumnSidecarFirstSeenServiceList, fctBlockFirstSeenByNodeServiceGet, fctBlockFirstSeenByNodeServiceList, fctBlockHeadServiceGet, fctBlockHeadServiceList, fctBlockMevHeadServiceGet, fctBlockMevHeadServiceList, fctBlockMevServiceGet, fctBlockMevServiceList, fctBlockProposalStatusDailyServiceGet, fctBlockProposalStatusDailyServiceList, fctBlockProposalStatusHourlyServiceGet, fctBlockProposalStatusHourlyServiceList, fctBlockProposerByValidatorServiceGet, fctBlockProposerByValidatorServiceList, fctBlockProposerEntityServiceGet, fctBlockProposerEntityServiceList, fctBlockProposerHeadServiceGet, fctBlockProposerHeadServiceList, fctBlockProposerServiceGet, fctBlockProposerServiceList, fctBlockServiceGet, fctBlockServiceList, fctContractStorageStateByAddressDailyServiceGet, fctContractStorageStateByAddressDailyServiceList, fctContractStorageStateByAddressHourlyServiceGet, fctContractStorageStateByAddressHourlyServiceList, fctContractStorageStateByBlockDailyServiceGet, fctContractStorageStateByBlockDailyServiceList, fctContractStorageStateByBlockHourlyServiceGet, fctContractStorageStateByBlockHourlyServiceList, fctContractStorageStateWithExpiryByAddressDailyServiceGet, fctContractStorageStateWithExpiryByAddressDailyServiceList, fctContractStorageStateWithExpiryByAddressHourlyServiceGet, fctContractStorageStateWithExpiryByAddressHourlyServiceList, fctContractStorageStateWithExpiryByBlockDailyServiceGet, fctContractStorageStateWithExpiryByBlockDailyServiceList, fctContractStorageStateWithExpiryByBlockHourlyServiceGet, fctContractStorageStateWithExpiryByBlockHourlyServiceList, fctDataColumnAvailabilityByEpochServiceGet, fctDataColumnAvailabilityByEpochServiceList, fctDataColumnAvailabilityBySlotBlobServiceGet, fctDataColumnAvailabilityBySlotBlobServiceList, fctDataColumnAvailabilityBySlotServiceGet, fctDataColumnAvailabilityBySlotServiceList, fctDataColumnAvailabilityDailyServiceGet, fctDataColumnAvailabilityDailyServiceList, fctDataColumnAvailabilityHourlyServiceGet, fctDataColumnAvailabilityHourlyServiceList, fctEngineGetBlobsByElClientHourlyServiceGet, fctEngineGetBlobsByElClientHourlyServiceList, fctEngineGetBlobsByElClientServiceGet, fctEngineGetBlobsByElClientServiceList, fctEngineGetBlobsBySlotServiceGet, fctEngineGetBlobsBySlotServiceList, fctEngineGetBlobsDurationChunked50MsServiceGet, fctEngineGetBlobsDurationChunked50MsServiceList, fctEngineNewPayloadByElClientHourlyServiceGet, fctEngineNewPayloadByElClientHourlyServiceList, fctEngineNewPayloadByElClientServiceGet, fctEngineNewPayloadByElClientServiceList, fctEngineNewPayloadBySlotServiceGet, fctEngineNewPayloadBySlotServiceList, fctEngineNewPayloadDurationChunked50MsServiceGet, fctEngineNewPayloadDurationChunked50MsServiceList, fctEngineNewPayloadWinrateDailyServiceGet, fctEngineNewPayloadWinrateDailyServiceList, fctEngineNewPayloadWinrateHourlyServiceGet, fctEngineNewPayloadWinrateHourlyServiceList, fctExecutionGasLimitDailyServiceGet, fctExecutionGasLimitDailyServiceList, fctExecutionGasLimitHourlyServiceGet, fctExecutionGasLimitHourlyServiceList, fctExecutionGasLimitSignallingDailyServiceGet, fctExecutionGasLimitSignallingDailyServiceList, fctExecutionGasLimitSignallingHourlyServiceGet, fctExecutionGasLimitSignallingHourlyServiceList, fctExecutionGasUsedDailyServiceGet, fctExecutionGasUsedDailyServiceList, fctExecutionGasUsedHourlyServiceGet, fctExecutionGasUsedHourlyServiceList, fctExecutionReceiptSizeDailyServiceGet, fctExecutionReceiptSizeDailyServiceList, fctExecutionReceiptSizeHourlyServiceGet, fctExecutionReceiptSizeHourlyServiceList, fctExecutionStateSizeDailyServiceGet, fctExecutionStateSizeDailyServiceList, fctExecutionStateSizeHourlyServiceGet, fctExecutionStateSizeHourlyServiceList, fctExecutionTpsDailyServiceGet, fctExecutionTpsDailyServiceList, fctExecutionTpsHourlyServiceGet, fctExecutionTpsHourlyServiceList, fctExecutionTransactionsDailyServiceGet, fctExecutionTransactionsDailyServiceList, fctExecutionTransactionsHourlyServiceGet, fctExecutionTransactionsHourlyServiceList, fctHeadFirstSeenByNodeServiceGet, fctHeadFirstSeenByNodeServiceList, fctHeadVoteCorrectnessRateDailyServiceGet, fctHeadVoteCorrectnessRateDailyServiceList, fctHeadVoteCorrectnessRateHourlyServiceGet, fctHeadVoteCorrectnessRateHourlyServiceList, fctMevBidCountByBuilderServiceGet, fctMevBidCountByBuilderServiceList, fctMevBidCountByRelayServiceGet, fctMevBidCountByRelayServiceList, fctMevBidHighestValueByBuilderChunked50MsServiceGet, fctMevBidHighestValueByBuilderChunked50MsServiceList, fctMissedSlotRateDailyServiceGet, fctMissedSlotRateDailyServiceList, fctMissedSlotRateHourlyServiceGet, fctMissedSlotRateHourlyServiceList, fctNodeActiveLast24hServiceGet, fctNodeActiveLast24hServiceList, fctNodeCpuUtilizationByProcessServiceGet, fctNodeCpuUtilizationByProcessServiceList, fctNodeDiskIoByProcessServiceGet, fctNodeDiskIoByProcessServiceList, fctNodeMemoryUsageByProcessServiceGet, fctNodeMemoryUsageByProcessServiceList, fctNodeNetworkIoByProcessServiceGet, fctNodeNetworkIoByProcessServiceList, fctOpcodeGasByOpcodeDailyServiceGet, fctOpcodeGasByOpcodeDailyServiceList, fctOpcodeGasByOpcodeHourlyServiceGet, fctOpcodeGasByOpcodeHourlyServiceList, fctOpcodeOpsDailyServiceGet, fctOpcodeOpsDailyServiceList, fctOpcodeOpsHourlyServiceGet, fctOpcodeOpsHourlyServiceList, fctPreparedBlockServiceGet, fctPreparedBlockServiceList, fctProposerRewardDailyServiceGet, fctProposerRewardDailyServiceList, fctProposerRewardHourlyServiceGet, fctProposerRewardHourlyServiceList, fctReorgDailyServiceGet, fctReorgDailyServiceList, fctReorgHourlyServiceGet, fctReorgHourlyServiceList, fctRocketpoolValidatorServiceGet, fctRocketpoolValidatorServiceList, fctStorageSlotStateByAddressDailyServiceGet, fctStorageSlotStateByAddressDailyServiceList, fctStorageSlotStateByAddressHourlyServiceGet, fctStorageSlotStateByAddressHourlyServiceList, fctStorageSlotStateByBlockDailyServiceGet, fctStorageSlotStateByBlockDailyServiceList, fctStorageSlotStateByBlockHourlyServiceGet, fctStorageSlotStateByBlockHourlyServiceList, fctStorageSlotStateWithExpiryByAddressDailyServiceGet, fctStorageSlotStateWithExpiryByAddressDailyServiceList, fctStorageSlotStateWithExpiryByAddressHourlyServiceGet, fctStorageSlotStateWithExpiryByAddressHourlyServiceList, fctStorageSlotStateWithExpiryByBlockDailyServiceGet, fctStorageSlotStateWithExpiryByBlockDailyServiceList, fctStorageSlotStateWithExpiryByBlockHourlyServiceGet, fctStorageSlotStateWithExpiryByBlockHourlyServiceList, fctStorageSlotTop100ByBytesServiceGet, fctStorageSlotTop100ByBytesServiceList, fctStorageSlotTop100BySlotsServiceGet, fctStorageSlotTop100BySlotsServiceList, fctSyncCommitteeParticipationByValidatorDailyServiceGet, fctSyncCommitteeParticipationByValidatorDailyServiceList, fctSyncCommitteeParticipationByValidatorHourlyServiceGet, fctSyncCommitteeParticipationByValidatorHourlyServiceList, fctSyncCommitteeParticipationByValidatorServiceGet, fctSyncCommitteeParticipationByValidatorServiceList, fctTokenContractStorageStateByBlockDailyServiceGet, fctTokenContractStorageStateByBlockDailyServiceList, fctValidatorBalanceDailyServiceGet, fctValidatorBalanceDailyServiceList, fctValidatorBalanceHourlyServiceGet, fctValidatorBalanceHourlyServiceList, fctValidatorBalanceServiceGet, fctValidatorBalanceServiceList, fctValidatorCountByEntityByStatusDailyServiceGet, fctValidatorCountByEntityByStatusDailyServiceList, intAttestationAttestedCanonicalServiceGet, intAttestationAttestedCanonicalServiceList, intAttestationAttestedHeadServiceGet, intAttestationAttestedHeadServiceList, intAttestationFirstSeenAggregateServiceGet, intAttestationFirstSeenAggregateServiceList, intAttestationFirstSeenServiceGet, intAttestationFirstSeenServiceList, intBeaconCommitteeHeadServiceGet, intBeaconCommitteeHeadServiceList, intBlockBlobCountCanonicalServiceGet, intBlockBlobCountCanonicalServiceList, intBlockCanonicalServiceGet, intBlockCanonicalServiceList, intBlockMevCanonicalServiceGet, intBlockMevCanonicalServiceList, intBlockOpcodeGasServiceGet, intBlockOpcodeGasServiceList, intBlockProposerCanonicalServiceGet, intBlockProposerCanonicalServiceList, intBlockReceiptSizeServiceGet, intBlockReceiptSizeServiceList, intBlockResourceGasServiceGet, intBlockResourceGasServiceList, intContractCreationServiceGet, intContractCreationServiceList, intContractSelfdestructServiceGet, intContractSelfdestructServiceList, intContractStorageExpiry12mServiceGet, intContractStorageExpiry12mServiceList, intContractStorageExpiry18mServiceGet, intContractStorageExpiry18mServiceList, intContractStorageExpiry1mServiceGet, intContractStorageExpiry1mServiceList, intContractStorageExpiry24mServiceGet, intContractStorageExpiry24mServiceList, intContractStorageExpiry6mServiceGet, intContractStorageExpiry6mServiceList, intContractStorageNextTouchServiceGet, intContractStorageNextTouchServiceList, intContractStorageReactivation12mServiceGet, intContractStorageReactivation12mServiceList, intContractStorageReactivation18mServiceGet, intContractStorageReactivation18mServiceList, intContractStorageReactivation1mServiceGet, intContractStorageReactivation1mServiceList, intContractStorageReactivation24mServiceGet, intContractStorageReactivation24mServiceList, intContractStorageReactivation6mServiceGet, intContractStorageReactivation6mServiceList, intContractStorageStateByAddressServiceGet, intContractStorageStateByAddressServiceList, intContractStorageStateByBlockServiceGet, intContractStorageStateByBlockServiceList, intContractStorageStateServiceGet, intContractStorageStateServiceList, intContractStorageStateWithExpiryByAddressServiceGet, intContractStorageStateWithExpiryByAddressServiceList, intContractStorageStateWithExpiryByBlockServiceGet, intContractStorageStateWithExpiryByBlockServiceList, intContractStorageStateWithExpiryServiceGet, intContractStorageStateWithExpiryServiceList, intCustodyProbeOrderBySlotServiceGet, intCustodyProbeOrderBySlotServiceList, intCustodyProbeServiceGet, intCustodyProbeServiceList, intEngineGetBlobsServiceGet, intEngineGetBlobsServiceList, intEngineNewPayloadFastestExecutionByNodeClassServiceGet, intEngineNewPayloadFastestExecutionByNodeClassServiceList, intEngineNewPayloadServiceGet, intEngineNewPayloadServiceList, intExecutionBlockByDateServiceGet, intExecutionBlockByDateServiceList, intExecutionStateSizeByBlockServiceGet, intExecutionStateSizeByBlockServiceList, intRocketpoolMegapoolServiceGet, intRocketpoolMegapoolServiceList, intRocketpoolMinipoolServiceGet, intRocketpoolMinipoolServiceList, intRocketpoolNodeEventServiceGet, intRocketpoolNodeEventServiceList, intRocketpoolNodeTimezoneServiceGet, intRocketpoolNodeTimezoneServiceList, intStorageSelfdestructDiffsServiceGet, intStorageSelfdestructDiffsServiceList, intStorageSlotDiffByAddressSlotServiceGet, intStorageSlotDiffByAddressSlotServiceList, intStorageSlotDiffServiceGet, intStorageSlotDiffServiceList, intStorageSlotExpiry12mServiceGet, intStorageSlotExpiry12mServiceList, intStorageSlotExpiry18mServiceGet, intStorageSlotExpiry18mServiceList, intStorageSlotExpiry1mServiceGet, intStorageSlotExpiry1mServiceList, intStorageSlotExpiry24mServiceGet, intStorageSlotExpiry24mServiceList, intStorageSlotExpiry6mServiceGet, intStorageSlotExpiry6mServiceList, intStorageSlotLifecycleBoundaryServiceGet, intStorageSlotLifecycleBoundaryServiceList, intStorageSlotLifecycleServiceGet, intStorageSlotLifecycleServiceList, intStorageSlotNextTouchServiceGet, intStorageSlotNextTouchServiceList, intStorageSlotReactivation12mServiceGet, intStorageSlotReactivation12mServiceList, intStorageSlotReactivation18mServiceGet, intStorageSlotReactivation18mServiceList, intStorageSlotReactivation1mServiceGet, intStorageSlotReactivation1mServiceList, intStorageSlotReactivation24mServiceGet, intStorageSlotReactivation24mServiceList, intStorageSlotReactivation6mServiceGet, intStorageSlotReactivation6mServiceList, intStorageSlotReadServiceGet, intStorageSlotReadServiceList, intStorageSlotStateByAddressServiceGet, intStorageSlotStateByAddressServiceList, intStorageSlotStateByBlockServiceGet, intStorageSlotStateByBlockServiceList, intStorageSlotStateServiceGet, intStorageSlotStateServiceList, intStorageSlotStateWithExpiryByAddressServiceGet, intStorageSlotStateWithExpiryByAddressServiceList, intStorageSlotStateWithExpiryByBlockServiceGet, intStorageSlotStateWithExpiryByBlockServiceList, intStorageSlotStateWithExpiryServiceGet, intStorageSlotStateWithExpiryServiceList, intTokenContractStorageStateByBlockServiceGet, intTokenContractStorageStateByBlockServiceList, intTransactionCallFrameOpcodeGasServiceGet, intTransactionCallFrameOpcodeGasServiceList, intTransactionCallFrameOpcodeResourceGasServiceGet, intTransactionCallFrameOpcodeResourceGasServiceList, intTransactionCallFrameServiceGet, intTransactionCallFrameServiceList, intTransactionOpcodeGasServiceGet, intTransactionOpcodeGasServiceList, intTransactionReceiptSizeServiceGet, intTransactionReceiptSizeServiceList, intTransactionResourceGasServiceGet, intTransactionResourceGasServiceList, type Options } from './sdk.gen'; -export type { AdminCbtIncremental, AdminCbtIncrementalServiceGetData, AdminCbtIncrementalServiceGetError, AdminCbtIncrementalServiceGetErrors, AdminCbtIncrementalServiceGetResponse, AdminCbtIncrementalServiceGetResponses, AdminCbtIncrementalServiceListData, AdminCbtIncrementalServiceListError, AdminCbtIncrementalServiceListErrors, AdminCbtIncrementalServiceListResponse, AdminCbtIncrementalServiceListResponses, ClientOptions, DimBlockBlobSubmitter, DimBlockBlobSubmitterServiceGetData, DimBlockBlobSubmitterServiceGetError, DimBlockBlobSubmitterServiceGetErrors, DimBlockBlobSubmitterServiceGetResponse, DimBlockBlobSubmitterServiceGetResponses, DimBlockBlobSubmitterServiceListData, DimBlockBlobSubmitterServiceListError, DimBlockBlobSubmitterServiceListErrors, DimBlockBlobSubmitterServiceListResponse, DimBlockBlobSubmitterServiceListResponses, DimContractOwner, DimContractOwnerServiceGetData, DimContractOwnerServiceGetError, DimContractOwnerServiceGetErrors, DimContractOwnerServiceGetResponse, DimContractOwnerServiceGetResponses, DimContractOwnerServiceListData, DimContractOwnerServiceListError, DimContractOwnerServiceListErrors, DimContractOwnerServiceListResponse, DimContractOwnerServiceListResponses, DimFunctionSignature, DimFunctionSignatureServiceGetData, DimFunctionSignatureServiceGetError, DimFunctionSignatureServiceGetErrors, DimFunctionSignatureServiceGetResponse, DimFunctionSignatureServiceGetResponses, DimFunctionSignatureServiceListData, DimFunctionSignatureServiceListError, DimFunctionSignatureServiceListErrors, DimFunctionSignatureServiceListResponse, DimFunctionSignatureServiceListResponses, DimNode, DimNodeServiceGetData, DimNodeServiceGetError, DimNodeServiceGetErrors, DimNodeServiceGetResponse, DimNodeServiceGetResponses, DimNodeServiceListData, DimNodeServiceListError, DimNodeServiceListErrors, DimNodeServiceListResponse, DimNodeServiceListResponses, DimRocketpoolNode, DimRocketpoolNodeServiceGetData, DimRocketpoolNodeServiceGetError, DimRocketpoolNodeServiceGetErrors, DimRocketpoolNodeServiceGetResponse, DimRocketpoolNodeServiceGetResponses, DimRocketpoolNodeServiceListData, DimRocketpoolNodeServiceListError, DimRocketpoolNodeServiceListErrors, DimRocketpoolNodeServiceListResponse, DimRocketpoolNodeServiceListResponses, DimTokenContract, DimTokenContractServiceGetData, DimTokenContractServiceGetError, DimTokenContractServiceGetErrors, DimTokenContractServiceGetResponse, DimTokenContractServiceGetResponses, DimTokenContractServiceListData, DimTokenContractServiceListError, DimTokenContractServiceListErrors, DimTokenContractServiceListResponse, DimTokenContractServiceListResponses, DimValidatorPubkey, DimValidatorPubkeyServiceGetData, DimValidatorPubkeyServiceGetError, DimValidatorPubkeyServiceGetErrors, DimValidatorPubkeyServiceGetResponse, DimValidatorPubkeyServiceGetResponses, DimValidatorPubkeyServiceListData, DimValidatorPubkeyServiceListError, DimValidatorPubkeyServiceListErrors, DimValidatorPubkeyServiceListResponse, DimValidatorPubkeyServiceListResponses, DimValidatorStatus, DimValidatorStatusServiceGetData, DimValidatorStatusServiceGetError, DimValidatorStatusServiceGetErrors, DimValidatorStatusServiceGetResponse, DimValidatorStatusServiceGetResponses, DimValidatorStatusServiceListData, DimValidatorStatusServiceListError, DimValidatorStatusServiceListErrors, DimValidatorStatusServiceListResponse, DimValidatorStatusServiceListResponses, FctAttestationCorrectnessByValidatorCanonical, FctAttestationCorrectnessByValidatorCanonicalServiceGetData, FctAttestationCorrectnessByValidatorCanonicalServiceGetError, FctAttestationCorrectnessByValidatorCanonicalServiceGetErrors, FctAttestationCorrectnessByValidatorCanonicalServiceGetResponse, FctAttestationCorrectnessByValidatorCanonicalServiceGetResponses, FctAttestationCorrectnessByValidatorCanonicalServiceListData, FctAttestationCorrectnessByValidatorCanonicalServiceListError, FctAttestationCorrectnessByValidatorCanonicalServiceListErrors, FctAttestationCorrectnessByValidatorCanonicalServiceListResponse, FctAttestationCorrectnessByValidatorCanonicalServiceListResponses, FctAttestationCorrectnessByValidatorHead, FctAttestationCorrectnessByValidatorHeadServiceGetData, FctAttestationCorrectnessByValidatorHeadServiceGetError, FctAttestationCorrectnessByValidatorHeadServiceGetErrors, FctAttestationCorrectnessByValidatorHeadServiceGetResponse, FctAttestationCorrectnessByValidatorHeadServiceGetResponses, FctAttestationCorrectnessByValidatorHeadServiceListData, FctAttestationCorrectnessByValidatorHeadServiceListError, FctAttestationCorrectnessByValidatorHeadServiceListErrors, FctAttestationCorrectnessByValidatorHeadServiceListResponse, FctAttestationCorrectnessByValidatorHeadServiceListResponses, FctAttestationCorrectnessCanonical, FctAttestationCorrectnessCanonicalServiceGetData, FctAttestationCorrectnessCanonicalServiceGetError, FctAttestationCorrectnessCanonicalServiceGetErrors, FctAttestationCorrectnessCanonicalServiceGetResponse, FctAttestationCorrectnessCanonicalServiceGetResponses, FctAttestationCorrectnessCanonicalServiceListData, FctAttestationCorrectnessCanonicalServiceListError, FctAttestationCorrectnessCanonicalServiceListErrors, FctAttestationCorrectnessCanonicalServiceListResponse, FctAttestationCorrectnessCanonicalServiceListResponses, FctAttestationCorrectnessHead, FctAttestationCorrectnessHeadServiceGetData, FctAttestationCorrectnessHeadServiceGetError, FctAttestationCorrectnessHeadServiceGetErrors, FctAttestationCorrectnessHeadServiceGetResponse, FctAttestationCorrectnessHeadServiceGetResponses, FctAttestationCorrectnessHeadServiceListData, FctAttestationCorrectnessHeadServiceListError, FctAttestationCorrectnessHeadServiceListErrors, FctAttestationCorrectnessHeadServiceListResponse, FctAttestationCorrectnessHeadServiceListResponses, FctAttestationFirstSeenByValidator, FctAttestationFirstSeenByValidatorServiceGetData, FctAttestationFirstSeenByValidatorServiceGetError, FctAttestationFirstSeenByValidatorServiceGetErrors, FctAttestationFirstSeenByValidatorServiceGetResponse, FctAttestationFirstSeenByValidatorServiceGetResponses, FctAttestationFirstSeenByValidatorServiceListData, FctAttestationFirstSeenByValidatorServiceListError, FctAttestationFirstSeenByValidatorServiceListErrors, FctAttestationFirstSeenByValidatorServiceListResponse, FctAttestationFirstSeenByValidatorServiceListResponses, FctAttestationFirstSeenChunked50Ms, FctAttestationFirstSeenChunked50MsServiceGetData, FctAttestationFirstSeenChunked50MsServiceGetError, FctAttestationFirstSeenChunked50MsServiceGetErrors, FctAttestationFirstSeenChunked50MsServiceGetResponse, FctAttestationFirstSeenChunked50MsServiceGetResponses, FctAttestationFirstSeenChunked50MsServiceListData, FctAttestationFirstSeenChunked50MsServiceListError, FctAttestationFirstSeenChunked50MsServiceListErrors, FctAttestationFirstSeenChunked50MsServiceListResponse, FctAttestationFirstSeenChunked50MsServiceListResponses, FctAttestationInclusionDelayDaily, FctAttestationInclusionDelayDailyServiceGetData, FctAttestationInclusionDelayDailyServiceGetError, FctAttestationInclusionDelayDailyServiceGetErrors, FctAttestationInclusionDelayDailyServiceGetResponse, FctAttestationInclusionDelayDailyServiceGetResponses, FctAttestationInclusionDelayDailyServiceListData, FctAttestationInclusionDelayDailyServiceListError, FctAttestationInclusionDelayDailyServiceListErrors, FctAttestationInclusionDelayDailyServiceListResponse, FctAttestationInclusionDelayDailyServiceListResponses, FctAttestationInclusionDelayHourly, FctAttestationInclusionDelayHourlyServiceGetData, FctAttestationInclusionDelayHourlyServiceGetError, FctAttestationInclusionDelayHourlyServiceGetErrors, FctAttestationInclusionDelayHourlyServiceGetResponse, FctAttestationInclusionDelayHourlyServiceGetResponses, FctAttestationInclusionDelayHourlyServiceListData, FctAttestationInclusionDelayHourlyServiceListError, FctAttestationInclusionDelayHourlyServiceListErrors, FctAttestationInclusionDelayHourlyServiceListResponse, FctAttestationInclusionDelayHourlyServiceListResponses, FctAttestationLivenessByEntityHead, FctAttestationLivenessByEntityHeadServiceGetData, FctAttestationLivenessByEntityHeadServiceGetError, FctAttestationLivenessByEntityHeadServiceGetErrors, FctAttestationLivenessByEntityHeadServiceGetResponse, FctAttestationLivenessByEntityHeadServiceGetResponses, FctAttestationLivenessByEntityHeadServiceListData, FctAttestationLivenessByEntityHeadServiceListError, FctAttestationLivenessByEntityHeadServiceListErrors, FctAttestationLivenessByEntityHeadServiceListResponse, FctAttestationLivenessByEntityHeadServiceListResponses, FctAttestationObservationByNode, FctAttestationObservationByNodeServiceGetData, FctAttestationObservationByNodeServiceGetError, FctAttestationObservationByNodeServiceGetErrors, FctAttestationObservationByNodeServiceGetResponse, FctAttestationObservationByNodeServiceGetResponses, FctAttestationObservationByNodeServiceListData, FctAttestationObservationByNodeServiceListError, FctAttestationObservationByNodeServiceListErrors, FctAttestationObservationByNodeServiceListResponse, FctAttestationObservationByNodeServiceListResponses, FctAttestationParticipationRateDaily, FctAttestationParticipationRateDailyServiceGetData, FctAttestationParticipationRateDailyServiceGetError, FctAttestationParticipationRateDailyServiceGetErrors, FctAttestationParticipationRateDailyServiceGetResponse, FctAttestationParticipationRateDailyServiceGetResponses, FctAttestationParticipationRateDailyServiceListData, FctAttestationParticipationRateDailyServiceListError, FctAttestationParticipationRateDailyServiceListErrors, FctAttestationParticipationRateDailyServiceListResponse, FctAttestationParticipationRateDailyServiceListResponses, FctAttestationParticipationRateHourly, FctAttestationParticipationRateHourlyServiceGetData, FctAttestationParticipationRateHourlyServiceGetError, FctAttestationParticipationRateHourlyServiceGetErrors, FctAttestationParticipationRateHourlyServiceGetResponse, FctAttestationParticipationRateHourlyServiceGetResponses, FctAttestationParticipationRateHourlyServiceListData, FctAttestationParticipationRateHourlyServiceListError, FctAttestationParticipationRateHourlyServiceListErrors, FctAttestationParticipationRateHourlyServiceListResponse, FctAttestationParticipationRateHourlyServiceListResponses, FctAttestationVoteCorrectnessByValidator, FctAttestationVoteCorrectnessByValidatorDaily, FctAttestationVoteCorrectnessByValidatorDailyServiceGetData, FctAttestationVoteCorrectnessByValidatorDailyServiceGetError, FctAttestationVoteCorrectnessByValidatorDailyServiceGetErrors, FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse, FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponses, FctAttestationVoteCorrectnessByValidatorDailyServiceListData, FctAttestationVoteCorrectnessByValidatorDailyServiceListError, FctAttestationVoteCorrectnessByValidatorDailyServiceListErrors, FctAttestationVoteCorrectnessByValidatorDailyServiceListResponse, FctAttestationVoteCorrectnessByValidatorDailyServiceListResponses, FctAttestationVoteCorrectnessByValidatorHourly, FctAttestationVoteCorrectnessByValidatorHourlyServiceGetData, FctAttestationVoteCorrectnessByValidatorHourlyServiceGetError, FctAttestationVoteCorrectnessByValidatorHourlyServiceGetErrors, FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse, FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponses, FctAttestationVoteCorrectnessByValidatorHourlyServiceListData, FctAttestationVoteCorrectnessByValidatorHourlyServiceListError, FctAttestationVoteCorrectnessByValidatorHourlyServiceListErrors, FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse, FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponses, FctAttestationVoteCorrectnessByValidatorServiceGetData, FctAttestationVoteCorrectnessByValidatorServiceGetError, FctAttestationVoteCorrectnessByValidatorServiceGetErrors, FctAttestationVoteCorrectnessByValidatorServiceGetResponse, FctAttestationVoteCorrectnessByValidatorServiceGetResponses, FctAttestationVoteCorrectnessByValidatorServiceListData, FctAttestationVoteCorrectnessByValidatorServiceListError, FctAttestationVoteCorrectnessByValidatorServiceListErrors, FctAttestationVoteCorrectnessByValidatorServiceListResponse, FctAttestationVoteCorrectnessByValidatorServiceListResponses, FctBlobCountDaily, FctBlobCountDailyServiceGetData, FctBlobCountDailyServiceGetError, FctBlobCountDailyServiceGetErrors, FctBlobCountDailyServiceGetResponse, FctBlobCountDailyServiceGetResponses, FctBlobCountDailyServiceListData, FctBlobCountDailyServiceListError, FctBlobCountDailyServiceListErrors, FctBlobCountDailyServiceListResponse, FctBlobCountDailyServiceListResponses, FctBlobCountHourly, FctBlobCountHourlyServiceGetData, FctBlobCountHourlyServiceGetError, FctBlobCountHourlyServiceGetErrors, FctBlobCountHourlyServiceGetResponse, FctBlobCountHourlyServiceGetResponses, FctBlobCountHourlyServiceListData, FctBlobCountHourlyServiceListError, FctBlobCountHourlyServiceListErrors, FctBlobCountHourlyServiceListResponse, FctBlobCountHourlyServiceListResponses, FctBlock, FctBlockBlobCount, FctBlockBlobCountHead, FctBlockBlobCountHeadServiceGetData, FctBlockBlobCountHeadServiceGetError, FctBlockBlobCountHeadServiceGetErrors, FctBlockBlobCountHeadServiceGetResponse, FctBlockBlobCountHeadServiceGetResponses, FctBlockBlobCountHeadServiceListData, FctBlockBlobCountHeadServiceListError, FctBlockBlobCountHeadServiceListErrors, FctBlockBlobCountHeadServiceListResponse, FctBlockBlobCountHeadServiceListResponses, FctBlockBlobCountServiceGetData, FctBlockBlobCountServiceGetError, FctBlockBlobCountServiceGetErrors, FctBlockBlobCountServiceGetResponse, FctBlockBlobCountServiceGetResponses, FctBlockBlobCountServiceListData, FctBlockBlobCountServiceListError, FctBlockBlobCountServiceListErrors, FctBlockBlobCountServiceListResponse, FctBlockBlobCountServiceListResponses, FctBlockBlobFirstSeenByNode, FctBlockBlobFirstSeenByNodeServiceGetData, FctBlockBlobFirstSeenByNodeServiceGetError, FctBlockBlobFirstSeenByNodeServiceGetErrors, FctBlockBlobFirstSeenByNodeServiceGetResponse, FctBlockBlobFirstSeenByNodeServiceGetResponses, FctBlockBlobFirstSeenByNodeServiceListData, FctBlockBlobFirstSeenByNodeServiceListError, FctBlockBlobFirstSeenByNodeServiceListErrors, FctBlockBlobFirstSeenByNodeServiceListResponse, FctBlockBlobFirstSeenByNodeServiceListResponses, FctBlockBlobHead, FctBlockBlobHeadServiceGetData, FctBlockBlobHeadServiceGetError, FctBlockBlobHeadServiceGetErrors, FctBlockBlobHeadServiceGetResponse, FctBlockBlobHeadServiceGetResponses, FctBlockBlobHeadServiceListData, FctBlockBlobHeadServiceListError, FctBlockBlobHeadServiceListErrors, FctBlockBlobHeadServiceListResponse, FctBlockBlobHeadServiceListResponses, FctBlockDataColumnSidecarFirstSeen, FctBlockDataColumnSidecarFirstSeenByNode, FctBlockDataColumnSidecarFirstSeenByNodeServiceGetData, FctBlockDataColumnSidecarFirstSeenByNodeServiceGetError, FctBlockDataColumnSidecarFirstSeenByNodeServiceGetErrors, FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse, FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponses, FctBlockDataColumnSidecarFirstSeenByNodeServiceListData, FctBlockDataColumnSidecarFirstSeenByNodeServiceListError, FctBlockDataColumnSidecarFirstSeenByNodeServiceListErrors, FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse, FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponses, FctBlockDataColumnSidecarFirstSeenServiceGetData, FctBlockDataColumnSidecarFirstSeenServiceGetError, FctBlockDataColumnSidecarFirstSeenServiceGetErrors, FctBlockDataColumnSidecarFirstSeenServiceGetResponse, FctBlockDataColumnSidecarFirstSeenServiceGetResponses, FctBlockDataColumnSidecarFirstSeenServiceListData, FctBlockDataColumnSidecarFirstSeenServiceListError, FctBlockDataColumnSidecarFirstSeenServiceListErrors, FctBlockDataColumnSidecarFirstSeenServiceListResponse, FctBlockDataColumnSidecarFirstSeenServiceListResponses, FctBlockFirstSeenByNode, FctBlockFirstSeenByNodeServiceGetData, FctBlockFirstSeenByNodeServiceGetError, FctBlockFirstSeenByNodeServiceGetErrors, FctBlockFirstSeenByNodeServiceGetResponse, FctBlockFirstSeenByNodeServiceGetResponses, FctBlockFirstSeenByNodeServiceListData, FctBlockFirstSeenByNodeServiceListError, FctBlockFirstSeenByNodeServiceListErrors, FctBlockFirstSeenByNodeServiceListResponse, FctBlockFirstSeenByNodeServiceListResponses, FctBlockHead, FctBlockHeadServiceGetData, FctBlockHeadServiceGetError, FctBlockHeadServiceGetErrors, FctBlockHeadServiceGetResponse, FctBlockHeadServiceGetResponses, FctBlockHeadServiceListData, FctBlockHeadServiceListError, FctBlockHeadServiceListErrors, FctBlockHeadServiceListResponse, FctBlockHeadServiceListResponses, FctBlockMev, FctBlockMevHead, FctBlockMevHeadServiceGetData, FctBlockMevHeadServiceGetError, FctBlockMevHeadServiceGetErrors, FctBlockMevHeadServiceGetResponse, FctBlockMevHeadServiceGetResponses, FctBlockMevHeadServiceListData, FctBlockMevHeadServiceListError, FctBlockMevHeadServiceListErrors, FctBlockMevHeadServiceListResponse, FctBlockMevHeadServiceListResponses, FctBlockMevServiceGetData, FctBlockMevServiceGetError, FctBlockMevServiceGetErrors, FctBlockMevServiceGetResponse, FctBlockMevServiceGetResponses, FctBlockMevServiceListData, FctBlockMevServiceListError, FctBlockMevServiceListErrors, FctBlockMevServiceListResponse, FctBlockMevServiceListResponses, FctBlockProposalStatusDaily, FctBlockProposalStatusDailyServiceGetData, FctBlockProposalStatusDailyServiceGetError, FctBlockProposalStatusDailyServiceGetErrors, FctBlockProposalStatusDailyServiceGetResponse, FctBlockProposalStatusDailyServiceGetResponses, FctBlockProposalStatusDailyServiceListData, FctBlockProposalStatusDailyServiceListError, FctBlockProposalStatusDailyServiceListErrors, FctBlockProposalStatusDailyServiceListResponse, FctBlockProposalStatusDailyServiceListResponses, FctBlockProposalStatusHourly, FctBlockProposalStatusHourlyServiceGetData, FctBlockProposalStatusHourlyServiceGetError, FctBlockProposalStatusHourlyServiceGetErrors, FctBlockProposalStatusHourlyServiceGetResponse, FctBlockProposalStatusHourlyServiceGetResponses, FctBlockProposalStatusHourlyServiceListData, FctBlockProposalStatusHourlyServiceListError, FctBlockProposalStatusHourlyServiceListErrors, FctBlockProposalStatusHourlyServiceListResponse, FctBlockProposalStatusHourlyServiceListResponses, FctBlockProposer, FctBlockProposerByValidator, FctBlockProposerByValidatorServiceGetData, FctBlockProposerByValidatorServiceGetError, FctBlockProposerByValidatorServiceGetErrors, FctBlockProposerByValidatorServiceGetResponse, FctBlockProposerByValidatorServiceGetResponses, FctBlockProposerByValidatorServiceListData, FctBlockProposerByValidatorServiceListError, FctBlockProposerByValidatorServiceListErrors, FctBlockProposerByValidatorServiceListResponse, FctBlockProposerByValidatorServiceListResponses, FctBlockProposerEntity, FctBlockProposerEntityServiceGetData, FctBlockProposerEntityServiceGetError, FctBlockProposerEntityServiceGetErrors, FctBlockProposerEntityServiceGetResponse, FctBlockProposerEntityServiceGetResponses, FctBlockProposerEntityServiceListData, FctBlockProposerEntityServiceListError, FctBlockProposerEntityServiceListErrors, FctBlockProposerEntityServiceListResponse, FctBlockProposerEntityServiceListResponses, FctBlockProposerHead, FctBlockProposerHeadServiceGetData, FctBlockProposerHeadServiceGetError, FctBlockProposerHeadServiceGetErrors, FctBlockProposerHeadServiceGetResponse, FctBlockProposerHeadServiceGetResponses, FctBlockProposerHeadServiceListData, FctBlockProposerHeadServiceListError, FctBlockProposerHeadServiceListErrors, FctBlockProposerHeadServiceListResponse, FctBlockProposerHeadServiceListResponses, FctBlockProposerServiceGetData, FctBlockProposerServiceGetError, FctBlockProposerServiceGetErrors, FctBlockProposerServiceGetResponse, FctBlockProposerServiceGetResponses, FctBlockProposerServiceListData, FctBlockProposerServiceListError, FctBlockProposerServiceListErrors, FctBlockProposerServiceListResponse, FctBlockProposerServiceListResponses, FctBlockServiceGetData, FctBlockServiceGetError, FctBlockServiceGetErrors, FctBlockServiceGetResponse, FctBlockServiceGetResponses, FctBlockServiceListData, FctBlockServiceListError, FctBlockServiceListErrors, FctBlockServiceListResponse, FctBlockServiceListResponses, FctContractStorageStateByAddressDaily, FctContractStorageStateByAddressDailyServiceGetData, FctContractStorageStateByAddressDailyServiceGetError, FctContractStorageStateByAddressDailyServiceGetErrors, FctContractStorageStateByAddressDailyServiceGetResponse, FctContractStorageStateByAddressDailyServiceGetResponses, FctContractStorageStateByAddressDailyServiceListData, FctContractStorageStateByAddressDailyServiceListError, FctContractStorageStateByAddressDailyServiceListErrors, FctContractStorageStateByAddressDailyServiceListResponse, FctContractStorageStateByAddressDailyServiceListResponses, FctContractStorageStateByAddressHourly, FctContractStorageStateByAddressHourlyServiceGetData, FctContractStorageStateByAddressHourlyServiceGetError, FctContractStorageStateByAddressHourlyServiceGetErrors, FctContractStorageStateByAddressHourlyServiceGetResponse, FctContractStorageStateByAddressHourlyServiceGetResponses, FctContractStorageStateByAddressHourlyServiceListData, FctContractStorageStateByAddressHourlyServiceListError, FctContractStorageStateByAddressHourlyServiceListErrors, FctContractStorageStateByAddressHourlyServiceListResponse, FctContractStorageStateByAddressHourlyServiceListResponses, FctContractStorageStateByBlockDaily, FctContractStorageStateByBlockDailyServiceGetData, FctContractStorageStateByBlockDailyServiceGetError, FctContractStorageStateByBlockDailyServiceGetErrors, FctContractStorageStateByBlockDailyServiceGetResponse, FctContractStorageStateByBlockDailyServiceGetResponses, FctContractStorageStateByBlockDailyServiceListData, FctContractStorageStateByBlockDailyServiceListError, FctContractStorageStateByBlockDailyServiceListErrors, FctContractStorageStateByBlockDailyServiceListResponse, FctContractStorageStateByBlockDailyServiceListResponses, FctContractStorageStateByBlockHourly, FctContractStorageStateByBlockHourlyServiceGetData, FctContractStorageStateByBlockHourlyServiceGetError, FctContractStorageStateByBlockHourlyServiceGetErrors, FctContractStorageStateByBlockHourlyServiceGetResponse, FctContractStorageStateByBlockHourlyServiceGetResponses, FctContractStorageStateByBlockHourlyServiceListData, FctContractStorageStateByBlockHourlyServiceListError, FctContractStorageStateByBlockHourlyServiceListErrors, FctContractStorageStateByBlockHourlyServiceListResponse, FctContractStorageStateByBlockHourlyServiceListResponses, FctContractStorageStateWithExpiryByAddressDaily, FctContractStorageStateWithExpiryByAddressDailyServiceGetData, FctContractStorageStateWithExpiryByAddressDailyServiceGetError, FctContractStorageStateWithExpiryByAddressDailyServiceGetErrors, FctContractStorageStateWithExpiryByAddressDailyServiceGetResponse, FctContractStorageStateWithExpiryByAddressDailyServiceGetResponses, FctContractStorageStateWithExpiryByAddressDailyServiceListData, FctContractStorageStateWithExpiryByAddressDailyServiceListError, FctContractStorageStateWithExpiryByAddressDailyServiceListErrors, FctContractStorageStateWithExpiryByAddressDailyServiceListResponse, FctContractStorageStateWithExpiryByAddressDailyServiceListResponses, FctContractStorageStateWithExpiryByAddressHourly, FctContractStorageStateWithExpiryByAddressHourlyServiceGetData, FctContractStorageStateWithExpiryByAddressHourlyServiceGetError, FctContractStorageStateWithExpiryByAddressHourlyServiceGetErrors, FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse, FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponses, FctContractStorageStateWithExpiryByAddressHourlyServiceListData, FctContractStorageStateWithExpiryByAddressHourlyServiceListError, FctContractStorageStateWithExpiryByAddressHourlyServiceListErrors, FctContractStorageStateWithExpiryByAddressHourlyServiceListResponse, FctContractStorageStateWithExpiryByAddressHourlyServiceListResponses, FctContractStorageStateWithExpiryByBlockDaily, FctContractStorageStateWithExpiryByBlockDailyServiceGetData, FctContractStorageStateWithExpiryByBlockDailyServiceGetError, FctContractStorageStateWithExpiryByBlockDailyServiceGetErrors, FctContractStorageStateWithExpiryByBlockDailyServiceGetResponse, FctContractStorageStateWithExpiryByBlockDailyServiceGetResponses, FctContractStorageStateWithExpiryByBlockDailyServiceListData, FctContractStorageStateWithExpiryByBlockDailyServiceListError, FctContractStorageStateWithExpiryByBlockDailyServiceListErrors, FctContractStorageStateWithExpiryByBlockDailyServiceListResponse, FctContractStorageStateWithExpiryByBlockDailyServiceListResponses, FctContractStorageStateWithExpiryByBlockHourly, FctContractStorageStateWithExpiryByBlockHourlyServiceGetData, FctContractStorageStateWithExpiryByBlockHourlyServiceGetError, FctContractStorageStateWithExpiryByBlockHourlyServiceGetErrors, FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse, FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponses, FctContractStorageStateWithExpiryByBlockHourlyServiceListData, FctContractStorageStateWithExpiryByBlockHourlyServiceListError, FctContractStorageStateWithExpiryByBlockHourlyServiceListErrors, FctContractStorageStateWithExpiryByBlockHourlyServiceListResponse, FctContractStorageStateWithExpiryByBlockHourlyServiceListResponses, FctDataColumnAvailabilityByEpoch, FctDataColumnAvailabilityByEpochServiceGetData, FctDataColumnAvailabilityByEpochServiceGetError, FctDataColumnAvailabilityByEpochServiceGetErrors, FctDataColumnAvailabilityByEpochServiceGetResponse, FctDataColumnAvailabilityByEpochServiceGetResponses, FctDataColumnAvailabilityByEpochServiceListData, FctDataColumnAvailabilityByEpochServiceListError, FctDataColumnAvailabilityByEpochServiceListErrors, FctDataColumnAvailabilityByEpochServiceListResponse, FctDataColumnAvailabilityByEpochServiceListResponses, FctDataColumnAvailabilityBySlot, FctDataColumnAvailabilityBySlotBlob, FctDataColumnAvailabilityBySlotBlobServiceGetData, FctDataColumnAvailabilityBySlotBlobServiceGetError, FctDataColumnAvailabilityBySlotBlobServiceGetErrors, FctDataColumnAvailabilityBySlotBlobServiceGetResponse, FctDataColumnAvailabilityBySlotBlobServiceGetResponses, FctDataColumnAvailabilityBySlotBlobServiceListData, FctDataColumnAvailabilityBySlotBlobServiceListError, FctDataColumnAvailabilityBySlotBlobServiceListErrors, FctDataColumnAvailabilityBySlotBlobServiceListResponse, FctDataColumnAvailabilityBySlotBlobServiceListResponses, FctDataColumnAvailabilityBySlotServiceGetData, FctDataColumnAvailabilityBySlotServiceGetError, FctDataColumnAvailabilityBySlotServiceGetErrors, FctDataColumnAvailabilityBySlotServiceGetResponse, FctDataColumnAvailabilityBySlotServiceGetResponses, FctDataColumnAvailabilityBySlotServiceListData, FctDataColumnAvailabilityBySlotServiceListError, FctDataColumnAvailabilityBySlotServiceListErrors, FctDataColumnAvailabilityBySlotServiceListResponse, FctDataColumnAvailabilityBySlotServiceListResponses, FctDataColumnAvailabilityDaily, FctDataColumnAvailabilityDailyServiceGetData, FctDataColumnAvailabilityDailyServiceGetError, FctDataColumnAvailabilityDailyServiceGetErrors, FctDataColumnAvailabilityDailyServiceGetResponse, FctDataColumnAvailabilityDailyServiceGetResponses, FctDataColumnAvailabilityDailyServiceListData, FctDataColumnAvailabilityDailyServiceListError, FctDataColumnAvailabilityDailyServiceListErrors, FctDataColumnAvailabilityDailyServiceListResponse, FctDataColumnAvailabilityDailyServiceListResponses, FctDataColumnAvailabilityHourly, FctDataColumnAvailabilityHourlyServiceGetData, FctDataColumnAvailabilityHourlyServiceGetError, FctDataColumnAvailabilityHourlyServiceGetErrors, FctDataColumnAvailabilityHourlyServiceGetResponse, FctDataColumnAvailabilityHourlyServiceGetResponses, FctDataColumnAvailabilityHourlyServiceListData, FctDataColumnAvailabilityHourlyServiceListError, FctDataColumnAvailabilityHourlyServiceListErrors, FctDataColumnAvailabilityHourlyServiceListResponse, FctDataColumnAvailabilityHourlyServiceListResponses, FctEngineGetBlobsByElClient, FctEngineGetBlobsByElClientHourly, FctEngineGetBlobsByElClientHourlyServiceGetData, FctEngineGetBlobsByElClientHourlyServiceGetError, FctEngineGetBlobsByElClientHourlyServiceGetErrors, FctEngineGetBlobsByElClientHourlyServiceGetResponse, FctEngineGetBlobsByElClientHourlyServiceGetResponses, FctEngineGetBlobsByElClientHourlyServiceListData, FctEngineGetBlobsByElClientHourlyServiceListError, FctEngineGetBlobsByElClientHourlyServiceListErrors, FctEngineGetBlobsByElClientHourlyServiceListResponse, FctEngineGetBlobsByElClientHourlyServiceListResponses, FctEngineGetBlobsByElClientServiceGetData, FctEngineGetBlobsByElClientServiceGetError, FctEngineGetBlobsByElClientServiceGetErrors, FctEngineGetBlobsByElClientServiceGetResponse, FctEngineGetBlobsByElClientServiceGetResponses, FctEngineGetBlobsByElClientServiceListData, FctEngineGetBlobsByElClientServiceListError, FctEngineGetBlobsByElClientServiceListErrors, FctEngineGetBlobsByElClientServiceListResponse, FctEngineGetBlobsByElClientServiceListResponses, FctEngineGetBlobsBySlot, FctEngineGetBlobsBySlotServiceGetData, FctEngineGetBlobsBySlotServiceGetError, FctEngineGetBlobsBySlotServiceGetErrors, FctEngineGetBlobsBySlotServiceGetResponse, FctEngineGetBlobsBySlotServiceGetResponses, FctEngineGetBlobsBySlotServiceListData, FctEngineGetBlobsBySlotServiceListError, FctEngineGetBlobsBySlotServiceListErrors, FctEngineGetBlobsBySlotServiceListResponse, FctEngineGetBlobsBySlotServiceListResponses, FctEngineGetBlobsDurationChunked50Ms, FctEngineGetBlobsDurationChunked50MsServiceGetData, FctEngineGetBlobsDurationChunked50MsServiceGetError, FctEngineGetBlobsDurationChunked50MsServiceGetErrors, FctEngineGetBlobsDurationChunked50MsServiceGetResponse, FctEngineGetBlobsDurationChunked50MsServiceGetResponses, FctEngineGetBlobsDurationChunked50MsServiceListData, FctEngineGetBlobsDurationChunked50MsServiceListError, FctEngineGetBlobsDurationChunked50MsServiceListErrors, FctEngineGetBlobsDurationChunked50MsServiceListResponse, FctEngineGetBlobsDurationChunked50MsServiceListResponses, FctEngineNewPayloadByElClient, FctEngineNewPayloadByElClientHourly, FctEngineNewPayloadByElClientHourlyServiceGetData, FctEngineNewPayloadByElClientHourlyServiceGetError, FctEngineNewPayloadByElClientHourlyServiceGetErrors, FctEngineNewPayloadByElClientHourlyServiceGetResponse, FctEngineNewPayloadByElClientHourlyServiceGetResponses, FctEngineNewPayloadByElClientHourlyServiceListData, FctEngineNewPayloadByElClientHourlyServiceListError, FctEngineNewPayloadByElClientHourlyServiceListErrors, FctEngineNewPayloadByElClientHourlyServiceListResponse, FctEngineNewPayloadByElClientHourlyServiceListResponses, FctEngineNewPayloadByElClientServiceGetData, FctEngineNewPayloadByElClientServiceGetError, FctEngineNewPayloadByElClientServiceGetErrors, FctEngineNewPayloadByElClientServiceGetResponse, FctEngineNewPayloadByElClientServiceGetResponses, FctEngineNewPayloadByElClientServiceListData, FctEngineNewPayloadByElClientServiceListError, FctEngineNewPayloadByElClientServiceListErrors, FctEngineNewPayloadByElClientServiceListResponse, FctEngineNewPayloadByElClientServiceListResponses, FctEngineNewPayloadBySlot, FctEngineNewPayloadBySlotServiceGetData, FctEngineNewPayloadBySlotServiceGetError, FctEngineNewPayloadBySlotServiceGetErrors, FctEngineNewPayloadBySlotServiceGetResponse, FctEngineNewPayloadBySlotServiceGetResponses, FctEngineNewPayloadBySlotServiceListData, FctEngineNewPayloadBySlotServiceListError, FctEngineNewPayloadBySlotServiceListErrors, FctEngineNewPayloadBySlotServiceListResponse, FctEngineNewPayloadBySlotServiceListResponses, FctEngineNewPayloadDurationChunked50Ms, FctEngineNewPayloadDurationChunked50MsServiceGetData, FctEngineNewPayloadDurationChunked50MsServiceGetError, FctEngineNewPayloadDurationChunked50MsServiceGetErrors, FctEngineNewPayloadDurationChunked50MsServiceGetResponse, FctEngineNewPayloadDurationChunked50MsServiceGetResponses, FctEngineNewPayloadDurationChunked50MsServiceListData, FctEngineNewPayloadDurationChunked50MsServiceListError, FctEngineNewPayloadDurationChunked50MsServiceListErrors, FctEngineNewPayloadDurationChunked50MsServiceListResponse, FctEngineNewPayloadDurationChunked50MsServiceListResponses, FctEngineNewPayloadWinrateDaily, FctEngineNewPayloadWinrateDailyServiceGetData, FctEngineNewPayloadWinrateDailyServiceGetError, FctEngineNewPayloadWinrateDailyServiceGetErrors, FctEngineNewPayloadWinrateDailyServiceGetResponse, FctEngineNewPayloadWinrateDailyServiceGetResponses, FctEngineNewPayloadWinrateDailyServiceListData, FctEngineNewPayloadWinrateDailyServiceListError, FctEngineNewPayloadWinrateDailyServiceListErrors, FctEngineNewPayloadWinrateDailyServiceListResponse, FctEngineNewPayloadWinrateDailyServiceListResponses, FctEngineNewPayloadWinrateHourly, FctEngineNewPayloadWinrateHourlyServiceGetData, FctEngineNewPayloadWinrateHourlyServiceGetError, FctEngineNewPayloadWinrateHourlyServiceGetErrors, FctEngineNewPayloadWinrateHourlyServiceGetResponse, FctEngineNewPayloadWinrateHourlyServiceGetResponses, FctEngineNewPayloadWinrateHourlyServiceListData, FctEngineNewPayloadWinrateHourlyServiceListError, FctEngineNewPayloadWinrateHourlyServiceListErrors, FctEngineNewPayloadWinrateHourlyServiceListResponse, FctEngineNewPayloadWinrateHourlyServiceListResponses, FctExecutionGasLimitDaily, FctExecutionGasLimitDailyServiceGetData, FctExecutionGasLimitDailyServiceGetError, FctExecutionGasLimitDailyServiceGetErrors, FctExecutionGasLimitDailyServiceGetResponse, FctExecutionGasLimitDailyServiceGetResponses, FctExecutionGasLimitDailyServiceListData, FctExecutionGasLimitDailyServiceListError, FctExecutionGasLimitDailyServiceListErrors, FctExecutionGasLimitDailyServiceListResponse, FctExecutionGasLimitDailyServiceListResponses, FctExecutionGasLimitHourly, FctExecutionGasLimitHourlyServiceGetData, FctExecutionGasLimitHourlyServiceGetError, FctExecutionGasLimitHourlyServiceGetErrors, FctExecutionGasLimitHourlyServiceGetResponse, FctExecutionGasLimitHourlyServiceGetResponses, FctExecutionGasLimitHourlyServiceListData, FctExecutionGasLimitHourlyServiceListError, FctExecutionGasLimitHourlyServiceListErrors, FctExecutionGasLimitHourlyServiceListResponse, FctExecutionGasLimitHourlyServiceListResponses, FctExecutionGasLimitSignallingDaily, FctExecutionGasLimitSignallingDailyServiceGetData, FctExecutionGasLimitSignallingDailyServiceGetError, FctExecutionGasLimitSignallingDailyServiceGetErrors, FctExecutionGasLimitSignallingDailyServiceGetResponse, FctExecutionGasLimitSignallingDailyServiceGetResponses, FctExecutionGasLimitSignallingDailyServiceListData, FctExecutionGasLimitSignallingDailyServiceListError, FctExecutionGasLimitSignallingDailyServiceListErrors, FctExecutionGasLimitSignallingDailyServiceListResponse, FctExecutionGasLimitSignallingDailyServiceListResponses, FctExecutionGasLimitSignallingHourly, FctExecutionGasLimitSignallingHourlyServiceGetData, FctExecutionGasLimitSignallingHourlyServiceGetError, FctExecutionGasLimitSignallingHourlyServiceGetErrors, FctExecutionGasLimitSignallingHourlyServiceGetResponse, FctExecutionGasLimitSignallingHourlyServiceGetResponses, FctExecutionGasLimitSignallingHourlyServiceListData, FctExecutionGasLimitSignallingHourlyServiceListError, FctExecutionGasLimitSignallingHourlyServiceListErrors, FctExecutionGasLimitSignallingHourlyServiceListResponse, FctExecutionGasLimitSignallingHourlyServiceListResponses, FctExecutionGasUsedDaily, FctExecutionGasUsedDailyServiceGetData, FctExecutionGasUsedDailyServiceGetError, FctExecutionGasUsedDailyServiceGetErrors, FctExecutionGasUsedDailyServiceGetResponse, FctExecutionGasUsedDailyServiceGetResponses, FctExecutionGasUsedDailyServiceListData, FctExecutionGasUsedDailyServiceListError, FctExecutionGasUsedDailyServiceListErrors, FctExecutionGasUsedDailyServiceListResponse, FctExecutionGasUsedDailyServiceListResponses, FctExecutionGasUsedHourly, FctExecutionGasUsedHourlyServiceGetData, FctExecutionGasUsedHourlyServiceGetError, FctExecutionGasUsedHourlyServiceGetErrors, FctExecutionGasUsedHourlyServiceGetResponse, FctExecutionGasUsedHourlyServiceGetResponses, FctExecutionGasUsedHourlyServiceListData, FctExecutionGasUsedHourlyServiceListError, FctExecutionGasUsedHourlyServiceListErrors, FctExecutionGasUsedHourlyServiceListResponse, FctExecutionGasUsedHourlyServiceListResponses, FctExecutionReceiptSizeDaily, FctExecutionReceiptSizeDailyServiceGetData, FctExecutionReceiptSizeDailyServiceGetError, FctExecutionReceiptSizeDailyServiceGetErrors, FctExecutionReceiptSizeDailyServiceGetResponse, FctExecutionReceiptSizeDailyServiceGetResponses, FctExecutionReceiptSizeDailyServiceListData, FctExecutionReceiptSizeDailyServiceListError, FctExecutionReceiptSizeDailyServiceListErrors, FctExecutionReceiptSizeDailyServiceListResponse, FctExecutionReceiptSizeDailyServiceListResponses, FctExecutionReceiptSizeHourly, FctExecutionReceiptSizeHourlyServiceGetData, FctExecutionReceiptSizeHourlyServiceGetError, FctExecutionReceiptSizeHourlyServiceGetErrors, FctExecutionReceiptSizeHourlyServiceGetResponse, FctExecutionReceiptSizeHourlyServiceGetResponses, FctExecutionReceiptSizeHourlyServiceListData, FctExecutionReceiptSizeHourlyServiceListError, FctExecutionReceiptSizeHourlyServiceListErrors, FctExecutionReceiptSizeHourlyServiceListResponse, FctExecutionReceiptSizeHourlyServiceListResponses, FctExecutionStateSizeDaily, FctExecutionStateSizeDailyServiceGetData, FctExecutionStateSizeDailyServiceGetError, FctExecutionStateSizeDailyServiceGetErrors, FctExecutionStateSizeDailyServiceGetResponse, FctExecutionStateSizeDailyServiceGetResponses, FctExecutionStateSizeDailyServiceListData, FctExecutionStateSizeDailyServiceListError, FctExecutionStateSizeDailyServiceListErrors, FctExecutionStateSizeDailyServiceListResponse, FctExecutionStateSizeDailyServiceListResponses, FctExecutionStateSizeHourly, FctExecutionStateSizeHourlyServiceGetData, FctExecutionStateSizeHourlyServiceGetError, FctExecutionStateSizeHourlyServiceGetErrors, FctExecutionStateSizeHourlyServiceGetResponse, FctExecutionStateSizeHourlyServiceGetResponses, FctExecutionStateSizeHourlyServiceListData, FctExecutionStateSizeHourlyServiceListError, FctExecutionStateSizeHourlyServiceListErrors, FctExecutionStateSizeHourlyServiceListResponse, FctExecutionStateSizeHourlyServiceListResponses, FctExecutionTpsDaily, FctExecutionTpsDailyServiceGetData, FctExecutionTpsDailyServiceGetError, FctExecutionTpsDailyServiceGetErrors, FctExecutionTpsDailyServiceGetResponse, FctExecutionTpsDailyServiceGetResponses, FctExecutionTpsDailyServiceListData, FctExecutionTpsDailyServiceListError, FctExecutionTpsDailyServiceListErrors, FctExecutionTpsDailyServiceListResponse, FctExecutionTpsDailyServiceListResponses, FctExecutionTpsHourly, FctExecutionTpsHourlyServiceGetData, FctExecutionTpsHourlyServiceGetError, FctExecutionTpsHourlyServiceGetErrors, FctExecutionTpsHourlyServiceGetResponse, FctExecutionTpsHourlyServiceGetResponses, FctExecutionTpsHourlyServiceListData, FctExecutionTpsHourlyServiceListError, FctExecutionTpsHourlyServiceListErrors, FctExecutionTpsHourlyServiceListResponse, FctExecutionTpsHourlyServiceListResponses, FctExecutionTransactionsDaily, FctExecutionTransactionsDailyServiceGetData, FctExecutionTransactionsDailyServiceGetError, FctExecutionTransactionsDailyServiceGetErrors, FctExecutionTransactionsDailyServiceGetResponse, FctExecutionTransactionsDailyServiceGetResponses, FctExecutionTransactionsDailyServiceListData, FctExecutionTransactionsDailyServiceListError, FctExecutionTransactionsDailyServiceListErrors, FctExecutionTransactionsDailyServiceListResponse, FctExecutionTransactionsDailyServiceListResponses, FctExecutionTransactionsHourly, FctExecutionTransactionsHourlyServiceGetData, FctExecutionTransactionsHourlyServiceGetError, FctExecutionTransactionsHourlyServiceGetErrors, FctExecutionTransactionsHourlyServiceGetResponse, FctExecutionTransactionsHourlyServiceGetResponses, FctExecutionTransactionsHourlyServiceListData, FctExecutionTransactionsHourlyServiceListError, FctExecutionTransactionsHourlyServiceListErrors, FctExecutionTransactionsHourlyServiceListResponse, FctExecutionTransactionsHourlyServiceListResponses, FctHeadFirstSeenByNode, FctHeadFirstSeenByNodeServiceGetData, FctHeadFirstSeenByNodeServiceGetError, FctHeadFirstSeenByNodeServiceGetErrors, FctHeadFirstSeenByNodeServiceGetResponse, FctHeadFirstSeenByNodeServiceGetResponses, FctHeadFirstSeenByNodeServiceListData, FctHeadFirstSeenByNodeServiceListError, FctHeadFirstSeenByNodeServiceListErrors, FctHeadFirstSeenByNodeServiceListResponse, FctHeadFirstSeenByNodeServiceListResponses, FctHeadVoteCorrectnessRateDaily, FctHeadVoteCorrectnessRateDailyServiceGetData, FctHeadVoteCorrectnessRateDailyServiceGetError, FctHeadVoteCorrectnessRateDailyServiceGetErrors, FctHeadVoteCorrectnessRateDailyServiceGetResponse, FctHeadVoteCorrectnessRateDailyServiceGetResponses, FctHeadVoteCorrectnessRateDailyServiceListData, FctHeadVoteCorrectnessRateDailyServiceListError, FctHeadVoteCorrectnessRateDailyServiceListErrors, FctHeadVoteCorrectnessRateDailyServiceListResponse, FctHeadVoteCorrectnessRateDailyServiceListResponses, FctHeadVoteCorrectnessRateHourly, FctHeadVoteCorrectnessRateHourlyServiceGetData, FctHeadVoteCorrectnessRateHourlyServiceGetError, FctHeadVoteCorrectnessRateHourlyServiceGetErrors, FctHeadVoteCorrectnessRateHourlyServiceGetResponse, FctHeadVoteCorrectnessRateHourlyServiceGetResponses, FctHeadVoteCorrectnessRateHourlyServiceListData, FctHeadVoteCorrectnessRateHourlyServiceListError, FctHeadVoteCorrectnessRateHourlyServiceListErrors, FctHeadVoteCorrectnessRateHourlyServiceListResponse, FctHeadVoteCorrectnessRateHourlyServiceListResponses, FctMevBidCountByBuilder, FctMevBidCountByBuilderServiceGetData, FctMevBidCountByBuilderServiceGetError, FctMevBidCountByBuilderServiceGetErrors, FctMevBidCountByBuilderServiceGetResponse, FctMevBidCountByBuilderServiceGetResponses, FctMevBidCountByBuilderServiceListData, FctMevBidCountByBuilderServiceListError, FctMevBidCountByBuilderServiceListErrors, FctMevBidCountByBuilderServiceListResponse, FctMevBidCountByBuilderServiceListResponses, FctMevBidCountByRelay, FctMevBidCountByRelayServiceGetData, FctMevBidCountByRelayServiceGetError, FctMevBidCountByRelayServiceGetErrors, FctMevBidCountByRelayServiceGetResponse, FctMevBidCountByRelayServiceGetResponses, FctMevBidCountByRelayServiceListData, FctMevBidCountByRelayServiceListError, FctMevBidCountByRelayServiceListErrors, FctMevBidCountByRelayServiceListResponse, FctMevBidCountByRelayServiceListResponses, FctMevBidHighestValueByBuilderChunked50Ms, FctMevBidHighestValueByBuilderChunked50MsServiceGetData, FctMevBidHighestValueByBuilderChunked50MsServiceGetError, FctMevBidHighestValueByBuilderChunked50MsServiceGetErrors, FctMevBidHighestValueByBuilderChunked50MsServiceGetResponse, FctMevBidHighestValueByBuilderChunked50MsServiceGetResponses, FctMevBidHighestValueByBuilderChunked50MsServiceListData, FctMevBidHighestValueByBuilderChunked50MsServiceListError, FctMevBidHighestValueByBuilderChunked50MsServiceListErrors, FctMevBidHighestValueByBuilderChunked50MsServiceListResponse, FctMevBidHighestValueByBuilderChunked50MsServiceListResponses, FctMissedSlotRateDaily, FctMissedSlotRateDailyServiceGetData, FctMissedSlotRateDailyServiceGetError, FctMissedSlotRateDailyServiceGetErrors, FctMissedSlotRateDailyServiceGetResponse, FctMissedSlotRateDailyServiceGetResponses, FctMissedSlotRateDailyServiceListData, FctMissedSlotRateDailyServiceListError, FctMissedSlotRateDailyServiceListErrors, FctMissedSlotRateDailyServiceListResponse, FctMissedSlotRateDailyServiceListResponses, FctMissedSlotRateHourly, FctMissedSlotRateHourlyServiceGetData, FctMissedSlotRateHourlyServiceGetError, FctMissedSlotRateHourlyServiceGetErrors, FctMissedSlotRateHourlyServiceGetResponse, FctMissedSlotRateHourlyServiceGetResponses, FctMissedSlotRateHourlyServiceListData, FctMissedSlotRateHourlyServiceListError, FctMissedSlotRateHourlyServiceListErrors, FctMissedSlotRateHourlyServiceListResponse, FctMissedSlotRateHourlyServiceListResponses, FctNodeActiveLast24h, FctNodeActiveLast24hServiceGetData, FctNodeActiveLast24hServiceGetError, FctNodeActiveLast24hServiceGetErrors, FctNodeActiveLast24hServiceGetResponse, FctNodeActiveLast24hServiceGetResponses, FctNodeActiveLast24hServiceListData, FctNodeActiveLast24hServiceListError, FctNodeActiveLast24hServiceListErrors, FctNodeActiveLast24hServiceListResponse, FctNodeActiveLast24hServiceListResponses, FctNodeCpuUtilizationByProcess, FctNodeCpuUtilizationByProcessServiceGetData, FctNodeCpuUtilizationByProcessServiceGetError, FctNodeCpuUtilizationByProcessServiceGetErrors, FctNodeCpuUtilizationByProcessServiceGetResponse, FctNodeCpuUtilizationByProcessServiceGetResponses, FctNodeCpuUtilizationByProcessServiceListData, FctNodeCpuUtilizationByProcessServiceListError, FctNodeCpuUtilizationByProcessServiceListErrors, FctNodeCpuUtilizationByProcessServiceListResponse, FctNodeCpuUtilizationByProcessServiceListResponses, FctNodeDiskIoByProcess, FctNodeDiskIoByProcessServiceGetData, FctNodeDiskIoByProcessServiceGetError, FctNodeDiskIoByProcessServiceGetErrors, FctNodeDiskIoByProcessServiceGetResponse, FctNodeDiskIoByProcessServiceGetResponses, FctNodeDiskIoByProcessServiceListData, FctNodeDiskIoByProcessServiceListError, FctNodeDiskIoByProcessServiceListErrors, FctNodeDiskIoByProcessServiceListResponse, FctNodeDiskIoByProcessServiceListResponses, FctNodeMemoryUsageByProcess, FctNodeMemoryUsageByProcessServiceGetData, FctNodeMemoryUsageByProcessServiceGetError, FctNodeMemoryUsageByProcessServiceGetErrors, FctNodeMemoryUsageByProcessServiceGetResponse, FctNodeMemoryUsageByProcessServiceGetResponses, FctNodeMemoryUsageByProcessServiceListData, FctNodeMemoryUsageByProcessServiceListError, FctNodeMemoryUsageByProcessServiceListErrors, FctNodeMemoryUsageByProcessServiceListResponse, FctNodeMemoryUsageByProcessServiceListResponses, FctNodeNetworkIoByProcess, FctNodeNetworkIoByProcessServiceGetData, FctNodeNetworkIoByProcessServiceGetError, FctNodeNetworkIoByProcessServiceGetErrors, FctNodeNetworkIoByProcessServiceGetResponse, FctNodeNetworkIoByProcessServiceGetResponses, FctNodeNetworkIoByProcessServiceListData, FctNodeNetworkIoByProcessServiceListError, FctNodeNetworkIoByProcessServiceListErrors, FctNodeNetworkIoByProcessServiceListResponse, FctNodeNetworkIoByProcessServiceListResponses, FctOpcodeGasByOpcodeDaily, FctOpcodeGasByOpcodeDailyServiceGetData, FctOpcodeGasByOpcodeDailyServiceGetError, FctOpcodeGasByOpcodeDailyServiceGetErrors, FctOpcodeGasByOpcodeDailyServiceGetResponse, FctOpcodeGasByOpcodeDailyServiceGetResponses, FctOpcodeGasByOpcodeDailyServiceListData, FctOpcodeGasByOpcodeDailyServiceListError, FctOpcodeGasByOpcodeDailyServiceListErrors, FctOpcodeGasByOpcodeDailyServiceListResponse, FctOpcodeGasByOpcodeDailyServiceListResponses, FctOpcodeGasByOpcodeHourly, FctOpcodeGasByOpcodeHourlyServiceGetData, FctOpcodeGasByOpcodeHourlyServiceGetError, FctOpcodeGasByOpcodeHourlyServiceGetErrors, FctOpcodeGasByOpcodeHourlyServiceGetResponse, FctOpcodeGasByOpcodeHourlyServiceGetResponses, FctOpcodeGasByOpcodeHourlyServiceListData, FctOpcodeGasByOpcodeHourlyServiceListError, FctOpcodeGasByOpcodeHourlyServiceListErrors, FctOpcodeGasByOpcodeHourlyServiceListResponse, FctOpcodeGasByOpcodeHourlyServiceListResponses, FctOpcodeOpsDaily, FctOpcodeOpsDailyServiceGetData, FctOpcodeOpsDailyServiceGetError, FctOpcodeOpsDailyServiceGetErrors, FctOpcodeOpsDailyServiceGetResponse, FctOpcodeOpsDailyServiceGetResponses, FctOpcodeOpsDailyServiceListData, FctOpcodeOpsDailyServiceListError, FctOpcodeOpsDailyServiceListErrors, FctOpcodeOpsDailyServiceListResponse, FctOpcodeOpsDailyServiceListResponses, FctOpcodeOpsHourly, FctOpcodeOpsHourlyServiceGetData, FctOpcodeOpsHourlyServiceGetError, FctOpcodeOpsHourlyServiceGetErrors, FctOpcodeOpsHourlyServiceGetResponse, FctOpcodeOpsHourlyServiceGetResponses, FctOpcodeOpsHourlyServiceListData, FctOpcodeOpsHourlyServiceListError, FctOpcodeOpsHourlyServiceListErrors, FctOpcodeOpsHourlyServiceListResponse, FctOpcodeOpsHourlyServiceListResponses, FctPreparedBlock, FctPreparedBlockServiceGetData, FctPreparedBlockServiceGetError, FctPreparedBlockServiceGetErrors, FctPreparedBlockServiceGetResponse, FctPreparedBlockServiceGetResponses, FctPreparedBlockServiceListData, FctPreparedBlockServiceListError, FctPreparedBlockServiceListErrors, FctPreparedBlockServiceListResponse, FctPreparedBlockServiceListResponses, FctProposerRewardDaily, FctProposerRewardDailyServiceGetData, FctProposerRewardDailyServiceGetError, FctProposerRewardDailyServiceGetErrors, FctProposerRewardDailyServiceGetResponse, FctProposerRewardDailyServiceGetResponses, FctProposerRewardDailyServiceListData, FctProposerRewardDailyServiceListError, FctProposerRewardDailyServiceListErrors, FctProposerRewardDailyServiceListResponse, FctProposerRewardDailyServiceListResponses, FctProposerRewardHourly, FctProposerRewardHourlyServiceGetData, FctProposerRewardHourlyServiceGetError, FctProposerRewardHourlyServiceGetErrors, FctProposerRewardHourlyServiceGetResponse, FctProposerRewardHourlyServiceGetResponses, FctProposerRewardHourlyServiceListData, FctProposerRewardHourlyServiceListError, FctProposerRewardHourlyServiceListErrors, FctProposerRewardHourlyServiceListResponse, FctProposerRewardHourlyServiceListResponses, FctReorgDaily, FctReorgDailyServiceGetData, FctReorgDailyServiceGetError, FctReorgDailyServiceGetErrors, FctReorgDailyServiceGetResponse, FctReorgDailyServiceGetResponses, FctReorgDailyServiceListData, FctReorgDailyServiceListError, FctReorgDailyServiceListErrors, FctReorgDailyServiceListResponse, FctReorgDailyServiceListResponses, FctReorgHourly, FctReorgHourlyServiceGetData, FctReorgHourlyServiceGetError, FctReorgHourlyServiceGetErrors, FctReorgHourlyServiceGetResponse, FctReorgHourlyServiceGetResponses, FctReorgHourlyServiceListData, FctReorgHourlyServiceListError, FctReorgHourlyServiceListErrors, FctReorgHourlyServiceListResponse, FctReorgHourlyServiceListResponses, FctRocketpoolValidator, FctRocketpoolValidatorServiceGetData, FctRocketpoolValidatorServiceGetError, FctRocketpoolValidatorServiceGetErrors, FctRocketpoolValidatorServiceGetResponse, FctRocketpoolValidatorServiceGetResponses, FctRocketpoolValidatorServiceListData, FctRocketpoolValidatorServiceListError, FctRocketpoolValidatorServiceListErrors, FctRocketpoolValidatorServiceListResponse, FctRocketpoolValidatorServiceListResponses, FctStorageSlotStateByAddressDaily, FctStorageSlotStateByAddressDailyServiceGetData, FctStorageSlotStateByAddressDailyServiceGetError, FctStorageSlotStateByAddressDailyServiceGetErrors, FctStorageSlotStateByAddressDailyServiceGetResponse, FctStorageSlotStateByAddressDailyServiceGetResponses, FctStorageSlotStateByAddressDailyServiceListData, FctStorageSlotStateByAddressDailyServiceListError, FctStorageSlotStateByAddressDailyServiceListErrors, FctStorageSlotStateByAddressDailyServiceListResponse, FctStorageSlotStateByAddressDailyServiceListResponses, FctStorageSlotStateByAddressHourly, FctStorageSlotStateByAddressHourlyServiceGetData, FctStorageSlotStateByAddressHourlyServiceGetError, FctStorageSlotStateByAddressHourlyServiceGetErrors, FctStorageSlotStateByAddressHourlyServiceGetResponse, FctStorageSlotStateByAddressHourlyServiceGetResponses, FctStorageSlotStateByAddressHourlyServiceListData, FctStorageSlotStateByAddressHourlyServiceListError, FctStorageSlotStateByAddressHourlyServiceListErrors, FctStorageSlotStateByAddressHourlyServiceListResponse, FctStorageSlotStateByAddressHourlyServiceListResponses, FctStorageSlotStateByBlockDaily, FctStorageSlotStateByBlockDailyServiceGetData, FctStorageSlotStateByBlockDailyServiceGetError, FctStorageSlotStateByBlockDailyServiceGetErrors, FctStorageSlotStateByBlockDailyServiceGetResponse, FctStorageSlotStateByBlockDailyServiceGetResponses, FctStorageSlotStateByBlockDailyServiceListData, FctStorageSlotStateByBlockDailyServiceListError, FctStorageSlotStateByBlockDailyServiceListErrors, FctStorageSlotStateByBlockDailyServiceListResponse, FctStorageSlotStateByBlockDailyServiceListResponses, FctStorageSlotStateByBlockHourly, FctStorageSlotStateByBlockHourlyServiceGetData, FctStorageSlotStateByBlockHourlyServiceGetError, FctStorageSlotStateByBlockHourlyServiceGetErrors, FctStorageSlotStateByBlockHourlyServiceGetResponse, FctStorageSlotStateByBlockHourlyServiceGetResponses, FctStorageSlotStateByBlockHourlyServiceListData, FctStorageSlotStateByBlockHourlyServiceListError, FctStorageSlotStateByBlockHourlyServiceListErrors, FctStorageSlotStateByBlockHourlyServiceListResponse, FctStorageSlotStateByBlockHourlyServiceListResponses, FctStorageSlotStateWithExpiryByAddressDaily, FctStorageSlotStateWithExpiryByAddressDailyServiceGetData, FctStorageSlotStateWithExpiryByAddressDailyServiceGetError, FctStorageSlotStateWithExpiryByAddressDailyServiceGetErrors, FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse, FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponses, FctStorageSlotStateWithExpiryByAddressDailyServiceListData, FctStorageSlotStateWithExpiryByAddressDailyServiceListError, FctStorageSlotStateWithExpiryByAddressDailyServiceListErrors, FctStorageSlotStateWithExpiryByAddressDailyServiceListResponse, FctStorageSlotStateWithExpiryByAddressDailyServiceListResponses, FctStorageSlotStateWithExpiryByAddressHourly, FctStorageSlotStateWithExpiryByAddressHourlyServiceGetData, FctStorageSlotStateWithExpiryByAddressHourlyServiceGetError, FctStorageSlotStateWithExpiryByAddressHourlyServiceGetErrors, FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse, FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponses, FctStorageSlotStateWithExpiryByAddressHourlyServiceListData, FctStorageSlotStateWithExpiryByAddressHourlyServiceListError, FctStorageSlotStateWithExpiryByAddressHourlyServiceListErrors, FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse, FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponses, FctStorageSlotStateWithExpiryByBlockDaily, FctStorageSlotStateWithExpiryByBlockDailyServiceGetData, FctStorageSlotStateWithExpiryByBlockDailyServiceGetError, FctStorageSlotStateWithExpiryByBlockDailyServiceGetErrors, FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse, FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponses, FctStorageSlotStateWithExpiryByBlockDailyServiceListData, FctStorageSlotStateWithExpiryByBlockDailyServiceListError, FctStorageSlotStateWithExpiryByBlockDailyServiceListErrors, FctStorageSlotStateWithExpiryByBlockDailyServiceListResponse, FctStorageSlotStateWithExpiryByBlockDailyServiceListResponses, FctStorageSlotStateWithExpiryByBlockHourly, FctStorageSlotStateWithExpiryByBlockHourlyServiceGetData, FctStorageSlotStateWithExpiryByBlockHourlyServiceGetError, FctStorageSlotStateWithExpiryByBlockHourlyServiceGetErrors, FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse, FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponses, FctStorageSlotStateWithExpiryByBlockHourlyServiceListData, FctStorageSlotStateWithExpiryByBlockHourlyServiceListError, FctStorageSlotStateWithExpiryByBlockHourlyServiceListErrors, FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse, FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponses, FctStorageSlotTop100ByBytes, FctStorageSlotTop100ByBytesServiceGetData, FctStorageSlotTop100ByBytesServiceGetError, FctStorageSlotTop100ByBytesServiceGetErrors, FctStorageSlotTop100ByBytesServiceGetResponse, FctStorageSlotTop100ByBytesServiceGetResponses, FctStorageSlotTop100ByBytesServiceListData, FctStorageSlotTop100ByBytesServiceListError, FctStorageSlotTop100ByBytesServiceListErrors, FctStorageSlotTop100ByBytesServiceListResponse, FctStorageSlotTop100ByBytesServiceListResponses, FctStorageSlotTop100BySlots, FctStorageSlotTop100BySlotsServiceGetData, FctStorageSlotTop100BySlotsServiceGetError, FctStorageSlotTop100BySlotsServiceGetErrors, FctStorageSlotTop100BySlotsServiceGetResponse, FctStorageSlotTop100BySlotsServiceGetResponses, FctStorageSlotTop100BySlotsServiceListData, FctStorageSlotTop100BySlotsServiceListError, FctStorageSlotTop100BySlotsServiceListErrors, FctStorageSlotTop100BySlotsServiceListResponse, FctStorageSlotTop100BySlotsServiceListResponses, FctSyncCommitteeParticipationByValidator, FctSyncCommitteeParticipationByValidatorDaily, FctSyncCommitteeParticipationByValidatorDailyServiceGetData, FctSyncCommitteeParticipationByValidatorDailyServiceGetError, FctSyncCommitteeParticipationByValidatorDailyServiceGetErrors, FctSyncCommitteeParticipationByValidatorDailyServiceGetResponse, FctSyncCommitteeParticipationByValidatorDailyServiceGetResponses, FctSyncCommitteeParticipationByValidatorDailyServiceListData, FctSyncCommitteeParticipationByValidatorDailyServiceListError, FctSyncCommitteeParticipationByValidatorDailyServiceListErrors, FctSyncCommitteeParticipationByValidatorDailyServiceListResponse, FctSyncCommitteeParticipationByValidatorDailyServiceListResponses, FctSyncCommitteeParticipationByValidatorHourly, FctSyncCommitteeParticipationByValidatorHourlyServiceGetData, FctSyncCommitteeParticipationByValidatorHourlyServiceGetError, FctSyncCommitteeParticipationByValidatorHourlyServiceGetErrors, FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse, FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponses, FctSyncCommitteeParticipationByValidatorHourlyServiceListData, FctSyncCommitteeParticipationByValidatorHourlyServiceListError, FctSyncCommitteeParticipationByValidatorHourlyServiceListErrors, FctSyncCommitteeParticipationByValidatorHourlyServiceListResponse, FctSyncCommitteeParticipationByValidatorHourlyServiceListResponses, FctSyncCommitteeParticipationByValidatorServiceGetData, FctSyncCommitteeParticipationByValidatorServiceGetError, FctSyncCommitteeParticipationByValidatorServiceGetErrors, FctSyncCommitteeParticipationByValidatorServiceGetResponse, FctSyncCommitteeParticipationByValidatorServiceGetResponses, FctSyncCommitteeParticipationByValidatorServiceListData, FctSyncCommitteeParticipationByValidatorServiceListError, FctSyncCommitteeParticipationByValidatorServiceListErrors, FctSyncCommitteeParticipationByValidatorServiceListResponse, FctSyncCommitteeParticipationByValidatorServiceListResponses, FctTokenContractStorageStateByBlockDaily, FctTokenContractStorageStateByBlockDailyServiceGetData, FctTokenContractStorageStateByBlockDailyServiceGetError, FctTokenContractStorageStateByBlockDailyServiceGetErrors, FctTokenContractStorageStateByBlockDailyServiceGetResponse, FctTokenContractStorageStateByBlockDailyServiceGetResponses, FctTokenContractStorageStateByBlockDailyServiceListData, FctTokenContractStorageStateByBlockDailyServiceListError, FctTokenContractStorageStateByBlockDailyServiceListErrors, FctTokenContractStorageStateByBlockDailyServiceListResponse, FctTokenContractStorageStateByBlockDailyServiceListResponses, FctValidatorBalance, FctValidatorBalanceDaily, FctValidatorBalanceDailyServiceGetData, FctValidatorBalanceDailyServiceGetError, FctValidatorBalanceDailyServiceGetErrors, FctValidatorBalanceDailyServiceGetResponse, FctValidatorBalanceDailyServiceGetResponses, FctValidatorBalanceDailyServiceListData, FctValidatorBalanceDailyServiceListError, FctValidatorBalanceDailyServiceListErrors, FctValidatorBalanceDailyServiceListResponse, FctValidatorBalanceDailyServiceListResponses, FctValidatorBalanceHourly, FctValidatorBalanceHourlyServiceGetData, FctValidatorBalanceHourlyServiceGetError, FctValidatorBalanceHourlyServiceGetErrors, FctValidatorBalanceHourlyServiceGetResponse, FctValidatorBalanceHourlyServiceGetResponses, FctValidatorBalanceHourlyServiceListData, FctValidatorBalanceHourlyServiceListError, FctValidatorBalanceHourlyServiceListErrors, FctValidatorBalanceHourlyServiceListResponse, FctValidatorBalanceHourlyServiceListResponses, FctValidatorBalanceServiceGetData, FctValidatorBalanceServiceGetError, FctValidatorBalanceServiceGetErrors, FctValidatorBalanceServiceGetResponse, FctValidatorBalanceServiceGetResponses, FctValidatorBalanceServiceListData, FctValidatorBalanceServiceListError, FctValidatorBalanceServiceListErrors, FctValidatorBalanceServiceListResponse, FctValidatorBalanceServiceListResponses, FctValidatorCountByEntityByStatusDaily, FctValidatorCountByEntityByStatusDailyServiceGetData, FctValidatorCountByEntityByStatusDailyServiceGetError, FctValidatorCountByEntityByStatusDailyServiceGetErrors, FctValidatorCountByEntityByStatusDailyServiceGetResponse, FctValidatorCountByEntityByStatusDailyServiceGetResponses, FctValidatorCountByEntityByStatusDailyServiceListData, FctValidatorCountByEntityByStatusDailyServiceListError, FctValidatorCountByEntityByStatusDailyServiceListErrors, FctValidatorCountByEntityByStatusDailyServiceListResponse, FctValidatorCountByEntityByStatusDailyServiceListResponses, GetAdminCbtIncrementalResponse, GetDimBlockBlobSubmitterResponse, GetDimContractOwnerResponse, GetDimFunctionSignatureResponse, GetDimNodeResponse, GetDimRocketpoolNodeResponse, GetDimTokenContractResponse, GetDimValidatorPubkeyResponse, GetDimValidatorStatusResponse, GetFctAttestationCorrectnessByValidatorCanonicalResponse, GetFctAttestationCorrectnessByValidatorHeadResponse, GetFctAttestationCorrectnessCanonicalResponse, GetFctAttestationCorrectnessHeadResponse, GetFctAttestationFirstSeenByValidatorResponse, GetFctAttestationFirstSeenChunked50MsResponse, GetFctAttestationInclusionDelayDailyResponse, GetFctAttestationInclusionDelayHourlyResponse, GetFctAttestationLivenessByEntityHeadResponse, GetFctAttestationObservationByNodeResponse, GetFctAttestationParticipationRateDailyResponse, GetFctAttestationParticipationRateHourlyResponse, GetFctAttestationVoteCorrectnessByValidatorDailyResponse, GetFctAttestationVoteCorrectnessByValidatorHourlyResponse, GetFctAttestationVoteCorrectnessByValidatorResponse, GetFctBlobCountDailyResponse, GetFctBlobCountHourlyResponse, GetFctBlockBlobCountHeadResponse, GetFctBlockBlobCountResponse, GetFctBlockBlobFirstSeenByNodeResponse, GetFctBlockBlobHeadResponse, GetFctBlockDataColumnSidecarFirstSeenByNodeResponse, GetFctBlockDataColumnSidecarFirstSeenResponse, GetFctBlockFirstSeenByNodeResponse, GetFctBlockHeadResponse, GetFctBlockMevHeadResponse, GetFctBlockMevResponse, GetFctBlockProposalStatusDailyResponse, GetFctBlockProposalStatusHourlyResponse, GetFctBlockProposerByValidatorResponse, GetFctBlockProposerEntityResponse, GetFctBlockProposerHeadResponse, GetFctBlockProposerResponse, GetFctBlockResponse, GetFctContractStorageStateByAddressDailyResponse, GetFctContractStorageStateByAddressHourlyResponse, GetFctContractStorageStateByBlockDailyResponse, GetFctContractStorageStateByBlockHourlyResponse, GetFctContractStorageStateWithExpiryByAddressDailyResponse, GetFctContractStorageStateWithExpiryByAddressHourlyResponse, GetFctContractStorageStateWithExpiryByBlockDailyResponse, GetFctContractStorageStateWithExpiryByBlockHourlyResponse, GetFctDataColumnAvailabilityByEpochResponse, GetFctDataColumnAvailabilityBySlotBlobResponse, GetFctDataColumnAvailabilityBySlotResponse, GetFctDataColumnAvailabilityDailyResponse, GetFctDataColumnAvailabilityHourlyResponse, GetFctEngineGetBlobsByElClientHourlyResponse, GetFctEngineGetBlobsByElClientResponse, GetFctEngineGetBlobsBySlotResponse, GetFctEngineGetBlobsDurationChunked50MsResponse, GetFctEngineNewPayloadByElClientHourlyResponse, GetFctEngineNewPayloadByElClientResponse, GetFctEngineNewPayloadBySlotResponse, GetFctEngineNewPayloadDurationChunked50MsResponse, GetFctEngineNewPayloadWinrateDailyResponse, GetFctEngineNewPayloadWinrateHourlyResponse, GetFctExecutionGasLimitDailyResponse, GetFctExecutionGasLimitHourlyResponse, GetFctExecutionGasLimitSignallingDailyResponse, GetFctExecutionGasLimitSignallingHourlyResponse, GetFctExecutionGasUsedDailyResponse, GetFctExecutionGasUsedHourlyResponse, GetFctExecutionReceiptSizeDailyResponse, GetFctExecutionReceiptSizeHourlyResponse, GetFctExecutionStateSizeDailyResponse, GetFctExecutionStateSizeHourlyResponse, GetFctExecutionTpsDailyResponse, GetFctExecutionTpsHourlyResponse, GetFctExecutionTransactionsDailyResponse, GetFctExecutionTransactionsHourlyResponse, GetFctHeadFirstSeenByNodeResponse, GetFctHeadVoteCorrectnessRateDailyResponse, GetFctHeadVoteCorrectnessRateHourlyResponse, GetFctMevBidCountByBuilderResponse, GetFctMevBidCountByRelayResponse, GetFctMevBidHighestValueByBuilderChunked50MsResponse, GetFctMissedSlotRateDailyResponse, GetFctMissedSlotRateHourlyResponse, GetFctNodeActiveLast24hResponse, GetFctNodeCpuUtilizationByProcessResponse, GetFctNodeDiskIoByProcessResponse, GetFctNodeMemoryUsageByProcessResponse, GetFctNodeNetworkIoByProcessResponse, GetFctOpcodeGasByOpcodeDailyResponse, GetFctOpcodeGasByOpcodeHourlyResponse, GetFctOpcodeOpsDailyResponse, GetFctOpcodeOpsHourlyResponse, GetFctPreparedBlockResponse, GetFctProposerRewardDailyResponse, GetFctProposerRewardHourlyResponse, GetFctReorgDailyResponse, GetFctReorgHourlyResponse, GetFctRocketpoolValidatorResponse, GetFctStorageSlotStateByAddressDailyResponse, GetFctStorageSlotStateByAddressHourlyResponse, GetFctStorageSlotStateByBlockDailyResponse, GetFctStorageSlotStateByBlockHourlyResponse, GetFctStorageSlotStateWithExpiryByAddressDailyResponse, GetFctStorageSlotStateWithExpiryByAddressHourlyResponse, GetFctStorageSlotStateWithExpiryByBlockDailyResponse, GetFctStorageSlotStateWithExpiryByBlockHourlyResponse, GetFctStorageSlotTop100ByBytesResponse, GetFctStorageSlotTop100BySlotsResponse, GetFctSyncCommitteeParticipationByValidatorDailyResponse, GetFctSyncCommitteeParticipationByValidatorHourlyResponse, GetFctSyncCommitteeParticipationByValidatorResponse, GetFctTokenContractStorageStateByBlockDailyResponse, GetFctValidatorBalanceDailyResponse, GetFctValidatorBalanceHourlyResponse, GetFctValidatorBalanceResponse, GetFctValidatorCountByEntityByStatusDailyResponse, GetIntAttestationAttestedCanonicalResponse, GetIntAttestationAttestedHeadResponse, GetIntAttestationFirstSeenAggregateResponse, GetIntAttestationFirstSeenResponse, GetIntBeaconCommitteeHeadResponse, GetIntBlockBlobCountCanonicalResponse, GetIntBlockCanonicalResponse, GetIntBlockMevCanonicalResponse, GetIntBlockOpcodeGasResponse, GetIntBlockProposerCanonicalResponse, GetIntBlockReceiptSizeResponse, GetIntBlockResourceGasResponse, GetIntContractCreationResponse, GetIntContractSelfdestructResponse, GetIntContractStorageExpiry12mResponse, GetIntContractStorageExpiry18mResponse, GetIntContractStorageExpiry1mResponse, GetIntContractStorageExpiry24mResponse, GetIntContractStorageExpiry6mResponse, GetIntContractStorageNextTouchResponse, GetIntContractStorageReactivation12mResponse, GetIntContractStorageReactivation18mResponse, GetIntContractStorageReactivation1mResponse, GetIntContractStorageReactivation24mResponse, GetIntContractStorageReactivation6mResponse, GetIntContractStorageStateByAddressResponse, GetIntContractStorageStateByBlockResponse, GetIntContractStorageStateResponse, GetIntContractStorageStateWithExpiryByAddressResponse, GetIntContractStorageStateWithExpiryByBlockResponse, GetIntContractStorageStateWithExpiryResponse, GetIntCustodyProbeOrderBySlotResponse, GetIntCustodyProbeResponse, GetIntEngineGetBlobsResponse, GetIntEngineNewPayloadFastestExecutionByNodeClassResponse, GetIntEngineNewPayloadResponse, GetIntExecutionBlockByDateResponse, GetIntExecutionStateSizeByBlockResponse, GetIntRocketpoolMegapoolResponse, GetIntRocketpoolMinipoolResponse, GetIntRocketpoolNodeEventResponse, GetIntRocketpoolNodeTimezoneResponse, GetIntStorageSelfdestructDiffsResponse, GetIntStorageSlotDiffByAddressSlotResponse, GetIntStorageSlotDiffResponse, GetIntStorageSlotExpiry12mResponse, GetIntStorageSlotExpiry18mResponse, GetIntStorageSlotExpiry1mResponse, GetIntStorageSlotExpiry24mResponse, GetIntStorageSlotExpiry6mResponse, GetIntStorageSlotLifecycleBoundaryResponse, GetIntStorageSlotLifecycleResponse, GetIntStorageSlotNextTouchResponse, GetIntStorageSlotReactivation12mResponse, GetIntStorageSlotReactivation18mResponse, GetIntStorageSlotReactivation1mResponse, GetIntStorageSlotReactivation24mResponse, GetIntStorageSlotReactivation6mResponse, GetIntStorageSlotReadResponse, GetIntStorageSlotStateByAddressResponse, GetIntStorageSlotStateByBlockResponse, GetIntStorageSlotStateResponse, GetIntStorageSlotStateWithExpiryByAddressResponse, GetIntStorageSlotStateWithExpiryByBlockResponse, GetIntStorageSlotStateWithExpiryResponse, GetIntTokenContractStorageStateByBlockResponse, GetIntTransactionCallFrameOpcodeGasResponse, GetIntTransactionCallFrameOpcodeResourceGasResponse, GetIntTransactionCallFrameResponse, GetIntTransactionOpcodeGasResponse, GetIntTransactionReceiptSizeResponse, GetIntTransactionResourceGasResponse, GoogleProtobufAny, IntAttestationAttestedCanonical, IntAttestationAttestedCanonicalServiceGetData, IntAttestationAttestedCanonicalServiceGetError, IntAttestationAttestedCanonicalServiceGetErrors, IntAttestationAttestedCanonicalServiceGetResponse, IntAttestationAttestedCanonicalServiceGetResponses, IntAttestationAttestedCanonicalServiceListData, IntAttestationAttestedCanonicalServiceListError, IntAttestationAttestedCanonicalServiceListErrors, IntAttestationAttestedCanonicalServiceListResponse, IntAttestationAttestedCanonicalServiceListResponses, IntAttestationAttestedHead, IntAttestationAttestedHeadServiceGetData, IntAttestationAttestedHeadServiceGetError, IntAttestationAttestedHeadServiceGetErrors, IntAttestationAttestedHeadServiceGetResponse, IntAttestationAttestedHeadServiceGetResponses, IntAttestationAttestedHeadServiceListData, IntAttestationAttestedHeadServiceListError, IntAttestationAttestedHeadServiceListErrors, IntAttestationAttestedHeadServiceListResponse, IntAttestationAttestedHeadServiceListResponses, IntAttestationFirstSeen, IntAttestationFirstSeenAggregate, IntAttestationFirstSeenAggregateServiceGetData, IntAttestationFirstSeenAggregateServiceGetError, IntAttestationFirstSeenAggregateServiceGetErrors, IntAttestationFirstSeenAggregateServiceGetResponse, IntAttestationFirstSeenAggregateServiceGetResponses, IntAttestationFirstSeenAggregateServiceListData, IntAttestationFirstSeenAggregateServiceListError, IntAttestationFirstSeenAggregateServiceListErrors, IntAttestationFirstSeenAggregateServiceListResponse, IntAttestationFirstSeenAggregateServiceListResponses, IntAttestationFirstSeenServiceGetData, IntAttestationFirstSeenServiceGetError, IntAttestationFirstSeenServiceGetErrors, IntAttestationFirstSeenServiceGetResponse, IntAttestationFirstSeenServiceGetResponses, IntAttestationFirstSeenServiceListData, IntAttestationFirstSeenServiceListError, IntAttestationFirstSeenServiceListErrors, IntAttestationFirstSeenServiceListResponse, IntAttestationFirstSeenServiceListResponses, IntBeaconCommitteeHead, IntBeaconCommitteeHeadServiceGetData, IntBeaconCommitteeHeadServiceGetError, IntBeaconCommitteeHeadServiceGetErrors, IntBeaconCommitteeHeadServiceGetResponse, IntBeaconCommitteeHeadServiceGetResponses, IntBeaconCommitteeHeadServiceListData, IntBeaconCommitteeHeadServiceListError, IntBeaconCommitteeHeadServiceListErrors, IntBeaconCommitteeHeadServiceListResponse, IntBeaconCommitteeHeadServiceListResponses, IntBlockBlobCountCanonical, IntBlockBlobCountCanonicalServiceGetData, IntBlockBlobCountCanonicalServiceGetError, IntBlockBlobCountCanonicalServiceGetErrors, IntBlockBlobCountCanonicalServiceGetResponse, IntBlockBlobCountCanonicalServiceGetResponses, IntBlockBlobCountCanonicalServiceListData, IntBlockBlobCountCanonicalServiceListError, IntBlockBlobCountCanonicalServiceListErrors, IntBlockBlobCountCanonicalServiceListResponse, IntBlockBlobCountCanonicalServiceListResponses, IntBlockCanonical, IntBlockCanonicalServiceGetData, IntBlockCanonicalServiceGetError, IntBlockCanonicalServiceGetErrors, IntBlockCanonicalServiceGetResponse, IntBlockCanonicalServiceGetResponses, IntBlockCanonicalServiceListData, IntBlockCanonicalServiceListError, IntBlockCanonicalServiceListErrors, IntBlockCanonicalServiceListResponse, IntBlockCanonicalServiceListResponses, IntBlockMevCanonical, IntBlockMevCanonicalServiceGetData, IntBlockMevCanonicalServiceGetError, IntBlockMevCanonicalServiceGetErrors, IntBlockMevCanonicalServiceGetResponse, IntBlockMevCanonicalServiceGetResponses, IntBlockMevCanonicalServiceListData, IntBlockMevCanonicalServiceListError, IntBlockMevCanonicalServiceListErrors, IntBlockMevCanonicalServiceListResponse, IntBlockMevCanonicalServiceListResponses, IntBlockOpcodeGas, IntBlockOpcodeGasServiceGetData, IntBlockOpcodeGasServiceGetError, IntBlockOpcodeGasServiceGetErrors, IntBlockOpcodeGasServiceGetResponse, IntBlockOpcodeGasServiceGetResponses, IntBlockOpcodeGasServiceListData, IntBlockOpcodeGasServiceListError, IntBlockOpcodeGasServiceListErrors, IntBlockOpcodeGasServiceListResponse, IntBlockOpcodeGasServiceListResponses, IntBlockProposerCanonical, IntBlockProposerCanonicalServiceGetData, IntBlockProposerCanonicalServiceGetError, IntBlockProposerCanonicalServiceGetErrors, IntBlockProposerCanonicalServiceGetResponse, IntBlockProposerCanonicalServiceGetResponses, IntBlockProposerCanonicalServiceListData, IntBlockProposerCanonicalServiceListError, IntBlockProposerCanonicalServiceListErrors, IntBlockProposerCanonicalServiceListResponse, IntBlockProposerCanonicalServiceListResponses, IntBlockReceiptSize, IntBlockReceiptSizeServiceGetData, IntBlockReceiptSizeServiceGetError, IntBlockReceiptSizeServiceGetErrors, IntBlockReceiptSizeServiceGetResponse, IntBlockReceiptSizeServiceGetResponses, IntBlockReceiptSizeServiceListData, IntBlockReceiptSizeServiceListError, IntBlockReceiptSizeServiceListErrors, IntBlockReceiptSizeServiceListResponse, IntBlockReceiptSizeServiceListResponses, IntBlockResourceGas, IntBlockResourceGasServiceGetData, IntBlockResourceGasServiceGetError, IntBlockResourceGasServiceGetErrors, IntBlockResourceGasServiceGetResponse, IntBlockResourceGasServiceGetResponses, IntBlockResourceGasServiceListData, IntBlockResourceGasServiceListError, IntBlockResourceGasServiceListErrors, IntBlockResourceGasServiceListResponse, IntBlockResourceGasServiceListResponses, IntContractCreation, IntContractCreationServiceGetData, IntContractCreationServiceGetError, IntContractCreationServiceGetErrors, IntContractCreationServiceGetResponse, IntContractCreationServiceGetResponses, IntContractCreationServiceListData, IntContractCreationServiceListError, IntContractCreationServiceListErrors, IntContractCreationServiceListResponse, IntContractCreationServiceListResponses, IntContractSelfdestruct, IntContractSelfdestructServiceGetData, IntContractSelfdestructServiceGetError, IntContractSelfdestructServiceGetErrors, IntContractSelfdestructServiceGetResponse, IntContractSelfdestructServiceGetResponses, IntContractSelfdestructServiceListData, IntContractSelfdestructServiceListError, IntContractSelfdestructServiceListErrors, IntContractSelfdestructServiceListResponse, IntContractSelfdestructServiceListResponses, IntContractStorageExpiry12m, IntContractStorageExpiry12mServiceGetData, IntContractStorageExpiry12mServiceGetError, IntContractStorageExpiry12mServiceGetErrors, IntContractStorageExpiry12mServiceGetResponse, IntContractStorageExpiry12mServiceGetResponses, IntContractStorageExpiry12mServiceListData, IntContractStorageExpiry12mServiceListError, IntContractStorageExpiry12mServiceListErrors, IntContractStorageExpiry12mServiceListResponse, IntContractStorageExpiry12mServiceListResponses, IntContractStorageExpiry18m, IntContractStorageExpiry18mServiceGetData, IntContractStorageExpiry18mServiceGetError, IntContractStorageExpiry18mServiceGetErrors, IntContractStorageExpiry18mServiceGetResponse, IntContractStorageExpiry18mServiceGetResponses, IntContractStorageExpiry18mServiceListData, IntContractStorageExpiry18mServiceListError, IntContractStorageExpiry18mServiceListErrors, IntContractStorageExpiry18mServiceListResponse, IntContractStorageExpiry18mServiceListResponses, IntContractStorageExpiry1m, IntContractStorageExpiry1mServiceGetData, IntContractStorageExpiry1mServiceGetError, IntContractStorageExpiry1mServiceGetErrors, IntContractStorageExpiry1mServiceGetResponse, IntContractStorageExpiry1mServiceGetResponses, IntContractStorageExpiry1mServiceListData, IntContractStorageExpiry1mServiceListError, IntContractStorageExpiry1mServiceListErrors, IntContractStorageExpiry1mServiceListResponse, IntContractStorageExpiry1mServiceListResponses, IntContractStorageExpiry24m, IntContractStorageExpiry24mServiceGetData, IntContractStorageExpiry24mServiceGetError, IntContractStorageExpiry24mServiceGetErrors, IntContractStorageExpiry24mServiceGetResponse, IntContractStorageExpiry24mServiceGetResponses, IntContractStorageExpiry24mServiceListData, IntContractStorageExpiry24mServiceListError, IntContractStorageExpiry24mServiceListErrors, IntContractStorageExpiry24mServiceListResponse, IntContractStorageExpiry24mServiceListResponses, IntContractStorageExpiry6m, IntContractStorageExpiry6mServiceGetData, IntContractStorageExpiry6mServiceGetError, IntContractStorageExpiry6mServiceGetErrors, IntContractStorageExpiry6mServiceGetResponse, IntContractStorageExpiry6mServiceGetResponses, IntContractStorageExpiry6mServiceListData, IntContractStorageExpiry6mServiceListError, IntContractStorageExpiry6mServiceListErrors, IntContractStorageExpiry6mServiceListResponse, IntContractStorageExpiry6mServiceListResponses, IntContractStorageNextTouch, IntContractStorageNextTouchServiceGetData, IntContractStorageNextTouchServiceGetError, IntContractStorageNextTouchServiceGetErrors, IntContractStorageNextTouchServiceGetResponse, IntContractStorageNextTouchServiceGetResponses, IntContractStorageNextTouchServiceListData, IntContractStorageNextTouchServiceListError, IntContractStorageNextTouchServiceListErrors, IntContractStorageNextTouchServiceListResponse, IntContractStorageNextTouchServiceListResponses, IntContractStorageReactivation12m, IntContractStorageReactivation12mServiceGetData, IntContractStorageReactivation12mServiceGetError, IntContractStorageReactivation12mServiceGetErrors, IntContractStorageReactivation12mServiceGetResponse, IntContractStorageReactivation12mServiceGetResponses, IntContractStorageReactivation12mServiceListData, IntContractStorageReactivation12mServiceListError, IntContractStorageReactivation12mServiceListErrors, IntContractStorageReactivation12mServiceListResponse, IntContractStorageReactivation12mServiceListResponses, IntContractStorageReactivation18m, IntContractStorageReactivation18mServiceGetData, IntContractStorageReactivation18mServiceGetError, IntContractStorageReactivation18mServiceGetErrors, IntContractStorageReactivation18mServiceGetResponse, IntContractStorageReactivation18mServiceGetResponses, IntContractStorageReactivation18mServiceListData, IntContractStorageReactivation18mServiceListError, IntContractStorageReactivation18mServiceListErrors, IntContractStorageReactivation18mServiceListResponse, IntContractStorageReactivation18mServiceListResponses, IntContractStorageReactivation1m, IntContractStorageReactivation1mServiceGetData, IntContractStorageReactivation1mServiceGetError, IntContractStorageReactivation1mServiceGetErrors, IntContractStorageReactivation1mServiceGetResponse, IntContractStorageReactivation1mServiceGetResponses, IntContractStorageReactivation1mServiceListData, IntContractStorageReactivation1mServiceListError, IntContractStorageReactivation1mServiceListErrors, IntContractStorageReactivation1mServiceListResponse, IntContractStorageReactivation1mServiceListResponses, IntContractStorageReactivation24m, IntContractStorageReactivation24mServiceGetData, IntContractStorageReactivation24mServiceGetError, IntContractStorageReactivation24mServiceGetErrors, IntContractStorageReactivation24mServiceGetResponse, IntContractStorageReactivation24mServiceGetResponses, IntContractStorageReactivation24mServiceListData, IntContractStorageReactivation24mServiceListError, IntContractStorageReactivation24mServiceListErrors, IntContractStorageReactivation24mServiceListResponse, IntContractStorageReactivation24mServiceListResponses, IntContractStorageReactivation6m, IntContractStorageReactivation6mServiceGetData, IntContractStorageReactivation6mServiceGetError, IntContractStorageReactivation6mServiceGetErrors, IntContractStorageReactivation6mServiceGetResponse, IntContractStorageReactivation6mServiceGetResponses, IntContractStorageReactivation6mServiceListData, IntContractStorageReactivation6mServiceListError, IntContractStorageReactivation6mServiceListErrors, IntContractStorageReactivation6mServiceListResponse, IntContractStorageReactivation6mServiceListResponses, IntContractStorageState, IntContractStorageStateByAddress, IntContractStorageStateByAddressServiceGetData, IntContractStorageStateByAddressServiceGetError, IntContractStorageStateByAddressServiceGetErrors, IntContractStorageStateByAddressServiceGetResponse, IntContractStorageStateByAddressServiceGetResponses, IntContractStorageStateByAddressServiceListData, IntContractStorageStateByAddressServiceListError, IntContractStorageStateByAddressServiceListErrors, IntContractStorageStateByAddressServiceListResponse, IntContractStorageStateByAddressServiceListResponses, IntContractStorageStateByBlock, IntContractStorageStateByBlockServiceGetData, IntContractStorageStateByBlockServiceGetError, IntContractStorageStateByBlockServiceGetErrors, IntContractStorageStateByBlockServiceGetResponse, IntContractStorageStateByBlockServiceGetResponses, IntContractStorageStateByBlockServiceListData, IntContractStorageStateByBlockServiceListError, IntContractStorageStateByBlockServiceListErrors, IntContractStorageStateByBlockServiceListResponse, IntContractStorageStateByBlockServiceListResponses, IntContractStorageStateServiceGetData, IntContractStorageStateServiceGetError, IntContractStorageStateServiceGetErrors, IntContractStorageStateServiceGetResponse, IntContractStorageStateServiceGetResponses, IntContractStorageStateServiceListData, IntContractStorageStateServiceListError, IntContractStorageStateServiceListErrors, IntContractStorageStateServiceListResponse, IntContractStorageStateServiceListResponses, IntContractStorageStateWithExpiry, IntContractStorageStateWithExpiryByAddress, IntContractStorageStateWithExpiryByAddressServiceGetData, IntContractStorageStateWithExpiryByAddressServiceGetError, IntContractStorageStateWithExpiryByAddressServiceGetErrors, IntContractStorageStateWithExpiryByAddressServiceGetResponse, IntContractStorageStateWithExpiryByAddressServiceGetResponses, IntContractStorageStateWithExpiryByAddressServiceListData, IntContractStorageStateWithExpiryByAddressServiceListError, IntContractStorageStateWithExpiryByAddressServiceListErrors, IntContractStorageStateWithExpiryByAddressServiceListResponse, IntContractStorageStateWithExpiryByAddressServiceListResponses, IntContractStorageStateWithExpiryByBlock, IntContractStorageStateWithExpiryByBlockServiceGetData, IntContractStorageStateWithExpiryByBlockServiceGetError, IntContractStorageStateWithExpiryByBlockServiceGetErrors, IntContractStorageStateWithExpiryByBlockServiceGetResponse, IntContractStorageStateWithExpiryByBlockServiceGetResponses, IntContractStorageStateWithExpiryByBlockServiceListData, IntContractStorageStateWithExpiryByBlockServiceListError, IntContractStorageStateWithExpiryByBlockServiceListErrors, IntContractStorageStateWithExpiryByBlockServiceListResponse, IntContractStorageStateWithExpiryByBlockServiceListResponses, IntContractStorageStateWithExpiryServiceGetData, IntContractStorageStateWithExpiryServiceGetError, IntContractStorageStateWithExpiryServiceGetErrors, IntContractStorageStateWithExpiryServiceGetResponse, IntContractStorageStateWithExpiryServiceGetResponses, IntContractStorageStateWithExpiryServiceListData, IntContractStorageStateWithExpiryServiceListError, IntContractStorageStateWithExpiryServiceListErrors, IntContractStorageStateWithExpiryServiceListResponse, IntContractStorageStateWithExpiryServiceListResponses, IntCustodyProbe, IntCustodyProbeOrderBySlot, IntCustodyProbeOrderBySlotServiceGetData, IntCustodyProbeOrderBySlotServiceGetError, IntCustodyProbeOrderBySlotServiceGetErrors, IntCustodyProbeOrderBySlotServiceGetResponse, IntCustodyProbeOrderBySlotServiceGetResponses, IntCustodyProbeOrderBySlotServiceListData, IntCustodyProbeOrderBySlotServiceListError, IntCustodyProbeOrderBySlotServiceListErrors, IntCustodyProbeOrderBySlotServiceListResponse, IntCustodyProbeOrderBySlotServiceListResponses, IntCustodyProbeServiceGetData, IntCustodyProbeServiceGetError, IntCustodyProbeServiceGetErrors, IntCustodyProbeServiceGetResponse, IntCustodyProbeServiceGetResponses, IntCustodyProbeServiceListData, IntCustodyProbeServiceListError, IntCustodyProbeServiceListErrors, IntCustodyProbeServiceListResponse, IntCustodyProbeServiceListResponses, IntEngineGetBlobs, IntEngineGetBlobsServiceGetData, IntEngineGetBlobsServiceGetError, IntEngineGetBlobsServiceGetErrors, IntEngineGetBlobsServiceGetResponse, IntEngineGetBlobsServiceGetResponses, IntEngineGetBlobsServiceListData, IntEngineGetBlobsServiceListError, IntEngineGetBlobsServiceListErrors, IntEngineGetBlobsServiceListResponse, IntEngineGetBlobsServiceListResponses, IntEngineNewPayload, IntEngineNewPayloadFastestExecutionByNodeClass, IntEngineNewPayloadFastestExecutionByNodeClassServiceGetData, IntEngineNewPayloadFastestExecutionByNodeClassServiceGetError, IntEngineNewPayloadFastestExecutionByNodeClassServiceGetErrors, IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse, IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponses, IntEngineNewPayloadFastestExecutionByNodeClassServiceListData, IntEngineNewPayloadFastestExecutionByNodeClassServiceListError, IntEngineNewPayloadFastestExecutionByNodeClassServiceListErrors, IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse, IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponses, IntEngineNewPayloadServiceGetData, IntEngineNewPayloadServiceGetError, IntEngineNewPayloadServiceGetErrors, IntEngineNewPayloadServiceGetResponse, IntEngineNewPayloadServiceGetResponses, IntEngineNewPayloadServiceListData, IntEngineNewPayloadServiceListError, IntEngineNewPayloadServiceListErrors, IntEngineNewPayloadServiceListResponse, IntEngineNewPayloadServiceListResponses, IntExecutionBlockByDate, IntExecutionBlockByDateServiceGetData, IntExecutionBlockByDateServiceGetError, IntExecutionBlockByDateServiceGetErrors, IntExecutionBlockByDateServiceGetResponse, IntExecutionBlockByDateServiceGetResponses, IntExecutionBlockByDateServiceListData, IntExecutionBlockByDateServiceListError, IntExecutionBlockByDateServiceListErrors, IntExecutionBlockByDateServiceListResponse, IntExecutionBlockByDateServiceListResponses, IntExecutionStateSizeByBlock, IntExecutionStateSizeByBlockServiceGetData, IntExecutionStateSizeByBlockServiceGetError, IntExecutionStateSizeByBlockServiceGetErrors, IntExecutionStateSizeByBlockServiceGetResponse, IntExecutionStateSizeByBlockServiceGetResponses, IntExecutionStateSizeByBlockServiceListData, IntExecutionStateSizeByBlockServiceListError, IntExecutionStateSizeByBlockServiceListErrors, IntExecutionStateSizeByBlockServiceListResponse, IntExecutionStateSizeByBlockServiceListResponses, IntRocketpoolMegapool, IntRocketpoolMegapoolServiceGetData, IntRocketpoolMegapoolServiceGetError, IntRocketpoolMegapoolServiceGetErrors, IntRocketpoolMegapoolServiceGetResponse, IntRocketpoolMegapoolServiceGetResponses, IntRocketpoolMegapoolServiceListData, IntRocketpoolMegapoolServiceListError, IntRocketpoolMegapoolServiceListErrors, IntRocketpoolMegapoolServiceListResponse, IntRocketpoolMegapoolServiceListResponses, IntRocketpoolMinipool, IntRocketpoolMinipoolServiceGetData, IntRocketpoolMinipoolServiceGetError, IntRocketpoolMinipoolServiceGetErrors, IntRocketpoolMinipoolServiceGetResponse, IntRocketpoolMinipoolServiceGetResponses, IntRocketpoolMinipoolServiceListData, IntRocketpoolMinipoolServiceListError, IntRocketpoolMinipoolServiceListErrors, IntRocketpoolMinipoolServiceListResponse, IntRocketpoolMinipoolServiceListResponses, IntRocketpoolNodeEvent, IntRocketpoolNodeEventServiceGetData, IntRocketpoolNodeEventServiceGetError, IntRocketpoolNodeEventServiceGetErrors, IntRocketpoolNodeEventServiceGetResponse, IntRocketpoolNodeEventServiceGetResponses, IntRocketpoolNodeEventServiceListData, IntRocketpoolNodeEventServiceListError, IntRocketpoolNodeEventServiceListErrors, IntRocketpoolNodeEventServiceListResponse, IntRocketpoolNodeEventServiceListResponses, IntRocketpoolNodeTimezone, IntRocketpoolNodeTimezoneServiceGetData, IntRocketpoolNodeTimezoneServiceGetError, IntRocketpoolNodeTimezoneServiceGetErrors, IntRocketpoolNodeTimezoneServiceGetResponse, IntRocketpoolNodeTimezoneServiceGetResponses, IntRocketpoolNodeTimezoneServiceListData, IntRocketpoolNodeTimezoneServiceListError, IntRocketpoolNodeTimezoneServiceListErrors, IntRocketpoolNodeTimezoneServiceListResponse, IntRocketpoolNodeTimezoneServiceListResponses, IntStorageSelfdestructDiffs, IntStorageSelfdestructDiffsServiceGetData, IntStorageSelfdestructDiffsServiceGetError, IntStorageSelfdestructDiffsServiceGetErrors, IntStorageSelfdestructDiffsServiceGetResponse, IntStorageSelfdestructDiffsServiceGetResponses, IntStorageSelfdestructDiffsServiceListData, IntStorageSelfdestructDiffsServiceListError, IntStorageSelfdestructDiffsServiceListErrors, IntStorageSelfdestructDiffsServiceListResponse, IntStorageSelfdestructDiffsServiceListResponses, IntStorageSlotDiff, IntStorageSlotDiffByAddressSlot, IntStorageSlotDiffByAddressSlotServiceGetData, IntStorageSlotDiffByAddressSlotServiceGetError, IntStorageSlotDiffByAddressSlotServiceGetErrors, IntStorageSlotDiffByAddressSlotServiceGetResponse, IntStorageSlotDiffByAddressSlotServiceGetResponses, IntStorageSlotDiffByAddressSlotServiceListData, IntStorageSlotDiffByAddressSlotServiceListError, IntStorageSlotDiffByAddressSlotServiceListErrors, IntStorageSlotDiffByAddressSlotServiceListResponse, IntStorageSlotDiffByAddressSlotServiceListResponses, IntStorageSlotDiffServiceGetData, IntStorageSlotDiffServiceGetError, IntStorageSlotDiffServiceGetErrors, IntStorageSlotDiffServiceGetResponse, IntStorageSlotDiffServiceGetResponses, IntStorageSlotDiffServiceListData, IntStorageSlotDiffServiceListError, IntStorageSlotDiffServiceListErrors, IntStorageSlotDiffServiceListResponse, IntStorageSlotDiffServiceListResponses, IntStorageSlotExpiry12m, IntStorageSlotExpiry12mServiceGetData, IntStorageSlotExpiry12mServiceGetError, IntStorageSlotExpiry12mServiceGetErrors, IntStorageSlotExpiry12mServiceGetResponse, IntStorageSlotExpiry12mServiceGetResponses, IntStorageSlotExpiry12mServiceListData, IntStorageSlotExpiry12mServiceListError, IntStorageSlotExpiry12mServiceListErrors, IntStorageSlotExpiry12mServiceListResponse, IntStorageSlotExpiry12mServiceListResponses, IntStorageSlotExpiry18m, IntStorageSlotExpiry18mServiceGetData, IntStorageSlotExpiry18mServiceGetError, IntStorageSlotExpiry18mServiceGetErrors, IntStorageSlotExpiry18mServiceGetResponse, IntStorageSlotExpiry18mServiceGetResponses, IntStorageSlotExpiry18mServiceListData, IntStorageSlotExpiry18mServiceListError, IntStorageSlotExpiry18mServiceListErrors, IntStorageSlotExpiry18mServiceListResponse, IntStorageSlotExpiry18mServiceListResponses, IntStorageSlotExpiry1m, IntStorageSlotExpiry1mServiceGetData, IntStorageSlotExpiry1mServiceGetError, IntStorageSlotExpiry1mServiceGetErrors, IntStorageSlotExpiry1mServiceGetResponse, IntStorageSlotExpiry1mServiceGetResponses, IntStorageSlotExpiry1mServiceListData, IntStorageSlotExpiry1mServiceListError, IntStorageSlotExpiry1mServiceListErrors, IntStorageSlotExpiry1mServiceListResponse, IntStorageSlotExpiry1mServiceListResponses, IntStorageSlotExpiry24m, IntStorageSlotExpiry24mServiceGetData, IntStorageSlotExpiry24mServiceGetError, IntStorageSlotExpiry24mServiceGetErrors, IntStorageSlotExpiry24mServiceGetResponse, IntStorageSlotExpiry24mServiceGetResponses, IntStorageSlotExpiry24mServiceListData, IntStorageSlotExpiry24mServiceListError, IntStorageSlotExpiry24mServiceListErrors, IntStorageSlotExpiry24mServiceListResponse, IntStorageSlotExpiry24mServiceListResponses, IntStorageSlotExpiry6m, IntStorageSlotExpiry6mServiceGetData, IntStorageSlotExpiry6mServiceGetError, IntStorageSlotExpiry6mServiceGetErrors, IntStorageSlotExpiry6mServiceGetResponse, IntStorageSlotExpiry6mServiceGetResponses, IntStorageSlotExpiry6mServiceListData, IntStorageSlotExpiry6mServiceListError, IntStorageSlotExpiry6mServiceListErrors, IntStorageSlotExpiry6mServiceListResponse, IntStorageSlotExpiry6mServiceListResponses, IntStorageSlotLifecycle, IntStorageSlotLifecycleBoundary, IntStorageSlotLifecycleBoundaryServiceGetData, IntStorageSlotLifecycleBoundaryServiceGetError, IntStorageSlotLifecycleBoundaryServiceGetErrors, IntStorageSlotLifecycleBoundaryServiceGetResponse, IntStorageSlotLifecycleBoundaryServiceGetResponses, IntStorageSlotLifecycleBoundaryServiceListData, IntStorageSlotLifecycleBoundaryServiceListError, IntStorageSlotLifecycleBoundaryServiceListErrors, IntStorageSlotLifecycleBoundaryServiceListResponse, IntStorageSlotLifecycleBoundaryServiceListResponses, IntStorageSlotLifecycleServiceGetData, IntStorageSlotLifecycleServiceGetError, IntStorageSlotLifecycleServiceGetErrors, IntStorageSlotLifecycleServiceGetResponse, IntStorageSlotLifecycleServiceGetResponses, IntStorageSlotLifecycleServiceListData, IntStorageSlotLifecycleServiceListError, IntStorageSlotLifecycleServiceListErrors, IntStorageSlotLifecycleServiceListResponse, IntStorageSlotLifecycleServiceListResponses, IntStorageSlotNextTouch, IntStorageSlotNextTouchServiceGetData, IntStorageSlotNextTouchServiceGetError, IntStorageSlotNextTouchServiceGetErrors, IntStorageSlotNextTouchServiceGetResponse, IntStorageSlotNextTouchServiceGetResponses, IntStorageSlotNextTouchServiceListData, IntStorageSlotNextTouchServiceListError, IntStorageSlotNextTouchServiceListErrors, IntStorageSlotNextTouchServiceListResponse, IntStorageSlotNextTouchServiceListResponses, IntStorageSlotReactivation12m, IntStorageSlotReactivation12mServiceGetData, IntStorageSlotReactivation12mServiceGetError, IntStorageSlotReactivation12mServiceGetErrors, IntStorageSlotReactivation12mServiceGetResponse, IntStorageSlotReactivation12mServiceGetResponses, IntStorageSlotReactivation12mServiceListData, IntStorageSlotReactivation12mServiceListError, IntStorageSlotReactivation12mServiceListErrors, IntStorageSlotReactivation12mServiceListResponse, IntStorageSlotReactivation12mServiceListResponses, IntStorageSlotReactivation18m, IntStorageSlotReactivation18mServiceGetData, IntStorageSlotReactivation18mServiceGetError, IntStorageSlotReactivation18mServiceGetErrors, IntStorageSlotReactivation18mServiceGetResponse, IntStorageSlotReactivation18mServiceGetResponses, IntStorageSlotReactivation18mServiceListData, IntStorageSlotReactivation18mServiceListError, IntStorageSlotReactivation18mServiceListErrors, IntStorageSlotReactivation18mServiceListResponse, IntStorageSlotReactivation18mServiceListResponses, IntStorageSlotReactivation1m, IntStorageSlotReactivation1mServiceGetData, IntStorageSlotReactivation1mServiceGetError, IntStorageSlotReactivation1mServiceGetErrors, IntStorageSlotReactivation1mServiceGetResponse, IntStorageSlotReactivation1mServiceGetResponses, IntStorageSlotReactivation1mServiceListData, IntStorageSlotReactivation1mServiceListError, IntStorageSlotReactivation1mServiceListErrors, IntStorageSlotReactivation1mServiceListResponse, IntStorageSlotReactivation1mServiceListResponses, IntStorageSlotReactivation24m, IntStorageSlotReactivation24mServiceGetData, IntStorageSlotReactivation24mServiceGetError, IntStorageSlotReactivation24mServiceGetErrors, IntStorageSlotReactivation24mServiceGetResponse, IntStorageSlotReactivation24mServiceGetResponses, IntStorageSlotReactivation24mServiceListData, IntStorageSlotReactivation24mServiceListError, IntStorageSlotReactivation24mServiceListErrors, IntStorageSlotReactivation24mServiceListResponse, IntStorageSlotReactivation24mServiceListResponses, IntStorageSlotReactivation6m, IntStorageSlotReactivation6mServiceGetData, IntStorageSlotReactivation6mServiceGetError, IntStorageSlotReactivation6mServiceGetErrors, IntStorageSlotReactivation6mServiceGetResponse, IntStorageSlotReactivation6mServiceGetResponses, IntStorageSlotReactivation6mServiceListData, IntStorageSlotReactivation6mServiceListError, IntStorageSlotReactivation6mServiceListErrors, IntStorageSlotReactivation6mServiceListResponse, IntStorageSlotReactivation6mServiceListResponses, IntStorageSlotRead, IntStorageSlotReadServiceGetData, IntStorageSlotReadServiceGetError, IntStorageSlotReadServiceGetErrors, IntStorageSlotReadServiceGetResponse, IntStorageSlotReadServiceGetResponses, IntStorageSlotReadServiceListData, IntStorageSlotReadServiceListError, IntStorageSlotReadServiceListErrors, IntStorageSlotReadServiceListResponse, IntStorageSlotReadServiceListResponses, IntStorageSlotState, IntStorageSlotStateByAddress, IntStorageSlotStateByAddressServiceGetData, IntStorageSlotStateByAddressServiceGetError, IntStorageSlotStateByAddressServiceGetErrors, IntStorageSlotStateByAddressServiceGetResponse, IntStorageSlotStateByAddressServiceGetResponses, IntStorageSlotStateByAddressServiceListData, IntStorageSlotStateByAddressServiceListError, IntStorageSlotStateByAddressServiceListErrors, IntStorageSlotStateByAddressServiceListResponse, IntStorageSlotStateByAddressServiceListResponses, IntStorageSlotStateByBlock, IntStorageSlotStateByBlockServiceGetData, IntStorageSlotStateByBlockServiceGetError, IntStorageSlotStateByBlockServiceGetErrors, IntStorageSlotStateByBlockServiceGetResponse, IntStorageSlotStateByBlockServiceGetResponses, IntStorageSlotStateByBlockServiceListData, IntStorageSlotStateByBlockServiceListError, IntStorageSlotStateByBlockServiceListErrors, IntStorageSlotStateByBlockServiceListResponse, IntStorageSlotStateByBlockServiceListResponses, IntStorageSlotStateServiceGetData, IntStorageSlotStateServiceGetError, IntStorageSlotStateServiceGetErrors, IntStorageSlotStateServiceGetResponse, IntStorageSlotStateServiceGetResponses, IntStorageSlotStateServiceListData, IntStorageSlotStateServiceListError, IntStorageSlotStateServiceListErrors, IntStorageSlotStateServiceListResponse, IntStorageSlotStateServiceListResponses, IntStorageSlotStateWithExpiry, IntStorageSlotStateWithExpiryByAddress, IntStorageSlotStateWithExpiryByAddressServiceGetData, IntStorageSlotStateWithExpiryByAddressServiceGetError, IntStorageSlotStateWithExpiryByAddressServiceGetErrors, IntStorageSlotStateWithExpiryByAddressServiceGetResponse, IntStorageSlotStateWithExpiryByAddressServiceGetResponses, IntStorageSlotStateWithExpiryByAddressServiceListData, IntStorageSlotStateWithExpiryByAddressServiceListError, IntStorageSlotStateWithExpiryByAddressServiceListErrors, IntStorageSlotStateWithExpiryByAddressServiceListResponse, IntStorageSlotStateWithExpiryByAddressServiceListResponses, IntStorageSlotStateWithExpiryByBlock, IntStorageSlotStateWithExpiryByBlockServiceGetData, IntStorageSlotStateWithExpiryByBlockServiceGetError, IntStorageSlotStateWithExpiryByBlockServiceGetErrors, IntStorageSlotStateWithExpiryByBlockServiceGetResponse, IntStorageSlotStateWithExpiryByBlockServiceGetResponses, IntStorageSlotStateWithExpiryByBlockServiceListData, IntStorageSlotStateWithExpiryByBlockServiceListError, IntStorageSlotStateWithExpiryByBlockServiceListErrors, IntStorageSlotStateWithExpiryByBlockServiceListResponse, IntStorageSlotStateWithExpiryByBlockServiceListResponses, IntStorageSlotStateWithExpiryServiceGetData, IntStorageSlotStateWithExpiryServiceGetError, IntStorageSlotStateWithExpiryServiceGetErrors, IntStorageSlotStateWithExpiryServiceGetResponse, IntStorageSlotStateWithExpiryServiceGetResponses, IntStorageSlotStateWithExpiryServiceListData, IntStorageSlotStateWithExpiryServiceListError, IntStorageSlotStateWithExpiryServiceListErrors, IntStorageSlotStateWithExpiryServiceListResponse, IntStorageSlotStateWithExpiryServiceListResponses, IntTokenContractStorageStateByBlock, IntTokenContractStorageStateByBlockServiceGetData, IntTokenContractStorageStateByBlockServiceGetError, IntTokenContractStorageStateByBlockServiceGetErrors, IntTokenContractStorageStateByBlockServiceGetResponse, IntTokenContractStorageStateByBlockServiceGetResponses, IntTokenContractStorageStateByBlockServiceListData, IntTokenContractStorageStateByBlockServiceListError, IntTokenContractStorageStateByBlockServiceListErrors, IntTokenContractStorageStateByBlockServiceListResponse, IntTokenContractStorageStateByBlockServiceListResponses, IntTransactionCallFrame, IntTransactionCallFrameOpcodeGas, IntTransactionCallFrameOpcodeGasServiceGetData, IntTransactionCallFrameOpcodeGasServiceGetError, IntTransactionCallFrameOpcodeGasServiceGetErrors, IntTransactionCallFrameOpcodeGasServiceGetResponse, IntTransactionCallFrameOpcodeGasServiceGetResponses, IntTransactionCallFrameOpcodeGasServiceListData, IntTransactionCallFrameOpcodeGasServiceListError, IntTransactionCallFrameOpcodeGasServiceListErrors, IntTransactionCallFrameOpcodeGasServiceListResponse, IntTransactionCallFrameOpcodeGasServiceListResponses, IntTransactionCallFrameOpcodeResourceGas, IntTransactionCallFrameOpcodeResourceGasServiceGetData, IntTransactionCallFrameOpcodeResourceGasServiceGetError, IntTransactionCallFrameOpcodeResourceGasServiceGetErrors, IntTransactionCallFrameOpcodeResourceGasServiceGetResponse, IntTransactionCallFrameOpcodeResourceGasServiceGetResponses, IntTransactionCallFrameOpcodeResourceGasServiceListData, IntTransactionCallFrameOpcodeResourceGasServiceListError, IntTransactionCallFrameOpcodeResourceGasServiceListErrors, IntTransactionCallFrameOpcodeResourceGasServiceListResponse, IntTransactionCallFrameOpcodeResourceGasServiceListResponses, IntTransactionCallFrameServiceGetData, IntTransactionCallFrameServiceGetError, IntTransactionCallFrameServiceGetErrors, IntTransactionCallFrameServiceGetResponse, IntTransactionCallFrameServiceGetResponses, IntTransactionCallFrameServiceListData, IntTransactionCallFrameServiceListError, IntTransactionCallFrameServiceListErrors, IntTransactionCallFrameServiceListResponse, IntTransactionCallFrameServiceListResponses, IntTransactionOpcodeGas, IntTransactionOpcodeGasServiceGetData, IntTransactionOpcodeGasServiceGetError, IntTransactionOpcodeGasServiceGetErrors, IntTransactionOpcodeGasServiceGetResponse, IntTransactionOpcodeGasServiceGetResponses, IntTransactionOpcodeGasServiceListData, IntTransactionOpcodeGasServiceListError, IntTransactionOpcodeGasServiceListErrors, IntTransactionOpcodeGasServiceListResponse, IntTransactionOpcodeGasServiceListResponses, IntTransactionReceiptSize, IntTransactionReceiptSizeServiceGetData, IntTransactionReceiptSizeServiceGetError, IntTransactionReceiptSizeServiceGetErrors, IntTransactionReceiptSizeServiceGetResponse, IntTransactionReceiptSizeServiceGetResponses, IntTransactionReceiptSizeServiceListData, IntTransactionReceiptSizeServiceListError, IntTransactionReceiptSizeServiceListErrors, IntTransactionReceiptSizeServiceListResponse, IntTransactionReceiptSizeServiceListResponses, IntTransactionResourceGas, IntTransactionResourceGasServiceGetData, IntTransactionResourceGasServiceGetError, IntTransactionResourceGasServiceGetErrors, IntTransactionResourceGasServiceGetResponse, IntTransactionResourceGasServiceGetResponses, IntTransactionResourceGasServiceListData, IntTransactionResourceGasServiceListError, IntTransactionResourceGasServiceListErrors, IntTransactionResourceGasServiceListResponse, IntTransactionResourceGasServiceListResponses, ListAdminCbtIncrementalResponse, ListDimBlockBlobSubmitterResponse, ListDimContractOwnerResponse, ListDimFunctionSignatureResponse, ListDimNodeResponse, ListDimRocketpoolNodeResponse, ListDimTokenContractResponse, ListDimValidatorPubkeyResponse, ListDimValidatorStatusResponse, ListFctAttestationCorrectnessByValidatorCanonicalResponse, ListFctAttestationCorrectnessByValidatorHeadResponse, ListFctAttestationCorrectnessCanonicalResponse, ListFctAttestationCorrectnessHeadResponse, ListFctAttestationFirstSeenByValidatorResponse, ListFctAttestationFirstSeenChunked50MsResponse, ListFctAttestationInclusionDelayDailyResponse, ListFctAttestationInclusionDelayHourlyResponse, ListFctAttestationLivenessByEntityHeadResponse, ListFctAttestationObservationByNodeResponse, ListFctAttestationParticipationRateDailyResponse, ListFctAttestationParticipationRateHourlyResponse, ListFctAttestationVoteCorrectnessByValidatorDailyResponse, ListFctAttestationVoteCorrectnessByValidatorHourlyResponse, ListFctAttestationVoteCorrectnessByValidatorResponse, ListFctBlobCountDailyResponse, ListFctBlobCountHourlyResponse, ListFctBlockBlobCountHeadResponse, ListFctBlockBlobCountResponse, ListFctBlockBlobFirstSeenByNodeResponse, ListFctBlockBlobHeadResponse, ListFctBlockDataColumnSidecarFirstSeenByNodeResponse, ListFctBlockDataColumnSidecarFirstSeenResponse, ListFctBlockFirstSeenByNodeResponse, ListFctBlockHeadResponse, ListFctBlockMevHeadResponse, ListFctBlockMevResponse, ListFctBlockProposalStatusDailyResponse, ListFctBlockProposalStatusHourlyResponse, ListFctBlockProposerByValidatorResponse, ListFctBlockProposerEntityResponse, ListFctBlockProposerHeadResponse, ListFctBlockProposerResponse, ListFctBlockResponse, ListFctContractStorageStateByAddressDailyResponse, ListFctContractStorageStateByAddressHourlyResponse, ListFctContractStorageStateByBlockDailyResponse, ListFctContractStorageStateByBlockHourlyResponse, ListFctContractStorageStateWithExpiryByAddressDailyResponse, ListFctContractStorageStateWithExpiryByAddressHourlyResponse, ListFctContractStorageStateWithExpiryByBlockDailyResponse, ListFctContractStorageStateWithExpiryByBlockHourlyResponse, ListFctDataColumnAvailabilityByEpochResponse, ListFctDataColumnAvailabilityBySlotBlobResponse, ListFctDataColumnAvailabilityBySlotResponse, ListFctDataColumnAvailabilityDailyResponse, ListFctDataColumnAvailabilityHourlyResponse, ListFctEngineGetBlobsByElClientHourlyResponse, ListFctEngineGetBlobsByElClientResponse, ListFctEngineGetBlobsBySlotResponse, ListFctEngineGetBlobsDurationChunked50MsResponse, ListFctEngineNewPayloadByElClientHourlyResponse, ListFctEngineNewPayloadByElClientResponse, ListFctEngineNewPayloadBySlotResponse, ListFctEngineNewPayloadDurationChunked50MsResponse, ListFctEngineNewPayloadWinrateDailyResponse, ListFctEngineNewPayloadWinrateHourlyResponse, ListFctExecutionGasLimitDailyResponse, ListFctExecutionGasLimitHourlyResponse, ListFctExecutionGasLimitSignallingDailyResponse, ListFctExecutionGasLimitSignallingHourlyResponse, ListFctExecutionGasUsedDailyResponse, ListFctExecutionGasUsedHourlyResponse, ListFctExecutionReceiptSizeDailyResponse, ListFctExecutionReceiptSizeHourlyResponse, ListFctExecutionStateSizeDailyResponse, ListFctExecutionStateSizeHourlyResponse, ListFctExecutionTpsDailyResponse, ListFctExecutionTpsHourlyResponse, ListFctExecutionTransactionsDailyResponse, ListFctExecutionTransactionsHourlyResponse, ListFctHeadFirstSeenByNodeResponse, ListFctHeadVoteCorrectnessRateDailyResponse, ListFctHeadVoteCorrectnessRateHourlyResponse, ListFctMevBidCountByBuilderResponse, ListFctMevBidCountByRelayResponse, ListFctMevBidHighestValueByBuilderChunked50MsResponse, ListFctMissedSlotRateDailyResponse, ListFctMissedSlotRateHourlyResponse, ListFctNodeActiveLast24hResponse, ListFctNodeCpuUtilizationByProcessResponse, ListFctNodeDiskIoByProcessResponse, ListFctNodeMemoryUsageByProcessResponse, ListFctNodeNetworkIoByProcessResponse, ListFctOpcodeGasByOpcodeDailyResponse, ListFctOpcodeGasByOpcodeHourlyResponse, ListFctOpcodeOpsDailyResponse, ListFctOpcodeOpsHourlyResponse, ListFctPreparedBlockResponse, ListFctProposerRewardDailyResponse, ListFctProposerRewardHourlyResponse, ListFctReorgDailyResponse, ListFctReorgHourlyResponse, ListFctRocketpoolValidatorResponse, ListFctStorageSlotStateByAddressDailyResponse, ListFctStorageSlotStateByAddressHourlyResponse, ListFctStorageSlotStateByBlockDailyResponse, ListFctStorageSlotStateByBlockHourlyResponse, ListFctStorageSlotStateWithExpiryByAddressDailyResponse, ListFctStorageSlotStateWithExpiryByAddressHourlyResponse, ListFctStorageSlotStateWithExpiryByBlockDailyResponse, ListFctStorageSlotStateWithExpiryByBlockHourlyResponse, ListFctStorageSlotTop100ByBytesResponse, ListFctStorageSlotTop100BySlotsResponse, ListFctSyncCommitteeParticipationByValidatorDailyResponse, ListFctSyncCommitteeParticipationByValidatorHourlyResponse, ListFctSyncCommitteeParticipationByValidatorResponse, ListFctTokenContractStorageStateByBlockDailyResponse, ListFctValidatorBalanceDailyResponse, ListFctValidatorBalanceHourlyResponse, ListFctValidatorBalanceResponse, ListFctValidatorCountByEntityByStatusDailyResponse, ListIntAttestationAttestedCanonicalResponse, ListIntAttestationAttestedHeadResponse, ListIntAttestationFirstSeenAggregateResponse, ListIntAttestationFirstSeenResponse, ListIntBeaconCommitteeHeadResponse, ListIntBlockBlobCountCanonicalResponse, ListIntBlockCanonicalResponse, ListIntBlockMevCanonicalResponse, ListIntBlockOpcodeGasResponse, ListIntBlockProposerCanonicalResponse, ListIntBlockReceiptSizeResponse, ListIntBlockResourceGasResponse, ListIntContractCreationResponse, ListIntContractSelfdestructResponse, ListIntContractStorageExpiry12mResponse, ListIntContractStorageExpiry18mResponse, ListIntContractStorageExpiry1mResponse, ListIntContractStorageExpiry24mResponse, ListIntContractStorageExpiry6mResponse, ListIntContractStorageNextTouchResponse, ListIntContractStorageReactivation12mResponse, ListIntContractStorageReactivation18mResponse, ListIntContractStorageReactivation1mResponse, ListIntContractStorageReactivation24mResponse, ListIntContractStorageReactivation6mResponse, ListIntContractStorageStateByAddressResponse, ListIntContractStorageStateByBlockResponse, ListIntContractStorageStateResponse, ListIntContractStorageStateWithExpiryByAddressResponse, ListIntContractStorageStateWithExpiryByBlockResponse, ListIntContractStorageStateWithExpiryResponse, ListIntCustodyProbeOrderBySlotResponse, ListIntCustodyProbeResponse, ListIntEngineGetBlobsResponse, ListIntEngineNewPayloadFastestExecutionByNodeClassResponse, ListIntEngineNewPayloadResponse, ListIntExecutionBlockByDateResponse, ListIntExecutionStateSizeByBlockResponse, ListIntRocketpoolMegapoolResponse, ListIntRocketpoolMinipoolResponse, ListIntRocketpoolNodeEventResponse, ListIntRocketpoolNodeTimezoneResponse, ListIntStorageSelfdestructDiffsResponse, ListIntStorageSlotDiffByAddressSlotResponse, ListIntStorageSlotDiffResponse, ListIntStorageSlotExpiry12mResponse, ListIntStorageSlotExpiry18mResponse, ListIntStorageSlotExpiry1mResponse, ListIntStorageSlotExpiry24mResponse, ListIntStorageSlotExpiry6mResponse, ListIntStorageSlotLifecycleBoundaryResponse, ListIntStorageSlotLifecycleResponse, ListIntStorageSlotNextTouchResponse, ListIntStorageSlotReactivation12mResponse, ListIntStorageSlotReactivation18mResponse, ListIntStorageSlotReactivation1mResponse, ListIntStorageSlotReactivation24mResponse, ListIntStorageSlotReactivation6mResponse, ListIntStorageSlotReadResponse, ListIntStorageSlotStateByAddressResponse, ListIntStorageSlotStateByBlockResponse, ListIntStorageSlotStateResponse, ListIntStorageSlotStateWithExpiryByAddressResponse, ListIntStorageSlotStateWithExpiryByBlockResponse, ListIntStorageSlotStateWithExpiryResponse, ListIntTokenContractStorageStateByBlockResponse, ListIntTransactionCallFrameOpcodeGasResponse, ListIntTransactionCallFrameOpcodeResourceGasResponse, ListIntTransactionCallFrameResponse, ListIntTransactionOpcodeGasResponse, ListIntTransactionReceiptSizeResponse, ListIntTransactionResourceGasResponse, Status } from './types.gen'; +export { + adminCbtIncrementalServiceGet, + adminCbtIncrementalServiceList, + adminCbtScheduledServiceGet, + adminCbtScheduledServiceList, + dimBlockBlobSubmitterServiceGet, + dimBlockBlobSubmitterServiceList, + dimContractOwnerServiceGet, + dimContractOwnerServiceList, + dimFunctionSignatureServiceGet, + dimFunctionSignatureServiceList, + dimNodeServiceGet, + dimNodeServiceList, + dimRocketpoolNodeServiceGet, + dimRocketpoolNodeServiceList, + dimTokenContractServiceGet, + dimTokenContractServiceList, + dimValidatorPubkeyServiceGet, + dimValidatorPubkeyServiceList, + dimValidatorStatusServiceGet, + dimValidatorStatusServiceList, + fctAttestationCorrectnessByValidatorCanonicalServiceGet, + fctAttestationCorrectnessByValidatorCanonicalServiceList, + fctAttestationCorrectnessByValidatorHeadServiceGet, + fctAttestationCorrectnessByValidatorHeadServiceList, + fctAttestationCorrectnessByValidatorServiceGet, + fctAttestationCorrectnessByValidatorServiceList, + fctAttestationCorrectnessCanonicalServiceGet, + fctAttestationCorrectnessCanonicalServiceList, + fctAttestationCorrectnessHeadServiceGet, + fctAttestationCorrectnessHeadServiceList, + fctAttestationCorrectnessServiceGet, + fctAttestationCorrectnessServiceList, + fctAttestationFirstSeenByValidatorServiceGet, + fctAttestationFirstSeenByValidatorServiceList, + fctAttestationFirstSeenChunked50MsServiceGet, + fctAttestationFirstSeenChunked50MsServiceList, + fctAttestationInclusionDelayDailyServiceGet, + fctAttestationInclusionDelayDailyServiceList, + fctAttestationInclusionDelayHourlyServiceGet, + fctAttestationInclusionDelayHourlyServiceList, + fctAttestationLivenessByEntityHeadServiceGet, + fctAttestationLivenessByEntityHeadServiceList, + fctAttestationLivenessByEntityServiceGet, + fctAttestationLivenessByEntityServiceList, + fctAttestationObservationByNodeServiceGet, + fctAttestationObservationByNodeServiceList, + fctAttestationParticipationRateDailyServiceGet, + fctAttestationParticipationRateDailyServiceList, + fctAttestationParticipationRateHourlyServiceGet, + fctAttestationParticipationRateHourlyServiceList, + fctAttestationVoteCorrectnessByValidatorDailyServiceGet, + fctAttestationVoteCorrectnessByValidatorDailyServiceList, + fctAttestationVoteCorrectnessByValidatorHourlyServiceGet, + fctAttestationVoteCorrectnessByValidatorHourlyServiceList, + fctAttestationVoteCorrectnessByValidatorServiceGet, + fctAttestationVoteCorrectnessByValidatorServiceList, + fctBlobCountDailyServiceGet, + fctBlobCountDailyServiceList, + fctBlobCountHourlyServiceGet, + fctBlobCountHourlyServiceList, + fctBlockBlobCountHeadServiceGet, + fctBlockBlobCountHeadServiceList, + fctBlockBlobCountServiceGet, + fctBlockBlobCountServiceList, + fctBlockBlobFirstSeenByNodeServiceGet, + fctBlockBlobFirstSeenByNodeServiceList, + fctBlockBlobHeadServiceGet, + fctBlockBlobHeadServiceList, + fctBlockDataColumnSidecarFirstSeenByNodeServiceGet, + fctBlockDataColumnSidecarFirstSeenByNodeServiceList, + fctBlockDataColumnSidecarFirstSeenServiceGet, + fctBlockDataColumnSidecarFirstSeenServiceList, + fctBlockFirstSeenByNodeServiceGet, + fctBlockFirstSeenByNodeServiceList, + fctBlockHeadServiceGet, + fctBlockHeadServiceList, + fctBlockMevHeadServiceGet, + fctBlockMevHeadServiceList, + fctBlockMevServiceGet, + fctBlockMevServiceList, + fctBlockPayloadAvailableByNodeServiceGet, + fctBlockPayloadAvailableByNodeServiceList, + fctBlockPayloadBidServiceGet, + fctBlockPayloadBidServiceList, + fctBlockPayloadFirstSeenByNodeServiceGet, + fctBlockPayloadFirstSeenByNodeServiceList, + fctBlockPayloadPtcVoteHeadServiceGet, + fctBlockPayloadPtcVoteHeadServiceList, + fctBlockPayloadPtcVoteServiceGet, + fctBlockPayloadPtcVoteServiceList, + fctBlockProposalStatusDailyServiceGet, + fctBlockProposalStatusDailyServiceList, + fctBlockProposalStatusHourlyServiceGet, + fctBlockProposalStatusHourlyServiceList, + fctBlockProposerByValidatorServiceGet, + fctBlockProposerByValidatorServiceList, + fctBlockProposerEntityServiceGet, + fctBlockProposerEntityServiceList, + fctBlockProposerHeadServiceGet, + fctBlockProposerHeadServiceList, + fctBlockProposerServiceGet, + fctBlockProposerServiceList, + fctBlockServiceGet, + fctBlockServiceList, + fctContractStorageStateByAddressDailyServiceGet, + fctContractStorageStateByAddressDailyServiceList, + fctContractStorageStateByAddressHourlyServiceGet, + fctContractStorageStateByAddressHourlyServiceList, + fctContractStorageStateByBlockDailyServiceGet, + fctContractStorageStateByBlockDailyServiceList, + fctContractStorageStateByBlockHourlyServiceGet, + fctContractStorageStateByBlockHourlyServiceList, + fctContractStorageStateWithExpiryByAddressDailyServiceGet, + fctContractStorageStateWithExpiryByAddressDailyServiceList, + fctContractStorageStateWithExpiryByAddressHourlyServiceGet, + fctContractStorageStateWithExpiryByAddressHourlyServiceList, + fctContractStorageStateWithExpiryByBlockDailyServiceGet, + fctContractStorageStateWithExpiryByBlockDailyServiceList, + fctContractStorageStateWithExpiryByBlockHourlyServiceGet, + fctContractStorageStateWithExpiryByBlockHourlyServiceList, + fctDataColumnAvailabilityByEpochServiceGet, + fctDataColumnAvailabilityByEpochServiceList, + fctDataColumnAvailabilityBySlotBlobServiceGet, + fctDataColumnAvailabilityBySlotBlobServiceList, + fctDataColumnAvailabilityBySlotServiceGet, + fctDataColumnAvailabilityBySlotServiceList, + fctDataColumnAvailabilityDailyServiceGet, + fctDataColumnAvailabilityDailyServiceList, + fctDataColumnAvailabilityHourlyServiceGet, + fctDataColumnAvailabilityHourlyServiceList, + fctEngineGetBlobsByElClientHourlyServiceGet, + fctEngineGetBlobsByElClientHourlyServiceList, + fctEngineGetBlobsByElClientServiceGet, + fctEngineGetBlobsByElClientServiceList, + fctEngineGetBlobsBySlotServiceGet, + fctEngineGetBlobsBySlotServiceList, + fctEngineGetBlobsDurationChunked50MsServiceGet, + fctEngineGetBlobsDurationChunked50MsServiceList, + fctEngineNewPayloadByElClientHourlyServiceGet, + fctEngineNewPayloadByElClientHourlyServiceList, + fctEngineNewPayloadByElClientServiceGet, + fctEngineNewPayloadByElClientServiceList, + fctEngineNewPayloadBySlotServiceGet, + fctEngineNewPayloadBySlotServiceList, + fctEngineNewPayloadDurationChunked50MsServiceGet, + fctEngineNewPayloadDurationChunked50MsServiceList, + fctEngineNewPayloadWinrateDailyServiceGet, + fctEngineNewPayloadWinrateDailyServiceList, + fctEngineNewPayloadWinrateHourlyServiceGet, + fctEngineNewPayloadWinrateHourlyServiceList, + fctExecutionGasLimitDailyServiceGet, + fctExecutionGasLimitDailyServiceList, + fctExecutionGasLimitHourlyServiceGet, + fctExecutionGasLimitHourlyServiceList, + fctExecutionGasLimitSignallingDailyServiceGet, + fctExecutionGasLimitSignallingDailyServiceList, + fctExecutionGasLimitSignallingHourlyServiceGet, + fctExecutionGasLimitSignallingHourlyServiceList, + fctExecutionGasUsedDailyServiceGet, + fctExecutionGasUsedDailyServiceList, + fctExecutionGasUsedHourlyServiceGet, + fctExecutionGasUsedHourlyServiceList, + fctExecutionReceiptSizeDailyServiceGet, + fctExecutionReceiptSizeDailyServiceList, + fctExecutionReceiptSizeHourlyServiceGet, + fctExecutionReceiptSizeHourlyServiceList, + fctExecutionStateSizeDailyServiceGet, + fctExecutionStateSizeDailyServiceList, + fctExecutionStateSizeHourlyServiceGet, + fctExecutionStateSizeHourlyServiceList, + fctExecutionTpsDailyServiceGet, + fctExecutionTpsDailyServiceList, + fctExecutionTpsHourlyServiceGet, + fctExecutionTpsHourlyServiceList, + fctExecutionTransactionsDailyServiceGet, + fctExecutionTransactionsDailyServiceList, + fctExecutionTransactionsHourlyServiceGet, + fctExecutionTransactionsHourlyServiceList, + fctHeadFirstSeenByNodeServiceGet, + fctHeadFirstSeenByNodeServiceList, + fctHeadVoteCorrectnessRateDailyServiceGet, + fctHeadVoteCorrectnessRateDailyServiceList, + fctHeadVoteCorrectnessRateHourlyServiceGet, + fctHeadVoteCorrectnessRateHourlyServiceList, + fctMevBidCountByBuilderServiceGet, + fctMevBidCountByBuilderServiceList, + fctMevBidCountByRelayServiceGet, + fctMevBidCountByRelayServiceList, + fctMevBidHighestValueByBuilderChunked50MsServiceGet, + fctMevBidHighestValueByBuilderChunked50MsServiceList, + fctMissedSlotRateDailyServiceGet, + fctMissedSlotRateDailyServiceList, + fctMissedSlotRateHourlyServiceGet, + fctMissedSlotRateHourlyServiceList, + fctNodeActiveLast24hServiceGet, + fctNodeActiveLast24hServiceList, + fctNodeCpuUtilizationByProcessServiceGet, + fctNodeCpuUtilizationByProcessServiceList, + fctNodeDiskIoByProcessServiceGet, + fctNodeDiskIoByProcessServiceList, + fctNodeMemoryUsageByProcessServiceGet, + fctNodeMemoryUsageByProcessServiceList, + fctNodeNetworkIoByProcessServiceGet, + fctNodeNetworkIoByProcessServiceList, + fctOpcodeGasByOpcodeDailyServiceGet, + fctOpcodeGasByOpcodeDailyServiceList, + fctOpcodeGasByOpcodeHourlyServiceGet, + fctOpcodeGasByOpcodeHourlyServiceList, + fctOpcodeOpsDailyServiceGet, + fctOpcodeOpsDailyServiceList, + fctOpcodeOpsHourlyServiceGet, + fctOpcodeOpsHourlyServiceList, + fctPayloadBidHighestValueByBuilderChunked50MsServiceGet, + fctPayloadBidHighestValueByBuilderChunked50MsServiceList, + fctPreparedBlockServiceGet, + fctPreparedBlockServiceList, + fctProposerRewardDailyServiceGet, + fctProposerRewardDailyServiceList, + fctProposerRewardHourlyServiceGet, + fctProposerRewardHourlyServiceList, + fctReorgDailyServiceGet, + fctReorgDailyServiceList, + fctReorgHourlyServiceGet, + fctReorgHourlyServiceList, + fctRocketpoolValidatorServiceGet, + fctRocketpoolValidatorServiceList, + fctStorageSlotStateByAddressDailyServiceGet, + fctStorageSlotStateByAddressDailyServiceList, + fctStorageSlotStateByAddressHourlyServiceGet, + fctStorageSlotStateByAddressHourlyServiceList, + fctStorageSlotStateByBlockDailyServiceGet, + fctStorageSlotStateByBlockDailyServiceList, + fctStorageSlotStateByBlockHourlyServiceGet, + fctStorageSlotStateByBlockHourlyServiceList, + fctStorageSlotStateWithExpiryByAddressDailyServiceGet, + fctStorageSlotStateWithExpiryByAddressDailyServiceList, + fctStorageSlotStateWithExpiryByAddressHourlyServiceGet, + fctStorageSlotStateWithExpiryByAddressHourlyServiceList, + fctStorageSlotStateWithExpiryByBlockDailyServiceGet, + fctStorageSlotStateWithExpiryByBlockDailyServiceList, + fctStorageSlotStateWithExpiryByBlockHourlyServiceGet, + fctStorageSlotStateWithExpiryByBlockHourlyServiceList, + fctStorageSlotTop100ByBytesServiceGet, + fctStorageSlotTop100ByBytesServiceList, + fctStorageSlotTop100BySlotsServiceGet, + fctStorageSlotTop100BySlotsServiceList, + fctSyncCommitteeParticipationByValidatorDailyServiceGet, + fctSyncCommitteeParticipationByValidatorDailyServiceList, + fctSyncCommitteeParticipationByValidatorHourlyServiceGet, + fctSyncCommitteeParticipationByValidatorHourlyServiceList, + fctSyncCommitteeParticipationByValidatorServiceGet, + fctSyncCommitteeParticipationByValidatorServiceList, + fctTokenContractStorageStateByBlockDailyServiceGet, + fctTokenContractStorageStateByBlockDailyServiceList, + fctValidatorBalanceDailyServiceGet, + fctValidatorBalanceDailyServiceList, + fctValidatorBalanceHourlyServiceGet, + fctValidatorBalanceHourlyServiceList, + fctValidatorBalanceServiceGet, + fctValidatorBalanceServiceList, + fctValidatorCountByEntityByStatusDailyServiceGet, + fctValidatorCountByEntityByStatusDailyServiceList, + intAttestationAttestedCanonicalServiceGet, + intAttestationAttestedCanonicalServiceList, + intAttestationAttestedHeadServiceGet, + intAttestationAttestedHeadServiceList, + intAttestationAttestedServiceGet, + intAttestationAttestedServiceList, + intAttestationFirstSeenAggregateServiceGet, + intAttestationFirstSeenAggregateServiceList, + intAttestationFirstSeenServiceGet, + intAttestationFirstSeenServiceList, + intBeaconCommitteeHeadServiceGet, + intBeaconCommitteeHeadServiceList, + intBeaconCommitteeServiceGet, + intBeaconCommitteeServiceList, + intBlockBlobCountCanonicalServiceGet, + intBlockBlobCountCanonicalServiceList, + intBlockCanonicalServiceGet, + intBlockCanonicalServiceList, + intBlockMevCanonicalServiceGet, + intBlockMevCanonicalServiceList, + intBlockOpcodeGasServiceGet, + intBlockOpcodeGasServiceList, + intBlockPayloadPtcVoteCanonicalServiceGet, + intBlockPayloadPtcVoteCanonicalServiceList, + intBlockProposerCanonicalServiceGet, + intBlockProposerCanonicalServiceList, + intBlockReceiptSizeServiceGet, + intBlockReceiptSizeServiceList, + intBlockResourceGasServiceGet, + intBlockResourceGasServiceList, + intContractCreationServiceGet, + intContractCreationServiceList, + intContractSelfdestructServiceGet, + intContractSelfdestructServiceList, + intContractStorageExpiry12mServiceGet, + intContractStorageExpiry12mServiceList, + intContractStorageExpiry18mServiceGet, + intContractStorageExpiry18mServiceList, + intContractStorageExpiry1mServiceGet, + intContractStorageExpiry1mServiceList, + intContractStorageExpiry24mServiceGet, + intContractStorageExpiry24mServiceList, + intContractStorageExpiry6mServiceGet, + intContractStorageExpiry6mServiceList, + intContractStorageNextTouchServiceGet, + intContractStorageNextTouchServiceList, + intContractStorageReactivation12mServiceGet, + intContractStorageReactivation12mServiceList, + intContractStorageReactivation18mServiceGet, + intContractStorageReactivation18mServiceList, + intContractStorageReactivation1mServiceGet, + intContractStorageReactivation1mServiceList, + intContractStorageReactivation24mServiceGet, + intContractStorageReactivation24mServiceList, + intContractStorageReactivation6mServiceGet, + intContractStorageReactivation6mServiceList, + intContractStorageStateByAddressServiceGet, + intContractStorageStateByAddressServiceList, + intContractStorageStateByBlockServiceGet, + intContractStorageStateByBlockServiceList, + intContractStorageStateServiceGet, + intContractStorageStateServiceList, + intContractStorageStateWithExpiryByAddressServiceGet, + intContractStorageStateWithExpiryByAddressServiceList, + intContractStorageStateWithExpiryByBlockServiceGet, + intContractStorageStateWithExpiryByBlockServiceList, + intContractStorageStateWithExpiryServiceGet, + intContractStorageStateWithExpiryServiceList, + intCustodyProbeOrderBySlotServiceGet, + intCustodyProbeOrderBySlotServiceList, + intCustodyProbeServiceGet, + intCustodyProbeServiceList, + intEngineGetBlobsServiceGet, + intEngineGetBlobsServiceList, + intEngineNewPayloadFastestExecutionByNodeClassServiceGet, + intEngineNewPayloadFastestExecutionByNodeClassServiceList, + intEngineNewPayloadServiceGet, + intEngineNewPayloadServiceList, + intExecutionBlockByDateServiceGet, + intExecutionBlockByDateServiceList, + intExecutionStateSizeByBlockServiceGet, + intExecutionStateSizeByBlockServiceList, + intRocketpoolMegapoolServiceGet, + intRocketpoolMegapoolServiceList, + intRocketpoolMinipoolServiceGet, + intRocketpoolMinipoolServiceList, + intRocketpoolNodeEventServiceGet, + intRocketpoolNodeEventServiceList, + intRocketpoolNodeTimezoneServiceGet, + intRocketpoolNodeTimezoneServiceList, + intStorageSelfdestructDiffsServiceGet, + intStorageSelfdestructDiffsServiceList, + intStorageSlotDiffByAddressSlotServiceGet, + intStorageSlotDiffByAddressSlotServiceList, + intStorageSlotDiffServiceGet, + intStorageSlotDiffServiceList, + intStorageSlotExpiry12mServiceGet, + intStorageSlotExpiry12mServiceList, + intStorageSlotExpiry18mServiceGet, + intStorageSlotExpiry18mServiceList, + intStorageSlotExpiry1mServiceGet, + intStorageSlotExpiry1mServiceList, + intStorageSlotExpiry24mServiceGet, + intStorageSlotExpiry24mServiceList, + intStorageSlotExpiry6mServiceGet, + intStorageSlotExpiry6mServiceList, + intStorageSlotLifecycleBoundaryServiceGet, + intStorageSlotLifecycleBoundaryServiceList, + intStorageSlotLifecycleServiceGet, + intStorageSlotLifecycleServiceList, + intStorageSlotNextTouchServiceGet, + intStorageSlotNextTouchServiceList, + intStorageSlotReactivation12mServiceGet, + intStorageSlotReactivation12mServiceList, + intStorageSlotReactivation18mServiceGet, + intStorageSlotReactivation18mServiceList, + intStorageSlotReactivation1mServiceGet, + intStorageSlotReactivation1mServiceList, + intStorageSlotReactivation24mServiceGet, + intStorageSlotReactivation24mServiceList, + intStorageSlotReactivation6mServiceGet, + intStorageSlotReactivation6mServiceList, + intStorageSlotReadServiceGet, + intStorageSlotReadServiceList, + intStorageSlotStateByAddressServiceGet, + intStorageSlotStateByAddressServiceList, + intStorageSlotStateByBlockServiceGet, + intStorageSlotStateByBlockServiceList, + intStorageSlotStateServiceGet, + intStorageSlotStateServiceList, + intStorageSlotStateWithExpiryByAddressServiceGet, + intStorageSlotStateWithExpiryByAddressServiceList, + intStorageSlotStateWithExpiryByBlockServiceGet, + intStorageSlotStateWithExpiryByBlockServiceList, + intStorageSlotStateWithExpiryServiceGet, + intStorageSlotStateWithExpiryServiceList, + intTokenContractStorageStateByBlockServiceGet, + intTokenContractStorageStateByBlockServiceList, + intTransactionCallFrameOpcodeGasServiceGet, + intTransactionCallFrameOpcodeGasServiceList, + intTransactionCallFrameOpcodeResourceGasServiceGet, + intTransactionCallFrameOpcodeResourceGasServiceList, + intTransactionCallFrameServiceGet, + intTransactionCallFrameServiceList, + intTransactionOpcodeGasServiceGet, + intTransactionOpcodeGasServiceList, + intTransactionReceiptSizeServiceGet, + intTransactionReceiptSizeServiceList, + intTransactionResourceGasServiceGet, + intTransactionResourceGasServiceList, + type Options, +} from './sdk.gen'; +export type { + AdminCbtIncremental, + AdminCbtIncrementalServiceGetData, + AdminCbtIncrementalServiceGetError, + AdminCbtIncrementalServiceGetErrors, + AdminCbtIncrementalServiceGetResponse, + AdminCbtIncrementalServiceGetResponses, + AdminCbtIncrementalServiceListData, + AdminCbtIncrementalServiceListError, + AdminCbtIncrementalServiceListErrors, + AdminCbtIncrementalServiceListResponse, + AdminCbtIncrementalServiceListResponses, + AdminCbtScheduled, + AdminCbtScheduledServiceGetData, + AdminCbtScheduledServiceGetError, + AdminCbtScheduledServiceGetErrors, + AdminCbtScheduledServiceGetResponse, + AdminCbtScheduledServiceGetResponses, + AdminCbtScheduledServiceListData, + AdminCbtScheduledServiceListError, + AdminCbtScheduledServiceListErrors, + AdminCbtScheduledServiceListResponse, + AdminCbtScheduledServiceListResponses, + ClientOptions, + DimBlockBlobSubmitter, + DimBlockBlobSubmitterServiceGetData, + DimBlockBlobSubmitterServiceGetError, + DimBlockBlobSubmitterServiceGetErrors, + DimBlockBlobSubmitterServiceGetResponse, + DimBlockBlobSubmitterServiceGetResponses, + DimBlockBlobSubmitterServiceListData, + DimBlockBlobSubmitterServiceListError, + DimBlockBlobSubmitterServiceListErrors, + DimBlockBlobSubmitterServiceListResponse, + DimBlockBlobSubmitterServiceListResponses, + DimContractOwner, + DimContractOwnerServiceGetData, + DimContractOwnerServiceGetError, + DimContractOwnerServiceGetErrors, + DimContractOwnerServiceGetResponse, + DimContractOwnerServiceGetResponses, + DimContractOwnerServiceListData, + DimContractOwnerServiceListError, + DimContractOwnerServiceListErrors, + DimContractOwnerServiceListResponse, + DimContractOwnerServiceListResponses, + DimFunctionSignature, + DimFunctionSignatureServiceGetData, + DimFunctionSignatureServiceGetError, + DimFunctionSignatureServiceGetErrors, + DimFunctionSignatureServiceGetResponse, + DimFunctionSignatureServiceGetResponses, + DimFunctionSignatureServiceListData, + DimFunctionSignatureServiceListError, + DimFunctionSignatureServiceListErrors, + DimFunctionSignatureServiceListResponse, + DimFunctionSignatureServiceListResponses, + DimNode, + DimNodeServiceGetData, + DimNodeServiceGetError, + DimNodeServiceGetErrors, + DimNodeServiceGetResponse, + DimNodeServiceGetResponses, + DimNodeServiceListData, + DimNodeServiceListError, + DimNodeServiceListErrors, + DimNodeServiceListResponse, + DimNodeServiceListResponses, + DimRocketpoolNode, + DimRocketpoolNodeServiceGetData, + DimRocketpoolNodeServiceGetError, + DimRocketpoolNodeServiceGetErrors, + DimRocketpoolNodeServiceGetResponse, + DimRocketpoolNodeServiceGetResponses, + DimRocketpoolNodeServiceListData, + DimRocketpoolNodeServiceListError, + DimRocketpoolNodeServiceListErrors, + DimRocketpoolNodeServiceListResponse, + DimRocketpoolNodeServiceListResponses, + DimTokenContract, + DimTokenContractServiceGetData, + DimTokenContractServiceGetError, + DimTokenContractServiceGetErrors, + DimTokenContractServiceGetResponse, + DimTokenContractServiceGetResponses, + DimTokenContractServiceListData, + DimTokenContractServiceListError, + DimTokenContractServiceListErrors, + DimTokenContractServiceListResponse, + DimTokenContractServiceListResponses, + DimValidatorPubkey, + DimValidatorPubkeyServiceGetData, + DimValidatorPubkeyServiceGetError, + DimValidatorPubkeyServiceGetErrors, + DimValidatorPubkeyServiceGetResponse, + DimValidatorPubkeyServiceGetResponses, + DimValidatorPubkeyServiceListData, + DimValidatorPubkeyServiceListError, + DimValidatorPubkeyServiceListErrors, + DimValidatorPubkeyServiceListResponse, + DimValidatorPubkeyServiceListResponses, + DimValidatorStatus, + DimValidatorStatusServiceGetData, + DimValidatorStatusServiceGetError, + DimValidatorStatusServiceGetErrors, + DimValidatorStatusServiceGetResponse, + DimValidatorStatusServiceGetResponses, + DimValidatorStatusServiceListData, + DimValidatorStatusServiceListError, + DimValidatorStatusServiceListErrors, + DimValidatorStatusServiceListResponse, + DimValidatorStatusServiceListResponses, + FctAttestationCorrectness, + FctAttestationCorrectnessByValidator, + FctAttestationCorrectnessByValidatorCanonical, + FctAttestationCorrectnessByValidatorCanonicalServiceGetData, + FctAttestationCorrectnessByValidatorCanonicalServiceGetError, + FctAttestationCorrectnessByValidatorCanonicalServiceGetErrors, + FctAttestationCorrectnessByValidatorCanonicalServiceGetResponse, + FctAttestationCorrectnessByValidatorCanonicalServiceGetResponses, + FctAttestationCorrectnessByValidatorCanonicalServiceListData, + FctAttestationCorrectnessByValidatorCanonicalServiceListError, + FctAttestationCorrectnessByValidatorCanonicalServiceListErrors, + FctAttestationCorrectnessByValidatorCanonicalServiceListResponse, + FctAttestationCorrectnessByValidatorCanonicalServiceListResponses, + FctAttestationCorrectnessByValidatorHead, + FctAttestationCorrectnessByValidatorHeadServiceGetData, + FctAttestationCorrectnessByValidatorHeadServiceGetError, + FctAttestationCorrectnessByValidatorHeadServiceGetErrors, + FctAttestationCorrectnessByValidatorHeadServiceGetResponse, + FctAttestationCorrectnessByValidatorHeadServiceGetResponses, + FctAttestationCorrectnessByValidatorHeadServiceListData, + FctAttestationCorrectnessByValidatorHeadServiceListError, + FctAttestationCorrectnessByValidatorHeadServiceListErrors, + FctAttestationCorrectnessByValidatorHeadServiceListResponse, + FctAttestationCorrectnessByValidatorHeadServiceListResponses, + FctAttestationCorrectnessByValidatorServiceGetData, + FctAttestationCorrectnessByValidatorServiceGetError, + FctAttestationCorrectnessByValidatorServiceGetErrors, + FctAttestationCorrectnessByValidatorServiceGetResponse, + FctAttestationCorrectnessByValidatorServiceGetResponses, + FctAttestationCorrectnessByValidatorServiceListData, + FctAttestationCorrectnessByValidatorServiceListError, + FctAttestationCorrectnessByValidatorServiceListErrors, + FctAttestationCorrectnessByValidatorServiceListResponse, + FctAttestationCorrectnessByValidatorServiceListResponses, + FctAttestationCorrectnessCanonical, + FctAttestationCorrectnessCanonicalServiceGetData, + FctAttestationCorrectnessCanonicalServiceGetError, + FctAttestationCorrectnessCanonicalServiceGetErrors, + FctAttestationCorrectnessCanonicalServiceGetResponse, + FctAttestationCorrectnessCanonicalServiceGetResponses, + FctAttestationCorrectnessCanonicalServiceListData, + FctAttestationCorrectnessCanonicalServiceListError, + FctAttestationCorrectnessCanonicalServiceListErrors, + FctAttestationCorrectnessCanonicalServiceListResponse, + FctAttestationCorrectnessCanonicalServiceListResponses, + FctAttestationCorrectnessHead, + FctAttestationCorrectnessHeadServiceGetData, + FctAttestationCorrectnessHeadServiceGetError, + FctAttestationCorrectnessHeadServiceGetErrors, + FctAttestationCorrectnessHeadServiceGetResponse, + FctAttestationCorrectnessHeadServiceGetResponses, + FctAttestationCorrectnessHeadServiceListData, + FctAttestationCorrectnessHeadServiceListError, + FctAttestationCorrectnessHeadServiceListErrors, + FctAttestationCorrectnessHeadServiceListResponse, + FctAttestationCorrectnessHeadServiceListResponses, + FctAttestationCorrectnessServiceGetData, + FctAttestationCorrectnessServiceGetError, + FctAttestationCorrectnessServiceGetErrors, + FctAttestationCorrectnessServiceGetResponse, + FctAttestationCorrectnessServiceGetResponses, + FctAttestationCorrectnessServiceListData, + FctAttestationCorrectnessServiceListError, + FctAttestationCorrectnessServiceListErrors, + FctAttestationCorrectnessServiceListResponse, + FctAttestationCorrectnessServiceListResponses, + FctAttestationFirstSeenByValidator, + FctAttestationFirstSeenByValidatorServiceGetData, + FctAttestationFirstSeenByValidatorServiceGetError, + FctAttestationFirstSeenByValidatorServiceGetErrors, + FctAttestationFirstSeenByValidatorServiceGetResponse, + FctAttestationFirstSeenByValidatorServiceGetResponses, + FctAttestationFirstSeenByValidatorServiceListData, + FctAttestationFirstSeenByValidatorServiceListError, + FctAttestationFirstSeenByValidatorServiceListErrors, + FctAttestationFirstSeenByValidatorServiceListResponse, + FctAttestationFirstSeenByValidatorServiceListResponses, + FctAttestationFirstSeenChunked50Ms, + FctAttestationFirstSeenChunked50MsServiceGetData, + FctAttestationFirstSeenChunked50MsServiceGetError, + FctAttestationFirstSeenChunked50MsServiceGetErrors, + FctAttestationFirstSeenChunked50MsServiceGetResponse, + FctAttestationFirstSeenChunked50MsServiceGetResponses, + FctAttestationFirstSeenChunked50MsServiceListData, + FctAttestationFirstSeenChunked50MsServiceListError, + FctAttestationFirstSeenChunked50MsServiceListErrors, + FctAttestationFirstSeenChunked50MsServiceListResponse, + FctAttestationFirstSeenChunked50MsServiceListResponses, + FctAttestationInclusionDelayDaily, + FctAttestationInclusionDelayDailyServiceGetData, + FctAttestationInclusionDelayDailyServiceGetError, + FctAttestationInclusionDelayDailyServiceGetErrors, + FctAttestationInclusionDelayDailyServiceGetResponse, + FctAttestationInclusionDelayDailyServiceGetResponses, + FctAttestationInclusionDelayDailyServiceListData, + FctAttestationInclusionDelayDailyServiceListError, + FctAttestationInclusionDelayDailyServiceListErrors, + FctAttestationInclusionDelayDailyServiceListResponse, + FctAttestationInclusionDelayDailyServiceListResponses, + FctAttestationInclusionDelayHourly, + FctAttestationInclusionDelayHourlyServiceGetData, + FctAttestationInclusionDelayHourlyServiceGetError, + FctAttestationInclusionDelayHourlyServiceGetErrors, + FctAttestationInclusionDelayHourlyServiceGetResponse, + FctAttestationInclusionDelayHourlyServiceGetResponses, + FctAttestationInclusionDelayHourlyServiceListData, + FctAttestationInclusionDelayHourlyServiceListError, + FctAttestationInclusionDelayHourlyServiceListErrors, + FctAttestationInclusionDelayHourlyServiceListResponse, + FctAttestationInclusionDelayHourlyServiceListResponses, + FctAttestationLivenessByEntity, + FctAttestationLivenessByEntityHead, + FctAttestationLivenessByEntityHeadServiceGetData, + FctAttestationLivenessByEntityHeadServiceGetError, + FctAttestationLivenessByEntityHeadServiceGetErrors, + FctAttestationLivenessByEntityHeadServiceGetResponse, + FctAttestationLivenessByEntityHeadServiceGetResponses, + FctAttestationLivenessByEntityHeadServiceListData, + FctAttestationLivenessByEntityHeadServiceListError, + FctAttestationLivenessByEntityHeadServiceListErrors, + FctAttestationLivenessByEntityHeadServiceListResponse, + FctAttestationLivenessByEntityHeadServiceListResponses, + FctAttestationLivenessByEntityServiceGetData, + FctAttestationLivenessByEntityServiceGetError, + FctAttestationLivenessByEntityServiceGetErrors, + FctAttestationLivenessByEntityServiceGetResponse, + FctAttestationLivenessByEntityServiceGetResponses, + FctAttestationLivenessByEntityServiceListData, + FctAttestationLivenessByEntityServiceListError, + FctAttestationLivenessByEntityServiceListErrors, + FctAttestationLivenessByEntityServiceListResponse, + FctAttestationLivenessByEntityServiceListResponses, + FctAttestationObservationByNode, + FctAttestationObservationByNodeServiceGetData, + FctAttestationObservationByNodeServiceGetError, + FctAttestationObservationByNodeServiceGetErrors, + FctAttestationObservationByNodeServiceGetResponse, + FctAttestationObservationByNodeServiceGetResponses, + FctAttestationObservationByNodeServiceListData, + FctAttestationObservationByNodeServiceListError, + FctAttestationObservationByNodeServiceListErrors, + FctAttestationObservationByNodeServiceListResponse, + FctAttestationObservationByNodeServiceListResponses, + FctAttestationParticipationRateDaily, + FctAttestationParticipationRateDailyServiceGetData, + FctAttestationParticipationRateDailyServiceGetError, + FctAttestationParticipationRateDailyServiceGetErrors, + FctAttestationParticipationRateDailyServiceGetResponse, + FctAttestationParticipationRateDailyServiceGetResponses, + FctAttestationParticipationRateDailyServiceListData, + FctAttestationParticipationRateDailyServiceListError, + FctAttestationParticipationRateDailyServiceListErrors, + FctAttestationParticipationRateDailyServiceListResponse, + FctAttestationParticipationRateDailyServiceListResponses, + FctAttestationParticipationRateHourly, + FctAttestationParticipationRateHourlyServiceGetData, + FctAttestationParticipationRateHourlyServiceGetError, + FctAttestationParticipationRateHourlyServiceGetErrors, + FctAttestationParticipationRateHourlyServiceGetResponse, + FctAttestationParticipationRateHourlyServiceGetResponses, + FctAttestationParticipationRateHourlyServiceListData, + FctAttestationParticipationRateHourlyServiceListError, + FctAttestationParticipationRateHourlyServiceListErrors, + FctAttestationParticipationRateHourlyServiceListResponse, + FctAttestationParticipationRateHourlyServiceListResponses, + FctAttestationVoteCorrectnessByValidator, + FctAttestationVoteCorrectnessByValidatorDaily, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetData, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetError, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetErrors, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponses, + FctAttestationVoteCorrectnessByValidatorDailyServiceListData, + FctAttestationVoteCorrectnessByValidatorDailyServiceListError, + FctAttestationVoteCorrectnessByValidatorDailyServiceListErrors, + FctAttestationVoteCorrectnessByValidatorDailyServiceListResponse, + FctAttestationVoteCorrectnessByValidatorDailyServiceListResponses, + FctAttestationVoteCorrectnessByValidatorHourly, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetData, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetError, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetErrors, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponses, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListData, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListError, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListErrors, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponses, + FctAttestationVoteCorrectnessByValidatorServiceGetData, + FctAttestationVoteCorrectnessByValidatorServiceGetError, + FctAttestationVoteCorrectnessByValidatorServiceGetErrors, + FctAttestationVoteCorrectnessByValidatorServiceGetResponse, + FctAttestationVoteCorrectnessByValidatorServiceGetResponses, + FctAttestationVoteCorrectnessByValidatorServiceListData, + FctAttestationVoteCorrectnessByValidatorServiceListError, + FctAttestationVoteCorrectnessByValidatorServiceListErrors, + FctAttestationVoteCorrectnessByValidatorServiceListResponse, + FctAttestationVoteCorrectnessByValidatorServiceListResponses, + FctBlobCountDaily, + FctBlobCountDailyServiceGetData, + FctBlobCountDailyServiceGetError, + FctBlobCountDailyServiceGetErrors, + FctBlobCountDailyServiceGetResponse, + FctBlobCountDailyServiceGetResponses, + FctBlobCountDailyServiceListData, + FctBlobCountDailyServiceListError, + FctBlobCountDailyServiceListErrors, + FctBlobCountDailyServiceListResponse, + FctBlobCountDailyServiceListResponses, + FctBlobCountHourly, + FctBlobCountHourlyServiceGetData, + FctBlobCountHourlyServiceGetError, + FctBlobCountHourlyServiceGetErrors, + FctBlobCountHourlyServiceGetResponse, + FctBlobCountHourlyServiceGetResponses, + FctBlobCountHourlyServiceListData, + FctBlobCountHourlyServiceListError, + FctBlobCountHourlyServiceListErrors, + FctBlobCountHourlyServiceListResponse, + FctBlobCountHourlyServiceListResponses, + FctBlock, + FctBlockBlobCount, + FctBlockBlobCountHead, + FctBlockBlobCountHeadServiceGetData, + FctBlockBlobCountHeadServiceGetError, + FctBlockBlobCountHeadServiceGetErrors, + FctBlockBlobCountHeadServiceGetResponse, + FctBlockBlobCountHeadServiceGetResponses, + FctBlockBlobCountHeadServiceListData, + FctBlockBlobCountHeadServiceListError, + FctBlockBlobCountHeadServiceListErrors, + FctBlockBlobCountHeadServiceListResponse, + FctBlockBlobCountHeadServiceListResponses, + FctBlockBlobCountServiceGetData, + FctBlockBlobCountServiceGetError, + FctBlockBlobCountServiceGetErrors, + FctBlockBlobCountServiceGetResponse, + FctBlockBlobCountServiceGetResponses, + FctBlockBlobCountServiceListData, + FctBlockBlobCountServiceListError, + FctBlockBlobCountServiceListErrors, + FctBlockBlobCountServiceListResponse, + FctBlockBlobCountServiceListResponses, + FctBlockBlobFirstSeenByNode, + FctBlockBlobFirstSeenByNodeServiceGetData, + FctBlockBlobFirstSeenByNodeServiceGetError, + FctBlockBlobFirstSeenByNodeServiceGetErrors, + FctBlockBlobFirstSeenByNodeServiceGetResponse, + FctBlockBlobFirstSeenByNodeServiceGetResponses, + FctBlockBlobFirstSeenByNodeServiceListData, + FctBlockBlobFirstSeenByNodeServiceListError, + FctBlockBlobFirstSeenByNodeServiceListErrors, + FctBlockBlobFirstSeenByNodeServiceListResponse, + FctBlockBlobFirstSeenByNodeServiceListResponses, + FctBlockBlobHead, + FctBlockBlobHeadServiceGetData, + FctBlockBlobHeadServiceGetError, + FctBlockBlobHeadServiceGetErrors, + FctBlockBlobHeadServiceGetResponse, + FctBlockBlobHeadServiceGetResponses, + FctBlockBlobHeadServiceListData, + FctBlockBlobHeadServiceListError, + FctBlockBlobHeadServiceListErrors, + FctBlockBlobHeadServiceListResponse, + FctBlockBlobHeadServiceListResponses, + FctBlockDataColumnSidecarFirstSeen, + FctBlockDataColumnSidecarFirstSeenByNode, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetData, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetError, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetErrors, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponses, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListData, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListError, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListErrors, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponses, + FctBlockDataColumnSidecarFirstSeenServiceGetData, + FctBlockDataColumnSidecarFirstSeenServiceGetError, + FctBlockDataColumnSidecarFirstSeenServiceGetErrors, + FctBlockDataColumnSidecarFirstSeenServiceGetResponse, + FctBlockDataColumnSidecarFirstSeenServiceGetResponses, + FctBlockDataColumnSidecarFirstSeenServiceListData, + FctBlockDataColumnSidecarFirstSeenServiceListError, + FctBlockDataColumnSidecarFirstSeenServiceListErrors, + FctBlockDataColumnSidecarFirstSeenServiceListResponse, + FctBlockDataColumnSidecarFirstSeenServiceListResponses, + FctBlockFirstSeenByNode, + FctBlockFirstSeenByNodeServiceGetData, + FctBlockFirstSeenByNodeServiceGetError, + FctBlockFirstSeenByNodeServiceGetErrors, + FctBlockFirstSeenByNodeServiceGetResponse, + FctBlockFirstSeenByNodeServiceGetResponses, + FctBlockFirstSeenByNodeServiceListData, + FctBlockFirstSeenByNodeServiceListError, + FctBlockFirstSeenByNodeServiceListErrors, + FctBlockFirstSeenByNodeServiceListResponse, + FctBlockFirstSeenByNodeServiceListResponses, + FctBlockHead, + FctBlockHeadServiceGetData, + FctBlockHeadServiceGetError, + FctBlockHeadServiceGetErrors, + FctBlockHeadServiceGetResponse, + FctBlockHeadServiceGetResponses, + FctBlockHeadServiceListData, + FctBlockHeadServiceListError, + FctBlockHeadServiceListErrors, + FctBlockHeadServiceListResponse, + FctBlockHeadServiceListResponses, + FctBlockMev, + FctBlockMevHead, + FctBlockMevHeadServiceGetData, + FctBlockMevHeadServiceGetError, + FctBlockMevHeadServiceGetErrors, + FctBlockMevHeadServiceGetResponse, + FctBlockMevHeadServiceGetResponses, + FctBlockMevHeadServiceListData, + FctBlockMevHeadServiceListError, + FctBlockMevHeadServiceListErrors, + FctBlockMevHeadServiceListResponse, + FctBlockMevHeadServiceListResponses, + FctBlockMevServiceGetData, + FctBlockMevServiceGetError, + FctBlockMevServiceGetErrors, + FctBlockMevServiceGetResponse, + FctBlockMevServiceGetResponses, + FctBlockMevServiceListData, + FctBlockMevServiceListError, + FctBlockMevServiceListErrors, + FctBlockMevServiceListResponse, + FctBlockMevServiceListResponses, + FctBlockPayloadAvailableByNode, + FctBlockPayloadAvailableByNodeServiceGetData, + FctBlockPayloadAvailableByNodeServiceGetError, + FctBlockPayloadAvailableByNodeServiceGetErrors, + FctBlockPayloadAvailableByNodeServiceGetResponse, + FctBlockPayloadAvailableByNodeServiceGetResponses, + FctBlockPayloadAvailableByNodeServiceListData, + FctBlockPayloadAvailableByNodeServiceListError, + FctBlockPayloadAvailableByNodeServiceListErrors, + FctBlockPayloadAvailableByNodeServiceListResponse, + FctBlockPayloadAvailableByNodeServiceListResponses, + FctBlockPayloadBid, + FctBlockPayloadBidServiceGetData, + FctBlockPayloadBidServiceGetError, + FctBlockPayloadBidServiceGetErrors, + FctBlockPayloadBidServiceGetResponse, + FctBlockPayloadBidServiceGetResponses, + FctBlockPayloadBidServiceListData, + FctBlockPayloadBidServiceListError, + FctBlockPayloadBidServiceListErrors, + FctBlockPayloadBidServiceListResponse, + FctBlockPayloadBidServiceListResponses, + FctBlockPayloadFirstSeenByNode, + FctBlockPayloadFirstSeenByNodeServiceGetData, + FctBlockPayloadFirstSeenByNodeServiceGetError, + FctBlockPayloadFirstSeenByNodeServiceGetErrors, + FctBlockPayloadFirstSeenByNodeServiceGetResponse, + FctBlockPayloadFirstSeenByNodeServiceGetResponses, + FctBlockPayloadFirstSeenByNodeServiceListData, + FctBlockPayloadFirstSeenByNodeServiceListError, + FctBlockPayloadFirstSeenByNodeServiceListErrors, + FctBlockPayloadFirstSeenByNodeServiceListResponse, + FctBlockPayloadFirstSeenByNodeServiceListResponses, + FctBlockPayloadPtcVote, + FctBlockPayloadPtcVoteHead, + FctBlockPayloadPtcVoteHeadServiceGetData, + FctBlockPayloadPtcVoteHeadServiceGetError, + FctBlockPayloadPtcVoteHeadServiceGetErrors, + FctBlockPayloadPtcVoteHeadServiceGetResponse, + FctBlockPayloadPtcVoteHeadServiceGetResponses, + FctBlockPayloadPtcVoteHeadServiceListData, + FctBlockPayloadPtcVoteHeadServiceListError, + FctBlockPayloadPtcVoteHeadServiceListErrors, + FctBlockPayloadPtcVoteHeadServiceListResponse, + FctBlockPayloadPtcVoteHeadServiceListResponses, + FctBlockPayloadPtcVoteServiceGetData, + FctBlockPayloadPtcVoteServiceGetError, + FctBlockPayloadPtcVoteServiceGetErrors, + FctBlockPayloadPtcVoteServiceGetResponse, + FctBlockPayloadPtcVoteServiceGetResponses, + FctBlockPayloadPtcVoteServiceListData, + FctBlockPayloadPtcVoteServiceListError, + FctBlockPayloadPtcVoteServiceListErrors, + FctBlockPayloadPtcVoteServiceListResponse, + FctBlockPayloadPtcVoteServiceListResponses, + FctBlockProposalStatusDaily, + FctBlockProposalStatusDailyServiceGetData, + FctBlockProposalStatusDailyServiceGetError, + FctBlockProposalStatusDailyServiceGetErrors, + FctBlockProposalStatusDailyServiceGetResponse, + FctBlockProposalStatusDailyServiceGetResponses, + FctBlockProposalStatusDailyServiceListData, + FctBlockProposalStatusDailyServiceListError, + FctBlockProposalStatusDailyServiceListErrors, + FctBlockProposalStatusDailyServiceListResponse, + FctBlockProposalStatusDailyServiceListResponses, + FctBlockProposalStatusHourly, + FctBlockProposalStatusHourlyServiceGetData, + FctBlockProposalStatusHourlyServiceGetError, + FctBlockProposalStatusHourlyServiceGetErrors, + FctBlockProposalStatusHourlyServiceGetResponse, + FctBlockProposalStatusHourlyServiceGetResponses, + FctBlockProposalStatusHourlyServiceListData, + FctBlockProposalStatusHourlyServiceListError, + FctBlockProposalStatusHourlyServiceListErrors, + FctBlockProposalStatusHourlyServiceListResponse, + FctBlockProposalStatusHourlyServiceListResponses, + FctBlockProposer, + FctBlockProposerByValidator, + FctBlockProposerByValidatorServiceGetData, + FctBlockProposerByValidatorServiceGetError, + FctBlockProposerByValidatorServiceGetErrors, + FctBlockProposerByValidatorServiceGetResponse, + FctBlockProposerByValidatorServiceGetResponses, + FctBlockProposerByValidatorServiceListData, + FctBlockProposerByValidatorServiceListError, + FctBlockProposerByValidatorServiceListErrors, + FctBlockProposerByValidatorServiceListResponse, + FctBlockProposerByValidatorServiceListResponses, + FctBlockProposerEntity, + FctBlockProposerEntityServiceGetData, + FctBlockProposerEntityServiceGetError, + FctBlockProposerEntityServiceGetErrors, + FctBlockProposerEntityServiceGetResponse, + FctBlockProposerEntityServiceGetResponses, + FctBlockProposerEntityServiceListData, + FctBlockProposerEntityServiceListError, + FctBlockProposerEntityServiceListErrors, + FctBlockProposerEntityServiceListResponse, + FctBlockProposerEntityServiceListResponses, + FctBlockProposerHead, + FctBlockProposerHeadServiceGetData, + FctBlockProposerHeadServiceGetError, + FctBlockProposerHeadServiceGetErrors, + FctBlockProposerHeadServiceGetResponse, + FctBlockProposerHeadServiceGetResponses, + FctBlockProposerHeadServiceListData, + FctBlockProposerHeadServiceListError, + FctBlockProposerHeadServiceListErrors, + FctBlockProposerHeadServiceListResponse, + FctBlockProposerHeadServiceListResponses, + FctBlockProposerServiceGetData, + FctBlockProposerServiceGetError, + FctBlockProposerServiceGetErrors, + FctBlockProposerServiceGetResponse, + FctBlockProposerServiceGetResponses, + FctBlockProposerServiceListData, + FctBlockProposerServiceListError, + FctBlockProposerServiceListErrors, + FctBlockProposerServiceListResponse, + FctBlockProposerServiceListResponses, + FctBlockServiceGetData, + FctBlockServiceGetError, + FctBlockServiceGetErrors, + FctBlockServiceGetResponse, + FctBlockServiceGetResponses, + FctBlockServiceListData, + FctBlockServiceListError, + FctBlockServiceListErrors, + FctBlockServiceListResponse, + FctBlockServiceListResponses, + FctContractStorageStateByAddressDaily, + FctContractStorageStateByAddressDailyServiceGetData, + FctContractStorageStateByAddressDailyServiceGetError, + FctContractStorageStateByAddressDailyServiceGetErrors, + FctContractStorageStateByAddressDailyServiceGetResponse, + FctContractStorageStateByAddressDailyServiceGetResponses, + FctContractStorageStateByAddressDailyServiceListData, + FctContractStorageStateByAddressDailyServiceListError, + FctContractStorageStateByAddressDailyServiceListErrors, + FctContractStorageStateByAddressDailyServiceListResponse, + FctContractStorageStateByAddressDailyServiceListResponses, + FctContractStorageStateByAddressHourly, + FctContractStorageStateByAddressHourlyServiceGetData, + FctContractStorageStateByAddressHourlyServiceGetError, + FctContractStorageStateByAddressHourlyServiceGetErrors, + FctContractStorageStateByAddressHourlyServiceGetResponse, + FctContractStorageStateByAddressHourlyServiceGetResponses, + FctContractStorageStateByAddressHourlyServiceListData, + FctContractStorageStateByAddressHourlyServiceListError, + FctContractStorageStateByAddressHourlyServiceListErrors, + FctContractStorageStateByAddressHourlyServiceListResponse, + FctContractStorageStateByAddressHourlyServiceListResponses, + FctContractStorageStateByBlockDaily, + FctContractStorageStateByBlockDailyServiceGetData, + FctContractStorageStateByBlockDailyServiceGetError, + FctContractStorageStateByBlockDailyServiceGetErrors, + FctContractStorageStateByBlockDailyServiceGetResponse, + FctContractStorageStateByBlockDailyServiceGetResponses, + FctContractStorageStateByBlockDailyServiceListData, + FctContractStorageStateByBlockDailyServiceListError, + FctContractStorageStateByBlockDailyServiceListErrors, + FctContractStorageStateByBlockDailyServiceListResponse, + FctContractStorageStateByBlockDailyServiceListResponses, + FctContractStorageStateByBlockHourly, + FctContractStorageStateByBlockHourlyServiceGetData, + FctContractStorageStateByBlockHourlyServiceGetError, + FctContractStorageStateByBlockHourlyServiceGetErrors, + FctContractStorageStateByBlockHourlyServiceGetResponse, + FctContractStorageStateByBlockHourlyServiceGetResponses, + FctContractStorageStateByBlockHourlyServiceListData, + FctContractStorageStateByBlockHourlyServiceListError, + FctContractStorageStateByBlockHourlyServiceListErrors, + FctContractStorageStateByBlockHourlyServiceListResponse, + FctContractStorageStateByBlockHourlyServiceListResponses, + FctContractStorageStateWithExpiryByAddressDaily, + FctContractStorageStateWithExpiryByAddressDailyServiceGetData, + FctContractStorageStateWithExpiryByAddressDailyServiceGetError, + FctContractStorageStateWithExpiryByAddressDailyServiceGetErrors, + FctContractStorageStateWithExpiryByAddressDailyServiceGetResponse, + FctContractStorageStateWithExpiryByAddressDailyServiceGetResponses, + FctContractStorageStateWithExpiryByAddressDailyServiceListData, + FctContractStorageStateWithExpiryByAddressDailyServiceListError, + FctContractStorageStateWithExpiryByAddressDailyServiceListErrors, + FctContractStorageStateWithExpiryByAddressDailyServiceListResponse, + FctContractStorageStateWithExpiryByAddressDailyServiceListResponses, + FctContractStorageStateWithExpiryByAddressHourly, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetData, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetError, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetErrors, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponses, + FctContractStorageStateWithExpiryByAddressHourlyServiceListData, + FctContractStorageStateWithExpiryByAddressHourlyServiceListError, + FctContractStorageStateWithExpiryByAddressHourlyServiceListErrors, + FctContractStorageStateWithExpiryByAddressHourlyServiceListResponse, + FctContractStorageStateWithExpiryByAddressHourlyServiceListResponses, + FctContractStorageStateWithExpiryByBlockDaily, + FctContractStorageStateWithExpiryByBlockDailyServiceGetData, + FctContractStorageStateWithExpiryByBlockDailyServiceGetError, + FctContractStorageStateWithExpiryByBlockDailyServiceGetErrors, + FctContractStorageStateWithExpiryByBlockDailyServiceGetResponse, + FctContractStorageStateWithExpiryByBlockDailyServiceGetResponses, + FctContractStorageStateWithExpiryByBlockDailyServiceListData, + FctContractStorageStateWithExpiryByBlockDailyServiceListError, + FctContractStorageStateWithExpiryByBlockDailyServiceListErrors, + FctContractStorageStateWithExpiryByBlockDailyServiceListResponse, + FctContractStorageStateWithExpiryByBlockDailyServiceListResponses, + FctContractStorageStateWithExpiryByBlockHourly, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetData, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetError, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetErrors, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponses, + FctContractStorageStateWithExpiryByBlockHourlyServiceListData, + FctContractStorageStateWithExpiryByBlockHourlyServiceListError, + FctContractStorageStateWithExpiryByBlockHourlyServiceListErrors, + FctContractStorageStateWithExpiryByBlockHourlyServiceListResponse, + FctContractStorageStateWithExpiryByBlockHourlyServiceListResponses, + FctDataColumnAvailabilityByEpoch, + FctDataColumnAvailabilityByEpochServiceGetData, + FctDataColumnAvailabilityByEpochServiceGetError, + FctDataColumnAvailabilityByEpochServiceGetErrors, + FctDataColumnAvailabilityByEpochServiceGetResponse, + FctDataColumnAvailabilityByEpochServiceGetResponses, + FctDataColumnAvailabilityByEpochServiceListData, + FctDataColumnAvailabilityByEpochServiceListError, + FctDataColumnAvailabilityByEpochServiceListErrors, + FctDataColumnAvailabilityByEpochServiceListResponse, + FctDataColumnAvailabilityByEpochServiceListResponses, + FctDataColumnAvailabilityBySlot, + FctDataColumnAvailabilityBySlotBlob, + FctDataColumnAvailabilityBySlotBlobServiceGetData, + FctDataColumnAvailabilityBySlotBlobServiceGetError, + FctDataColumnAvailabilityBySlotBlobServiceGetErrors, + FctDataColumnAvailabilityBySlotBlobServiceGetResponse, + FctDataColumnAvailabilityBySlotBlobServiceGetResponses, + FctDataColumnAvailabilityBySlotBlobServiceListData, + FctDataColumnAvailabilityBySlotBlobServiceListError, + FctDataColumnAvailabilityBySlotBlobServiceListErrors, + FctDataColumnAvailabilityBySlotBlobServiceListResponse, + FctDataColumnAvailabilityBySlotBlobServiceListResponses, + FctDataColumnAvailabilityBySlotServiceGetData, + FctDataColumnAvailabilityBySlotServiceGetError, + FctDataColumnAvailabilityBySlotServiceGetErrors, + FctDataColumnAvailabilityBySlotServiceGetResponse, + FctDataColumnAvailabilityBySlotServiceGetResponses, + FctDataColumnAvailabilityBySlotServiceListData, + FctDataColumnAvailabilityBySlotServiceListError, + FctDataColumnAvailabilityBySlotServiceListErrors, + FctDataColumnAvailabilityBySlotServiceListResponse, + FctDataColumnAvailabilityBySlotServiceListResponses, + FctDataColumnAvailabilityDaily, + FctDataColumnAvailabilityDailyServiceGetData, + FctDataColumnAvailabilityDailyServiceGetError, + FctDataColumnAvailabilityDailyServiceGetErrors, + FctDataColumnAvailabilityDailyServiceGetResponse, + FctDataColumnAvailabilityDailyServiceGetResponses, + FctDataColumnAvailabilityDailyServiceListData, + FctDataColumnAvailabilityDailyServiceListError, + FctDataColumnAvailabilityDailyServiceListErrors, + FctDataColumnAvailabilityDailyServiceListResponse, + FctDataColumnAvailabilityDailyServiceListResponses, + FctDataColumnAvailabilityHourly, + FctDataColumnAvailabilityHourlyServiceGetData, + FctDataColumnAvailabilityHourlyServiceGetError, + FctDataColumnAvailabilityHourlyServiceGetErrors, + FctDataColumnAvailabilityHourlyServiceGetResponse, + FctDataColumnAvailabilityHourlyServiceGetResponses, + FctDataColumnAvailabilityHourlyServiceListData, + FctDataColumnAvailabilityHourlyServiceListError, + FctDataColumnAvailabilityHourlyServiceListErrors, + FctDataColumnAvailabilityHourlyServiceListResponse, + FctDataColumnAvailabilityHourlyServiceListResponses, + FctEngineGetBlobsByElClient, + FctEngineGetBlobsByElClientHourly, + FctEngineGetBlobsByElClientHourlyServiceGetData, + FctEngineGetBlobsByElClientHourlyServiceGetError, + FctEngineGetBlobsByElClientHourlyServiceGetErrors, + FctEngineGetBlobsByElClientHourlyServiceGetResponse, + FctEngineGetBlobsByElClientHourlyServiceGetResponses, + FctEngineGetBlobsByElClientHourlyServiceListData, + FctEngineGetBlobsByElClientHourlyServiceListError, + FctEngineGetBlobsByElClientHourlyServiceListErrors, + FctEngineGetBlobsByElClientHourlyServiceListResponse, + FctEngineGetBlobsByElClientHourlyServiceListResponses, + FctEngineGetBlobsByElClientServiceGetData, + FctEngineGetBlobsByElClientServiceGetError, + FctEngineGetBlobsByElClientServiceGetErrors, + FctEngineGetBlobsByElClientServiceGetResponse, + FctEngineGetBlobsByElClientServiceGetResponses, + FctEngineGetBlobsByElClientServiceListData, + FctEngineGetBlobsByElClientServiceListError, + FctEngineGetBlobsByElClientServiceListErrors, + FctEngineGetBlobsByElClientServiceListResponse, + FctEngineGetBlobsByElClientServiceListResponses, + FctEngineGetBlobsBySlot, + FctEngineGetBlobsBySlotServiceGetData, + FctEngineGetBlobsBySlotServiceGetError, + FctEngineGetBlobsBySlotServiceGetErrors, + FctEngineGetBlobsBySlotServiceGetResponse, + FctEngineGetBlobsBySlotServiceGetResponses, + FctEngineGetBlobsBySlotServiceListData, + FctEngineGetBlobsBySlotServiceListError, + FctEngineGetBlobsBySlotServiceListErrors, + FctEngineGetBlobsBySlotServiceListResponse, + FctEngineGetBlobsBySlotServiceListResponses, + FctEngineGetBlobsDurationChunked50Ms, + FctEngineGetBlobsDurationChunked50MsServiceGetData, + FctEngineGetBlobsDurationChunked50MsServiceGetError, + FctEngineGetBlobsDurationChunked50MsServiceGetErrors, + FctEngineGetBlobsDurationChunked50MsServiceGetResponse, + FctEngineGetBlobsDurationChunked50MsServiceGetResponses, + FctEngineGetBlobsDurationChunked50MsServiceListData, + FctEngineGetBlobsDurationChunked50MsServiceListError, + FctEngineGetBlobsDurationChunked50MsServiceListErrors, + FctEngineGetBlobsDurationChunked50MsServiceListResponse, + FctEngineGetBlobsDurationChunked50MsServiceListResponses, + FctEngineNewPayloadByElClient, + FctEngineNewPayloadByElClientHourly, + FctEngineNewPayloadByElClientHourlyServiceGetData, + FctEngineNewPayloadByElClientHourlyServiceGetError, + FctEngineNewPayloadByElClientHourlyServiceGetErrors, + FctEngineNewPayloadByElClientHourlyServiceGetResponse, + FctEngineNewPayloadByElClientHourlyServiceGetResponses, + FctEngineNewPayloadByElClientHourlyServiceListData, + FctEngineNewPayloadByElClientHourlyServiceListError, + FctEngineNewPayloadByElClientHourlyServiceListErrors, + FctEngineNewPayloadByElClientHourlyServiceListResponse, + FctEngineNewPayloadByElClientHourlyServiceListResponses, + FctEngineNewPayloadByElClientServiceGetData, + FctEngineNewPayloadByElClientServiceGetError, + FctEngineNewPayloadByElClientServiceGetErrors, + FctEngineNewPayloadByElClientServiceGetResponse, + FctEngineNewPayloadByElClientServiceGetResponses, + FctEngineNewPayloadByElClientServiceListData, + FctEngineNewPayloadByElClientServiceListError, + FctEngineNewPayloadByElClientServiceListErrors, + FctEngineNewPayloadByElClientServiceListResponse, + FctEngineNewPayloadByElClientServiceListResponses, + FctEngineNewPayloadBySlot, + FctEngineNewPayloadBySlotServiceGetData, + FctEngineNewPayloadBySlotServiceGetError, + FctEngineNewPayloadBySlotServiceGetErrors, + FctEngineNewPayloadBySlotServiceGetResponse, + FctEngineNewPayloadBySlotServiceGetResponses, + FctEngineNewPayloadBySlotServiceListData, + FctEngineNewPayloadBySlotServiceListError, + FctEngineNewPayloadBySlotServiceListErrors, + FctEngineNewPayloadBySlotServiceListResponse, + FctEngineNewPayloadBySlotServiceListResponses, + FctEngineNewPayloadDurationChunked50Ms, + FctEngineNewPayloadDurationChunked50MsServiceGetData, + FctEngineNewPayloadDurationChunked50MsServiceGetError, + FctEngineNewPayloadDurationChunked50MsServiceGetErrors, + FctEngineNewPayloadDurationChunked50MsServiceGetResponse, + FctEngineNewPayloadDurationChunked50MsServiceGetResponses, + FctEngineNewPayloadDurationChunked50MsServiceListData, + FctEngineNewPayloadDurationChunked50MsServiceListError, + FctEngineNewPayloadDurationChunked50MsServiceListErrors, + FctEngineNewPayloadDurationChunked50MsServiceListResponse, + FctEngineNewPayloadDurationChunked50MsServiceListResponses, + FctEngineNewPayloadWinrateDaily, + FctEngineNewPayloadWinrateDailyServiceGetData, + FctEngineNewPayloadWinrateDailyServiceGetError, + FctEngineNewPayloadWinrateDailyServiceGetErrors, + FctEngineNewPayloadWinrateDailyServiceGetResponse, + FctEngineNewPayloadWinrateDailyServiceGetResponses, + FctEngineNewPayloadWinrateDailyServiceListData, + FctEngineNewPayloadWinrateDailyServiceListError, + FctEngineNewPayloadWinrateDailyServiceListErrors, + FctEngineNewPayloadWinrateDailyServiceListResponse, + FctEngineNewPayloadWinrateDailyServiceListResponses, + FctEngineNewPayloadWinrateHourly, + FctEngineNewPayloadWinrateHourlyServiceGetData, + FctEngineNewPayloadWinrateHourlyServiceGetError, + FctEngineNewPayloadWinrateHourlyServiceGetErrors, + FctEngineNewPayloadWinrateHourlyServiceGetResponse, + FctEngineNewPayloadWinrateHourlyServiceGetResponses, + FctEngineNewPayloadWinrateHourlyServiceListData, + FctEngineNewPayloadWinrateHourlyServiceListError, + FctEngineNewPayloadWinrateHourlyServiceListErrors, + FctEngineNewPayloadWinrateHourlyServiceListResponse, + FctEngineNewPayloadWinrateHourlyServiceListResponses, + FctExecutionGasLimitDaily, + FctExecutionGasLimitDailyServiceGetData, + FctExecutionGasLimitDailyServiceGetError, + FctExecutionGasLimitDailyServiceGetErrors, + FctExecutionGasLimitDailyServiceGetResponse, + FctExecutionGasLimitDailyServiceGetResponses, + FctExecutionGasLimitDailyServiceListData, + FctExecutionGasLimitDailyServiceListError, + FctExecutionGasLimitDailyServiceListErrors, + FctExecutionGasLimitDailyServiceListResponse, + FctExecutionGasLimitDailyServiceListResponses, + FctExecutionGasLimitHourly, + FctExecutionGasLimitHourlyServiceGetData, + FctExecutionGasLimitHourlyServiceGetError, + FctExecutionGasLimitHourlyServiceGetErrors, + FctExecutionGasLimitHourlyServiceGetResponse, + FctExecutionGasLimitHourlyServiceGetResponses, + FctExecutionGasLimitHourlyServiceListData, + FctExecutionGasLimitHourlyServiceListError, + FctExecutionGasLimitHourlyServiceListErrors, + FctExecutionGasLimitHourlyServiceListResponse, + FctExecutionGasLimitHourlyServiceListResponses, + FctExecutionGasLimitSignallingDaily, + FctExecutionGasLimitSignallingDailyServiceGetData, + FctExecutionGasLimitSignallingDailyServiceGetError, + FctExecutionGasLimitSignallingDailyServiceGetErrors, + FctExecutionGasLimitSignallingDailyServiceGetResponse, + FctExecutionGasLimitSignallingDailyServiceGetResponses, + FctExecutionGasLimitSignallingDailyServiceListData, + FctExecutionGasLimitSignallingDailyServiceListError, + FctExecutionGasLimitSignallingDailyServiceListErrors, + FctExecutionGasLimitSignallingDailyServiceListResponse, + FctExecutionGasLimitSignallingDailyServiceListResponses, + FctExecutionGasLimitSignallingHourly, + FctExecutionGasLimitSignallingHourlyServiceGetData, + FctExecutionGasLimitSignallingHourlyServiceGetError, + FctExecutionGasLimitSignallingHourlyServiceGetErrors, + FctExecutionGasLimitSignallingHourlyServiceGetResponse, + FctExecutionGasLimitSignallingHourlyServiceGetResponses, + FctExecutionGasLimitSignallingHourlyServiceListData, + FctExecutionGasLimitSignallingHourlyServiceListError, + FctExecutionGasLimitSignallingHourlyServiceListErrors, + FctExecutionGasLimitSignallingHourlyServiceListResponse, + FctExecutionGasLimitSignallingHourlyServiceListResponses, + FctExecutionGasUsedDaily, + FctExecutionGasUsedDailyServiceGetData, + FctExecutionGasUsedDailyServiceGetError, + FctExecutionGasUsedDailyServiceGetErrors, + FctExecutionGasUsedDailyServiceGetResponse, + FctExecutionGasUsedDailyServiceGetResponses, + FctExecutionGasUsedDailyServiceListData, + FctExecutionGasUsedDailyServiceListError, + FctExecutionGasUsedDailyServiceListErrors, + FctExecutionGasUsedDailyServiceListResponse, + FctExecutionGasUsedDailyServiceListResponses, + FctExecutionGasUsedHourly, + FctExecutionGasUsedHourlyServiceGetData, + FctExecutionGasUsedHourlyServiceGetError, + FctExecutionGasUsedHourlyServiceGetErrors, + FctExecutionGasUsedHourlyServiceGetResponse, + FctExecutionGasUsedHourlyServiceGetResponses, + FctExecutionGasUsedHourlyServiceListData, + FctExecutionGasUsedHourlyServiceListError, + FctExecutionGasUsedHourlyServiceListErrors, + FctExecutionGasUsedHourlyServiceListResponse, + FctExecutionGasUsedHourlyServiceListResponses, + FctExecutionReceiptSizeDaily, + FctExecutionReceiptSizeDailyServiceGetData, + FctExecutionReceiptSizeDailyServiceGetError, + FctExecutionReceiptSizeDailyServiceGetErrors, + FctExecutionReceiptSizeDailyServiceGetResponse, + FctExecutionReceiptSizeDailyServiceGetResponses, + FctExecutionReceiptSizeDailyServiceListData, + FctExecutionReceiptSizeDailyServiceListError, + FctExecutionReceiptSizeDailyServiceListErrors, + FctExecutionReceiptSizeDailyServiceListResponse, + FctExecutionReceiptSizeDailyServiceListResponses, + FctExecutionReceiptSizeHourly, + FctExecutionReceiptSizeHourlyServiceGetData, + FctExecutionReceiptSizeHourlyServiceGetError, + FctExecutionReceiptSizeHourlyServiceGetErrors, + FctExecutionReceiptSizeHourlyServiceGetResponse, + FctExecutionReceiptSizeHourlyServiceGetResponses, + FctExecutionReceiptSizeHourlyServiceListData, + FctExecutionReceiptSizeHourlyServiceListError, + FctExecutionReceiptSizeHourlyServiceListErrors, + FctExecutionReceiptSizeHourlyServiceListResponse, + FctExecutionReceiptSizeHourlyServiceListResponses, + FctExecutionStateSizeDaily, + FctExecutionStateSizeDailyServiceGetData, + FctExecutionStateSizeDailyServiceGetError, + FctExecutionStateSizeDailyServiceGetErrors, + FctExecutionStateSizeDailyServiceGetResponse, + FctExecutionStateSizeDailyServiceGetResponses, + FctExecutionStateSizeDailyServiceListData, + FctExecutionStateSizeDailyServiceListError, + FctExecutionStateSizeDailyServiceListErrors, + FctExecutionStateSizeDailyServiceListResponse, + FctExecutionStateSizeDailyServiceListResponses, + FctExecutionStateSizeHourly, + FctExecutionStateSizeHourlyServiceGetData, + FctExecutionStateSizeHourlyServiceGetError, + FctExecutionStateSizeHourlyServiceGetErrors, + FctExecutionStateSizeHourlyServiceGetResponse, + FctExecutionStateSizeHourlyServiceGetResponses, + FctExecutionStateSizeHourlyServiceListData, + FctExecutionStateSizeHourlyServiceListError, + FctExecutionStateSizeHourlyServiceListErrors, + FctExecutionStateSizeHourlyServiceListResponse, + FctExecutionStateSizeHourlyServiceListResponses, + FctExecutionTpsDaily, + FctExecutionTpsDailyServiceGetData, + FctExecutionTpsDailyServiceGetError, + FctExecutionTpsDailyServiceGetErrors, + FctExecutionTpsDailyServiceGetResponse, + FctExecutionTpsDailyServiceGetResponses, + FctExecutionTpsDailyServiceListData, + FctExecutionTpsDailyServiceListError, + FctExecutionTpsDailyServiceListErrors, + FctExecutionTpsDailyServiceListResponse, + FctExecutionTpsDailyServiceListResponses, + FctExecutionTpsHourly, + FctExecutionTpsHourlyServiceGetData, + FctExecutionTpsHourlyServiceGetError, + FctExecutionTpsHourlyServiceGetErrors, + FctExecutionTpsHourlyServiceGetResponse, + FctExecutionTpsHourlyServiceGetResponses, + FctExecutionTpsHourlyServiceListData, + FctExecutionTpsHourlyServiceListError, + FctExecutionTpsHourlyServiceListErrors, + FctExecutionTpsHourlyServiceListResponse, + FctExecutionTpsHourlyServiceListResponses, + FctExecutionTransactionsDaily, + FctExecutionTransactionsDailyServiceGetData, + FctExecutionTransactionsDailyServiceGetError, + FctExecutionTransactionsDailyServiceGetErrors, + FctExecutionTransactionsDailyServiceGetResponse, + FctExecutionTransactionsDailyServiceGetResponses, + FctExecutionTransactionsDailyServiceListData, + FctExecutionTransactionsDailyServiceListError, + FctExecutionTransactionsDailyServiceListErrors, + FctExecutionTransactionsDailyServiceListResponse, + FctExecutionTransactionsDailyServiceListResponses, + FctExecutionTransactionsHourly, + FctExecutionTransactionsHourlyServiceGetData, + FctExecutionTransactionsHourlyServiceGetError, + FctExecutionTransactionsHourlyServiceGetErrors, + FctExecutionTransactionsHourlyServiceGetResponse, + FctExecutionTransactionsHourlyServiceGetResponses, + FctExecutionTransactionsHourlyServiceListData, + FctExecutionTransactionsHourlyServiceListError, + FctExecutionTransactionsHourlyServiceListErrors, + FctExecutionTransactionsHourlyServiceListResponse, + FctExecutionTransactionsHourlyServiceListResponses, + FctHeadFirstSeenByNode, + FctHeadFirstSeenByNodeServiceGetData, + FctHeadFirstSeenByNodeServiceGetError, + FctHeadFirstSeenByNodeServiceGetErrors, + FctHeadFirstSeenByNodeServiceGetResponse, + FctHeadFirstSeenByNodeServiceGetResponses, + FctHeadFirstSeenByNodeServiceListData, + FctHeadFirstSeenByNodeServiceListError, + FctHeadFirstSeenByNodeServiceListErrors, + FctHeadFirstSeenByNodeServiceListResponse, + FctHeadFirstSeenByNodeServiceListResponses, + FctHeadVoteCorrectnessRateDaily, + FctHeadVoteCorrectnessRateDailyServiceGetData, + FctHeadVoteCorrectnessRateDailyServiceGetError, + FctHeadVoteCorrectnessRateDailyServiceGetErrors, + FctHeadVoteCorrectnessRateDailyServiceGetResponse, + FctHeadVoteCorrectnessRateDailyServiceGetResponses, + FctHeadVoteCorrectnessRateDailyServiceListData, + FctHeadVoteCorrectnessRateDailyServiceListError, + FctHeadVoteCorrectnessRateDailyServiceListErrors, + FctHeadVoteCorrectnessRateDailyServiceListResponse, + FctHeadVoteCorrectnessRateDailyServiceListResponses, + FctHeadVoteCorrectnessRateHourly, + FctHeadVoteCorrectnessRateHourlyServiceGetData, + FctHeadVoteCorrectnessRateHourlyServiceGetError, + FctHeadVoteCorrectnessRateHourlyServiceGetErrors, + FctHeadVoteCorrectnessRateHourlyServiceGetResponse, + FctHeadVoteCorrectnessRateHourlyServiceGetResponses, + FctHeadVoteCorrectnessRateHourlyServiceListData, + FctHeadVoteCorrectnessRateHourlyServiceListError, + FctHeadVoteCorrectnessRateHourlyServiceListErrors, + FctHeadVoteCorrectnessRateHourlyServiceListResponse, + FctHeadVoteCorrectnessRateHourlyServiceListResponses, + FctMevBidCountByBuilder, + FctMevBidCountByBuilderServiceGetData, + FctMevBidCountByBuilderServiceGetError, + FctMevBidCountByBuilderServiceGetErrors, + FctMevBidCountByBuilderServiceGetResponse, + FctMevBidCountByBuilderServiceGetResponses, + FctMevBidCountByBuilderServiceListData, + FctMevBidCountByBuilderServiceListError, + FctMevBidCountByBuilderServiceListErrors, + FctMevBidCountByBuilderServiceListResponse, + FctMevBidCountByBuilderServiceListResponses, + FctMevBidCountByRelay, + FctMevBidCountByRelayServiceGetData, + FctMevBidCountByRelayServiceGetError, + FctMevBidCountByRelayServiceGetErrors, + FctMevBidCountByRelayServiceGetResponse, + FctMevBidCountByRelayServiceGetResponses, + FctMevBidCountByRelayServiceListData, + FctMevBidCountByRelayServiceListError, + FctMevBidCountByRelayServiceListErrors, + FctMevBidCountByRelayServiceListResponse, + FctMevBidCountByRelayServiceListResponses, + FctMevBidHighestValueByBuilderChunked50Ms, + FctMevBidHighestValueByBuilderChunked50MsServiceGetData, + FctMevBidHighestValueByBuilderChunked50MsServiceGetError, + FctMevBidHighestValueByBuilderChunked50MsServiceGetErrors, + FctMevBidHighestValueByBuilderChunked50MsServiceGetResponse, + FctMevBidHighestValueByBuilderChunked50MsServiceGetResponses, + FctMevBidHighestValueByBuilderChunked50MsServiceListData, + FctMevBidHighestValueByBuilderChunked50MsServiceListError, + FctMevBidHighestValueByBuilderChunked50MsServiceListErrors, + FctMevBidHighestValueByBuilderChunked50MsServiceListResponse, + FctMevBidHighestValueByBuilderChunked50MsServiceListResponses, + FctMissedSlotRateDaily, + FctMissedSlotRateDailyServiceGetData, + FctMissedSlotRateDailyServiceGetError, + FctMissedSlotRateDailyServiceGetErrors, + FctMissedSlotRateDailyServiceGetResponse, + FctMissedSlotRateDailyServiceGetResponses, + FctMissedSlotRateDailyServiceListData, + FctMissedSlotRateDailyServiceListError, + FctMissedSlotRateDailyServiceListErrors, + FctMissedSlotRateDailyServiceListResponse, + FctMissedSlotRateDailyServiceListResponses, + FctMissedSlotRateHourly, + FctMissedSlotRateHourlyServiceGetData, + FctMissedSlotRateHourlyServiceGetError, + FctMissedSlotRateHourlyServiceGetErrors, + FctMissedSlotRateHourlyServiceGetResponse, + FctMissedSlotRateHourlyServiceGetResponses, + FctMissedSlotRateHourlyServiceListData, + FctMissedSlotRateHourlyServiceListError, + FctMissedSlotRateHourlyServiceListErrors, + FctMissedSlotRateHourlyServiceListResponse, + FctMissedSlotRateHourlyServiceListResponses, + FctNodeActiveLast24h, + FctNodeActiveLast24hServiceGetData, + FctNodeActiveLast24hServiceGetError, + FctNodeActiveLast24hServiceGetErrors, + FctNodeActiveLast24hServiceGetResponse, + FctNodeActiveLast24hServiceGetResponses, + FctNodeActiveLast24hServiceListData, + FctNodeActiveLast24hServiceListError, + FctNodeActiveLast24hServiceListErrors, + FctNodeActiveLast24hServiceListResponse, + FctNodeActiveLast24hServiceListResponses, + FctNodeCpuUtilizationByProcess, + FctNodeCpuUtilizationByProcessServiceGetData, + FctNodeCpuUtilizationByProcessServiceGetError, + FctNodeCpuUtilizationByProcessServiceGetErrors, + FctNodeCpuUtilizationByProcessServiceGetResponse, + FctNodeCpuUtilizationByProcessServiceGetResponses, + FctNodeCpuUtilizationByProcessServiceListData, + FctNodeCpuUtilizationByProcessServiceListError, + FctNodeCpuUtilizationByProcessServiceListErrors, + FctNodeCpuUtilizationByProcessServiceListResponse, + FctNodeCpuUtilizationByProcessServiceListResponses, + FctNodeDiskIoByProcess, + FctNodeDiskIoByProcessServiceGetData, + FctNodeDiskIoByProcessServiceGetError, + FctNodeDiskIoByProcessServiceGetErrors, + FctNodeDiskIoByProcessServiceGetResponse, + FctNodeDiskIoByProcessServiceGetResponses, + FctNodeDiskIoByProcessServiceListData, + FctNodeDiskIoByProcessServiceListError, + FctNodeDiskIoByProcessServiceListErrors, + FctNodeDiskIoByProcessServiceListResponse, + FctNodeDiskIoByProcessServiceListResponses, + FctNodeMemoryUsageByProcess, + FctNodeMemoryUsageByProcessServiceGetData, + FctNodeMemoryUsageByProcessServiceGetError, + FctNodeMemoryUsageByProcessServiceGetErrors, + FctNodeMemoryUsageByProcessServiceGetResponse, + FctNodeMemoryUsageByProcessServiceGetResponses, + FctNodeMemoryUsageByProcessServiceListData, + FctNodeMemoryUsageByProcessServiceListError, + FctNodeMemoryUsageByProcessServiceListErrors, + FctNodeMemoryUsageByProcessServiceListResponse, + FctNodeMemoryUsageByProcessServiceListResponses, + FctNodeNetworkIoByProcess, + FctNodeNetworkIoByProcessServiceGetData, + FctNodeNetworkIoByProcessServiceGetError, + FctNodeNetworkIoByProcessServiceGetErrors, + FctNodeNetworkIoByProcessServiceGetResponse, + FctNodeNetworkIoByProcessServiceGetResponses, + FctNodeNetworkIoByProcessServiceListData, + FctNodeNetworkIoByProcessServiceListError, + FctNodeNetworkIoByProcessServiceListErrors, + FctNodeNetworkIoByProcessServiceListResponse, + FctNodeNetworkIoByProcessServiceListResponses, + FctOpcodeGasByOpcodeDaily, + FctOpcodeGasByOpcodeDailyServiceGetData, + FctOpcodeGasByOpcodeDailyServiceGetError, + FctOpcodeGasByOpcodeDailyServiceGetErrors, + FctOpcodeGasByOpcodeDailyServiceGetResponse, + FctOpcodeGasByOpcodeDailyServiceGetResponses, + FctOpcodeGasByOpcodeDailyServiceListData, + FctOpcodeGasByOpcodeDailyServiceListError, + FctOpcodeGasByOpcodeDailyServiceListErrors, + FctOpcodeGasByOpcodeDailyServiceListResponse, + FctOpcodeGasByOpcodeDailyServiceListResponses, + FctOpcodeGasByOpcodeHourly, + FctOpcodeGasByOpcodeHourlyServiceGetData, + FctOpcodeGasByOpcodeHourlyServiceGetError, + FctOpcodeGasByOpcodeHourlyServiceGetErrors, + FctOpcodeGasByOpcodeHourlyServiceGetResponse, + FctOpcodeGasByOpcodeHourlyServiceGetResponses, + FctOpcodeGasByOpcodeHourlyServiceListData, + FctOpcodeGasByOpcodeHourlyServiceListError, + FctOpcodeGasByOpcodeHourlyServiceListErrors, + FctOpcodeGasByOpcodeHourlyServiceListResponse, + FctOpcodeGasByOpcodeHourlyServiceListResponses, + FctOpcodeOpsDaily, + FctOpcodeOpsDailyServiceGetData, + FctOpcodeOpsDailyServiceGetError, + FctOpcodeOpsDailyServiceGetErrors, + FctOpcodeOpsDailyServiceGetResponse, + FctOpcodeOpsDailyServiceGetResponses, + FctOpcodeOpsDailyServiceListData, + FctOpcodeOpsDailyServiceListError, + FctOpcodeOpsDailyServiceListErrors, + FctOpcodeOpsDailyServiceListResponse, + FctOpcodeOpsDailyServiceListResponses, + FctOpcodeOpsHourly, + FctOpcodeOpsHourlyServiceGetData, + FctOpcodeOpsHourlyServiceGetError, + FctOpcodeOpsHourlyServiceGetErrors, + FctOpcodeOpsHourlyServiceGetResponse, + FctOpcodeOpsHourlyServiceGetResponses, + FctOpcodeOpsHourlyServiceListData, + FctOpcodeOpsHourlyServiceListError, + FctOpcodeOpsHourlyServiceListErrors, + FctOpcodeOpsHourlyServiceListResponse, + FctOpcodeOpsHourlyServiceListResponses, + FctPayloadBidHighestValueByBuilderChunked50Ms, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetData, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetError, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetErrors, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponses, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListData, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListError, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListErrors, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponses, + FctPreparedBlock, + FctPreparedBlockServiceGetData, + FctPreparedBlockServiceGetError, + FctPreparedBlockServiceGetErrors, + FctPreparedBlockServiceGetResponse, + FctPreparedBlockServiceGetResponses, + FctPreparedBlockServiceListData, + FctPreparedBlockServiceListError, + FctPreparedBlockServiceListErrors, + FctPreparedBlockServiceListResponse, + FctPreparedBlockServiceListResponses, + FctProposerRewardDaily, + FctProposerRewardDailyServiceGetData, + FctProposerRewardDailyServiceGetError, + FctProposerRewardDailyServiceGetErrors, + FctProposerRewardDailyServiceGetResponse, + FctProposerRewardDailyServiceGetResponses, + FctProposerRewardDailyServiceListData, + FctProposerRewardDailyServiceListError, + FctProposerRewardDailyServiceListErrors, + FctProposerRewardDailyServiceListResponse, + FctProposerRewardDailyServiceListResponses, + FctProposerRewardHourly, + FctProposerRewardHourlyServiceGetData, + FctProposerRewardHourlyServiceGetError, + FctProposerRewardHourlyServiceGetErrors, + FctProposerRewardHourlyServiceGetResponse, + FctProposerRewardHourlyServiceGetResponses, + FctProposerRewardHourlyServiceListData, + FctProposerRewardHourlyServiceListError, + FctProposerRewardHourlyServiceListErrors, + FctProposerRewardHourlyServiceListResponse, + FctProposerRewardHourlyServiceListResponses, + FctReorgDaily, + FctReorgDailyServiceGetData, + FctReorgDailyServiceGetError, + FctReorgDailyServiceGetErrors, + FctReorgDailyServiceGetResponse, + FctReorgDailyServiceGetResponses, + FctReorgDailyServiceListData, + FctReorgDailyServiceListError, + FctReorgDailyServiceListErrors, + FctReorgDailyServiceListResponse, + FctReorgDailyServiceListResponses, + FctReorgHourly, + FctReorgHourlyServiceGetData, + FctReorgHourlyServiceGetError, + FctReorgHourlyServiceGetErrors, + FctReorgHourlyServiceGetResponse, + FctReorgHourlyServiceGetResponses, + FctReorgHourlyServiceListData, + FctReorgHourlyServiceListError, + FctReorgHourlyServiceListErrors, + FctReorgHourlyServiceListResponse, + FctReorgHourlyServiceListResponses, + FctRocketpoolValidator, + FctRocketpoolValidatorServiceGetData, + FctRocketpoolValidatorServiceGetError, + FctRocketpoolValidatorServiceGetErrors, + FctRocketpoolValidatorServiceGetResponse, + FctRocketpoolValidatorServiceGetResponses, + FctRocketpoolValidatorServiceListData, + FctRocketpoolValidatorServiceListError, + FctRocketpoolValidatorServiceListErrors, + FctRocketpoolValidatorServiceListResponse, + FctRocketpoolValidatorServiceListResponses, + FctStorageSlotStateByAddressDaily, + FctStorageSlotStateByAddressDailyServiceGetData, + FctStorageSlotStateByAddressDailyServiceGetError, + FctStorageSlotStateByAddressDailyServiceGetErrors, + FctStorageSlotStateByAddressDailyServiceGetResponse, + FctStorageSlotStateByAddressDailyServiceGetResponses, + FctStorageSlotStateByAddressDailyServiceListData, + FctStorageSlotStateByAddressDailyServiceListError, + FctStorageSlotStateByAddressDailyServiceListErrors, + FctStorageSlotStateByAddressDailyServiceListResponse, + FctStorageSlotStateByAddressDailyServiceListResponses, + FctStorageSlotStateByAddressHourly, + FctStorageSlotStateByAddressHourlyServiceGetData, + FctStorageSlotStateByAddressHourlyServiceGetError, + FctStorageSlotStateByAddressHourlyServiceGetErrors, + FctStorageSlotStateByAddressHourlyServiceGetResponse, + FctStorageSlotStateByAddressHourlyServiceGetResponses, + FctStorageSlotStateByAddressHourlyServiceListData, + FctStorageSlotStateByAddressHourlyServiceListError, + FctStorageSlotStateByAddressHourlyServiceListErrors, + FctStorageSlotStateByAddressHourlyServiceListResponse, + FctStorageSlotStateByAddressHourlyServiceListResponses, + FctStorageSlotStateByBlockDaily, + FctStorageSlotStateByBlockDailyServiceGetData, + FctStorageSlotStateByBlockDailyServiceGetError, + FctStorageSlotStateByBlockDailyServiceGetErrors, + FctStorageSlotStateByBlockDailyServiceGetResponse, + FctStorageSlotStateByBlockDailyServiceGetResponses, + FctStorageSlotStateByBlockDailyServiceListData, + FctStorageSlotStateByBlockDailyServiceListError, + FctStorageSlotStateByBlockDailyServiceListErrors, + FctStorageSlotStateByBlockDailyServiceListResponse, + FctStorageSlotStateByBlockDailyServiceListResponses, + FctStorageSlotStateByBlockHourly, + FctStorageSlotStateByBlockHourlyServiceGetData, + FctStorageSlotStateByBlockHourlyServiceGetError, + FctStorageSlotStateByBlockHourlyServiceGetErrors, + FctStorageSlotStateByBlockHourlyServiceGetResponse, + FctStorageSlotStateByBlockHourlyServiceGetResponses, + FctStorageSlotStateByBlockHourlyServiceListData, + FctStorageSlotStateByBlockHourlyServiceListError, + FctStorageSlotStateByBlockHourlyServiceListErrors, + FctStorageSlotStateByBlockHourlyServiceListResponse, + FctStorageSlotStateByBlockHourlyServiceListResponses, + FctStorageSlotStateWithExpiryByAddressDaily, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetData, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetError, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetErrors, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponses, + FctStorageSlotStateWithExpiryByAddressDailyServiceListData, + FctStorageSlotStateWithExpiryByAddressDailyServiceListError, + FctStorageSlotStateWithExpiryByAddressDailyServiceListErrors, + FctStorageSlotStateWithExpiryByAddressDailyServiceListResponse, + FctStorageSlotStateWithExpiryByAddressDailyServiceListResponses, + FctStorageSlotStateWithExpiryByAddressHourly, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetData, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetError, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetErrors, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponses, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListData, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListError, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListErrors, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponses, + FctStorageSlotStateWithExpiryByBlockDaily, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetData, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetError, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetErrors, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponses, + FctStorageSlotStateWithExpiryByBlockDailyServiceListData, + FctStorageSlotStateWithExpiryByBlockDailyServiceListError, + FctStorageSlotStateWithExpiryByBlockDailyServiceListErrors, + FctStorageSlotStateWithExpiryByBlockDailyServiceListResponse, + FctStorageSlotStateWithExpiryByBlockDailyServiceListResponses, + FctStorageSlotStateWithExpiryByBlockHourly, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetData, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetError, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetErrors, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponses, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListData, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListError, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListErrors, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponses, + FctStorageSlotTop100ByBytes, + FctStorageSlotTop100ByBytesServiceGetData, + FctStorageSlotTop100ByBytesServiceGetError, + FctStorageSlotTop100ByBytesServiceGetErrors, + FctStorageSlotTop100ByBytesServiceGetResponse, + FctStorageSlotTop100ByBytesServiceGetResponses, + FctStorageSlotTop100ByBytesServiceListData, + FctStorageSlotTop100ByBytesServiceListError, + FctStorageSlotTop100ByBytesServiceListErrors, + FctStorageSlotTop100ByBytesServiceListResponse, + FctStorageSlotTop100ByBytesServiceListResponses, + FctStorageSlotTop100BySlots, + FctStorageSlotTop100BySlotsServiceGetData, + FctStorageSlotTop100BySlotsServiceGetError, + FctStorageSlotTop100BySlotsServiceGetErrors, + FctStorageSlotTop100BySlotsServiceGetResponse, + FctStorageSlotTop100BySlotsServiceGetResponses, + FctStorageSlotTop100BySlotsServiceListData, + FctStorageSlotTop100BySlotsServiceListError, + FctStorageSlotTop100BySlotsServiceListErrors, + FctStorageSlotTop100BySlotsServiceListResponse, + FctStorageSlotTop100BySlotsServiceListResponses, + FctSyncCommitteeParticipationByValidator, + FctSyncCommitteeParticipationByValidatorDaily, + FctSyncCommitteeParticipationByValidatorDailyServiceGetData, + FctSyncCommitteeParticipationByValidatorDailyServiceGetError, + FctSyncCommitteeParticipationByValidatorDailyServiceGetErrors, + FctSyncCommitteeParticipationByValidatorDailyServiceGetResponse, + FctSyncCommitteeParticipationByValidatorDailyServiceGetResponses, + FctSyncCommitteeParticipationByValidatorDailyServiceListData, + FctSyncCommitteeParticipationByValidatorDailyServiceListError, + FctSyncCommitteeParticipationByValidatorDailyServiceListErrors, + FctSyncCommitteeParticipationByValidatorDailyServiceListResponse, + FctSyncCommitteeParticipationByValidatorDailyServiceListResponses, + FctSyncCommitteeParticipationByValidatorHourly, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetData, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetError, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetErrors, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponses, + FctSyncCommitteeParticipationByValidatorHourlyServiceListData, + FctSyncCommitteeParticipationByValidatorHourlyServiceListError, + FctSyncCommitteeParticipationByValidatorHourlyServiceListErrors, + FctSyncCommitteeParticipationByValidatorHourlyServiceListResponse, + FctSyncCommitteeParticipationByValidatorHourlyServiceListResponses, + FctSyncCommitteeParticipationByValidatorServiceGetData, + FctSyncCommitteeParticipationByValidatorServiceGetError, + FctSyncCommitteeParticipationByValidatorServiceGetErrors, + FctSyncCommitteeParticipationByValidatorServiceGetResponse, + FctSyncCommitteeParticipationByValidatorServiceGetResponses, + FctSyncCommitteeParticipationByValidatorServiceListData, + FctSyncCommitteeParticipationByValidatorServiceListError, + FctSyncCommitteeParticipationByValidatorServiceListErrors, + FctSyncCommitteeParticipationByValidatorServiceListResponse, + FctSyncCommitteeParticipationByValidatorServiceListResponses, + FctTokenContractStorageStateByBlockDaily, + FctTokenContractStorageStateByBlockDailyServiceGetData, + FctTokenContractStorageStateByBlockDailyServiceGetError, + FctTokenContractStorageStateByBlockDailyServiceGetErrors, + FctTokenContractStorageStateByBlockDailyServiceGetResponse, + FctTokenContractStorageStateByBlockDailyServiceGetResponses, + FctTokenContractStorageStateByBlockDailyServiceListData, + FctTokenContractStorageStateByBlockDailyServiceListError, + FctTokenContractStorageStateByBlockDailyServiceListErrors, + FctTokenContractStorageStateByBlockDailyServiceListResponse, + FctTokenContractStorageStateByBlockDailyServiceListResponses, + FctValidatorBalance, + FctValidatorBalanceDaily, + FctValidatorBalanceDailyServiceGetData, + FctValidatorBalanceDailyServiceGetError, + FctValidatorBalanceDailyServiceGetErrors, + FctValidatorBalanceDailyServiceGetResponse, + FctValidatorBalanceDailyServiceGetResponses, + FctValidatorBalanceDailyServiceListData, + FctValidatorBalanceDailyServiceListError, + FctValidatorBalanceDailyServiceListErrors, + FctValidatorBalanceDailyServiceListResponse, + FctValidatorBalanceDailyServiceListResponses, + FctValidatorBalanceHourly, + FctValidatorBalanceHourlyServiceGetData, + FctValidatorBalanceHourlyServiceGetError, + FctValidatorBalanceHourlyServiceGetErrors, + FctValidatorBalanceHourlyServiceGetResponse, + FctValidatorBalanceHourlyServiceGetResponses, + FctValidatorBalanceHourlyServiceListData, + FctValidatorBalanceHourlyServiceListError, + FctValidatorBalanceHourlyServiceListErrors, + FctValidatorBalanceHourlyServiceListResponse, + FctValidatorBalanceHourlyServiceListResponses, + FctValidatorBalanceServiceGetData, + FctValidatorBalanceServiceGetError, + FctValidatorBalanceServiceGetErrors, + FctValidatorBalanceServiceGetResponse, + FctValidatorBalanceServiceGetResponses, + FctValidatorBalanceServiceListData, + FctValidatorBalanceServiceListError, + FctValidatorBalanceServiceListErrors, + FctValidatorBalanceServiceListResponse, + FctValidatorBalanceServiceListResponses, + FctValidatorCountByEntityByStatusDaily, + FctValidatorCountByEntityByStatusDailyServiceGetData, + FctValidatorCountByEntityByStatusDailyServiceGetError, + FctValidatorCountByEntityByStatusDailyServiceGetErrors, + FctValidatorCountByEntityByStatusDailyServiceGetResponse, + FctValidatorCountByEntityByStatusDailyServiceGetResponses, + FctValidatorCountByEntityByStatusDailyServiceListData, + FctValidatorCountByEntityByStatusDailyServiceListError, + FctValidatorCountByEntityByStatusDailyServiceListErrors, + FctValidatorCountByEntityByStatusDailyServiceListResponse, + FctValidatorCountByEntityByStatusDailyServiceListResponses, + GetAdminCbtIncrementalResponse, + GetAdminCbtScheduledResponse, + GetDimBlockBlobSubmitterResponse, + GetDimContractOwnerResponse, + GetDimFunctionSignatureResponse, + GetDimNodeResponse, + GetDimRocketpoolNodeResponse, + GetDimTokenContractResponse, + GetDimValidatorPubkeyResponse, + GetDimValidatorStatusResponse, + GetFctAttestationCorrectnessByValidatorCanonicalResponse, + GetFctAttestationCorrectnessByValidatorHeadResponse, + GetFctAttestationCorrectnessByValidatorResponse, + GetFctAttestationCorrectnessCanonicalResponse, + GetFctAttestationCorrectnessHeadResponse, + GetFctAttestationCorrectnessResponse, + GetFctAttestationFirstSeenByValidatorResponse, + GetFctAttestationFirstSeenChunked50MsResponse, + GetFctAttestationInclusionDelayDailyResponse, + GetFctAttestationInclusionDelayHourlyResponse, + GetFctAttestationLivenessByEntityHeadResponse, + GetFctAttestationLivenessByEntityResponse, + GetFctAttestationObservationByNodeResponse, + GetFctAttestationParticipationRateDailyResponse, + GetFctAttestationParticipationRateHourlyResponse, + GetFctAttestationVoteCorrectnessByValidatorDailyResponse, + GetFctAttestationVoteCorrectnessByValidatorHourlyResponse, + GetFctAttestationVoteCorrectnessByValidatorResponse, + GetFctBlobCountDailyResponse, + GetFctBlobCountHourlyResponse, + GetFctBlockBlobCountHeadResponse, + GetFctBlockBlobCountResponse, + GetFctBlockBlobFirstSeenByNodeResponse, + GetFctBlockBlobHeadResponse, + GetFctBlockDataColumnSidecarFirstSeenByNodeResponse, + GetFctBlockDataColumnSidecarFirstSeenResponse, + GetFctBlockFirstSeenByNodeResponse, + GetFctBlockHeadResponse, + GetFctBlockMevHeadResponse, + GetFctBlockMevResponse, + GetFctBlockPayloadAvailableByNodeResponse, + GetFctBlockPayloadBidResponse, + GetFctBlockPayloadFirstSeenByNodeResponse, + GetFctBlockPayloadPtcVoteHeadResponse, + GetFctBlockPayloadPtcVoteResponse, + GetFctBlockProposalStatusDailyResponse, + GetFctBlockProposalStatusHourlyResponse, + GetFctBlockProposerByValidatorResponse, + GetFctBlockProposerEntityResponse, + GetFctBlockProposerHeadResponse, + GetFctBlockProposerResponse, + GetFctBlockResponse, + GetFctContractStorageStateByAddressDailyResponse, + GetFctContractStorageStateByAddressHourlyResponse, + GetFctContractStorageStateByBlockDailyResponse, + GetFctContractStorageStateByBlockHourlyResponse, + GetFctContractStorageStateWithExpiryByAddressDailyResponse, + GetFctContractStorageStateWithExpiryByAddressHourlyResponse, + GetFctContractStorageStateWithExpiryByBlockDailyResponse, + GetFctContractStorageStateWithExpiryByBlockHourlyResponse, + GetFctDataColumnAvailabilityByEpochResponse, + GetFctDataColumnAvailabilityBySlotBlobResponse, + GetFctDataColumnAvailabilityBySlotResponse, + GetFctDataColumnAvailabilityDailyResponse, + GetFctDataColumnAvailabilityHourlyResponse, + GetFctEngineGetBlobsByElClientHourlyResponse, + GetFctEngineGetBlobsByElClientResponse, + GetFctEngineGetBlobsBySlotResponse, + GetFctEngineGetBlobsDurationChunked50MsResponse, + GetFctEngineNewPayloadByElClientHourlyResponse, + GetFctEngineNewPayloadByElClientResponse, + GetFctEngineNewPayloadBySlotResponse, + GetFctEngineNewPayloadDurationChunked50MsResponse, + GetFctEngineNewPayloadWinrateDailyResponse, + GetFctEngineNewPayloadWinrateHourlyResponse, + GetFctExecutionGasLimitDailyResponse, + GetFctExecutionGasLimitHourlyResponse, + GetFctExecutionGasLimitSignallingDailyResponse, + GetFctExecutionGasLimitSignallingHourlyResponse, + GetFctExecutionGasUsedDailyResponse, + GetFctExecutionGasUsedHourlyResponse, + GetFctExecutionReceiptSizeDailyResponse, + GetFctExecutionReceiptSizeHourlyResponse, + GetFctExecutionStateSizeDailyResponse, + GetFctExecutionStateSizeHourlyResponse, + GetFctExecutionTpsDailyResponse, + GetFctExecutionTpsHourlyResponse, + GetFctExecutionTransactionsDailyResponse, + GetFctExecutionTransactionsHourlyResponse, + GetFctHeadFirstSeenByNodeResponse, + GetFctHeadVoteCorrectnessRateDailyResponse, + GetFctHeadVoteCorrectnessRateHourlyResponse, + GetFctMevBidCountByBuilderResponse, + GetFctMevBidCountByRelayResponse, + GetFctMevBidHighestValueByBuilderChunked50MsResponse, + GetFctMissedSlotRateDailyResponse, + GetFctMissedSlotRateHourlyResponse, + GetFctNodeActiveLast24hResponse, + GetFctNodeCpuUtilizationByProcessResponse, + GetFctNodeDiskIoByProcessResponse, + GetFctNodeMemoryUsageByProcessResponse, + GetFctNodeNetworkIoByProcessResponse, + GetFctOpcodeGasByOpcodeDailyResponse, + GetFctOpcodeGasByOpcodeHourlyResponse, + GetFctOpcodeOpsDailyResponse, + GetFctOpcodeOpsHourlyResponse, + GetFctPayloadBidHighestValueByBuilderChunked50MsResponse, + GetFctPreparedBlockResponse, + GetFctProposerRewardDailyResponse, + GetFctProposerRewardHourlyResponse, + GetFctReorgDailyResponse, + GetFctReorgHourlyResponse, + GetFctRocketpoolValidatorResponse, + GetFctStorageSlotStateByAddressDailyResponse, + GetFctStorageSlotStateByAddressHourlyResponse, + GetFctStorageSlotStateByBlockDailyResponse, + GetFctStorageSlotStateByBlockHourlyResponse, + GetFctStorageSlotStateWithExpiryByAddressDailyResponse, + GetFctStorageSlotStateWithExpiryByAddressHourlyResponse, + GetFctStorageSlotStateWithExpiryByBlockDailyResponse, + GetFctStorageSlotStateWithExpiryByBlockHourlyResponse, + GetFctStorageSlotTop100ByBytesResponse, + GetFctStorageSlotTop100BySlotsResponse, + GetFctSyncCommitteeParticipationByValidatorDailyResponse, + GetFctSyncCommitteeParticipationByValidatorHourlyResponse, + GetFctSyncCommitteeParticipationByValidatorResponse, + GetFctTokenContractStorageStateByBlockDailyResponse, + GetFctValidatorBalanceDailyResponse, + GetFctValidatorBalanceHourlyResponse, + GetFctValidatorBalanceResponse, + GetFctValidatorCountByEntityByStatusDailyResponse, + GetIntAttestationAttestedCanonicalResponse, + GetIntAttestationAttestedHeadResponse, + GetIntAttestationAttestedResponse, + GetIntAttestationFirstSeenAggregateResponse, + GetIntAttestationFirstSeenResponse, + GetIntBeaconCommitteeHeadResponse, + GetIntBeaconCommitteeResponse, + GetIntBlockBlobCountCanonicalResponse, + GetIntBlockCanonicalResponse, + GetIntBlockMevCanonicalResponse, + GetIntBlockOpcodeGasResponse, + GetIntBlockPayloadPtcVoteCanonicalResponse, + GetIntBlockProposerCanonicalResponse, + GetIntBlockReceiptSizeResponse, + GetIntBlockResourceGasResponse, + GetIntContractCreationResponse, + GetIntContractSelfdestructResponse, + GetIntContractStorageExpiry12mResponse, + GetIntContractStorageExpiry18mResponse, + GetIntContractStorageExpiry1mResponse, + GetIntContractStorageExpiry24mResponse, + GetIntContractStorageExpiry6mResponse, + GetIntContractStorageNextTouchResponse, + GetIntContractStorageReactivation12mResponse, + GetIntContractStorageReactivation18mResponse, + GetIntContractStorageReactivation1mResponse, + GetIntContractStorageReactivation24mResponse, + GetIntContractStorageReactivation6mResponse, + GetIntContractStorageStateByAddressResponse, + GetIntContractStorageStateByBlockResponse, + GetIntContractStorageStateResponse, + GetIntContractStorageStateWithExpiryByAddressResponse, + GetIntContractStorageStateWithExpiryByBlockResponse, + GetIntContractStorageStateWithExpiryResponse, + GetIntCustodyProbeOrderBySlotResponse, + GetIntCustodyProbeResponse, + GetIntEngineGetBlobsResponse, + GetIntEngineNewPayloadFastestExecutionByNodeClassResponse, + GetIntEngineNewPayloadResponse, + GetIntExecutionBlockByDateResponse, + GetIntExecutionStateSizeByBlockResponse, + GetIntRocketpoolMegapoolResponse, + GetIntRocketpoolMinipoolResponse, + GetIntRocketpoolNodeEventResponse, + GetIntRocketpoolNodeTimezoneResponse, + GetIntStorageSelfdestructDiffsResponse, + GetIntStorageSlotDiffByAddressSlotResponse, + GetIntStorageSlotDiffResponse, + GetIntStorageSlotExpiry12mResponse, + GetIntStorageSlotExpiry18mResponse, + GetIntStorageSlotExpiry1mResponse, + GetIntStorageSlotExpiry24mResponse, + GetIntStorageSlotExpiry6mResponse, + GetIntStorageSlotLifecycleBoundaryResponse, + GetIntStorageSlotLifecycleResponse, + GetIntStorageSlotNextTouchResponse, + GetIntStorageSlotReactivation12mResponse, + GetIntStorageSlotReactivation18mResponse, + GetIntStorageSlotReactivation1mResponse, + GetIntStorageSlotReactivation24mResponse, + GetIntStorageSlotReactivation6mResponse, + GetIntStorageSlotReadResponse, + GetIntStorageSlotStateByAddressResponse, + GetIntStorageSlotStateByBlockResponse, + GetIntStorageSlotStateResponse, + GetIntStorageSlotStateWithExpiryByAddressResponse, + GetIntStorageSlotStateWithExpiryByBlockResponse, + GetIntStorageSlotStateWithExpiryResponse, + GetIntTokenContractStorageStateByBlockResponse, + GetIntTransactionCallFrameOpcodeGasResponse, + GetIntTransactionCallFrameOpcodeResourceGasResponse, + GetIntTransactionCallFrameResponse, + GetIntTransactionOpcodeGasResponse, + GetIntTransactionReceiptSizeResponse, + GetIntTransactionResourceGasResponse, + GoogleProtobufAny, + IntAttestationAttested, + IntAttestationAttestedCanonical, + IntAttestationAttestedCanonicalServiceGetData, + IntAttestationAttestedCanonicalServiceGetError, + IntAttestationAttestedCanonicalServiceGetErrors, + IntAttestationAttestedCanonicalServiceGetResponse, + IntAttestationAttestedCanonicalServiceGetResponses, + IntAttestationAttestedCanonicalServiceListData, + IntAttestationAttestedCanonicalServiceListError, + IntAttestationAttestedCanonicalServiceListErrors, + IntAttestationAttestedCanonicalServiceListResponse, + IntAttestationAttestedCanonicalServiceListResponses, + IntAttestationAttestedHead, + IntAttestationAttestedHeadServiceGetData, + IntAttestationAttestedHeadServiceGetError, + IntAttestationAttestedHeadServiceGetErrors, + IntAttestationAttestedHeadServiceGetResponse, + IntAttestationAttestedHeadServiceGetResponses, + IntAttestationAttestedHeadServiceListData, + IntAttestationAttestedHeadServiceListError, + IntAttestationAttestedHeadServiceListErrors, + IntAttestationAttestedHeadServiceListResponse, + IntAttestationAttestedHeadServiceListResponses, + IntAttestationAttestedServiceGetData, + IntAttestationAttestedServiceGetError, + IntAttestationAttestedServiceGetErrors, + IntAttestationAttestedServiceGetResponse, + IntAttestationAttestedServiceGetResponses, + IntAttestationAttestedServiceListData, + IntAttestationAttestedServiceListError, + IntAttestationAttestedServiceListErrors, + IntAttestationAttestedServiceListResponse, + IntAttestationAttestedServiceListResponses, + IntAttestationFirstSeen, + IntAttestationFirstSeenAggregate, + IntAttestationFirstSeenAggregateServiceGetData, + IntAttestationFirstSeenAggregateServiceGetError, + IntAttestationFirstSeenAggregateServiceGetErrors, + IntAttestationFirstSeenAggregateServiceGetResponse, + IntAttestationFirstSeenAggregateServiceGetResponses, + IntAttestationFirstSeenAggregateServiceListData, + IntAttestationFirstSeenAggregateServiceListError, + IntAttestationFirstSeenAggregateServiceListErrors, + IntAttestationFirstSeenAggregateServiceListResponse, + IntAttestationFirstSeenAggregateServiceListResponses, + IntAttestationFirstSeenServiceGetData, + IntAttestationFirstSeenServiceGetError, + IntAttestationFirstSeenServiceGetErrors, + IntAttestationFirstSeenServiceGetResponse, + IntAttestationFirstSeenServiceGetResponses, + IntAttestationFirstSeenServiceListData, + IntAttestationFirstSeenServiceListError, + IntAttestationFirstSeenServiceListErrors, + IntAttestationFirstSeenServiceListResponse, + IntAttestationFirstSeenServiceListResponses, + IntBeaconCommittee, + IntBeaconCommitteeHead, + IntBeaconCommitteeHeadServiceGetData, + IntBeaconCommitteeHeadServiceGetError, + IntBeaconCommitteeHeadServiceGetErrors, + IntBeaconCommitteeHeadServiceGetResponse, + IntBeaconCommitteeHeadServiceGetResponses, + IntBeaconCommitteeHeadServiceListData, + IntBeaconCommitteeHeadServiceListError, + IntBeaconCommitteeHeadServiceListErrors, + IntBeaconCommitteeHeadServiceListResponse, + IntBeaconCommitteeHeadServiceListResponses, + IntBeaconCommitteeServiceGetData, + IntBeaconCommitteeServiceGetError, + IntBeaconCommitteeServiceGetErrors, + IntBeaconCommitteeServiceGetResponse, + IntBeaconCommitteeServiceGetResponses, + IntBeaconCommitteeServiceListData, + IntBeaconCommitteeServiceListError, + IntBeaconCommitteeServiceListErrors, + IntBeaconCommitteeServiceListResponse, + IntBeaconCommitteeServiceListResponses, + IntBlockBlobCountCanonical, + IntBlockBlobCountCanonicalServiceGetData, + IntBlockBlobCountCanonicalServiceGetError, + IntBlockBlobCountCanonicalServiceGetErrors, + IntBlockBlobCountCanonicalServiceGetResponse, + IntBlockBlobCountCanonicalServiceGetResponses, + IntBlockBlobCountCanonicalServiceListData, + IntBlockBlobCountCanonicalServiceListError, + IntBlockBlobCountCanonicalServiceListErrors, + IntBlockBlobCountCanonicalServiceListResponse, + IntBlockBlobCountCanonicalServiceListResponses, + IntBlockCanonical, + IntBlockCanonicalServiceGetData, + IntBlockCanonicalServiceGetError, + IntBlockCanonicalServiceGetErrors, + IntBlockCanonicalServiceGetResponse, + IntBlockCanonicalServiceGetResponses, + IntBlockCanonicalServiceListData, + IntBlockCanonicalServiceListError, + IntBlockCanonicalServiceListErrors, + IntBlockCanonicalServiceListResponse, + IntBlockCanonicalServiceListResponses, + IntBlockMevCanonical, + IntBlockMevCanonicalServiceGetData, + IntBlockMevCanonicalServiceGetError, + IntBlockMevCanonicalServiceGetErrors, + IntBlockMevCanonicalServiceGetResponse, + IntBlockMevCanonicalServiceGetResponses, + IntBlockMevCanonicalServiceListData, + IntBlockMevCanonicalServiceListError, + IntBlockMevCanonicalServiceListErrors, + IntBlockMevCanonicalServiceListResponse, + IntBlockMevCanonicalServiceListResponses, + IntBlockOpcodeGas, + IntBlockOpcodeGasServiceGetData, + IntBlockOpcodeGasServiceGetError, + IntBlockOpcodeGasServiceGetErrors, + IntBlockOpcodeGasServiceGetResponse, + IntBlockOpcodeGasServiceGetResponses, + IntBlockOpcodeGasServiceListData, + IntBlockOpcodeGasServiceListError, + IntBlockOpcodeGasServiceListErrors, + IntBlockOpcodeGasServiceListResponse, + IntBlockOpcodeGasServiceListResponses, + IntBlockPayloadPtcVoteCanonical, + IntBlockPayloadPtcVoteCanonicalServiceGetData, + IntBlockPayloadPtcVoteCanonicalServiceGetError, + IntBlockPayloadPtcVoteCanonicalServiceGetErrors, + IntBlockPayloadPtcVoteCanonicalServiceGetResponse, + IntBlockPayloadPtcVoteCanonicalServiceGetResponses, + IntBlockPayloadPtcVoteCanonicalServiceListData, + IntBlockPayloadPtcVoteCanonicalServiceListError, + IntBlockPayloadPtcVoteCanonicalServiceListErrors, + IntBlockPayloadPtcVoteCanonicalServiceListResponse, + IntBlockPayloadPtcVoteCanonicalServiceListResponses, + IntBlockProposerCanonical, + IntBlockProposerCanonicalServiceGetData, + IntBlockProposerCanonicalServiceGetError, + IntBlockProposerCanonicalServiceGetErrors, + IntBlockProposerCanonicalServiceGetResponse, + IntBlockProposerCanonicalServiceGetResponses, + IntBlockProposerCanonicalServiceListData, + IntBlockProposerCanonicalServiceListError, + IntBlockProposerCanonicalServiceListErrors, + IntBlockProposerCanonicalServiceListResponse, + IntBlockProposerCanonicalServiceListResponses, + IntBlockReceiptSize, + IntBlockReceiptSizeServiceGetData, + IntBlockReceiptSizeServiceGetError, + IntBlockReceiptSizeServiceGetErrors, + IntBlockReceiptSizeServiceGetResponse, + IntBlockReceiptSizeServiceGetResponses, + IntBlockReceiptSizeServiceListData, + IntBlockReceiptSizeServiceListError, + IntBlockReceiptSizeServiceListErrors, + IntBlockReceiptSizeServiceListResponse, + IntBlockReceiptSizeServiceListResponses, + IntBlockResourceGas, + IntBlockResourceGasServiceGetData, + IntBlockResourceGasServiceGetError, + IntBlockResourceGasServiceGetErrors, + IntBlockResourceGasServiceGetResponse, + IntBlockResourceGasServiceGetResponses, + IntBlockResourceGasServiceListData, + IntBlockResourceGasServiceListError, + IntBlockResourceGasServiceListErrors, + IntBlockResourceGasServiceListResponse, + IntBlockResourceGasServiceListResponses, + IntContractCreation, + IntContractCreationServiceGetData, + IntContractCreationServiceGetError, + IntContractCreationServiceGetErrors, + IntContractCreationServiceGetResponse, + IntContractCreationServiceGetResponses, + IntContractCreationServiceListData, + IntContractCreationServiceListError, + IntContractCreationServiceListErrors, + IntContractCreationServiceListResponse, + IntContractCreationServiceListResponses, + IntContractSelfdestruct, + IntContractSelfdestructServiceGetData, + IntContractSelfdestructServiceGetError, + IntContractSelfdestructServiceGetErrors, + IntContractSelfdestructServiceGetResponse, + IntContractSelfdestructServiceGetResponses, + IntContractSelfdestructServiceListData, + IntContractSelfdestructServiceListError, + IntContractSelfdestructServiceListErrors, + IntContractSelfdestructServiceListResponse, + IntContractSelfdestructServiceListResponses, + IntContractStorageExpiry12m, + IntContractStorageExpiry12mServiceGetData, + IntContractStorageExpiry12mServiceGetError, + IntContractStorageExpiry12mServiceGetErrors, + IntContractStorageExpiry12mServiceGetResponse, + IntContractStorageExpiry12mServiceGetResponses, + IntContractStorageExpiry12mServiceListData, + IntContractStorageExpiry12mServiceListError, + IntContractStorageExpiry12mServiceListErrors, + IntContractStorageExpiry12mServiceListResponse, + IntContractStorageExpiry12mServiceListResponses, + IntContractStorageExpiry18m, + IntContractStorageExpiry18mServiceGetData, + IntContractStorageExpiry18mServiceGetError, + IntContractStorageExpiry18mServiceGetErrors, + IntContractStorageExpiry18mServiceGetResponse, + IntContractStorageExpiry18mServiceGetResponses, + IntContractStorageExpiry18mServiceListData, + IntContractStorageExpiry18mServiceListError, + IntContractStorageExpiry18mServiceListErrors, + IntContractStorageExpiry18mServiceListResponse, + IntContractStorageExpiry18mServiceListResponses, + IntContractStorageExpiry1m, + IntContractStorageExpiry1mServiceGetData, + IntContractStorageExpiry1mServiceGetError, + IntContractStorageExpiry1mServiceGetErrors, + IntContractStorageExpiry1mServiceGetResponse, + IntContractStorageExpiry1mServiceGetResponses, + IntContractStorageExpiry1mServiceListData, + IntContractStorageExpiry1mServiceListError, + IntContractStorageExpiry1mServiceListErrors, + IntContractStorageExpiry1mServiceListResponse, + IntContractStorageExpiry1mServiceListResponses, + IntContractStorageExpiry24m, + IntContractStorageExpiry24mServiceGetData, + IntContractStorageExpiry24mServiceGetError, + IntContractStorageExpiry24mServiceGetErrors, + IntContractStorageExpiry24mServiceGetResponse, + IntContractStorageExpiry24mServiceGetResponses, + IntContractStorageExpiry24mServiceListData, + IntContractStorageExpiry24mServiceListError, + IntContractStorageExpiry24mServiceListErrors, + IntContractStorageExpiry24mServiceListResponse, + IntContractStorageExpiry24mServiceListResponses, + IntContractStorageExpiry6m, + IntContractStorageExpiry6mServiceGetData, + IntContractStorageExpiry6mServiceGetError, + IntContractStorageExpiry6mServiceGetErrors, + IntContractStorageExpiry6mServiceGetResponse, + IntContractStorageExpiry6mServiceGetResponses, + IntContractStorageExpiry6mServiceListData, + IntContractStorageExpiry6mServiceListError, + IntContractStorageExpiry6mServiceListErrors, + IntContractStorageExpiry6mServiceListResponse, + IntContractStorageExpiry6mServiceListResponses, + IntContractStorageNextTouch, + IntContractStorageNextTouchServiceGetData, + IntContractStorageNextTouchServiceGetError, + IntContractStorageNextTouchServiceGetErrors, + IntContractStorageNextTouchServiceGetResponse, + IntContractStorageNextTouchServiceGetResponses, + IntContractStorageNextTouchServiceListData, + IntContractStorageNextTouchServiceListError, + IntContractStorageNextTouchServiceListErrors, + IntContractStorageNextTouchServiceListResponse, + IntContractStorageNextTouchServiceListResponses, + IntContractStorageReactivation12m, + IntContractStorageReactivation12mServiceGetData, + IntContractStorageReactivation12mServiceGetError, + IntContractStorageReactivation12mServiceGetErrors, + IntContractStorageReactivation12mServiceGetResponse, + IntContractStorageReactivation12mServiceGetResponses, + IntContractStorageReactivation12mServiceListData, + IntContractStorageReactivation12mServiceListError, + IntContractStorageReactivation12mServiceListErrors, + IntContractStorageReactivation12mServiceListResponse, + IntContractStorageReactivation12mServiceListResponses, + IntContractStorageReactivation18m, + IntContractStorageReactivation18mServiceGetData, + IntContractStorageReactivation18mServiceGetError, + IntContractStorageReactivation18mServiceGetErrors, + IntContractStorageReactivation18mServiceGetResponse, + IntContractStorageReactivation18mServiceGetResponses, + IntContractStorageReactivation18mServiceListData, + IntContractStorageReactivation18mServiceListError, + IntContractStorageReactivation18mServiceListErrors, + IntContractStorageReactivation18mServiceListResponse, + IntContractStorageReactivation18mServiceListResponses, + IntContractStorageReactivation1m, + IntContractStorageReactivation1mServiceGetData, + IntContractStorageReactivation1mServiceGetError, + IntContractStorageReactivation1mServiceGetErrors, + IntContractStorageReactivation1mServiceGetResponse, + IntContractStorageReactivation1mServiceGetResponses, + IntContractStorageReactivation1mServiceListData, + IntContractStorageReactivation1mServiceListError, + IntContractStorageReactivation1mServiceListErrors, + IntContractStorageReactivation1mServiceListResponse, + IntContractStorageReactivation1mServiceListResponses, + IntContractStorageReactivation24m, + IntContractStorageReactivation24mServiceGetData, + IntContractStorageReactivation24mServiceGetError, + IntContractStorageReactivation24mServiceGetErrors, + IntContractStorageReactivation24mServiceGetResponse, + IntContractStorageReactivation24mServiceGetResponses, + IntContractStorageReactivation24mServiceListData, + IntContractStorageReactivation24mServiceListError, + IntContractStorageReactivation24mServiceListErrors, + IntContractStorageReactivation24mServiceListResponse, + IntContractStorageReactivation24mServiceListResponses, + IntContractStorageReactivation6m, + IntContractStorageReactivation6mServiceGetData, + IntContractStorageReactivation6mServiceGetError, + IntContractStorageReactivation6mServiceGetErrors, + IntContractStorageReactivation6mServiceGetResponse, + IntContractStorageReactivation6mServiceGetResponses, + IntContractStorageReactivation6mServiceListData, + IntContractStorageReactivation6mServiceListError, + IntContractStorageReactivation6mServiceListErrors, + IntContractStorageReactivation6mServiceListResponse, + IntContractStorageReactivation6mServiceListResponses, + IntContractStorageState, + IntContractStorageStateByAddress, + IntContractStorageStateByAddressServiceGetData, + IntContractStorageStateByAddressServiceGetError, + IntContractStorageStateByAddressServiceGetErrors, + IntContractStorageStateByAddressServiceGetResponse, + IntContractStorageStateByAddressServiceGetResponses, + IntContractStorageStateByAddressServiceListData, + IntContractStorageStateByAddressServiceListError, + IntContractStorageStateByAddressServiceListErrors, + IntContractStorageStateByAddressServiceListResponse, + IntContractStorageStateByAddressServiceListResponses, + IntContractStorageStateByBlock, + IntContractStorageStateByBlockServiceGetData, + IntContractStorageStateByBlockServiceGetError, + IntContractStorageStateByBlockServiceGetErrors, + IntContractStorageStateByBlockServiceGetResponse, + IntContractStorageStateByBlockServiceGetResponses, + IntContractStorageStateByBlockServiceListData, + IntContractStorageStateByBlockServiceListError, + IntContractStorageStateByBlockServiceListErrors, + IntContractStorageStateByBlockServiceListResponse, + IntContractStorageStateByBlockServiceListResponses, + IntContractStorageStateServiceGetData, + IntContractStorageStateServiceGetError, + IntContractStorageStateServiceGetErrors, + IntContractStorageStateServiceGetResponse, + IntContractStorageStateServiceGetResponses, + IntContractStorageStateServiceListData, + IntContractStorageStateServiceListError, + IntContractStorageStateServiceListErrors, + IntContractStorageStateServiceListResponse, + IntContractStorageStateServiceListResponses, + IntContractStorageStateWithExpiry, + IntContractStorageStateWithExpiryByAddress, + IntContractStorageStateWithExpiryByAddressServiceGetData, + IntContractStorageStateWithExpiryByAddressServiceGetError, + IntContractStorageStateWithExpiryByAddressServiceGetErrors, + IntContractStorageStateWithExpiryByAddressServiceGetResponse, + IntContractStorageStateWithExpiryByAddressServiceGetResponses, + IntContractStorageStateWithExpiryByAddressServiceListData, + IntContractStorageStateWithExpiryByAddressServiceListError, + IntContractStorageStateWithExpiryByAddressServiceListErrors, + IntContractStorageStateWithExpiryByAddressServiceListResponse, + IntContractStorageStateWithExpiryByAddressServiceListResponses, + IntContractStorageStateWithExpiryByBlock, + IntContractStorageStateWithExpiryByBlockServiceGetData, + IntContractStorageStateWithExpiryByBlockServiceGetError, + IntContractStorageStateWithExpiryByBlockServiceGetErrors, + IntContractStorageStateWithExpiryByBlockServiceGetResponse, + IntContractStorageStateWithExpiryByBlockServiceGetResponses, + IntContractStorageStateWithExpiryByBlockServiceListData, + IntContractStorageStateWithExpiryByBlockServiceListError, + IntContractStorageStateWithExpiryByBlockServiceListErrors, + IntContractStorageStateWithExpiryByBlockServiceListResponse, + IntContractStorageStateWithExpiryByBlockServiceListResponses, + IntContractStorageStateWithExpiryServiceGetData, + IntContractStorageStateWithExpiryServiceGetError, + IntContractStorageStateWithExpiryServiceGetErrors, + IntContractStorageStateWithExpiryServiceGetResponse, + IntContractStorageStateWithExpiryServiceGetResponses, + IntContractStorageStateWithExpiryServiceListData, + IntContractStorageStateWithExpiryServiceListError, + IntContractStorageStateWithExpiryServiceListErrors, + IntContractStorageStateWithExpiryServiceListResponse, + IntContractStorageStateWithExpiryServiceListResponses, + IntCustodyProbe, + IntCustodyProbeOrderBySlot, + IntCustodyProbeOrderBySlotServiceGetData, + IntCustodyProbeOrderBySlotServiceGetError, + IntCustodyProbeOrderBySlotServiceGetErrors, + IntCustodyProbeOrderBySlotServiceGetResponse, + IntCustodyProbeOrderBySlotServiceGetResponses, + IntCustodyProbeOrderBySlotServiceListData, + IntCustodyProbeOrderBySlotServiceListError, + IntCustodyProbeOrderBySlotServiceListErrors, + IntCustodyProbeOrderBySlotServiceListResponse, + IntCustodyProbeOrderBySlotServiceListResponses, + IntCustodyProbeServiceGetData, + IntCustodyProbeServiceGetError, + IntCustodyProbeServiceGetErrors, + IntCustodyProbeServiceGetResponse, + IntCustodyProbeServiceGetResponses, + IntCustodyProbeServiceListData, + IntCustodyProbeServiceListError, + IntCustodyProbeServiceListErrors, + IntCustodyProbeServiceListResponse, + IntCustodyProbeServiceListResponses, + IntEngineGetBlobs, + IntEngineGetBlobsServiceGetData, + IntEngineGetBlobsServiceGetError, + IntEngineGetBlobsServiceGetErrors, + IntEngineGetBlobsServiceGetResponse, + IntEngineGetBlobsServiceGetResponses, + IntEngineGetBlobsServiceListData, + IntEngineGetBlobsServiceListError, + IntEngineGetBlobsServiceListErrors, + IntEngineGetBlobsServiceListResponse, + IntEngineGetBlobsServiceListResponses, + IntEngineNewPayload, + IntEngineNewPayloadFastestExecutionByNodeClass, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetData, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetError, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetErrors, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponses, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListData, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListError, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListErrors, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponses, + IntEngineNewPayloadServiceGetData, + IntEngineNewPayloadServiceGetError, + IntEngineNewPayloadServiceGetErrors, + IntEngineNewPayloadServiceGetResponse, + IntEngineNewPayloadServiceGetResponses, + IntEngineNewPayloadServiceListData, + IntEngineNewPayloadServiceListError, + IntEngineNewPayloadServiceListErrors, + IntEngineNewPayloadServiceListResponse, + IntEngineNewPayloadServiceListResponses, + IntExecutionBlockByDate, + IntExecutionBlockByDateServiceGetData, + IntExecutionBlockByDateServiceGetError, + IntExecutionBlockByDateServiceGetErrors, + IntExecutionBlockByDateServiceGetResponse, + IntExecutionBlockByDateServiceGetResponses, + IntExecutionBlockByDateServiceListData, + IntExecutionBlockByDateServiceListError, + IntExecutionBlockByDateServiceListErrors, + IntExecutionBlockByDateServiceListResponse, + IntExecutionBlockByDateServiceListResponses, + IntExecutionStateSizeByBlock, + IntExecutionStateSizeByBlockServiceGetData, + IntExecutionStateSizeByBlockServiceGetError, + IntExecutionStateSizeByBlockServiceGetErrors, + IntExecutionStateSizeByBlockServiceGetResponse, + IntExecutionStateSizeByBlockServiceGetResponses, + IntExecutionStateSizeByBlockServiceListData, + IntExecutionStateSizeByBlockServiceListError, + IntExecutionStateSizeByBlockServiceListErrors, + IntExecutionStateSizeByBlockServiceListResponse, + IntExecutionStateSizeByBlockServiceListResponses, + IntRocketpoolMegapool, + IntRocketpoolMegapoolServiceGetData, + IntRocketpoolMegapoolServiceGetError, + IntRocketpoolMegapoolServiceGetErrors, + IntRocketpoolMegapoolServiceGetResponse, + IntRocketpoolMegapoolServiceGetResponses, + IntRocketpoolMegapoolServiceListData, + IntRocketpoolMegapoolServiceListError, + IntRocketpoolMegapoolServiceListErrors, + IntRocketpoolMegapoolServiceListResponse, + IntRocketpoolMegapoolServiceListResponses, + IntRocketpoolMinipool, + IntRocketpoolMinipoolServiceGetData, + IntRocketpoolMinipoolServiceGetError, + IntRocketpoolMinipoolServiceGetErrors, + IntRocketpoolMinipoolServiceGetResponse, + IntRocketpoolMinipoolServiceGetResponses, + IntRocketpoolMinipoolServiceListData, + IntRocketpoolMinipoolServiceListError, + IntRocketpoolMinipoolServiceListErrors, + IntRocketpoolMinipoolServiceListResponse, + IntRocketpoolMinipoolServiceListResponses, + IntRocketpoolNodeEvent, + IntRocketpoolNodeEventServiceGetData, + IntRocketpoolNodeEventServiceGetError, + IntRocketpoolNodeEventServiceGetErrors, + IntRocketpoolNodeEventServiceGetResponse, + IntRocketpoolNodeEventServiceGetResponses, + IntRocketpoolNodeEventServiceListData, + IntRocketpoolNodeEventServiceListError, + IntRocketpoolNodeEventServiceListErrors, + IntRocketpoolNodeEventServiceListResponse, + IntRocketpoolNodeEventServiceListResponses, + IntRocketpoolNodeTimezone, + IntRocketpoolNodeTimezoneServiceGetData, + IntRocketpoolNodeTimezoneServiceGetError, + IntRocketpoolNodeTimezoneServiceGetErrors, + IntRocketpoolNodeTimezoneServiceGetResponse, + IntRocketpoolNodeTimezoneServiceGetResponses, + IntRocketpoolNodeTimezoneServiceListData, + IntRocketpoolNodeTimezoneServiceListError, + IntRocketpoolNodeTimezoneServiceListErrors, + IntRocketpoolNodeTimezoneServiceListResponse, + IntRocketpoolNodeTimezoneServiceListResponses, + IntStorageSelfdestructDiffs, + IntStorageSelfdestructDiffsServiceGetData, + IntStorageSelfdestructDiffsServiceGetError, + IntStorageSelfdestructDiffsServiceGetErrors, + IntStorageSelfdestructDiffsServiceGetResponse, + IntStorageSelfdestructDiffsServiceGetResponses, + IntStorageSelfdestructDiffsServiceListData, + IntStorageSelfdestructDiffsServiceListError, + IntStorageSelfdestructDiffsServiceListErrors, + IntStorageSelfdestructDiffsServiceListResponse, + IntStorageSelfdestructDiffsServiceListResponses, + IntStorageSlotDiff, + IntStorageSlotDiffByAddressSlot, + IntStorageSlotDiffByAddressSlotServiceGetData, + IntStorageSlotDiffByAddressSlotServiceGetError, + IntStorageSlotDiffByAddressSlotServiceGetErrors, + IntStorageSlotDiffByAddressSlotServiceGetResponse, + IntStorageSlotDiffByAddressSlotServiceGetResponses, + IntStorageSlotDiffByAddressSlotServiceListData, + IntStorageSlotDiffByAddressSlotServiceListError, + IntStorageSlotDiffByAddressSlotServiceListErrors, + IntStorageSlotDiffByAddressSlotServiceListResponse, + IntStorageSlotDiffByAddressSlotServiceListResponses, + IntStorageSlotDiffServiceGetData, + IntStorageSlotDiffServiceGetError, + IntStorageSlotDiffServiceGetErrors, + IntStorageSlotDiffServiceGetResponse, + IntStorageSlotDiffServiceGetResponses, + IntStorageSlotDiffServiceListData, + IntStorageSlotDiffServiceListError, + IntStorageSlotDiffServiceListErrors, + IntStorageSlotDiffServiceListResponse, + IntStorageSlotDiffServiceListResponses, + IntStorageSlotExpiry12m, + IntStorageSlotExpiry12mServiceGetData, + IntStorageSlotExpiry12mServiceGetError, + IntStorageSlotExpiry12mServiceGetErrors, + IntStorageSlotExpiry12mServiceGetResponse, + IntStorageSlotExpiry12mServiceGetResponses, + IntStorageSlotExpiry12mServiceListData, + IntStorageSlotExpiry12mServiceListError, + IntStorageSlotExpiry12mServiceListErrors, + IntStorageSlotExpiry12mServiceListResponse, + IntStorageSlotExpiry12mServiceListResponses, + IntStorageSlotExpiry18m, + IntStorageSlotExpiry18mServiceGetData, + IntStorageSlotExpiry18mServiceGetError, + IntStorageSlotExpiry18mServiceGetErrors, + IntStorageSlotExpiry18mServiceGetResponse, + IntStorageSlotExpiry18mServiceGetResponses, + IntStorageSlotExpiry18mServiceListData, + IntStorageSlotExpiry18mServiceListError, + IntStorageSlotExpiry18mServiceListErrors, + IntStorageSlotExpiry18mServiceListResponse, + IntStorageSlotExpiry18mServiceListResponses, + IntStorageSlotExpiry1m, + IntStorageSlotExpiry1mServiceGetData, + IntStorageSlotExpiry1mServiceGetError, + IntStorageSlotExpiry1mServiceGetErrors, + IntStorageSlotExpiry1mServiceGetResponse, + IntStorageSlotExpiry1mServiceGetResponses, + IntStorageSlotExpiry1mServiceListData, + IntStorageSlotExpiry1mServiceListError, + IntStorageSlotExpiry1mServiceListErrors, + IntStorageSlotExpiry1mServiceListResponse, + IntStorageSlotExpiry1mServiceListResponses, + IntStorageSlotExpiry24m, + IntStorageSlotExpiry24mServiceGetData, + IntStorageSlotExpiry24mServiceGetError, + IntStorageSlotExpiry24mServiceGetErrors, + IntStorageSlotExpiry24mServiceGetResponse, + IntStorageSlotExpiry24mServiceGetResponses, + IntStorageSlotExpiry24mServiceListData, + IntStorageSlotExpiry24mServiceListError, + IntStorageSlotExpiry24mServiceListErrors, + IntStorageSlotExpiry24mServiceListResponse, + IntStorageSlotExpiry24mServiceListResponses, + IntStorageSlotExpiry6m, + IntStorageSlotExpiry6mServiceGetData, + IntStorageSlotExpiry6mServiceGetError, + IntStorageSlotExpiry6mServiceGetErrors, + IntStorageSlotExpiry6mServiceGetResponse, + IntStorageSlotExpiry6mServiceGetResponses, + IntStorageSlotExpiry6mServiceListData, + IntStorageSlotExpiry6mServiceListError, + IntStorageSlotExpiry6mServiceListErrors, + IntStorageSlotExpiry6mServiceListResponse, + IntStorageSlotExpiry6mServiceListResponses, + IntStorageSlotLifecycle, + IntStorageSlotLifecycleBoundary, + IntStorageSlotLifecycleBoundaryServiceGetData, + IntStorageSlotLifecycleBoundaryServiceGetError, + IntStorageSlotLifecycleBoundaryServiceGetErrors, + IntStorageSlotLifecycleBoundaryServiceGetResponse, + IntStorageSlotLifecycleBoundaryServiceGetResponses, + IntStorageSlotLifecycleBoundaryServiceListData, + IntStorageSlotLifecycleBoundaryServiceListError, + IntStorageSlotLifecycleBoundaryServiceListErrors, + IntStorageSlotLifecycleBoundaryServiceListResponse, + IntStorageSlotLifecycleBoundaryServiceListResponses, + IntStorageSlotLifecycleServiceGetData, + IntStorageSlotLifecycleServiceGetError, + IntStorageSlotLifecycleServiceGetErrors, + IntStorageSlotLifecycleServiceGetResponse, + IntStorageSlotLifecycleServiceGetResponses, + IntStorageSlotLifecycleServiceListData, + IntStorageSlotLifecycleServiceListError, + IntStorageSlotLifecycleServiceListErrors, + IntStorageSlotLifecycleServiceListResponse, + IntStorageSlotLifecycleServiceListResponses, + IntStorageSlotNextTouch, + IntStorageSlotNextTouchServiceGetData, + IntStorageSlotNextTouchServiceGetError, + IntStorageSlotNextTouchServiceGetErrors, + IntStorageSlotNextTouchServiceGetResponse, + IntStorageSlotNextTouchServiceGetResponses, + IntStorageSlotNextTouchServiceListData, + IntStorageSlotNextTouchServiceListError, + IntStorageSlotNextTouchServiceListErrors, + IntStorageSlotNextTouchServiceListResponse, + IntStorageSlotNextTouchServiceListResponses, + IntStorageSlotReactivation12m, + IntStorageSlotReactivation12mServiceGetData, + IntStorageSlotReactivation12mServiceGetError, + IntStorageSlotReactivation12mServiceGetErrors, + IntStorageSlotReactivation12mServiceGetResponse, + IntStorageSlotReactivation12mServiceGetResponses, + IntStorageSlotReactivation12mServiceListData, + IntStorageSlotReactivation12mServiceListError, + IntStorageSlotReactivation12mServiceListErrors, + IntStorageSlotReactivation12mServiceListResponse, + IntStorageSlotReactivation12mServiceListResponses, + IntStorageSlotReactivation18m, + IntStorageSlotReactivation18mServiceGetData, + IntStorageSlotReactivation18mServiceGetError, + IntStorageSlotReactivation18mServiceGetErrors, + IntStorageSlotReactivation18mServiceGetResponse, + IntStorageSlotReactivation18mServiceGetResponses, + IntStorageSlotReactivation18mServiceListData, + IntStorageSlotReactivation18mServiceListError, + IntStorageSlotReactivation18mServiceListErrors, + IntStorageSlotReactivation18mServiceListResponse, + IntStorageSlotReactivation18mServiceListResponses, + IntStorageSlotReactivation1m, + IntStorageSlotReactivation1mServiceGetData, + IntStorageSlotReactivation1mServiceGetError, + IntStorageSlotReactivation1mServiceGetErrors, + IntStorageSlotReactivation1mServiceGetResponse, + IntStorageSlotReactivation1mServiceGetResponses, + IntStorageSlotReactivation1mServiceListData, + IntStorageSlotReactivation1mServiceListError, + IntStorageSlotReactivation1mServiceListErrors, + IntStorageSlotReactivation1mServiceListResponse, + IntStorageSlotReactivation1mServiceListResponses, + IntStorageSlotReactivation24m, + IntStorageSlotReactivation24mServiceGetData, + IntStorageSlotReactivation24mServiceGetError, + IntStorageSlotReactivation24mServiceGetErrors, + IntStorageSlotReactivation24mServiceGetResponse, + IntStorageSlotReactivation24mServiceGetResponses, + IntStorageSlotReactivation24mServiceListData, + IntStorageSlotReactivation24mServiceListError, + IntStorageSlotReactivation24mServiceListErrors, + IntStorageSlotReactivation24mServiceListResponse, + IntStorageSlotReactivation24mServiceListResponses, + IntStorageSlotReactivation6m, + IntStorageSlotReactivation6mServiceGetData, + IntStorageSlotReactivation6mServiceGetError, + IntStorageSlotReactivation6mServiceGetErrors, + IntStorageSlotReactivation6mServiceGetResponse, + IntStorageSlotReactivation6mServiceGetResponses, + IntStorageSlotReactivation6mServiceListData, + IntStorageSlotReactivation6mServiceListError, + IntStorageSlotReactivation6mServiceListErrors, + IntStorageSlotReactivation6mServiceListResponse, + IntStorageSlotReactivation6mServiceListResponses, + IntStorageSlotRead, + IntStorageSlotReadServiceGetData, + IntStorageSlotReadServiceGetError, + IntStorageSlotReadServiceGetErrors, + IntStorageSlotReadServiceGetResponse, + IntStorageSlotReadServiceGetResponses, + IntStorageSlotReadServiceListData, + IntStorageSlotReadServiceListError, + IntStorageSlotReadServiceListErrors, + IntStorageSlotReadServiceListResponse, + IntStorageSlotReadServiceListResponses, + IntStorageSlotState, + IntStorageSlotStateByAddress, + IntStorageSlotStateByAddressServiceGetData, + IntStorageSlotStateByAddressServiceGetError, + IntStorageSlotStateByAddressServiceGetErrors, + IntStorageSlotStateByAddressServiceGetResponse, + IntStorageSlotStateByAddressServiceGetResponses, + IntStorageSlotStateByAddressServiceListData, + IntStorageSlotStateByAddressServiceListError, + IntStorageSlotStateByAddressServiceListErrors, + IntStorageSlotStateByAddressServiceListResponse, + IntStorageSlotStateByAddressServiceListResponses, + IntStorageSlotStateByBlock, + IntStorageSlotStateByBlockServiceGetData, + IntStorageSlotStateByBlockServiceGetError, + IntStorageSlotStateByBlockServiceGetErrors, + IntStorageSlotStateByBlockServiceGetResponse, + IntStorageSlotStateByBlockServiceGetResponses, + IntStorageSlotStateByBlockServiceListData, + IntStorageSlotStateByBlockServiceListError, + IntStorageSlotStateByBlockServiceListErrors, + IntStorageSlotStateByBlockServiceListResponse, + IntStorageSlotStateByBlockServiceListResponses, + IntStorageSlotStateServiceGetData, + IntStorageSlotStateServiceGetError, + IntStorageSlotStateServiceGetErrors, + IntStorageSlotStateServiceGetResponse, + IntStorageSlotStateServiceGetResponses, + IntStorageSlotStateServiceListData, + IntStorageSlotStateServiceListError, + IntStorageSlotStateServiceListErrors, + IntStorageSlotStateServiceListResponse, + IntStorageSlotStateServiceListResponses, + IntStorageSlotStateWithExpiry, + IntStorageSlotStateWithExpiryByAddress, + IntStorageSlotStateWithExpiryByAddressServiceGetData, + IntStorageSlotStateWithExpiryByAddressServiceGetError, + IntStorageSlotStateWithExpiryByAddressServiceGetErrors, + IntStorageSlotStateWithExpiryByAddressServiceGetResponse, + IntStorageSlotStateWithExpiryByAddressServiceGetResponses, + IntStorageSlotStateWithExpiryByAddressServiceListData, + IntStorageSlotStateWithExpiryByAddressServiceListError, + IntStorageSlotStateWithExpiryByAddressServiceListErrors, + IntStorageSlotStateWithExpiryByAddressServiceListResponse, + IntStorageSlotStateWithExpiryByAddressServiceListResponses, + IntStorageSlotStateWithExpiryByBlock, + IntStorageSlotStateWithExpiryByBlockServiceGetData, + IntStorageSlotStateWithExpiryByBlockServiceGetError, + IntStorageSlotStateWithExpiryByBlockServiceGetErrors, + IntStorageSlotStateWithExpiryByBlockServiceGetResponse, + IntStorageSlotStateWithExpiryByBlockServiceGetResponses, + IntStorageSlotStateWithExpiryByBlockServiceListData, + IntStorageSlotStateWithExpiryByBlockServiceListError, + IntStorageSlotStateWithExpiryByBlockServiceListErrors, + IntStorageSlotStateWithExpiryByBlockServiceListResponse, + IntStorageSlotStateWithExpiryByBlockServiceListResponses, + IntStorageSlotStateWithExpiryServiceGetData, + IntStorageSlotStateWithExpiryServiceGetError, + IntStorageSlotStateWithExpiryServiceGetErrors, + IntStorageSlotStateWithExpiryServiceGetResponse, + IntStorageSlotStateWithExpiryServiceGetResponses, + IntStorageSlotStateWithExpiryServiceListData, + IntStorageSlotStateWithExpiryServiceListError, + IntStorageSlotStateWithExpiryServiceListErrors, + IntStorageSlotStateWithExpiryServiceListResponse, + IntStorageSlotStateWithExpiryServiceListResponses, + IntTokenContractStorageStateByBlock, + IntTokenContractStorageStateByBlockServiceGetData, + IntTokenContractStorageStateByBlockServiceGetError, + IntTokenContractStorageStateByBlockServiceGetErrors, + IntTokenContractStorageStateByBlockServiceGetResponse, + IntTokenContractStorageStateByBlockServiceGetResponses, + IntTokenContractStorageStateByBlockServiceListData, + IntTokenContractStorageStateByBlockServiceListError, + IntTokenContractStorageStateByBlockServiceListErrors, + IntTokenContractStorageStateByBlockServiceListResponse, + IntTokenContractStorageStateByBlockServiceListResponses, + IntTransactionCallFrame, + IntTransactionCallFrameOpcodeGas, + IntTransactionCallFrameOpcodeGasServiceGetData, + IntTransactionCallFrameOpcodeGasServiceGetError, + IntTransactionCallFrameOpcodeGasServiceGetErrors, + IntTransactionCallFrameOpcodeGasServiceGetResponse, + IntTransactionCallFrameOpcodeGasServiceGetResponses, + IntTransactionCallFrameOpcodeGasServiceListData, + IntTransactionCallFrameOpcodeGasServiceListError, + IntTransactionCallFrameOpcodeGasServiceListErrors, + IntTransactionCallFrameOpcodeGasServiceListResponse, + IntTransactionCallFrameOpcodeGasServiceListResponses, + IntTransactionCallFrameOpcodeResourceGas, + IntTransactionCallFrameOpcodeResourceGasServiceGetData, + IntTransactionCallFrameOpcodeResourceGasServiceGetError, + IntTransactionCallFrameOpcodeResourceGasServiceGetErrors, + IntTransactionCallFrameOpcodeResourceGasServiceGetResponse, + IntTransactionCallFrameOpcodeResourceGasServiceGetResponses, + IntTransactionCallFrameOpcodeResourceGasServiceListData, + IntTransactionCallFrameOpcodeResourceGasServiceListError, + IntTransactionCallFrameOpcodeResourceGasServiceListErrors, + IntTransactionCallFrameOpcodeResourceGasServiceListResponse, + IntTransactionCallFrameOpcodeResourceGasServiceListResponses, + IntTransactionCallFrameServiceGetData, + IntTransactionCallFrameServiceGetError, + IntTransactionCallFrameServiceGetErrors, + IntTransactionCallFrameServiceGetResponse, + IntTransactionCallFrameServiceGetResponses, + IntTransactionCallFrameServiceListData, + IntTransactionCallFrameServiceListError, + IntTransactionCallFrameServiceListErrors, + IntTransactionCallFrameServiceListResponse, + IntTransactionCallFrameServiceListResponses, + IntTransactionOpcodeGas, + IntTransactionOpcodeGasServiceGetData, + IntTransactionOpcodeGasServiceGetError, + IntTransactionOpcodeGasServiceGetErrors, + IntTransactionOpcodeGasServiceGetResponse, + IntTransactionOpcodeGasServiceGetResponses, + IntTransactionOpcodeGasServiceListData, + IntTransactionOpcodeGasServiceListError, + IntTransactionOpcodeGasServiceListErrors, + IntTransactionOpcodeGasServiceListResponse, + IntTransactionOpcodeGasServiceListResponses, + IntTransactionReceiptSize, + IntTransactionReceiptSizeServiceGetData, + IntTransactionReceiptSizeServiceGetError, + IntTransactionReceiptSizeServiceGetErrors, + IntTransactionReceiptSizeServiceGetResponse, + IntTransactionReceiptSizeServiceGetResponses, + IntTransactionReceiptSizeServiceListData, + IntTransactionReceiptSizeServiceListError, + IntTransactionReceiptSizeServiceListErrors, + IntTransactionReceiptSizeServiceListResponse, + IntTransactionReceiptSizeServiceListResponses, + IntTransactionResourceGas, + IntTransactionResourceGasServiceGetData, + IntTransactionResourceGasServiceGetError, + IntTransactionResourceGasServiceGetErrors, + IntTransactionResourceGasServiceGetResponse, + IntTransactionResourceGasServiceGetResponses, + IntTransactionResourceGasServiceListData, + IntTransactionResourceGasServiceListError, + IntTransactionResourceGasServiceListErrors, + IntTransactionResourceGasServiceListResponse, + IntTransactionResourceGasServiceListResponses, + ListAdminCbtIncrementalResponse, + ListAdminCbtScheduledResponse, + ListDimBlockBlobSubmitterResponse, + ListDimContractOwnerResponse, + ListDimFunctionSignatureResponse, + ListDimNodeResponse, + ListDimRocketpoolNodeResponse, + ListDimTokenContractResponse, + ListDimValidatorPubkeyResponse, + ListDimValidatorStatusResponse, + ListFctAttestationCorrectnessByValidatorCanonicalResponse, + ListFctAttestationCorrectnessByValidatorHeadResponse, + ListFctAttestationCorrectnessByValidatorResponse, + ListFctAttestationCorrectnessCanonicalResponse, + ListFctAttestationCorrectnessHeadResponse, + ListFctAttestationCorrectnessResponse, + ListFctAttestationFirstSeenByValidatorResponse, + ListFctAttestationFirstSeenChunked50MsResponse, + ListFctAttestationInclusionDelayDailyResponse, + ListFctAttestationInclusionDelayHourlyResponse, + ListFctAttestationLivenessByEntityHeadResponse, + ListFctAttestationLivenessByEntityResponse, + ListFctAttestationObservationByNodeResponse, + ListFctAttestationParticipationRateDailyResponse, + ListFctAttestationParticipationRateHourlyResponse, + ListFctAttestationVoteCorrectnessByValidatorDailyResponse, + ListFctAttestationVoteCorrectnessByValidatorHourlyResponse, + ListFctAttestationVoteCorrectnessByValidatorResponse, + ListFctBlobCountDailyResponse, + ListFctBlobCountHourlyResponse, + ListFctBlockBlobCountHeadResponse, + ListFctBlockBlobCountResponse, + ListFctBlockBlobFirstSeenByNodeResponse, + ListFctBlockBlobHeadResponse, + ListFctBlockDataColumnSidecarFirstSeenByNodeResponse, + ListFctBlockDataColumnSidecarFirstSeenResponse, + ListFctBlockFirstSeenByNodeResponse, + ListFctBlockHeadResponse, + ListFctBlockMevHeadResponse, + ListFctBlockMevResponse, + ListFctBlockPayloadAvailableByNodeResponse, + ListFctBlockPayloadBidResponse, + ListFctBlockPayloadFirstSeenByNodeResponse, + ListFctBlockPayloadPtcVoteHeadResponse, + ListFctBlockPayloadPtcVoteResponse, + ListFctBlockProposalStatusDailyResponse, + ListFctBlockProposalStatusHourlyResponse, + ListFctBlockProposerByValidatorResponse, + ListFctBlockProposerEntityResponse, + ListFctBlockProposerHeadResponse, + ListFctBlockProposerResponse, + ListFctBlockResponse, + ListFctContractStorageStateByAddressDailyResponse, + ListFctContractStorageStateByAddressHourlyResponse, + ListFctContractStorageStateByBlockDailyResponse, + ListFctContractStorageStateByBlockHourlyResponse, + ListFctContractStorageStateWithExpiryByAddressDailyResponse, + ListFctContractStorageStateWithExpiryByAddressHourlyResponse, + ListFctContractStorageStateWithExpiryByBlockDailyResponse, + ListFctContractStorageStateWithExpiryByBlockHourlyResponse, + ListFctDataColumnAvailabilityByEpochResponse, + ListFctDataColumnAvailabilityBySlotBlobResponse, + ListFctDataColumnAvailabilityBySlotResponse, + ListFctDataColumnAvailabilityDailyResponse, + ListFctDataColumnAvailabilityHourlyResponse, + ListFctEngineGetBlobsByElClientHourlyResponse, + ListFctEngineGetBlobsByElClientResponse, + ListFctEngineGetBlobsBySlotResponse, + ListFctEngineGetBlobsDurationChunked50MsResponse, + ListFctEngineNewPayloadByElClientHourlyResponse, + ListFctEngineNewPayloadByElClientResponse, + ListFctEngineNewPayloadBySlotResponse, + ListFctEngineNewPayloadDurationChunked50MsResponse, + ListFctEngineNewPayloadWinrateDailyResponse, + ListFctEngineNewPayloadWinrateHourlyResponse, + ListFctExecutionGasLimitDailyResponse, + ListFctExecutionGasLimitHourlyResponse, + ListFctExecutionGasLimitSignallingDailyResponse, + ListFctExecutionGasLimitSignallingHourlyResponse, + ListFctExecutionGasUsedDailyResponse, + ListFctExecutionGasUsedHourlyResponse, + ListFctExecutionReceiptSizeDailyResponse, + ListFctExecutionReceiptSizeHourlyResponse, + ListFctExecutionStateSizeDailyResponse, + ListFctExecutionStateSizeHourlyResponse, + ListFctExecutionTpsDailyResponse, + ListFctExecutionTpsHourlyResponse, + ListFctExecutionTransactionsDailyResponse, + ListFctExecutionTransactionsHourlyResponse, + ListFctHeadFirstSeenByNodeResponse, + ListFctHeadVoteCorrectnessRateDailyResponse, + ListFctHeadVoteCorrectnessRateHourlyResponse, + ListFctMevBidCountByBuilderResponse, + ListFctMevBidCountByRelayResponse, + ListFctMevBidHighestValueByBuilderChunked50MsResponse, + ListFctMissedSlotRateDailyResponse, + ListFctMissedSlotRateHourlyResponse, + ListFctNodeActiveLast24hResponse, + ListFctNodeCpuUtilizationByProcessResponse, + ListFctNodeDiskIoByProcessResponse, + ListFctNodeMemoryUsageByProcessResponse, + ListFctNodeNetworkIoByProcessResponse, + ListFctOpcodeGasByOpcodeDailyResponse, + ListFctOpcodeGasByOpcodeHourlyResponse, + ListFctOpcodeOpsDailyResponse, + ListFctOpcodeOpsHourlyResponse, + ListFctPayloadBidHighestValueByBuilderChunked50MsResponse, + ListFctPreparedBlockResponse, + ListFctProposerRewardDailyResponse, + ListFctProposerRewardHourlyResponse, + ListFctReorgDailyResponse, + ListFctReorgHourlyResponse, + ListFctRocketpoolValidatorResponse, + ListFctStorageSlotStateByAddressDailyResponse, + ListFctStorageSlotStateByAddressHourlyResponse, + ListFctStorageSlotStateByBlockDailyResponse, + ListFctStorageSlotStateByBlockHourlyResponse, + ListFctStorageSlotStateWithExpiryByAddressDailyResponse, + ListFctStorageSlotStateWithExpiryByAddressHourlyResponse, + ListFctStorageSlotStateWithExpiryByBlockDailyResponse, + ListFctStorageSlotStateWithExpiryByBlockHourlyResponse, + ListFctStorageSlotTop100ByBytesResponse, + ListFctStorageSlotTop100BySlotsResponse, + ListFctSyncCommitteeParticipationByValidatorDailyResponse, + ListFctSyncCommitteeParticipationByValidatorHourlyResponse, + ListFctSyncCommitteeParticipationByValidatorResponse, + ListFctTokenContractStorageStateByBlockDailyResponse, + ListFctValidatorBalanceDailyResponse, + ListFctValidatorBalanceHourlyResponse, + ListFctValidatorBalanceResponse, + ListFctValidatorCountByEntityByStatusDailyResponse, + ListIntAttestationAttestedCanonicalResponse, + ListIntAttestationAttestedHeadResponse, + ListIntAttestationAttestedResponse, + ListIntAttestationFirstSeenAggregateResponse, + ListIntAttestationFirstSeenResponse, + ListIntBeaconCommitteeHeadResponse, + ListIntBeaconCommitteeResponse, + ListIntBlockBlobCountCanonicalResponse, + ListIntBlockCanonicalResponse, + ListIntBlockMevCanonicalResponse, + ListIntBlockOpcodeGasResponse, + ListIntBlockPayloadPtcVoteCanonicalResponse, + ListIntBlockProposerCanonicalResponse, + ListIntBlockReceiptSizeResponse, + ListIntBlockResourceGasResponse, + ListIntContractCreationResponse, + ListIntContractSelfdestructResponse, + ListIntContractStorageExpiry12mResponse, + ListIntContractStorageExpiry18mResponse, + ListIntContractStorageExpiry1mResponse, + ListIntContractStorageExpiry24mResponse, + ListIntContractStorageExpiry6mResponse, + ListIntContractStorageNextTouchResponse, + ListIntContractStorageReactivation12mResponse, + ListIntContractStorageReactivation18mResponse, + ListIntContractStorageReactivation1mResponse, + ListIntContractStorageReactivation24mResponse, + ListIntContractStorageReactivation6mResponse, + ListIntContractStorageStateByAddressResponse, + ListIntContractStorageStateByBlockResponse, + ListIntContractStorageStateResponse, + ListIntContractStorageStateWithExpiryByAddressResponse, + ListIntContractStorageStateWithExpiryByBlockResponse, + ListIntContractStorageStateWithExpiryResponse, + ListIntCustodyProbeOrderBySlotResponse, + ListIntCustodyProbeResponse, + ListIntEngineGetBlobsResponse, + ListIntEngineNewPayloadFastestExecutionByNodeClassResponse, + ListIntEngineNewPayloadResponse, + ListIntExecutionBlockByDateResponse, + ListIntExecutionStateSizeByBlockResponse, + ListIntRocketpoolMegapoolResponse, + ListIntRocketpoolMinipoolResponse, + ListIntRocketpoolNodeEventResponse, + ListIntRocketpoolNodeTimezoneResponse, + ListIntStorageSelfdestructDiffsResponse, + ListIntStorageSlotDiffByAddressSlotResponse, + ListIntStorageSlotDiffResponse, + ListIntStorageSlotExpiry12mResponse, + ListIntStorageSlotExpiry18mResponse, + ListIntStorageSlotExpiry1mResponse, + ListIntStorageSlotExpiry24mResponse, + ListIntStorageSlotExpiry6mResponse, + ListIntStorageSlotLifecycleBoundaryResponse, + ListIntStorageSlotLifecycleResponse, + ListIntStorageSlotNextTouchResponse, + ListIntStorageSlotReactivation12mResponse, + ListIntStorageSlotReactivation18mResponse, + ListIntStorageSlotReactivation1mResponse, + ListIntStorageSlotReactivation24mResponse, + ListIntStorageSlotReactivation6mResponse, + ListIntStorageSlotReadResponse, + ListIntStorageSlotStateByAddressResponse, + ListIntStorageSlotStateByBlockResponse, + ListIntStorageSlotStateResponse, + ListIntStorageSlotStateWithExpiryByAddressResponse, + ListIntStorageSlotStateWithExpiryByBlockResponse, + ListIntStorageSlotStateWithExpiryResponse, + ListIntTokenContractStorageStateByBlockResponse, + ListIntTransactionCallFrameOpcodeGasResponse, + ListIntTransactionCallFrameOpcodeResourceGasResponse, + ListIntTransactionCallFrameResponse, + ListIntTransactionOpcodeGasResponse, + ListIntTransactionReceiptSizeResponse, + ListIntTransactionResourceGasResponse, + Status, +} from './types.gen'; diff --git a/src/api/sdk.gen.ts b/src/api/sdk.gen.ts index 696f03900..2124edb97 100644 --- a/src/api/sdk.gen.ts +++ b/src/api/sdk.gen.ts @@ -2,21 +2,2086 @@ import type { Client, Options as Options2, TDataShape } from './client'; import { client } from './client.gen'; -import type { AdminCbtIncrementalServiceGetData, AdminCbtIncrementalServiceGetErrors, AdminCbtIncrementalServiceGetResponses, AdminCbtIncrementalServiceListData, AdminCbtIncrementalServiceListErrors, AdminCbtIncrementalServiceListResponses, DimBlockBlobSubmitterServiceGetData, DimBlockBlobSubmitterServiceGetErrors, DimBlockBlobSubmitterServiceGetResponses, DimBlockBlobSubmitterServiceListData, DimBlockBlobSubmitterServiceListErrors, DimBlockBlobSubmitterServiceListResponses, DimContractOwnerServiceGetData, DimContractOwnerServiceGetErrors, DimContractOwnerServiceGetResponses, DimContractOwnerServiceListData, DimContractOwnerServiceListErrors, DimContractOwnerServiceListResponses, DimFunctionSignatureServiceGetData, DimFunctionSignatureServiceGetErrors, DimFunctionSignatureServiceGetResponses, DimFunctionSignatureServiceListData, DimFunctionSignatureServiceListErrors, DimFunctionSignatureServiceListResponses, DimNodeServiceGetData, DimNodeServiceGetErrors, DimNodeServiceGetResponses, DimNodeServiceListData, DimNodeServiceListErrors, DimNodeServiceListResponses, DimRocketpoolNodeServiceGetData, DimRocketpoolNodeServiceGetErrors, DimRocketpoolNodeServiceGetResponses, DimRocketpoolNodeServiceListData, DimRocketpoolNodeServiceListErrors, DimRocketpoolNodeServiceListResponses, DimTokenContractServiceGetData, DimTokenContractServiceGetErrors, DimTokenContractServiceGetResponses, DimTokenContractServiceListData, DimTokenContractServiceListErrors, DimTokenContractServiceListResponses, DimValidatorPubkeyServiceGetData, DimValidatorPubkeyServiceGetErrors, DimValidatorPubkeyServiceGetResponses, DimValidatorPubkeyServiceListData, DimValidatorPubkeyServiceListErrors, DimValidatorPubkeyServiceListResponses, DimValidatorStatusServiceGetData, DimValidatorStatusServiceGetErrors, DimValidatorStatusServiceGetResponses, DimValidatorStatusServiceListData, DimValidatorStatusServiceListErrors, DimValidatorStatusServiceListResponses, FctAttestationCorrectnessByValidatorCanonicalServiceGetData, FctAttestationCorrectnessByValidatorCanonicalServiceGetErrors, FctAttestationCorrectnessByValidatorCanonicalServiceGetResponses, FctAttestationCorrectnessByValidatorCanonicalServiceListData, FctAttestationCorrectnessByValidatorCanonicalServiceListErrors, FctAttestationCorrectnessByValidatorCanonicalServiceListResponses, FctAttestationCorrectnessByValidatorHeadServiceGetData, FctAttestationCorrectnessByValidatorHeadServiceGetErrors, FctAttestationCorrectnessByValidatorHeadServiceGetResponses, FctAttestationCorrectnessByValidatorHeadServiceListData, FctAttestationCorrectnessByValidatorHeadServiceListErrors, FctAttestationCorrectnessByValidatorHeadServiceListResponses, FctAttestationCorrectnessCanonicalServiceGetData, FctAttestationCorrectnessCanonicalServiceGetErrors, FctAttestationCorrectnessCanonicalServiceGetResponses, FctAttestationCorrectnessCanonicalServiceListData, FctAttestationCorrectnessCanonicalServiceListErrors, FctAttestationCorrectnessCanonicalServiceListResponses, FctAttestationCorrectnessHeadServiceGetData, FctAttestationCorrectnessHeadServiceGetErrors, FctAttestationCorrectnessHeadServiceGetResponses, FctAttestationCorrectnessHeadServiceListData, FctAttestationCorrectnessHeadServiceListErrors, FctAttestationCorrectnessHeadServiceListResponses, FctAttestationFirstSeenByValidatorServiceGetData, FctAttestationFirstSeenByValidatorServiceGetErrors, FctAttestationFirstSeenByValidatorServiceGetResponses, FctAttestationFirstSeenByValidatorServiceListData, FctAttestationFirstSeenByValidatorServiceListErrors, FctAttestationFirstSeenByValidatorServiceListResponses, FctAttestationFirstSeenChunked50MsServiceGetData, FctAttestationFirstSeenChunked50MsServiceGetErrors, FctAttestationFirstSeenChunked50MsServiceGetResponses, FctAttestationFirstSeenChunked50MsServiceListData, FctAttestationFirstSeenChunked50MsServiceListErrors, FctAttestationFirstSeenChunked50MsServiceListResponses, FctAttestationInclusionDelayDailyServiceGetData, FctAttestationInclusionDelayDailyServiceGetErrors, FctAttestationInclusionDelayDailyServiceGetResponses, FctAttestationInclusionDelayDailyServiceListData, FctAttestationInclusionDelayDailyServiceListErrors, FctAttestationInclusionDelayDailyServiceListResponses, FctAttestationInclusionDelayHourlyServiceGetData, FctAttestationInclusionDelayHourlyServiceGetErrors, FctAttestationInclusionDelayHourlyServiceGetResponses, FctAttestationInclusionDelayHourlyServiceListData, FctAttestationInclusionDelayHourlyServiceListErrors, FctAttestationInclusionDelayHourlyServiceListResponses, FctAttestationLivenessByEntityHeadServiceGetData, FctAttestationLivenessByEntityHeadServiceGetErrors, FctAttestationLivenessByEntityHeadServiceGetResponses, FctAttestationLivenessByEntityHeadServiceListData, FctAttestationLivenessByEntityHeadServiceListErrors, FctAttestationLivenessByEntityHeadServiceListResponses, FctAttestationObservationByNodeServiceGetData, FctAttestationObservationByNodeServiceGetErrors, FctAttestationObservationByNodeServiceGetResponses, FctAttestationObservationByNodeServiceListData, FctAttestationObservationByNodeServiceListErrors, FctAttestationObservationByNodeServiceListResponses, FctAttestationParticipationRateDailyServiceGetData, FctAttestationParticipationRateDailyServiceGetErrors, FctAttestationParticipationRateDailyServiceGetResponses, FctAttestationParticipationRateDailyServiceListData, FctAttestationParticipationRateDailyServiceListErrors, FctAttestationParticipationRateDailyServiceListResponses, FctAttestationParticipationRateHourlyServiceGetData, FctAttestationParticipationRateHourlyServiceGetErrors, FctAttestationParticipationRateHourlyServiceGetResponses, FctAttestationParticipationRateHourlyServiceListData, FctAttestationParticipationRateHourlyServiceListErrors, FctAttestationParticipationRateHourlyServiceListResponses, FctAttestationVoteCorrectnessByValidatorDailyServiceGetData, FctAttestationVoteCorrectnessByValidatorDailyServiceGetErrors, FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponses, FctAttestationVoteCorrectnessByValidatorDailyServiceListData, FctAttestationVoteCorrectnessByValidatorDailyServiceListErrors, FctAttestationVoteCorrectnessByValidatorDailyServiceListResponses, FctAttestationVoteCorrectnessByValidatorHourlyServiceGetData, FctAttestationVoteCorrectnessByValidatorHourlyServiceGetErrors, FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponses, FctAttestationVoteCorrectnessByValidatorHourlyServiceListData, FctAttestationVoteCorrectnessByValidatorHourlyServiceListErrors, FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponses, FctAttestationVoteCorrectnessByValidatorServiceGetData, FctAttestationVoteCorrectnessByValidatorServiceGetErrors, FctAttestationVoteCorrectnessByValidatorServiceGetResponses, FctAttestationVoteCorrectnessByValidatorServiceListData, FctAttestationVoteCorrectnessByValidatorServiceListErrors, FctAttestationVoteCorrectnessByValidatorServiceListResponses, FctBlobCountDailyServiceGetData, FctBlobCountDailyServiceGetErrors, FctBlobCountDailyServiceGetResponses, FctBlobCountDailyServiceListData, FctBlobCountDailyServiceListErrors, FctBlobCountDailyServiceListResponses, FctBlobCountHourlyServiceGetData, FctBlobCountHourlyServiceGetErrors, FctBlobCountHourlyServiceGetResponses, FctBlobCountHourlyServiceListData, FctBlobCountHourlyServiceListErrors, FctBlobCountHourlyServiceListResponses, FctBlockBlobCountHeadServiceGetData, FctBlockBlobCountHeadServiceGetErrors, FctBlockBlobCountHeadServiceGetResponses, FctBlockBlobCountHeadServiceListData, FctBlockBlobCountHeadServiceListErrors, FctBlockBlobCountHeadServiceListResponses, FctBlockBlobCountServiceGetData, FctBlockBlobCountServiceGetErrors, FctBlockBlobCountServiceGetResponses, FctBlockBlobCountServiceListData, FctBlockBlobCountServiceListErrors, FctBlockBlobCountServiceListResponses, FctBlockBlobFirstSeenByNodeServiceGetData, FctBlockBlobFirstSeenByNodeServiceGetErrors, FctBlockBlobFirstSeenByNodeServiceGetResponses, FctBlockBlobFirstSeenByNodeServiceListData, FctBlockBlobFirstSeenByNodeServiceListErrors, FctBlockBlobFirstSeenByNodeServiceListResponses, FctBlockBlobHeadServiceGetData, FctBlockBlobHeadServiceGetErrors, FctBlockBlobHeadServiceGetResponses, FctBlockBlobHeadServiceListData, FctBlockBlobHeadServiceListErrors, FctBlockBlobHeadServiceListResponses, FctBlockDataColumnSidecarFirstSeenByNodeServiceGetData, FctBlockDataColumnSidecarFirstSeenByNodeServiceGetErrors, FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponses, FctBlockDataColumnSidecarFirstSeenByNodeServiceListData, FctBlockDataColumnSidecarFirstSeenByNodeServiceListErrors, FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponses, FctBlockDataColumnSidecarFirstSeenServiceGetData, FctBlockDataColumnSidecarFirstSeenServiceGetErrors, FctBlockDataColumnSidecarFirstSeenServiceGetResponses, FctBlockDataColumnSidecarFirstSeenServiceListData, FctBlockDataColumnSidecarFirstSeenServiceListErrors, FctBlockDataColumnSidecarFirstSeenServiceListResponses, FctBlockFirstSeenByNodeServiceGetData, FctBlockFirstSeenByNodeServiceGetErrors, FctBlockFirstSeenByNodeServiceGetResponses, FctBlockFirstSeenByNodeServiceListData, FctBlockFirstSeenByNodeServiceListErrors, FctBlockFirstSeenByNodeServiceListResponses, FctBlockHeadServiceGetData, FctBlockHeadServiceGetErrors, FctBlockHeadServiceGetResponses, FctBlockHeadServiceListData, FctBlockHeadServiceListErrors, FctBlockHeadServiceListResponses, FctBlockMevHeadServiceGetData, FctBlockMevHeadServiceGetErrors, FctBlockMevHeadServiceGetResponses, FctBlockMevHeadServiceListData, FctBlockMevHeadServiceListErrors, FctBlockMevHeadServiceListResponses, FctBlockMevServiceGetData, FctBlockMevServiceGetErrors, FctBlockMevServiceGetResponses, FctBlockMevServiceListData, FctBlockMevServiceListErrors, FctBlockMevServiceListResponses, FctBlockProposalStatusDailyServiceGetData, FctBlockProposalStatusDailyServiceGetErrors, FctBlockProposalStatusDailyServiceGetResponses, FctBlockProposalStatusDailyServiceListData, FctBlockProposalStatusDailyServiceListErrors, FctBlockProposalStatusDailyServiceListResponses, FctBlockProposalStatusHourlyServiceGetData, FctBlockProposalStatusHourlyServiceGetErrors, FctBlockProposalStatusHourlyServiceGetResponses, FctBlockProposalStatusHourlyServiceListData, FctBlockProposalStatusHourlyServiceListErrors, FctBlockProposalStatusHourlyServiceListResponses, FctBlockProposerByValidatorServiceGetData, FctBlockProposerByValidatorServiceGetErrors, FctBlockProposerByValidatorServiceGetResponses, FctBlockProposerByValidatorServiceListData, FctBlockProposerByValidatorServiceListErrors, FctBlockProposerByValidatorServiceListResponses, FctBlockProposerEntityServiceGetData, FctBlockProposerEntityServiceGetErrors, FctBlockProposerEntityServiceGetResponses, FctBlockProposerEntityServiceListData, FctBlockProposerEntityServiceListErrors, FctBlockProposerEntityServiceListResponses, FctBlockProposerHeadServiceGetData, FctBlockProposerHeadServiceGetErrors, FctBlockProposerHeadServiceGetResponses, FctBlockProposerHeadServiceListData, FctBlockProposerHeadServiceListErrors, FctBlockProposerHeadServiceListResponses, FctBlockProposerServiceGetData, FctBlockProposerServiceGetErrors, FctBlockProposerServiceGetResponses, FctBlockProposerServiceListData, FctBlockProposerServiceListErrors, FctBlockProposerServiceListResponses, FctBlockServiceGetData, FctBlockServiceGetErrors, FctBlockServiceGetResponses, FctBlockServiceListData, FctBlockServiceListErrors, FctBlockServiceListResponses, FctContractStorageStateByAddressDailyServiceGetData, FctContractStorageStateByAddressDailyServiceGetErrors, FctContractStorageStateByAddressDailyServiceGetResponses, FctContractStorageStateByAddressDailyServiceListData, FctContractStorageStateByAddressDailyServiceListErrors, FctContractStorageStateByAddressDailyServiceListResponses, FctContractStorageStateByAddressHourlyServiceGetData, FctContractStorageStateByAddressHourlyServiceGetErrors, FctContractStorageStateByAddressHourlyServiceGetResponses, FctContractStorageStateByAddressHourlyServiceListData, FctContractStorageStateByAddressHourlyServiceListErrors, FctContractStorageStateByAddressHourlyServiceListResponses, FctContractStorageStateByBlockDailyServiceGetData, FctContractStorageStateByBlockDailyServiceGetErrors, FctContractStorageStateByBlockDailyServiceGetResponses, FctContractStorageStateByBlockDailyServiceListData, FctContractStorageStateByBlockDailyServiceListErrors, FctContractStorageStateByBlockDailyServiceListResponses, FctContractStorageStateByBlockHourlyServiceGetData, FctContractStorageStateByBlockHourlyServiceGetErrors, FctContractStorageStateByBlockHourlyServiceGetResponses, FctContractStorageStateByBlockHourlyServiceListData, FctContractStorageStateByBlockHourlyServiceListErrors, FctContractStorageStateByBlockHourlyServiceListResponses, FctContractStorageStateWithExpiryByAddressDailyServiceGetData, FctContractStorageStateWithExpiryByAddressDailyServiceGetErrors, FctContractStorageStateWithExpiryByAddressDailyServiceGetResponses, FctContractStorageStateWithExpiryByAddressDailyServiceListData, FctContractStorageStateWithExpiryByAddressDailyServiceListErrors, FctContractStorageStateWithExpiryByAddressDailyServiceListResponses, FctContractStorageStateWithExpiryByAddressHourlyServiceGetData, FctContractStorageStateWithExpiryByAddressHourlyServiceGetErrors, FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponses, FctContractStorageStateWithExpiryByAddressHourlyServiceListData, FctContractStorageStateWithExpiryByAddressHourlyServiceListErrors, FctContractStorageStateWithExpiryByAddressHourlyServiceListResponses, FctContractStorageStateWithExpiryByBlockDailyServiceGetData, FctContractStorageStateWithExpiryByBlockDailyServiceGetErrors, FctContractStorageStateWithExpiryByBlockDailyServiceGetResponses, FctContractStorageStateWithExpiryByBlockDailyServiceListData, FctContractStorageStateWithExpiryByBlockDailyServiceListErrors, FctContractStorageStateWithExpiryByBlockDailyServiceListResponses, FctContractStorageStateWithExpiryByBlockHourlyServiceGetData, FctContractStorageStateWithExpiryByBlockHourlyServiceGetErrors, FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponses, FctContractStorageStateWithExpiryByBlockHourlyServiceListData, FctContractStorageStateWithExpiryByBlockHourlyServiceListErrors, FctContractStorageStateWithExpiryByBlockHourlyServiceListResponses, FctDataColumnAvailabilityByEpochServiceGetData, FctDataColumnAvailabilityByEpochServiceGetErrors, FctDataColumnAvailabilityByEpochServiceGetResponses, FctDataColumnAvailabilityByEpochServiceListData, FctDataColumnAvailabilityByEpochServiceListErrors, FctDataColumnAvailabilityByEpochServiceListResponses, FctDataColumnAvailabilityBySlotBlobServiceGetData, FctDataColumnAvailabilityBySlotBlobServiceGetErrors, FctDataColumnAvailabilityBySlotBlobServiceGetResponses, FctDataColumnAvailabilityBySlotBlobServiceListData, FctDataColumnAvailabilityBySlotBlobServiceListErrors, FctDataColumnAvailabilityBySlotBlobServiceListResponses, FctDataColumnAvailabilityBySlotServiceGetData, FctDataColumnAvailabilityBySlotServiceGetErrors, FctDataColumnAvailabilityBySlotServiceGetResponses, FctDataColumnAvailabilityBySlotServiceListData, FctDataColumnAvailabilityBySlotServiceListErrors, FctDataColumnAvailabilityBySlotServiceListResponses, FctDataColumnAvailabilityDailyServiceGetData, FctDataColumnAvailabilityDailyServiceGetErrors, FctDataColumnAvailabilityDailyServiceGetResponses, FctDataColumnAvailabilityDailyServiceListData, FctDataColumnAvailabilityDailyServiceListErrors, FctDataColumnAvailabilityDailyServiceListResponses, FctDataColumnAvailabilityHourlyServiceGetData, FctDataColumnAvailabilityHourlyServiceGetErrors, FctDataColumnAvailabilityHourlyServiceGetResponses, FctDataColumnAvailabilityHourlyServiceListData, FctDataColumnAvailabilityHourlyServiceListErrors, FctDataColumnAvailabilityHourlyServiceListResponses, FctEngineGetBlobsByElClientHourlyServiceGetData, FctEngineGetBlobsByElClientHourlyServiceGetErrors, FctEngineGetBlobsByElClientHourlyServiceGetResponses, FctEngineGetBlobsByElClientHourlyServiceListData, FctEngineGetBlobsByElClientHourlyServiceListErrors, FctEngineGetBlobsByElClientHourlyServiceListResponses, FctEngineGetBlobsByElClientServiceGetData, FctEngineGetBlobsByElClientServiceGetErrors, FctEngineGetBlobsByElClientServiceGetResponses, FctEngineGetBlobsByElClientServiceListData, FctEngineGetBlobsByElClientServiceListErrors, FctEngineGetBlobsByElClientServiceListResponses, FctEngineGetBlobsBySlotServiceGetData, FctEngineGetBlobsBySlotServiceGetErrors, FctEngineGetBlobsBySlotServiceGetResponses, FctEngineGetBlobsBySlotServiceListData, FctEngineGetBlobsBySlotServiceListErrors, FctEngineGetBlobsBySlotServiceListResponses, FctEngineGetBlobsDurationChunked50MsServiceGetData, FctEngineGetBlobsDurationChunked50MsServiceGetErrors, FctEngineGetBlobsDurationChunked50MsServiceGetResponses, FctEngineGetBlobsDurationChunked50MsServiceListData, FctEngineGetBlobsDurationChunked50MsServiceListErrors, FctEngineGetBlobsDurationChunked50MsServiceListResponses, FctEngineNewPayloadByElClientHourlyServiceGetData, FctEngineNewPayloadByElClientHourlyServiceGetErrors, FctEngineNewPayloadByElClientHourlyServiceGetResponses, FctEngineNewPayloadByElClientHourlyServiceListData, FctEngineNewPayloadByElClientHourlyServiceListErrors, FctEngineNewPayloadByElClientHourlyServiceListResponses, FctEngineNewPayloadByElClientServiceGetData, FctEngineNewPayloadByElClientServiceGetErrors, FctEngineNewPayloadByElClientServiceGetResponses, FctEngineNewPayloadByElClientServiceListData, FctEngineNewPayloadByElClientServiceListErrors, FctEngineNewPayloadByElClientServiceListResponses, FctEngineNewPayloadBySlotServiceGetData, FctEngineNewPayloadBySlotServiceGetErrors, FctEngineNewPayloadBySlotServiceGetResponses, FctEngineNewPayloadBySlotServiceListData, FctEngineNewPayloadBySlotServiceListErrors, FctEngineNewPayloadBySlotServiceListResponses, FctEngineNewPayloadDurationChunked50MsServiceGetData, FctEngineNewPayloadDurationChunked50MsServiceGetErrors, FctEngineNewPayloadDurationChunked50MsServiceGetResponses, FctEngineNewPayloadDurationChunked50MsServiceListData, FctEngineNewPayloadDurationChunked50MsServiceListErrors, FctEngineNewPayloadDurationChunked50MsServiceListResponses, FctEngineNewPayloadWinrateDailyServiceGetData, FctEngineNewPayloadWinrateDailyServiceGetErrors, FctEngineNewPayloadWinrateDailyServiceGetResponses, FctEngineNewPayloadWinrateDailyServiceListData, FctEngineNewPayloadWinrateDailyServiceListErrors, FctEngineNewPayloadWinrateDailyServiceListResponses, FctEngineNewPayloadWinrateHourlyServiceGetData, FctEngineNewPayloadWinrateHourlyServiceGetErrors, FctEngineNewPayloadWinrateHourlyServiceGetResponses, FctEngineNewPayloadWinrateHourlyServiceListData, FctEngineNewPayloadWinrateHourlyServiceListErrors, FctEngineNewPayloadWinrateHourlyServiceListResponses, FctExecutionGasLimitDailyServiceGetData, FctExecutionGasLimitDailyServiceGetErrors, FctExecutionGasLimitDailyServiceGetResponses, FctExecutionGasLimitDailyServiceListData, FctExecutionGasLimitDailyServiceListErrors, FctExecutionGasLimitDailyServiceListResponses, FctExecutionGasLimitHourlyServiceGetData, FctExecutionGasLimitHourlyServiceGetErrors, FctExecutionGasLimitHourlyServiceGetResponses, FctExecutionGasLimitHourlyServiceListData, FctExecutionGasLimitHourlyServiceListErrors, FctExecutionGasLimitHourlyServiceListResponses, FctExecutionGasLimitSignallingDailyServiceGetData, FctExecutionGasLimitSignallingDailyServiceGetErrors, FctExecutionGasLimitSignallingDailyServiceGetResponses, FctExecutionGasLimitSignallingDailyServiceListData, FctExecutionGasLimitSignallingDailyServiceListErrors, FctExecutionGasLimitSignallingDailyServiceListResponses, FctExecutionGasLimitSignallingHourlyServiceGetData, FctExecutionGasLimitSignallingHourlyServiceGetErrors, FctExecutionGasLimitSignallingHourlyServiceGetResponses, FctExecutionGasLimitSignallingHourlyServiceListData, FctExecutionGasLimitSignallingHourlyServiceListErrors, FctExecutionGasLimitSignallingHourlyServiceListResponses, FctExecutionGasUsedDailyServiceGetData, FctExecutionGasUsedDailyServiceGetErrors, FctExecutionGasUsedDailyServiceGetResponses, FctExecutionGasUsedDailyServiceListData, FctExecutionGasUsedDailyServiceListErrors, FctExecutionGasUsedDailyServiceListResponses, FctExecutionGasUsedHourlyServiceGetData, FctExecutionGasUsedHourlyServiceGetErrors, FctExecutionGasUsedHourlyServiceGetResponses, FctExecutionGasUsedHourlyServiceListData, FctExecutionGasUsedHourlyServiceListErrors, FctExecutionGasUsedHourlyServiceListResponses, FctExecutionReceiptSizeDailyServiceGetData, FctExecutionReceiptSizeDailyServiceGetErrors, FctExecutionReceiptSizeDailyServiceGetResponses, FctExecutionReceiptSizeDailyServiceListData, FctExecutionReceiptSizeDailyServiceListErrors, FctExecutionReceiptSizeDailyServiceListResponses, FctExecutionReceiptSizeHourlyServiceGetData, FctExecutionReceiptSizeHourlyServiceGetErrors, FctExecutionReceiptSizeHourlyServiceGetResponses, FctExecutionReceiptSizeHourlyServiceListData, FctExecutionReceiptSizeHourlyServiceListErrors, FctExecutionReceiptSizeHourlyServiceListResponses, FctExecutionStateSizeDailyServiceGetData, FctExecutionStateSizeDailyServiceGetErrors, FctExecutionStateSizeDailyServiceGetResponses, FctExecutionStateSizeDailyServiceListData, FctExecutionStateSizeDailyServiceListErrors, FctExecutionStateSizeDailyServiceListResponses, FctExecutionStateSizeHourlyServiceGetData, FctExecutionStateSizeHourlyServiceGetErrors, FctExecutionStateSizeHourlyServiceGetResponses, FctExecutionStateSizeHourlyServiceListData, FctExecutionStateSizeHourlyServiceListErrors, FctExecutionStateSizeHourlyServiceListResponses, FctExecutionTpsDailyServiceGetData, FctExecutionTpsDailyServiceGetErrors, FctExecutionTpsDailyServiceGetResponses, FctExecutionTpsDailyServiceListData, FctExecutionTpsDailyServiceListErrors, FctExecutionTpsDailyServiceListResponses, FctExecutionTpsHourlyServiceGetData, FctExecutionTpsHourlyServiceGetErrors, FctExecutionTpsHourlyServiceGetResponses, FctExecutionTpsHourlyServiceListData, FctExecutionTpsHourlyServiceListErrors, FctExecutionTpsHourlyServiceListResponses, FctExecutionTransactionsDailyServiceGetData, FctExecutionTransactionsDailyServiceGetErrors, FctExecutionTransactionsDailyServiceGetResponses, FctExecutionTransactionsDailyServiceListData, FctExecutionTransactionsDailyServiceListErrors, FctExecutionTransactionsDailyServiceListResponses, FctExecutionTransactionsHourlyServiceGetData, FctExecutionTransactionsHourlyServiceGetErrors, FctExecutionTransactionsHourlyServiceGetResponses, FctExecutionTransactionsHourlyServiceListData, FctExecutionTransactionsHourlyServiceListErrors, FctExecutionTransactionsHourlyServiceListResponses, FctHeadFirstSeenByNodeServiceGetData, FctHeadFirstSeenByNodeServiceGetErrors, FctHeadFirstSeenByNodeServiceGetResponses, FctHeadFirstSeenByNodeServiceListData, FctHeadFirstSeenByNodeServiceListErrors, FctHeadFirstSeenByNodeServiceListResponses, FctHeadVoteCorrectnessRateDailyServiceGetData, FctHeadVoteCorrectnessRateDailyServiceGetErrors, FctHeadVoteCorrectnessRateDailyServiceGetResponses, FctHeadVoteCorrectnessRateDailyServiceListData, FctHeadVoteCorrectnessRateDailyServiceListErrors, FctHeadVoteCorrectnessRateDailyServiceListResponses, FctHeadVoteCorrectnessRateHourlyServiceGetData, FctHeadVoteCorrectnessRateHourlyServiceGetErrors, FctHeadVoteCorrectnessRateHourlyServiceGetResponses, FctHeadVoteCorrectnessRateHourlyServiceListData, FctHeadVoteCorrectnessRateHourlyServiceListErrors, FctHeadVoteCorrectnessRateHourlyServiceListResponses, FctMevBidCountByBuilderServiceGetData, FctMevBidCountByBuilderServiceGetErrors, FctMevBidCountByBuilderServiceGetResponses, FctMevBidCountByBuilderServiceListData, FctMevBidCountByBuilderServiceListErrors, FctMevBidCountByBuilderServiceListResponses, FctMevBidCountByRelayServiceGetData, FctMevBidCountByRelayServiceGetErrors, FctMevBidCountByRelayServiceGetResponses, FctMevBidCountByRelayServiceListData, FctMevBidCountByRelayServiceListErrors, FctMevBidCountByRelayServiceListResponses, FctMevBidHighestValueByBuilderChunked50MsServiceGetData, FctMevBidHighestValueByBuilderChunked50MsServiceGetErrors, FctMevBidHighestValueByBuilderChunked50MsServiceGetResponses, FctMevBidHighestValueByBuilderChunked50MsServiceListData, FctMevBidHighestValueByBuilderChunked50MsServiceListErrors, FctMevBidHighestValueByBuilderChunked50MsServiceListResponses, FctMissedSlotRateDailyServiceGetData, FctMissedSlotRateDailyServiceGetErrors, FctMissedSlotRateDailyServiceGetResponses, FctMissedSlotRateDailyServiceListData, FctMissedSlotRateDailyServiceListErrors, FctMissedSlotRateDailyServiceListResponses, FctMissedSlotRateHourlyServiceGetData, FctMissedSlotRateHourlyServiceGetErrors, FctMissedSlotRateHourlyServiceGetResponses, FctMissedSlotRateHourlyServiceListData, FctMissedSlotRateHourlyServiceListErrors, FctMissedSlotRateHourlyServiceListResponses, FctNodeActiveLast24hServiceGetData, FctNodeActiveLast24hServiceGetErrors, FctNodeActiveLast24hServiceGetResponses, FctNodeActiveLast24hServiceListData, FctNodeActiveLast24hServiceListErrors, FctNodeActiveLast24hServiceListResponses, FctNodeCpuUtilizationByProcessServiceGetData, FctNodeCpuUtilizationByProcessServiceGetErrors, FctNodeCpuUtilizationByProcessServiceGetResponses, FctNodeCpuUtilizationByProcessServiceListData, FctNodeCpuUtilizationByProcessServiceListErrors, FctNodeCpuUtilizationByProcessServiceListResponses, FctNodeDiskIoByProcessServiceGetData, FctNodeDiskIoByProcessServiceGetErrors, FctNodeDiskIoByProcessServiceGetResponses, FctNodeDiskIoByProcessServiceListData, FctNodeDiskIoByProcessServiceListErrors, FctNodeDiskIoByProcessServiceListResponses, FctNodeMemoryUsageByProcessServiceGetData, FctNodeMemoryUsageByProcessServiceGetErrors, FctNodeMemoryUsageByProcessServiceGetResponses, FctNodeMemoryUsageByProcessServiceListData, FctNodeMemoryUsageByProcessServiceListErrors, FctNodeMemoryUsageByProcessServiceListResponses, FctNodeNetworkIoByProcessServiceGetData, FctNodeNetworkIoByProcessServiceGetErrors, FctNodeNetworkIoByProcessServiceGetResponses, FctNodeNetworkIoByProcessServiceListData, FctNodeNetworkIoByProcessServiceListErrors, FctNodeNetworkIoByProcessServiceListResponses, FctOpcodeGasByOpcodeDailyServiceGetData, FctOpcodeGasByOpcodeDailyServiceGetErrors, FctOpcodeGasByOpcodeDailyServiceGetResponses, FctOpcodeGasByOpcodeDailyServiceListData, FctOpcodeGasByOpcodeDailyServiceListErrors, FctOpcodeGasByOpcodeDailyServiceListResponses, FctOpcodeGasByOpcodeHourlyServiceGetData, FctOpcodeGasByOpcodeHourlyServiceGetErrors, FctOpcodeGasByOpcodeHourlyServiceGetResponses, FctOpcodeGasByOpcodeHourlyServiceListData, FctOpcodeGasByOpcodeHourlyServiceListErrors, FctOpcodeGasByOpcodeHourlyServiceListResponses, FctOpcodeOpsDailyServiceGetData, FctOpcodeOpsDailyServiceGetErrors, FctOpcodeOpsDailyServiceGetResponses, FctOpcodeOpsDailyServiceListData, FctOpcodeOpsDailyServiceListErrors, FctOpcodeOpsDailyServiceListResponses, FctOpcodeOpsHourlyServiceGetData, FctOpcodeOpsHourlyServiceGetErrors, FctOpcodeOpsHourlyServiceGetResponses, FctOpcodeOpsHourlyServiceListData, FctOpcodeOpsHourlyServiceListErrors, FctOpcodeOpsHourlyServiceListResponses, FctPreparedBlockServiceGetData, FctPreparedBlockServiceGetErrors, FctPreparedBlockServiceGetResponses, FctPreparedBlockServiceListData, FctPreparedBlockServiceListErrors, FctPreparedBlockServiceListResponses, FctProposerRewardDailyServiceGetData, FctProposerRewardDailyServiceGetErrors, FctProposerRewardDailyServiceGetResponses, FctProposerRewardDailyServiceListData, FctProposerRewardDailyServiceListErrors, FctProposerRewardDailyServiceListResponses, FctProposerRewardHourlyServiceGetData, FctProposerRewardHourlyServiceGetErrors, FctProposerRewardHourlyServiceGetResponses, FctProposerRewardHourlyServiceListData, FctProposerRewardHourlyServiceListErrors, FctProposerRewardHourlyServiceListResponses, FctReorgDailyServiceGetData, FctReorgDailyServiceGetErrors, FctReorgDailyServiceGetResponses, FctReorgDailyServiceListData, FctReorgDailyServiceListErrors, FctReorgDailyServiceListResponses, FctReorgHourlyServiceGetData, FctReorgHourlyServiceGetErrors, FctReorgHourlyServiceGetResponses, FctReorgHourlyServiceListData, FctReorgHourlyServiceListErrors, FctReorgHourlyServiceListResponses, FctRocketpoolValidatorServiceGetData, FctRocketpoolValidatorServiceGetErrors, FctRocketpoolValidatorServiceGetResponses, FctRocketpoolValidatorServiceListData, FctRocketpoolValidatorServiceListErrors, FctRocketpoolValidatorServiceListResponses, FctStorageSlotStateByAddressDailyServiceGetData, FctStorageSlotStateByAddressDailyServiceGetErrors, FctStorageSlotStateByAddressDailyServiceGetResponses, FctStorageSlotStateByAddressDailyServiceListData, FctStorageSlotStateByAddressDailyServiceListErrors, FctStorageSlotStateByAddressDailyServiceListResponses, FctStorageSlotStateByAddressHourlyServiceGetData, FctStorageSlotStateByAddressHourlyServiceGetErrors, FctStorageSlotStateByAddressHourlyServiceGetResponses, FctStorageSlotStateByAddressHourlyServiceListData, FctStorageSlotStateByAddressHourlyServiceListErrors, FctStorageSlotStateByAddressHourlyServiceListResponses, FctStorageSlotStateByBlockDailyServiceGetData, FctStorageSlotStateByBlockDailyServiceGetErrors, FctStorageSlotStateByBlockDailyServiceGetResponses, FctStorageSlotStateByBlockDailyServiceListData, FctStorageSlotStateByBlockDailyServiceListErrors, FctStorageSlotStateByBlockDailyServiceListResponses, FctStorageSlotStateByBlockHourlyServiceGetData, FctStorageSlotStateByBlockHourlyServiceGetErrors, FctStorageSlotStateByBlockHourlyServiceGetResponses, FctStorageSlotStateByBlockHourlyServiceListData, FctStorageSlotStateByBlockHourlyServiceListErrors, FctStorageSlotStateByBlockHourlyServiceListResponses, FctStorageSlotStateWithExpiryByAddressDailyServiceGetData, FctStorageSlotStateWithExpiryByAddressDailyServiceGetErrors, FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponses, FctStorageSlotStateWithExpiryByAddressDailyServiceListData, FctStorageSlotStateWithExpiryByAddressDailyServiceListErrors, FctStorageSlotStateWithExpiryByAddressDailyServiceListResponses, FctStorageSlotStateWithExpiryByAddressHourlyServiceGetData, FctStorageSlotStateWithExpiryByAddressHourlyServiceGetErrors, FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponses, FctStorageSlotStateWithExpiryByAddressHourlyServiceListData, FctStorageSlotStateWithExpiryByAddressHourlyServiceListErrors, FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponses, FctStorageSlotStateWithExpiryByBlockDailyServiceGetData, FctStorageSlotStateWithExpiryByBlockDailyServiceGetErrors, FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponses, FctStorageSlotStateWithExpiryByBlockDailyServiceListData, FctStorageSlotStateWithExpiryByBlockDailyServiceListErrors, FctStorageSlotStateWithExpiryByBlockDailyServiceListResponses, FctStorageSlotStateWithExpiryByBlockHourlyServiceGetData, FctStorageSlotStateWithExpiryByBlockHourlyServiceGetErrors, FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponses, FctStorageSlotStateWithExpiryByBlockHourlyServiceListData, FctStorageSlotStateWithExpiryByBlockHourlyServiceListErrors, FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponses, FctStorageSlotTop100ByBytesServiceGetData, FctStorageSlotTop100ByBytesServiceGetErrors, FctStorageSlotTop100ByBytesServiceGetResponses, FctStorageSlotTop100ByBytesServiceListData, FctStorageSlotTop100ByBytesServiceListErrors, FctStorageSlotTop100ByBytesServiceListResponses, FctStorageSlotTop100BySlotsServiceGetData, FctStorageSlotTop100BySlotsServiceGetErrors, FctStorageSlotTop100BySlotsServiceGetResponses, FctStorageSlotTop100BySlotsServiceListData, FctStorageSlotTop100BySlotsServiceListErrors, FctStorageSlotTop100BySlotsServiceListResponses, FctSyncCommitteeParticipationByValidatorDailyServiceGetData, FctSyncCommitteeParticipationByValidatorDailyServiceGetErrors, FctSyncCommitteeParticipationByValidatorDailyServiceGetResponses, FctSyncCommitteeParticipationByValidatorDailyServiceListData, FctSyncCommitteeParticipationByValidatorDailyServiceListErrors, FctSyncCommitteeParticipationByValidatorDailyServiceListResponses, FctSyncCommitteeParticipationByValidatorHourlyServiceGetData, FctSyncCommitteeParticipationByValidatorHourlyServiceGetErrors, FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponses, FctSyncCommitteeParticipationByValidatorHourlyServiceListData, FctSyncCommitteeParticipationByValidatorHourlyServiceListErrors, FctSyncCommitteeParticipationByValidatorHourlyServiceListResponses, FctSyncCommitteeParticipationByValidatorServiceGetData, FctSyncCommitteeParticipationByValidatorServiceGetErrors, FctSyncCommitteeParticipationByValidatorServiceGetResponses, FctSyncCommitteeParticipationByValidatorServiceListData, FctSyncCommitteeParticipationByValidatorServiceListErrors, FctSyncCommitteeParticipationByValidatorServiceListResponses, FctTokenContractStorageStateByBlockDailyServiceGetData, FctTokenContractStorageStateByBlockDailyServiceGetErrors, FctTokenContractStorageStateByBlockDailyServiceGetResponses, FctTokenContractStorageStateByBlockDailyServiceListData, FctTokenContractStorageStateByBlockDailyServiceListErrors, FctTokenContractStorageStateByBlockDailyServiceListResponses, FctValidatorBalanceDailyServiceGetData, FctValidatorBalanceDailyServiceGetErrors, FctValidatorBalanceDailyServiceGetResponses, FctValidatorBalanceDailyServiceListData, FctValidatorBalanceDailyServiceListErrors, FctValidatorBalanceDailyServiceListResponses, FctValidatorBalanceHourlyServiceGetData, FctValidatorBalanceHourlyServiceGetErrors, FctValidatorBalanceHourlyServiceGetResponses, FctValidatorBalanceHourlyServiceListData, FctValidatorBalanceHourlyServiceListErrors, FctValidatorBalanceHourlyServiceListResponses, FctValidatorBalanceServiceGetData, FctValidatorBalanceServiceGetErrors, FctValidatorBalanceServiceGetResponses, FctValidatorBalanceServiceListData, FctValidatorBalanceServiceListErrors, FctValidatorBalanceServiceListResponses, FctValidatorCountByEntityByStatusDailyServiceGetData, FctValidatorCountByEntityByStatusDailyServiceGetErrors, FctValidatorCountByEntityByStatusDailyServiceGetResponses, FctValidatorCountByEntityByStatusDailyServiceListData, FctValidatorCountByEntityByStatusDailyServiceListErrors, FctValidatorCountByEntityByStatusDailyServiceListResponses, IntAttestationAttestedCanonicalServiceGetData, IntAttestationAttestedCanonicalServiceGetErrors, IntAttestationAttestedCanonicalServiceGetResponses, IntAttestationAttestedCanonicalServiceListData, IntAttestationAttestedCanonicalServiceListErrors, IntAttestationAttestedCanonicalServiceListResponses, IntAttestationAttestedHeadServiceGetData, IntAttestationAttestedHeadServiceGetErrors, IntAttestationAttestedHeadServiceGetResponses, IntAttestationAttestedHeadServiceListData, IntAttestationAttestedHeadServiceListErrors, IntAttestationAttestedHeadServiceListResponses, IntAttestationFirstSeenAggregateServiceGetData, IntAttestationFirstSeenAggregateServiceGetErrors, IntAttestationFirstSeenAggregateServiceGetResponses, IntAttestationFirstSeenAggregateServiceListData, IntAttestationFirstSeenAggregateServiceListErrors, IntAttestationFirstSeenAggregateServiceListResponses, IntAttestationFirstSeenServiceGetData, IntAttestationFirstSeenServiceGetErrors, IntAttestationFirstSeenServiceGetResponses, IntAttestationFirstSeenServiceListData, IntAttestationFirstSeenServiceListErrors, IntAttestationFirstSeenServiceListResponses, IntBeaconCommitteeHeadServiceGetData, IntBeaconCommitteeHeadServiceGetErrors, IntBeaconCommitteeHeadServiceGetResponses, IntBeaconCommitteeHeadServiceListData, IntBeaconCommitteeHeadServiceListErrors, IntBeaconCommitteeHeadServiceListResponses, IntBlockBlobCountCanonicalServiceGetData, IntBlockBlobCountCanonicalServiceGetErrors, IntBlockBlobCountCanonicalServiceGetResponses, IntBlockBlobCountCanonicalServiceListData, IntBlockBlobCountCanonicalServiceListErrors, IntBlockBlobCountCanonicalServiceListResponses, IntBlockCanonicalServiceGetData, IntBlockCanonicalServiceGetErrors, IntBlockCanonicalServiceGetResponses, IntBlockCanonicalServiceListData, IntBlockCanonicalServiceListErrors, IntBlockCanonicalServiceListResponses, IntBlockMevCanonicalServiceGetData, IntBlockMevCanonicalServiceGetErrors, IntBlockMevCanonicalServiceGetResponses, IntBlockMevCanonicalServiceListData, IntBlockMevCanonicalServiceListErrors, IntBlockMevCanonicalServiceListResponses, IntBlockOpcodeGasServiceGetData, IntBlockOpcodeGasServiceGetErrors, IntBlockOpcodeGasServiceGetResponses, IntBlockOpcodeGasServiceListData, IntBlockOpcodeGasServiceListErrors, IntBlockOpcodeGasServiceListResponses, IntBlockProposerCanonicalServiceGetData, IntBlockProposerCanonicalServiceGetErrors, IntBlockProposerCanonicalServiceGetResponses, IntBlockProposerCanonicalServiceListData, IntBlockProposerCanonicalServiceListErrors, IntBlockProposerCanonicalServiceListResponses, IntBlockReceiptSizeServiceGetData, IntBlockReceiptSizeServiceGetErrors, IntBlockReceiptSizeServiceGetResponses, IntBlockReceiptSizeServiceListData, IntBlockReceiptSizeServiceListErrors, IntBlockReceiptSizeServiceListResponses, IntBlockResourceGasServiceGetData, IntBlockResourceGasServiceGetErrors, IntBlockResourceGasServiceGetResponses, IntBlockResourceGasServiceListData, IntBlockResourceGasServiceListErrors, IntBlockResourceGasServiceListResponses, IntContractCreationServiceGetData, IntContractCreationServiceGetErrors, IntContractCreationServiceGetResponses, IntContractCreationServiceListData, IntContractCreationServiceListErrors, IntContractCreationServiceListResponses, IntContractSelfdestructServiceGetData, IntContractSelfdestructServiceGetErrors, IntContractSelfdestructServiceGetResponses, IntContractSelfdestructServiceListData, IntContractSelfdestructServiceListErrors, IntContractSelfdestructServiceListResponses, IntContractStorageExpiry12mServiceGetData, IntContractStorageExpiry12mServiceGetErrors, IntContractStorageExpiry12mServiceGetResponses, IntContractStorageExpiry12mServiceListData, IntContractStorageExpiry12mServiceListErrors, IntContractStorageExpiry12mServiceListResponses, IntContractStorageExpiry18mServiceGetData, IntContractStorageExpiry18mServiceGetErrors, IntContractStorageExpiry18mServiceGetResponses, IntContractStorageExpiry18mServiceListData, IntContractStorageExpiry18mServiceListErrors, IntContractStorageExpiry18mServiceListResponses, IntContractStorageExpiry1mServiceGetData, IntContractStorageExpiry1mServiceGetErrors, IntContractStorageExpiry1mServiceGetResponses, IntContractStorageExpiry1mServiceListData, IntContractStorageExpiry1mServiceListErrors, IntContractStorageExpiry1mServiceListResponses, IntContractStorageExpiry24mServiceGetData, IntContractStorageExpiry24mServiceGetErrors, IntContractStorageExpiry24mServiceGetResponses, IntContractStorageExpiry24mServiceListData, IntContractStorageExpiry24mServiceListErrors, IntContractStorageExpiry24mServiceListResponses, IntContractStorageExpiry6mServiceGetData, IntContractStorageExpiry6mServiceGetErrors, IntContractStorageExpiry6mServiceGetResponses, IntContractStorageExpiry6mServiceListData, IntContractStorageExpiry6mServiceListErrors, IntContractStorageExpiry6mServiceListResponses, IntContractStorageNextTouchServiceGetData, IntContractStorageNextTouchServiceGetErrors, IntContractStorageNextTouchServiceGetResponses, IntContractStorageNextTouchServiceListData, IntContractStorageNextTouchServiceListErrors, IntContractStorageNextTouchServiceListResponses, IntContractStorageReactivation12mServiceGetData, IntContractStorageReactivation12mServiceGetErrors, IntContractStorageReactivation12mServiceGetResponses, IntContractStorageReactivation12mServiceListData, IntContractStorageReactivation12mServiceListErrors, IntContractStorageReactivation12mServiceListResponses, IntContractStorageReactivation18mServiceGetData, IntContractStorageReactivation18mServiceGetErrors, IntContractStorageReactivation18mServiceGetResponses, IntContractStorageReactivation18mServiceListData, IntContractStorageReactivation18mServiceListErrors, IntContractStorageReactivation18mServiceListResponses, IntContractStorageReactivation1mServiceGetData, IntContractStorageReactivation1mServiceGetErrors, IntContractStorageReactivation1mServiceGetResponses, IntContractStorageReactivation1mServiceListData, IntContractStorageReactivation1mServiceListErrors, IntContractStorageReactivation1mServiceListResponses, IntContractStorageReactivation24mServiceGetData, IntContractStorageReactivation24mServiceGetErrors, IntContractStorageReactivation24mServiceGetResponses, IntContractStorageReactivation24mServiceListData, IntContractStorageReactivation24mServiceListErrors, IntContractStorageReactivation24mServiceListResponses, IntContractStorageReactivation6mServiceGetData, IntContractStorageReactivation6mServiceGetErrors, IntContractStorageReactivation6mServiceGetResponses, IntContractStorageReactivation6mServiceListData, IntContractStorageReactivation6mServiceListErrors, IntContractStorageReactivation6mServiceListResponses, IntContractStorageStateByAddressServiceGetData, IntContractStorageStateByAddressServiceGetErrors, IntContractStorageStateByAddressServiceGetResponses, IntContractStorageStateByAddressServiceListData, IntContractStorageStateByAddressServiceListErrors, IntContractStorageStateByAddressServiceListResponses, IntContractStorageStateByBlockServiceGetData, IntContractStorageStateByBlockServiceGetErrors, IntContractStorageStateByBlockServiceGetResponses, IntContractStorageStateByBlockServiceListData, IntContractStorageStateByBlockServiceListErrors, IntContractStorageStateByBlockServiceListResponses, IntContractStorageStateServiceGetData, IntContractStorageStateServiceGetErrors, IntContractStorageStateServiceGetResponses, IntContractStorageStateServiceListData, IntContractStorageStateServiceListErrors, IntContractStorageStateServiceListResponses, IntContractStorageStateWithExpiryByAddressServiceGetData, IntContractStorageStateWithExpiryByAddressServiceGetErrors, IntContractStorageStateWithExpiryByAddressServiceGetResponses, IntContractStorageStateWithExpiryByAddressServiceListData, IntContractStorageStateWithExpiryByAddressServiceListErrors, IntContractStorageStateWithExpiryByAddressServiceListResponses, IntContractStorageStateWithExpiryByBlockServiceGetData, IntContractStorageStateWithExpiryByBlockServiceGetErrors, IntContractStorageStateWithExpiryByBlockServiceGetResponses, IntContractStorageStateWithExpiryByBlockServiceListData, IntContractStorageStateWithExpiryByBlockServiceListErrors, IntContractStorageStateWithExpiryByBlockServiceListResponses, IntContractStorageStateWithExpiryServiceGetData, IntContractStorageStateWithExpiryServiceGetErrors, IntContractStorageStateWithExpiryServiceGetResponses, IntContractStorageStateWithExpiryServiceListData, IntContractStorageStateWithExpiryServiceListErrors, IntContractStorageStateWithExpiryServiceListResponses, IntCustodyProbeOrderBySlotServiceGetData, IntCustodyProbeOrderBySlotServiceGetErrors, IntCustodyProbeOrderBySlotServiceGetResponses, IntCustodyProbeOrderBySlotServiceListData, IntCustodyProbeOrderBySlotServiceListErrors, IntCustodyProbeOrderBySlotServiceListResponses, IntCustodyProbeServiceGetData, IntCustodyProbeServiceGetErrors, IntCustodyProbeServiceGetResponses, IntCustodyProbeServiceListData, IntCustodyProbeServiceListErrors, IntCustodyProbeServiceListResponses, IntEngineGetBlobsServiceGetData, IntEngineGetBlobsServiceGetErrors, IntEngineGetBlobsServiceGetResponses, IntEngineGetBlobsServiceListData, IntEngineGetBlobsServiceListErrors, IntEngineGetBlobsServiceListResponses, IntEngineNewPayloadFastestExecutionByNodeClassServiceGetData, IntEngineNewPayloadFastestExecutionByNodeClassServiceGetErrors, IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponses, IntEngineNewPayloadFastestExecutionByNodeClassServiceListData, IntEngineNewPayloadFastestExecutionByNodeClassServiceListErrors, IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponses, IntEngineNewPayloadServiceGetData, IntEngineNewPayloadServiceGetErrors, IntEngineNewPayloadServiceGetResponses, IntEngineNewPayloadServiceListData, IntEngineNewPayloadServiceListErrors, IntEngineNewPayloadServiceListResponses, IntExecutionBlockByDateServiceGetData, IntExecutionBlockByDateServiceGetErrors, IntExecutionBlockByDateServiceGetResponses, IntExecutionBlockByDateServiceListData, IntExecutionBlockByDateServiceListErrors, IntExecutionBlockByDateServiceListResponses, IntExecutionStateSizeByBlockServiceGetData, IntExecutionStateSizeByBlockServiceGetErrors, IntExecutionStateSizeByBlockServiceGetResponses, IntExecutionStateSizeByBlockServiceListData, IntExecutionStateSizeByBlockServiceListErrors, IntExecutionStateSizeByBlockServiceListResponses, IntRocketpoolMegapoolServiceGetData, IntRocketpoolMegapoolServiceGetErrors, IntRocketpoolMegapoolServiceGetResponses, IntRocketpoolMegapoolServiceListData, IntRocketpoolMegapoolServiceListErrors, IntRocketpoolMegapoolServiceListResponses, IntRocketpoolMinipoolServiceGetData, IntRocketpoolMinipoolServiceGetErrors, IntRocketpoolMinipoolServiceGetResponses, IntRocketpoolMinipoolServiceListData, IntRocketpoolMinipoolServiceListErrors, IntRocketpoolMinipoolServiceListResponses, IntRocketpoolNodeEventServiceGetData, IntRocketpoolNodeEventServiceGetErrors, IntRocketpoolNodeEventServiceGetResponses, IntRocketpoolNodeEventServiceListData, IntRocketpoolNodeEventServiceListErrors, IntRocketpoolNodeEventServiceListResponses, IntRocketpoolNodeTimezoneServiceGetData, IntRocketpoolNodeTimezoneServiceGetErrors, IntRocketpoolNodeTimezoneServiceGetResponses, IntRocketpoolNodeTimezoneServiceListData, IntRocketpoolNodeTimezoneServiceListErrors, IntRocketpoolNodeTimezoneServiceListResponses, IntStorageSelfdestructDiffsServiceGetData, IntStorageSelfdestructDiffsServiceGetErrors, IntStorageSelfdestructDiffsServiceGetResponses, IntStorageSelfdestructDiffsServiceListData, IntStorageSelfdestructDiffsServiceListErrors, IntStorageSelfdestructDiffsServiceListResponses, IntStorageSlotDiffByAddressSlotServiceGetData, IntStorageSlotDiffByAddressSlotServiceGetErrors, IntStorageSlotDiffByAddressSlotServiceGetResponses, IntStorageSlotDiffByAddressSlotServiceListData, IntStorageSlotDiffByAddressSlotServiceListErrors, IntStorageSlotDiffByAddressSlotServiceListResponses, IntStorageSlotDiffServiceGetData, IntStorageSlotDiffServiceGetErrors, IntStorageSlotDiffServiceGetResponses, IntStorageSlotDiffServiceListData, IntStorageSlotDiffServiceListErrors, IntStorageSlotDiffServiceListResponses, IntStorageSlotExpiry12mServiceGetData, IntStorageSlotExpiry12mServiceGetErrors, IntStorageSlotExpiry12mServiceGetResponses, IntStorageSlotExpiry12mServiceListData, IntStorageSlotExpiry12mServiceListErrors, IntStorageSlotExpiry12mServiceListResponses, IntStorageSlotExpiry18mServiceGetData, IntStorageSlotExpiry18mServiceGetErrors, IntStorageSlotExpiry18mServiceGetResponses, IntStorageSlotExpiry18mServiceListData, IntStorageSlotExpiry18mServiceListErrors, IntStorageSlotExpiry18mServiceListResponses, IntStorageSlotExpiry1mServiceGetData, IntStorageSlotExpiry1mServiceGetErrors, IntStorageSlotExpiry1mServiceGetResponses, IntStorageSlotExpiry1mServiceListData, IntStorageSlotExpiry1mServiceListErrors, IntStorageSlotExpiry1mServiceListResponses, IntStorageSlotExpiry24mServiceGetData, IntStorageSlotExpiry24mServiceGetErrors, IntStorageSlotExpiry24mServiceGetResponses, IntStorageSlotExpiry24mServiceListData, IntStorageSlotExpiry24mServiceListErrors, IntStorageSlotExpiry24mServiceListResponses, IntStorageSlotExpiry6mServiceGetData, IntStorageSlotExpiry6mServiceGetErrors, IntStorageSlotExpiry6mServiceGetResponses, IntStorageSlotExpiry6mServiceListData, IntStorageSlotExpiry6mServiceListErrors, IntStorageSlotExpiry6mServiceListResponses, IntStorageSlotLifecycleBoundaryServiceGetData, IntStorageSlotLifecycleBoundaryServiceGetErrors, IntStorageSlotLifecycleBoundaryServiceGetResponses, IntStorageSlotLifecycleBoundaryServiceListData, IntStorageSlotLifecycleBoundaryServiceListErrors, IntStorageSlotLifecycleBoundaryServiceListResponses, IntStorageSlotLifecycleServiceGetData, IntStorageSlotLifecycleServiceGetErrors, IntStorageSlotLifecycleServiceGetResponses, IntStorageSlotLifecycleServiceListData, IntStorageSlotLifecycleServiceListErrors, IntStorageSlotLifecycleServiceListResponses, IntStorageSlotNextTouchServiceGetData, IntStorageSlotNextTouchServiceGetErrors, IntStorageSlotNextTouchServiceGetResponses, IntStorageSlotNextTouchServiceListData, IntStorageSlotNextTouchServiceListErrors, IntStorageSlotNextTouchServiceListResponses, IntStorageSlotReactivation12mServiceGetData, IntStorageSlotReactivation12mServiceGetErrors, IntStorageSlotReactivation12mServiceGetResponses, IntStorageSlotReactivation12mServiceListData, IntStorageSlotReactivation12mServiceListErrors, IntStorageSlotReactivation12mServiceListResponses, IntStorageSlotReactivation18mServiceGetData, IntStorageSlotReactivation18mServiceGetErrors, IntStorageSlotReactivation18mServiceGetResponses, IntStorageSlotReactivation18mServiceListData, IntStorageSlotReactivation18mServiceListErrors, IntStorageSlotReactivation18mServiceListResponses, IntStorageSlotReactivation1mServiceGetData, IntStorageSlotReactivation1mServiceGetErrors, IntStorageSlotReactivation1mServiceGetResponses, IntStorageSlotReactivation1mServiceListData, IntStorageSlotReactivation1mServiceListErrors, IntStorageSlotReactivation1mServiceListResponses, IntStorageSlotReactivation24mServiceGetData, IntStorageSlotReactivation24mServiceGetErrors, IntStorageSlotReactivation24mServiceGetResponses, IntStorageSlotReactivation24mServiceListData, IntStorageSlotReactivation24mServiceListErrors, IntStorageSlotReactivation24mServiceListResponses, IntStorageSlotReactivation6mServiceGetData, IntStorageSlotReactivation6mServiceGetErrors, IntStorageSlotReactivation6mServiceGetResponses, IntStorageSlotReactivation6mServiceListData, IntStorageSlotReactivation6mServiceListErrors, IntStorageSlotReactivation6mServiceListResponses, IntStorageSlotReadServiceGetData, IntStorageSlotReadServiceGetErrors, IntStorageSlotReadServiceGetResponses, IntStorageSlotReadServiceListData, IntStorageSlotReadServiceListErrors, IntStorageSlotReadServiceListResponses, IntStorageSlotStateByAddressServiceGetData, IntStorageSlotStateByAddressServiceGetErrors, IntStorageSlotStateByAddressServiceGetResponses, IntStorageSlotStateByAddressServiceListData, IntStorageSlotStateByAddressServiceListErrors, IntStorageSlotStateByAddressServiceListResponses, IntStorageSlotStateByBlockServiceGetData, IntStorageSlotStateByBlockServiceGetErrors, IntStorageSlotStateByBlockServiceGetResponses, IntStorageSlotStateByBlockServiceListData, IntStorageSlotStateByBlockServiceListErrors, IntStorageSlotStateByBlockServiceListResponses, IntStorageSlotStateServiceGetData, IntStorageSlotStateServiceGetErrors, IntStorageSlotStateServiceGetResponses, IntStorageSlotStateServiceListData, IntStorageSlotStateServiceListErrors, IntStorageSlotStateServiceListResponses, IntStorageSlotStateWithExpiryByAddressServiceGetData, IntStorageSlotStateWithExpiryByAddressServiceGetErrors, IntStorageSlotStateWithExpiryByAddressServiceGetResponses, IntStorageSlotStateWithExpiryByAddressServiceListData, IntStorageSlotStateWithExpiryByAddressServiceListErrors, IntStorageSlotStateWithExpiryByAddressServiceListResponses, IntStorageSlotStateWithExpiryByBlockServiceGetData, IntStorageSlotStateWithExpiryByBlockServiceGetErrors, IntStorageSlotStateWithExpiryByBlockServiceGetResponses, IntStorageSlotStateWithExpiryByBlockServiceListData, IntStorageSlotStateWithExpiryByBlockServiceListErrors, IntStorageSlotStateWithExpiryByBlockServiceListResponses, IntStorageSlotStateWithExpiryServiceGetData, IntStorageSlotStateWithExpiryServiceGetErrors, IntStorageSlotStateWithExpiryServiceGetResponses, IntStorageSlotStateWithExpiryServiceListData, IntStorageSlotStateWithExpiryServiceListErrors, IntStorageSlotStateWithExpiryServiceListResponses, IntTokenContractStorageStateByBlockServiceGetData, IntTokenContractStorageStateByBlockServiceGetErrors, IntTokenContractStorageStateByBlockServiceGetResponses, IntTokenContractStorageStateByBlockServiceListData, IntTokenContractStorageStateByBlockServiceListErrors, IntTokenContractStorageStateByBlockServiceListResponses, IntTransactionCallFrameOpcodeGasServiceGetData, IntTransactionCallFrameOpcodeGasServiceGetErrors, IntTransactionCallFrameOpcodeGasServiceGetResponses, IntTransactionCallFrameOpcodeGasServiceListData, IntTransactionCallFrameOpcodeGasServiceListErrors, IntTransactionCallFrameOpcodeGasServiceListResponses, IntTransactionCallFrameOpcodeResourceGasServiceGetData, IntTransactionCallFrameOpcodeResourceGasServiceGetErrors, IntTransactionCallFrameOpcodeResourceGasServiceGetResponses, IntTransactionCallFrameOpcodeResourceGasServiceListData, IntTransactionCallFrameOpcodeResourceGasServiceListErrors, IntTransactionCallFrameOpcodeResourceGasServiceListResponses, IntTransactionCallFrameServiceGetData, IntTransactionCallFrameServiceGetErrors, IntTransactionCallFrameServiceGetResponses, IntTransactionCallFrameServiceListData, IntTransactionCallFrameServiceListErrors, IntTransactionCallFrameServiceListResponses, IntTransactionOpcodeGasServiceGetData, IntTransactionOpcodeGasServiceGetErrors, IntTransactionOpcodeGasServiceGetResponses, IntTransactionOpcodeGasServiceListData, IntTransactionOpcodeGasServiceListErrors, IntTransactionOpcodeGasServiceListResponses, IntTransactionReceiptSizeServiceGetData, IntTransactionReceiptSizeServiceGetErrors, IntTransactionReceiptSizeServiceGetResponses, IntTransactionReceiptSizeServiceListData, IntTransactionReceiptSizeServiceListErrors, IntTransactionReceiptSizeServiceListResponses, IntTransactionResourceGasServiceGetData, IntTransactionResourceGasServiceGetErrors, IntTransactionResourceGasServiceGetResponses, IntTransactionResourceGasServiceListData, IntTransactionResourceGasServiceListErrors, IntTransactionResourceGasServiceListResponses } from './types.gen'; -import { zAdminCbtIncrementalServiceGetData, zAdminCbtIncrementalServiceGetResponse, zAdminCbtIncrementalServiceListData, zAdminCbtIncrementalServiceListResponse, zDimBlockBlobSubmitterServiceGetData, zDimBlockBlobSubmitterServiceGetResponse, zDimBlockBlobSubmitterServiceListData, zDimBlockBlobSubmitterServiceListResponse, zDimContractOwnerServiceGetData, zDimContractOwnerServiceGetResponse, zDimContractOwnerServiceListData, zDimContractOwnerServiceListResponse, zDimFunctionSignatureServiceGetData, zDimFunctionSignatureServiceGetResponse, zDimFunctionSignatureServiceListData, zDimFunctionSignatureServiceListResponse, zDimNodeServiceGetData, zDimNodeServiceGetResponse, zDimNodeServiceListData, zDimNodeServiceListResponse, zDimRocketpoolNodeServiceGetData, zDimRocketpoolNodeServiceGetResponse, zDimRocketpoolNodeServiceListData, zDimRocketpoolNodeServiceListResponse, zDimTokenContractServiceGetData, zDimTokenContractServiceGetResponse, zDimTokenContractServiceListData, zDimTokenContractServiceListResponse, zDimValidatorPubkeyServiceGetData, zDimValidatorPubkeyServiceGetResponse, zDimValidatorPubkeyServiceListData, zDimValidatorPubkeyServiceListResponse, zDimValidatorStatusServiceGetData, zDimValidatorStatusServiceGetResponse, zDimValidatorStatusServiceListData, zDimValidatorStatusServiceListResponse, zFctAttestationCorrectnessByValidatorCanonicalServiceGetData, zFctAttestationCorrectnessByValidatorCanonicalServiceGetResponse, zFctAttestationCorrectnessByValidatorCanonicalServiceListData, zFctAttestationCorrectnessByValidatorCanonicalServiceListResponse, zFctAttestationCorrectnessByValidatorHeadServiceGetData, zFctAttestationCorrectnessByValidatorHeadServiceGetResponse, zFctAttestationCorrectnessByValidatorHeadServiceListData, zFctAttestationCorrectnessByValidatorHeadServiceListResponse, zFctAttestationCorrectnessCanonicalServiceGetData, zFctAttestationCorrectnessCanonicalServiceGetResponse, zFctAttestationCorrectnessCanonicalServiceListData, zFctAttestationCorrectnessCanonicalServiceListResponse, zFctAttestationCorrectnessHeadServiceGetData, zFctAttestationCorrectnessHeadServiceGetResponse, zFctAttestationCorrectnessHeadServiceListData, zFctAttestationCorrectnessHeadServiceListResponse, zFctAttestationFirstSeenByValidatorServiceGetData, zFctAttestationFirstSeenByValidatorServiceGetResponse, zFctAttestationFirstSeenByValidatorServiceListData, zFctAttestationFirstSeenByValidatorServiceListResponse, zFctAttestationFirstSeenChunked50MsServiceGetData, zFctAttestationFirstSeenChunked50MsServiceGetResponse, zFctAttestationFirstSeenChunked50MsServiceListData, zFctAttestationFirstSeenChunked50MsServiceListResponse, zFctAttestationInclusionDelayDailyServiceGetData, zFctAttestationInclusionDelayDailyServiceGetResponse, zFctAttestationInclusionDelayDailyServiceListData, zFctAttestationInclusionDelayDailyServiceListResponse, zFctAttestationInclusionDelayHourlyServiceGetData, zFctAttestationInclusionDelayHourlyServiceGetResponse, zFctAttestationInclusionDelayHourlyServiceListData, zFctAttestationInclusionDelayHourlyServiceListResponse, zFctAttestationLivenessByEntityHeadServiceGetData, zFctAttestationLivenessByEntityHeadServiceGetResponse, zFctAttestationLivenessByEntityHeadServiceListData, zFctAttestationLivenessByEntityHeadServiceListResponse, zFctAttestationObservationByNodeServiceGetData, zFctAttestationObservationByNodeServiceGetResponse, zFctAttestationObservationByNodeServiceListData, zFctAttestationObservationByNodeServiceListResponse, zFctAttestationParticipationRateDailyServiceGetData, zFctAttestationParticipationRateDailyServiceGetResponse, zFctAttestationParticipationRateDailyServiceListData, zFctAttestationParticipationRateDailyServiceListResponse, zFctAttestationParticipationRateHourlyServiceGetData, zFctAttestationParticipationRateHourlyServiceGetResponse, zFctAttestationParticipationRateHourlyServiceListData, zFctAttestationParticipationRateHourlyServiceListResponse, zFctAttestationVoteCorrectnessByValidatorDailyServiceGetData, zFctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse, zFctAttestationVoteCorrectnessByValidatorDailyServiceListData, zFctAttestationVoteCorrectnessByValidatorDailyServiceListResponse, zFctAttestationVoteCorrectnessByValidatorHourlyServiceGetData, zFctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse, zFctAttestationVoteCorrectnessByValidatorHourlyServiceListData, zFctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse, zFctAttestationVoteCorrectnessByValidatorServiceGetData, zFctAttestationVoteCorrectnessByValidatorServiceGetResponse, zFctAttestationVoteCorrectnessByValidatorServiceListData, zFctAttestationVoteCorrectnessByValidatorServiceListResponse, zFctBlobCountDailyServiceGetData, zFctBlobCountDailyServiceGetResponse, zFctBlobCountDailyServiceListData, zFctBlobCountDailyServiceListResponse, zFctBlobCountHourlyServiceGetData, zFctBlobCountHourlyServiceGetResponse, zFctBlobCountHourlyServiceListData, zFctBlobCountHourlyServiceListResponse, zFctBlockBlobCountHeadServiceGetData, zFctBlockBlobCountHeadServiceGetResponse, zFctBlockBlobCountHeadServiceListData, zFctBlockBlobCountHeadServiceListResponse, zFctBlockBlobCountServiceGetData, zFctBlockBlobCountServiceGetResponse, zFctBlockBlobCountServiceListData, zFctBlockBlobCountServiceListResponse, zFctBlockBlobFirstSeenByNodeServiceGetData, zFctBlockBlobFirstSeenByNodeServiceGetResponse, zFctBlockBlobFirstSeenByNodeServiceListData, zFctBlockBlobFirstSeenByNodeServiceListResponse, zFctBlockBlobHeadServiceGetData, zFctBlockBlobHeadServiceGetResponse, zFctBlockBlobHeadServiceListData, zFctBlockBlobHeadServiceListResponse, zFctBlockDataColumnSidecarFirstSeenByNodeServiceGetData, zFctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse, zFctBlockDataColumnSidecarFirstSeenByNodeServiceListData, zFctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse, zFctBlockDataColumnSidecarFirstSeenServiceGetData, zFctBlockDataColumnSidecarFirstSeenServiceGetResponse, zFctBlockDataColumnSidecarFirstSeenServiceListData, zFctBlockDataColumnSidecarFirstSeenServiceListResponse, zFctBlockFirstSeenByNodeServiceGetData, zFctBlockFirstSeenByNodeServiceGetResponse, zFctBlockFirstSeenByNodeServiceListData, zFctBlockFirstSeenByNodeServiceListResponse, zFctBlockHeadServiceGetData, zFctBlockHeadServiceGetResponse, zFctBlockHeadServiceListData, zFctBlockHeadServiceListResponse, zFctBlockMevHeadServiceGetData, zFctBlockMevHeadServiceGetResponse, zFctBlockMevHeadServiceListData, zFctBlockMevHeadServiceListResponse, zFctBlockMevServiceGetData, zFctBlockMevServiceGetResponse, zFctBlockMevServiceListData, zFctBlockMevServiceListResponse, zFctBlockProposalStatusDailyServiceGetData, zFctBlockProposalStatusDailyServiceGetResponse, zFctBlockProposalStatusDailyServiceListData, zFctBlockProposalStatusDailyServiceListResponse, zFctBlockProposalStatusHourlyServiceGetData, zFctBlockProposalStatusHourlyServiceGetResponse, zFctBlockProposalStatusHourlyServiceListData, zFctBlockProposalStatusHourlyServiceListResponse, zFctBlockProposerByValidatorServiceGetData, zFctBlockProposerByValidatorServiceGetResponse, zFctBlockProposerByValidatorServiceListData, zFctBlockProposerByValidatorServiceListResponse, zFctBlockProposerEntityServiceGetData, zFctBlockProposerEntityServiceGetResponse, zFctBlockProposerEntityServiceListData, zFctBlockProposerEntityServiceListResponse, zFctBlockProposerHeadServiceGetData, zFctBlockProposerHeadServiceGetResponse, zFctBlockProposerHeadServiceListData, zFctBlockProposerHeadServiceListResponse, zFctBlockProposerServiceGetData, zFctBlockProposerServiceGetResponse, zFctBlockProposerServiceListData, zFctBlockProposerServiceListResponse, zFctBlockServiceGetData, zFctBlockServiceGetResponse, zFctBlockServiceListData, zFctBlockServiceListResponse, zFctContractStorageStateByAddressDailyServiceGetData, zFctContractStorageStateByAddressDailyServiceGetResponse, zFctContractStorageStateByAddressDailyServiceListData, zFctContractStorageStateByAddressDailyServiceListResponse, zFctContractStorageStateByAddressHourlyServiceGetData, zFctContractStorageStateByAddressHourlyServiceGetResponse, zFctContractStorageStateByAddressHourlyServiceListData, zFctContractStorageStateByAddressHourlyServiceListResponse, zFctContractStorageStateByBlockDailyServiceGetData, zFctContractStorageStateByBlockDailyServiceGetResponse, zFctContractStorageStateByBlockDailyServiceListData, zFctContractStorageStateByBlockDailyServiceListResponse, zFctContractStorageStateByBlockHourlyServiceGetData, zFctContractStorageStateByBlockHourlyServiceGetResponse, zFctContractStorageStateByBlockHourlyServiceListData, zFctContractStorageStateByBlockHourlyServiceListResponse, zFctContractStorageStateWithExpiryByAddressDailyServiceGetData, zFctContractStorageStateWithExpiryByAddressDailyServiceGetResponse, zFctContractStorageStateWithExpiryByAddressDailyServiceListData, zFctContractStorageStateWithExpiryByAddressDailyServiceListResponse, zFctContractStorageStateWithExpiryByAddressHourlyServiceGetData, zFctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse, zFctContractStorageStateWithExpiryByAddressHourlyServiceListData, zFctContractStorageStateWithExpiryByAddressHourlyServiceListResponse, zFctContractStorageStateWithExpiryByBlockDailyServiceGetData, zFctContractStorageStateWithExpiryByBlockDailyServiceGetResponse, zFctContractStorageStateWithExpiryByBlockDailyServiceListData, zFctContractStorageStateWithExpiryByBlockDailyServiceListResponse, zFctContractStorageStateWithExpiryByBlockHourlyServiceGetData, zFctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse, zFctContractStorageStateWithExpiryByBlockHourlyServiceListData, zFctContractStorageStateWithExpiryByBlockHourlyServiceListResponse, zFctDataColumnAvailabilityByEpochServiceGetData, zFctDataColumnAvailabilityByEpochServiceGetResponse, zFctDataColumnAvailabilityByEpochServiceListData, zFctDataColumnAvailabilityByEpochServiceListResponse, zFctDataColumnAvailabilityBySlotBlobServiceGetData, zFctDataColumnAvailabilityBySlotBlobServiceGetResponse, zFctDataColumnAvailabilityBySlotBlobServiceListData, zFctDataColumnAvailabilityBySlotBlobServiceListResponse, zFctDataColumnAvailabilityBySlotServiceGetData, zFctDataColumnAvailabilityBySlotServiceGetResponse, zFctDataColumnAvailabilityBySlotServiceListData, zFctDataColumnAvailabilityBySlotServiceListResponse, zFctDataColumnAvailabilityDailyServiceGetData, zFctDataColumnAvailabilityDailyServiceGetResponse, zFctDataColumnAvailabilityDailyServiceListData, zFctDataColumnAvailabilityDailyServiceListResponse, zFctDataColumnAvailabilityHourlyServiceGetData, zFctDataColumnAvailabilityHourlyServiceGetResponse, zFctDataColumnAvailabilityHourlyServiceListData, zFctDataColumnAvailabilityHourlyServiceListResponse, zFctEngineGetBlobsByElClientHourlyServiceGetData, zFctEngineGetBlobsByElClientHourlyServiceGetResponse, zFctEngineGetBlobsByElClientHourlyServiceListData, zFctEngineGetBlobsByElClientHourlyServiceListResponse, zFctEngineGetBlobsByElClientServiceGetData, zFctEngineGetBlobsByElClientServiceGetResponse, zFctEngineGetBlobsByElClientServiceListData, zFctEngineGetBlobsByElClientServiceListResponse, zFctEngineGetBlobsBySlotServiceGetData, zFctEngineGetBlobsBySlotServiceGetResponse, zFctEngineGetBlobsBySlotServiceListData, zFctEngineGetBlobsBySlotServiceListResponse, zFctEngineGetBlobsDurationChunked50MsServiceGetData, zFctEngineGetBlobsDurationChunked50MsServiceGetResponse, zFctEngineGetBlobsDurationChunked50MsServiceListData, zFctEngineGetBlobsDurationChunked50MsServiceListResponse, zFctEngineNewPayloadByElClientHourlyServiceGetData, zFctEngineNewPayloadByElClientHourlyServiceGetResponse, zFctEngineNewPayloadByElClientHourlyServiceListData, zFctEngineNewPayloadByElClientHourlyServiceListResponse, zFctEngineNewPayloadByElClientServiceGetData, zFctEngineNewPayloadByElClientServiceGetResponse, zFctEngineNewPayloadByElClientServiceListData, zFctEngineNewPayloadByElClientServiceListResponse, zFctEngineNewPayloadBySlotServiceGetData, zFctEngineNewPayloadBySlotServiceGetResponse, zFctEngineNewPayloadBySlotServiceListData, zFctEngineNewPayloadBySlotServiceListResponse, zFctEngineNewPayloadDurationChunked50MsServiceGetData, zFctEngineNewPayloadDurationChunked50MsServiceGetResponse, zFctEngineNewPayloadDurationChunked50MsServiceListData, zFctEngineNewPayloadDurationChunked50MsServiceListResponse, zFctEngineNewPayloadWinrateDailyServiceGetData, zFctEngineNewPayloadWinrateDailyServiceGetResponse, zFctEngineNewPayloadWinrateDailyServiceListData, zFctEngineNewPayloadWinrateDailyServiceListResponse, zFctEngineNewPayloadWinrateHourlyServiceGetData, zFctEngineNewPayloadWinrateHourlyServiceGetResponse, zFctEngineNewPayloadWinrateHourlyServiceListData, zFctEngineNewPayloadWinrateHourlyServiceListResponse, zFctExecutionGasLimitDailyServiceGetData, zFctExecutionGasLimitDailyServiceGetResponse, zFctExecutionGasLimitDailyServiceListData, zFctExecutionGasLimitDailyServiceListResponse, zFctExecutionGasLimitHourlyServiceGetData, zFctExecutionGasLimitHourlyServiceGetResponse, zFctExecutionGasLimitHourlyServiceListData, zFctExecutionGasLimitHourlyServiceListResponse, zFctExecutionGasLimitSignallingDailyServiceGetData, zFctExecutionGasLimitSignallingDailyServiceGetResponse, zFctExecutionGasLimitSignallingDailyServiceListData, zFctExecutionGasLimitSignallingDailyServiceListResponse, zFctExecutionGasLimitSignallingHourlyServiceGetData, zFctExecutionGasLimitSignallingHourlyServiceGetResponse, zFctExecutionGasLimitSignallingHourlyServiceListData, zFctExecutionGasLimitSignallingHourlyServiceListResponse, zFctExecutionGasUsedDailyServiceGetData, zFctExecutionGasUsedDailyServiceGetResponse, zFctExecutionGasUsedDailyServiceListData, zFctExecutionGasUsedDailyServiceListResponse, zFctExecutionGasUsedHourlyServiceGetData, zFctExecutionGasUsedHourlyServiceGetResponse, zFctExecutionGasUsedHourlyServiceListData, zFctExecutionGasUsedHourlyServiceListResponse, zFctExecutionReceiptSizeDailyServiceGetData, zFctExecutionReceiptSizeDailyServiceGetResponse, zFctExecutionReceiptSizeDailyServiceListData, zFctExecutionReceiptSizeDailyServiceListResponse, zFctExecutionReceiptSizeHourlyServiceGetData, zFctExecutionReceiptSizeHourlyServiceGetResponse, zFctExecutionReceiptSizeHourlyServiceListData, zFctExecutionReceiptSizeHourlyServiceListResponse, zFctExecutionStateSizeDailyServiceGetData, zFctExecutionStateSizeDailyServiceGetResponse, zFctExecutionStateSizeDailyServiceListData, zFctExecutionStateSizeDailyServiceListResponse, zFctExecutionStateSizeHourlyServiceGetData, zFctExecutionStateSizeHourlyServiceGetResponse, zFctExecutionStateSizeHourlyServiceListData, zFctExecutionStateSizeHourlyServiceListResponse, zFctExecutionTpsDailyServiceGetData, zFctExecutionTpsDailyServiceGetResponse, zFctExecutionTpsDailyServiceListData, zFctExecutionTpsDailyServiceListResponse, zFctExecutionTpsHourlyServiceGetData, zFctExecutionTpsHourlyServiceGetResponse, zFctExecutionTpsHourlyServiceListData, zFctExecutionTpsHourlyServiceListResponse, zFctExecutionTransactionsDailyServiceGetData, zFctExecutionTransactionsDailyServiceGetResponse, zFctExecutionTransactionsDailyServiceListData, zFctExecutionTransactionsDailyServiceListResponse, zFctExecutionTransactionsHourlyServiceGetData, zFctExecutionTransactionsHourlyServiceGetResponse, zFctExecutionTransactionsHourlyServiceListData, zFctExecutionTransactionsHourlyServiceListResponse, zFctHeadFirstSeenByNodeServiceGetData, zFctHeadFirstSeenByNodeServiceGetResponse, zFctHeadFirstSeenByNodeServiceListData, zFctHeadFirstSeenByNodeServiceListResponse, zFctHeadVoteCorrectnessRateDailyServiceGetData, zFctHeadVoteCorrectnessRateDailyServiceGetResponse, zFctHeadVoteCorrectnessRateDailyServiceListData, zFctHeadVoteCorrectnessRateDailyServiceListResponse, zFctHeadVoteCorrectnessRateHourlyServiceGetData, zFctHeadVoteCorrectnessRateHourlyServiceGetResponse, zFctHeadVoteCorrectnessRateHourlyServiceListData, zFctHeadVoteCorrectnessRateHourlyServiceListResponse, zFctMevBidCountByBuilderServiceGetData, zFctMevBidCountByBuilderServiceGetResponse, zFctMevBidCountByBuilderServiceListData, zFctMevBidCountByBuilderServiceListResponse, zFctMevBidCountByRelayServiceGetData, zFctMevBidCountByRelayServiceGetResponse, zFctMevBidCountByRelayServiceListData, zFctMevBidCountByRelayServiceListResponse, zFctMevBidHighestValueByBuilderChunked50MsServiceGetData, zFctMevBidHighestValueByBuilderChunked50MsServiceGetResponse, zFctMevBidHighestValueByBuilderChunked50MsServiceListData, zFctMevBidHighestValueByBuilderChunked50MsServiceListResponse, zFctMissedSlotRateDailyServiceGetData, zFctMissedSlotRateDailyServiceGetResponse, zFctMissedSlotRateDailyServiceListData, zFctMissedSlotRateDailyServiceListResponse, zFctMissedSlotRateHourlyServiceGetData, zFctMissedSlotRateHourlyServiceGetResponse, zFctMissedSlotRateHourlyServiceListData, zFctMissedSlotRateHourlyServiceListResponse, zFctNodeActiveLast24hServiceGetData, zFctNodeActiveLast24hServiceGetResponse, zFctNodeActiveLast24hServiceListData, zFctNodeActiveLast24hServiceListResponse, zFctNodeCpuUtilizationByProcessServiceGetData, zFctNodeCpuUtilizationByProcessServiceGetResponse, zFctNodeCpuUtilizationByProcessServiceListData, zFctNodeCpuUtilizationByProcessServiceListResponse, zFctNodeDiskIoByProcessServiceGetData, zFctNodeDiskIoByProcessServiceGetResponse, zFctNodeDiskIoByProcessServiceListData, zFctNodeDiskIoByProcessServiceListResponse, zFctNodeMemoryUsageByProcessServiceGetData, zFctNodeMemoryUsageByProcessServiceGetResponse, zFctNodeMemoryUsageByProcessServiceListData, zFctNodeMemoryUsageByProcessServiceListResponse, zFctNodeNetworkIoByProcessServiceGetData, zFctNodeNetworkIoByProcessServiceGetResponse, zFctNodeNetworkIoByProcessServiceListData, zFctNodeNetworkIoByProcessServiceListResponse, zFctOpcodeGasByOpcodeDailyServiceGetData, zFctOpcodeGasByOpcodeDailyServiceGetResponse, zFctOpcodeGasByOpcodeDailyServiceListData, zFctOpcodeGasByOpcodeDailyServiceListResponse, zFctOpcodeGasByOpcodeHourlyServiceGetData, zFctOpcodeGasByOpcodeHourlyServiceGetResponse, zFctOpcodeGasByOpcodeHourlyServiceListData, zFctOpcodeGasByOpcodeHourlyServiceListResponse, zFctOpcodeOpsDailyServiceGetData, zFctOpcodeOpsDailyServiceGetResponse, zFctOpcodeOpsDailyServiceListData, zFctOpcodeOpsDailyServiceListResponse, zFctOpcodeOpsHourlyServiceGetData, zFctOpcodeOpsHourlyServiceGetResponse, zFctOpcodeOpsHourlyServiceListData, zFctOpcodeOpsHourlyServiceListResponse, zFctPreparedBlockServiceGetData, zFctPreparedBlockServiceGetResponse, zFctPreparedBlockServiceListData, zFctPreparedBlockServiceListResponse, zFctProposerRewardDailyServiceGetData, zFctProposerRewardDailyServiceGetResponse, zFctProposerRewardDailyServiceListData, zFctProposerRewardDailyServiceListResponse, zFctProposerRewardHourlyServiceGetData, zFctProposerRewardHourlyServiceGetResponse, zFctProposerRewardHourlyServiceListData, zFctProposerRewardHourlyServiceListResponse, zFctReorgDailyServiceGetData, zFctReorgDailyServiceGetResponse, zFctReorgDailyServiceListData, zFctReorgDailyServiceListResponse, zFctReorgHourlyServiceGetData, zFctReorgHourlyServiceGetResponse, zFctReorgHourlyServiceListData, zFctReorgHourlyServiceListResponse, zFctRocketpoolValidatorServiceGetData, zFctRocketpoolValidatorServiceGetResponse, zFctRocketpoolValidatorServiceListData, zFctRocketpoolValidatorServiceListResponse, zFctStorageSlotStateByAddressDailyServiceGetData, zFctStorageSlotStateByAddressDailyServiceGetResponse, zFctStorageSlotStateByAddressDailyServiceListData, zFctStorageSlotStateByAddressDailyServiceListResponse, zFctStorageSlotStateByAddressHourlyServiceGetData, zFctStorageSlotStateByAddressHourlyServiceGetResponse, zFctStorageSlotStateByAddressHourlyServiceListData, zFctStorageSlotStateByAddressHourlyServiceListResponse, zFctStorageSlotStateByBlockDailyServiceGetData, zFctStorageSlotStateByBlockDailyServiceGetResponse, zFctStorageSlotStateByBlockDailyServiceListData, zFctStorageSlotStateByBlockDailyServiceListResponse, zFctStorageSlotStateByBlockHourlyServiceGetData, zFctStorageSlotStateByBlockHourlyServiceGetResponse, zFctStorageSlotStateByBlockHourlyServiceListData, zFctStorageSlotStateByBlockHourlyServiceListResponse, zFctStorageSlotStateWithExpiryByAddressDailyServiceGetData, zFctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse, zFctStorageSlotStateWithExpiryByAddressDailyServiceListData, zFctStorageSlotStateWithExpiryByAddressDailyServiceListResponse, zFctStorageSlotStateWithExpiryByAddressHourlyServiceGetData, zFctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse, zFctStorageSlotStateWithExpiryByAddressHourlyServiceListData, zFctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse, zFctStorageSlotStateWithExpiryByBlockDailyServiceGetData, zFctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse, zFctStorageSlotStateWithExpiryByBlockDailyServiceListData, zFctStorageSlotStateWithExpiryByBlockDailyServiceListResponse, zFctStorageSlotStateWithExpiryByBlockHourlyServiceGetData, zFctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse, zFctStorageSlotStateWithExpiryByBlockHourlyServiceListData, zFctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse, zFctStorageSlotTop100ByBytesServiceGetData, zFctStorageSlotTop100ByBytesServiceGetResponse, zFctStorageSlotTop100ByBytesServiceListData, zFctStorageSlotTop100ByBytesServiceListResponse, zFctStorageSlotTop100BySlotsServiceGetData, zFctStorageSlotTop100BySlotsServiceGetResponse, zFctStorageSlotTop100BySlotsServiceListData, zFctStorageSlotTop100BySlotsServiceListResponse, zFctSyncCommitteeParticipationByValidatorDailyServiceGetData, zFctSyncCommitteeParticipationByValidatorDailyServiceGetResponse, zFctSyncCommitteeParticipationByValidatorDailyServiceListData, zFctSyncCommitteeParticipationByValidatorDailyServiceListResponse, zFctSyncCommitteeParticipationByValidatorHourlyServiceGetData, zFctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse, zFctSyncCommitteeParticipationByValidatorHourlyServiceListData, zFctSyncCommitteeParticipationByValidatorHourlyServiceListResponse, zFctSyncCommitteeParticipationByValidatorServiceGetData, zFctSyncCommitteeParticipationByValidatorServiceGetResponse, zFctSyncCommitteeParticipationByValidatorServiceListData, zFctSyncCommitteeParticipationByValidatorServiceListResponse, zFctTokenContractStorageStateByBlockDailyServiceGetData, zFctTokenContractStorageStateByBlockDailyServiceGetResponse, zFctTokenContractStorageStateByBlockDailyServiceListData, zFctTokenContractStorageStateByBlockDailyServiceListResponse, zFctValidatorBalanceDailyServiceGetData, zFctValidatorBalanceDailyServiceGetResponse, zFctValidatorBalanceDailyServiceListData, zFctValidatorBalanceDailyServiceListResponse, zFctValidatorBalanceHourlyServiceGetData, zFctValidatorBalanceHourlyServiceGetResponse, zFctValidatorBalanceHourlyServiceListData, zFctValidatorBalanceHourlyServiceListResponse, zFctValidatorBalanceServiceGetData, zFctValidatorBalanceServiceGetResponse, zFctValidatorBalanceServiceListData, zFctValidatorBalanceServiceListResponse, zFctValidatorCountByEntityByStatusDailyServiceGetData, zFctValidatorCountByEntityByStatusDailyServiceGetResponse, zFctValidatorCountByEntityByStatusDailyServiceListData, zFctValidatorCountByEntityByStatusDailyServiceListResponse, zIntAttestationAttestedCanonicalServiceGetData, zIntAttestationAttestedCanonicalServiceGetResponse, zIntAttestationAttestedCanonicalServiceListData, zIntAttestationAttestedCanonicalServiceListResponse, zIntAttestationAttestedHeadServiceGetData, zIntAttestationAttestedHeadServiceGetResponse, zIntAttestationAttestedHeadServiceListData, zIntAttestationAttestedHeadServiceListResponse, zIntAttestationFirstSeenAggregateServiceGetData, zIntAttestationFirstSeenAggregateServiceGetResponse, zIntAttestationFirstSeenAggregateServiceListData, zIntAttestationFirstSeenAggregateServiceListResponse, zIntAttestationFirstSeenServiceGetData, zIntAttestationFirstSeenServiceGetResponse, zIntAttestationFirstSeenServiceListData, zIntAttestationFirstSeenServiceListResponse, zIntBeaconCommitteeHeadServiceGetData, zIntBeaconCommitteeHeadServiceGetResponse, zIntBeaconCommitteeHeadServiceListData, zIntBeaconCommitteeHeadServiceListResponse, zIntBlockBlobCountCanonicalServiceGetData, zIntBlockBlobCountCanonicalServiceGetResponse, zIntBlockBlobCountCanonicalServiceListData, zIntBlockBlobCountCanonicalServiceListResponse, zIntBlockCanonicalServiceGetData, zIntBlockCanonicalServiceGetResponse, zIntBlockCanonicalServiceListData, zIntBlockCanonicalServiceListResponse, zIntBlockMevCanonicalServiceGetData, zIntBlockMevCanonicalServiceGetResponse, zIntBlockMevCanonicalServiceListData, zIntBlockMevCanonicalServiceListResponse, zIntBlockOpcodeGasServiceGetData, zIntBlockOpcodeGasServiceGetResponse, zIntBlockOpcodeGasServiceListData, zIntBlockOpcodeGasServiceListResponse, zIntBlockProposerCanonicalServiceGetData, zIntBlockProposerCanonicalServiceGetResponse, zIntBlockProposerCanonicalServiceListData, zIntBlockProposerCanonicalServiceListResponse, zIntBlockReceiptSizeServiceGetData, zIntBlockReceiptSizeServiceGetResponse, zIntBlockReceiptSizeServiceListData, zIntBlockReceiptSizeServiceListResponse, zIntBlockResourceGasServiceGetData, zIntBlockResourceGasServiceGetResponse, zIntBlockResourceGasServiceListData, zIntBlockResourceGasServiceListResponse, zIntContractCreationServiceGetData, zIntContractCreationServiceGetResponse, zIntContractCreationServiceListData, zIntContractCreationServiceListResponse, zIntContractSelfdestructServiceGetData, zIntContractSelfdestructServiceGetResponse, zIntContractSelfdestructServiceListData, zIntContractSelfdestructServiceListResponse, zIntContractStorageExpiry12mServiceGetData, zIntContractStorageExpiry12mServiceGetResponse, zIntContractStorageExpiry12mServiceListData, zIntContractStorageExpiry12mServiceListResponse, zIntContractStorageExpiry18mServiceGetData, zIntContractStorageExpiry18mServiceGetResponse, zIntContractStorageExpiry18mServiceListData, zIntContractStorageExpiry18mServiceListResponse, zIntContractStorageExpiry1mServiceGetData, zIntContractStorageExpiry1mServiceGetResponse, zIntContractStorageExpiry1mServiceListData, zIntContractStorageExpiry1mServiceListResponse, zIntContractStorageExpiry24mServiceGetData, zIntContractStorageExpiry24mServiceGetResponse, zIntContractStorageExpiry24mServiceListData, zIntContractStorageExpiry24mServiceListResponse, zIntContractStorageExpiry6mServiceGetData, zIntContractStorageExpiry6mServiceGetResponse, zIntContractStorageExpiry6mServiceListData, zIntContractStorageExpiry6mServiceListResponse, zIntContractStorageNextTouchServiceGetData, zIntContractStorageNextTouchServiceGetResponse, zIntContractStorageNextTouchServiceListData, zIntContractStorageNextTouchServiceListResponse, zIntContractStorageReactivation12mServiceGetData, zIntContractStorageReactivation12mServiceGetResponse, zIntContractStorageReactivation12mServiceListData, zIntContractStorageReactivation12mServiceListResponse, zIntContractStorageReactivation18mServiceGetData, zIntContractStorageReactivation18mServiceGetResponse, zIntContractStorageReactivation18mServiceListData, zIntContractStorageReactivation18mServiceListResponse, zIntContractStorageReactivation1mServiceGetData, zIntContractStorageReactivation1mServiceGetResponse, zIntContractStorageReactivation1mServiceListData, zIntContractStorageReactivation1mServiceListResponse, zIntContractStorageReactivation24mServiceGetData, zIntContractStorageReactivation24mServiceGetResponse, zIntContractStorageReactivation24mServiceListData, zIntContractStorageReactivation24mServiceListResponse, zIntContractStorageReactivation6mServiceGetData, zIntContractStorageReactivation6mServiceGetResponse, zIntContractStorageReactivation6mServiceListData, zIntContractStorageReactivation6mServiceListResponse, zIntContractStorageStateByAddressServiceGetData, zIntContractStorageStateByAddressServiceGetResponse, zIntContractStorageStateByAddressServiceListData, zIntContractStorageStateByAddressServiceListResponse, zIntContractStorageStateByBlockServiceGetData, zIntContractStorageStateByBlockServiceGetResponse, zIntContractStorageStateByBlockServiceListData, zIntContractStorageStateByBlockServiceListResponse, zIntContractStorageStateServiceGetData, zIntContractStorageStateServiceGetResponse, zIntContractStorageStateServiceListData, zIntContractStorageStateServiceListResponse, zIntContractStorageStateWithExpiryByAddressServiceGetData, zIntContractStorageStateWithExpiryByAddressServiceGetResponse, zIntContractStorageStateWithExpiryByAddressServiceListData, zIntContractStorageStateWithExpiryByAddressServiceListResponse, zIntContractStorageStateWithExpiryByBlockServiceGetData, zIntContractStorageStateWithExpiryByBlockServiceGetResponse, zIntContractStorageStateWithExpiryByBlockServiceListData, zIntContractStorageStateWithExpiryByBlockServiceListResponse, zIntContractStorageStateWithExpiryServiceGetData, zIntContractStorageStateWithExpiryServiceGetResponse, zIntContractStorageStateWithExpiryServiceListData, zIntContractStorageStateWithExpiryServiceListResponse, zIntCustodyProbeOrderBySlotServiceGetData, zIntCustodyProbeOrderBySlotServiceGetResponse, zIntCustodyProbeOrderBySlotServiceListData, zIntCustodyProbeOrderBySlotServiceListResponse, zIntCustodyProbeServiceGetData, zIntCustodyProbeServiceGetResponse, zIntCustodyProbeServiceListData, zIntCustodyProbeServiceListResponse, zIntEngineGetBlobsServiceGetData, zIntEngineGetBlobsServiceGetResponse, zIntEngineGetBlobsServiceListData, zIntEngineGetBlobsServiceListResponse, zIntEngineNewPayloadFastestExecutionByNodeClassServiceGetData, zIntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse, zIntEngineNewPayloadFastestExecutionByNodeClassServiceListData, zIntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse, zIntEngineNewPayloadServiceGetData, zIntEngineNewPayloadServiceGetResponse, zIntEngineNewPayloadServiceListData, zIntEngineNewPayloadServiceListResponse, zIntExecutionBlockByDateServiceGetData, zIntExecutionBlockByDateServiceGetResponse, zIntExecutionBlockByDateServiceListData, zIntExecutionBlockByDateServiceListResponse, zIntExecutionStateSizeByBlockServiceGetData, zIntExecutionStateSizeByBlockServiceGetResponse, zIntExecutionStateSizeByBlockServiceListData, zIntExecutionStateSizeByBlockServiceListResponse, zIntRocketpoolMegapoolServiceGetData, zIntRocketpoolMegapoolServiceGetResponse, zIntRocketpoolMegapoolServiceListData, zIntRocketpoolMegapoolServiceListResponse, zIntRocketpoolMinipoolServiceGetData, zIntRocketpoolMinipoolServiceGetResponse, zIntRocketpoolMinipoolServiceListData, zIntRocketpoolMinipoolServiceListResponse, zIntRocketpoolNodeEventServiceGetData, zIntRocketpoolNodeEventServiceGetResponse, zIntRocketpoolNodeEventServiceListData, zIntRocketpoolNodeEventServiceListResponse, zIntRocketpoolNodeTimezoneServiceGetData, zIntRocketpoolNodeTimezoneServiceGetResponse, zIntRocketpoolNodeTimezoneServiceListData, zIntRocketpoolNodeTimezoneServiceListResponse, zIntStorageSelfdestructDiffsServiceGetData, zIntStorageSelfdestructDiffsServiceGetResponse, zIntStorageSelfdestructDiffsServiceListData, zIntStorageSelfdestructDiffsServiceListResponse, zIntStorageSlotDiffByAddressSlotServiceGetData, zIntStorageSlotDiffByAddressSlotServiceGetResponse, zIntStorageSlotDiffByAddressSlotServiceListData, zIntStorageSlotDiffByAddressSlotServiceListResponse, zIntStorageSlotDiffServiceGetData, zIntStorageSlotDiffServiceGetResponse, zIntStorageSlotDiffServiceListData, zIntStorageSlotDiffServiceListResponse, zIntStorageSlotExpiry12mServiceGetData, zIntStorageSlotExpiry12mServiceGetResponse, zIntStorageSlotExpiry12mServiceListData, zIntStorageSlotExpiry12mServiceListResponse, zIntStorageSlotExpiry18mServiceGetData, zIntStorageSlotExpiry18mServiceGetResponse, zIntStorageSlotExpiry18mServiceListData, zIntStorageSlotExpiry18mServiceListResponse, zIntStorageSlotExpiry1mServiceGetData, zIntStorageSlotExpiry1mServiceGetResponse, zIntStorageSlotExpiry1mServiceListData, zIntStorageSlotExpiry1mServiceListResponse, zIntStorageSlotExpiry24mServiceGetData, zIntStorageSlotExpiry24mServiceGetResponse, zIntStorageSlotExpiry24mServiceListData, zIntStorageSlotExpiry24mServiceListResponse, zIntStorageSlotExpiry6mServiceGetData, zIntStorageSlotExpiry6mServiceGetResponse, zIntStorageSlotExpiry6mServiceListData, zIntStorageSlotExpiry6mServiceListResponse, zIntStorageSlotLifecycleBoundaryServiceGetData, zIntStorageSlotLifecycleBoundaryServiceGetResponse, zIntStorageSlotLifecycleBoundaryServiceListData, zIntStorageSlotLifecycleBoundaryServiceListResponse, zIntStorageSlotLifecycleServiceGetData, zIntStorageSlotLifecycleServiceGetResponse, zIntStorageSlotLifecycleServiceListData, zIntStorageSlotLifecycleServiceListResponse, zIntStorageSlotNextTouchServiceGetData, zIntStorageSlotNextTouchServiceGetResponse, zIntStorageSlotNextTouchServiceListData, zIntStorageSlotNextTouchServiceListResponse, zIntStorageSlotReactivation12mServiceGetData, zIntStorageSlotReactivation12mServiceGetResponse, zIntStorageSlotReactivation12mServiceListData, zIntStorageSlotReactivation12mServiceListResponse, zIntStorageSlotReactivation18mServiceGetData, zIntStorageSlotReactivation18mServiceGetResponse, zIntStorageSlotReactivation18mServiceListData, zIntStorageSlotReactivation18mServiceListResponse, zIntStorageSlotReactivation1mServiceGetData, zIntStorageSlotReactivation1mServiceGetResponse, zIntStorageSlotReactivation1mServiceListData, zIntStorageSlotReactivation1mServiceListResponse, zIntStorageSlotReactivation24mServiceGetData, zIntStorageSlotReactivation24mServiceGetResponse, zIntStorageSlotReactivation24mServiceListData, zIntStorageSlotReactivation24mServiceListResponse, zIntStorageSlotReactivation6mServiceGetData, zIntStorageSlotReactivation6mServiceGetResponse, zIntStorageSlotReactivation6mServiceListData, zIntStorageSlotReactivation6mServiceListResponse, zIntStorageSlotReadServiceGetData, zIntStorageSlotReadServiceGetResponse, zIntStorageSlotReadServiceListData, zIntStorageSlotReadServiceListResponse, zIntStorageSlotStateByAddressServiceGetData, zIntStorageSlotStateByAddressServiceGetResponse, zIntStorageSlotStateByAddressServiceListData, zIntStorageSlotStateByAddressServiceListResponse, zIntStorageSlotStateByBlockServiceGetData, zIntStorageSlotStateByBlockServiceGetResponse, zIntStorageSlotStateByBlockServiceListData, zIntStorageSlotStateByBlockServiceListResponse, zIntStorageSlotStateServiceGetData, zIntStorageSlotStateServiceGetResponse, zIntStorageSlotStateServiceListData, zIntStorageSlotStateServiceListResponse, zIntStorageSlotStateWithExpiryByAddressServiceGetData, zIntStorageSlotStateWithExpiryByAddressServiceGetResponse, zIntStorageSlotStateWithExpiryByAddressServiceListData, zIntStorageSlotStateWithExpiryByAddressServiceListResponse, zIntStorageSlotStateWithExpiryByBlockServiceGetData, zIntStorageSlotStateWithExpiryByBlockServiceGetResponse, zIntStorageSlotStateWithExpiryByBlockServiceListData, zIntStorageSlotStateWithExpiryByBlockServiceListResponse, zIntStorageSlotStateWithExpiryServiceGetData, zIntStorageSlotStateWithExpiryServiceGetResponse, zIntStorageSlotStateWithExpiryServiceListData, zIntStorageSlotStateWithExpiryServiceListResponse, zIntTokenContractStorageStateByBlockServiceGetData, zIntTokenContractStorageStateByBlockServiceGetResponse, zIntTokenContractStorageStateByBlockServiceListData, zIntTokenContractStorageStateByBlockServiceListResponse, zIntTransactionCallFrameOpcodeGasServiceGetData, zIntTransactionCallFrameOpcodeGasServiceGetResponse, zIntTransactionCallFrameOpcodeGasServiceListData, zIntTransactionCallFrameOpcodeGasServiceListResponse, zIntTransactionCallFrameOpcodeResourceGasServiceGetData, zIntTransactionCallFrameOpcodeResourceGasServiceGetResponse, zIntTransactionCallFrameOpcodeResourceGasServiceListData, zIntTransactionCallFrameOpcodeResourceGasServiceListResponse, zIntTransactionCallFrameServiceGetData, zIntTransactionCallFrameServiceGetResponse, zIntTransactionCallFrameServiceListData, zIntTransactionCallFrameServiceListResponse, zIntTransactionOpcodeGasServiceGetData, zIntTransactionOpcodeGasServiceGetResponse, zIntTransactionOpcodeGasServiceListData, zIntTransactionOpcodeGasServiceListResponse, zIntTransactionReceiptSizeServiceGetData, zIntTransactionReceiptSizeServiceGetResponse, zIntTransactionReceiptSizeServiceListData, zIntTransactionReceiptSizeServiceListResponse, zIntTransactionResourceGasServiceGetData, zIntTransactionResourceGasServiceGetResponse, zIntTransactionResourceGasServiceListData, zIntTransactionResourceGasServiceListResponse } from './zod.gen'; - -export type Options = Options2 & { - /** - * You can provide a client instance returned by `createClient()` instead of - * individual options. This might be also useful if you want to implement a - * custom client. - */ - client?: Client; - /** - * You can pass arbitrary values through the `meta` object. This can be - * used to access values that aren't defined as part of the SDK function. - */ - meta?: Record; +import type { + AdminCbtIncrementalServiceGetData, + AdminCbtIncrementalServiceGetErrors, + AdminCbtIncrementalServiceGetResponses, + AdminCbtIncrementalServiceListData, + AdminCbtIncrementalServiceListErrors, + AdminCbtIncrementalServiceListResponses, + AdminCbtScheduledServiceGetData, + AdminCbtScheduledServiceGetErrors, + AdminCbtScheduledServiceGetResponses, + AdminCbtScheduledServiceListData, + AdminCbtScheduledServiceListErrors, + AdminCbtScheduledServiceListResponses, + DimBlockBlobSubmitterServiceGetData, + DimBlockBlobSubmitterServiceGetErrors, + DimBlockBlobSubmitterServiceGetResponses, + DimBlockBlobSubmitterServiceListData, + DimBlockBlobSubmitterServiceListErrors, + DimBlockBlobSubmitterServiceListResponses, + DimContractOwnerServiceGetData, + DimContractOwnerServiceGetErrors, + DimContractOwnerServiceGetResponses, + DimContractOwnerServiceListData, + DimContractOwnerServiceListErrors, + DimContractOwnerServiceListResponses, + DimFunctionSignatureServiceGetData, + DimFunctionSignatureServiceGetErrors, + DimFunctionSignatureServiceGetResponses, + DimFunctionSignatureServiceListData, + DimFunctionSignatureServiceListErrors, + DimFunctionSignatureServiceListResponses, + DimNodeServiceGetData, + DimNodeServiceGetErrors, + DimNodeServiceGetResponses, + DimNodeServiceListData, + DimNodeServiceListErrors, + DimNodeServiceListResponses, + DimRocketpoolNodeServiceGetData, + DimRocketpoolNodeServiceGetErrors, + DimRocketpoolNodeServiceGetResponses, + DimRocketpoolNodeServiceListData, + DimRocketpoolNodeServiceListErrors, + DimRocketpoolNodeServiceListResponses, + DimTokenContractServiceGetData, + DimTokenContractServiceGetErrors, + DimTokenContractServiceGetResponses, + DimTokenContractServiceListData, + DimTokenContractServiceListErrors, + DimTokenContractServiceListResponses, + DimValidatorPubkeyServiceGetData, + DimValidatorPubkeyServiceGetErrors, + DimValidatorPubkeyServiceGetResponses, + DimValidatorPubkeyServiceListData, + DimValidatorPubkeyServiceListErrors, + DimValidatorPubkeyServiceListResponses, + DimValidatorStatusServiceGetData, + DimValidatorStatusServiceGetErrors, + DimValidatorStatusServiceGetResponses, + DimValidatorStatusServiceListData, + DimValidatorStatusServiceListErrors, + DimValidatorStatusServiceListResponses, + FctAttestationCorrectnessByValidatorCanonicalServiceGetData, + FctAttestationCorrectnessByValidatorCanonicalServiceGetErrors, + FctAttestationCorrectnessByValidatorCanonicalServiceGetResponses, + FctAttestationCorrectnessByValidatorCanonicalServiceListData, + FctAttestationCorrectnessByValidatorCanonicalServiceListErrors, + FctAttestationCorrectnessByValidatorCanonicalServiceListResponses, + FctAttestationCorrectnessByValidatorHeadServiceGetData, + FctAttestationCorrectnessByValidatorHeadServiceGetErrors, + FctAttestationCorrectnessByValidatorHeadServiceGetResponses, + FctAttestationCorrectnessByValidatorHeadServiceListData, + FctAttestationCorrectnessByValidatorHeadServiceListErrors, + FctAttestationCorrectnessByValidatorHeadServiceListResponses, + FctAttestationCorrectnessByValidatorServiceGetData, + FctAttestationCorrectnessByValidatorServiceGetErrors, + FctAttestationCorrectnessByValidatorServiceGetResponses, + FctAttestationCorrectnessByValidatorServiceListData, + FctAttestationCorrectnessByValidatorServiceListErrors, + FctAttestationCorrectnessByValidatorServiceListResponses, + FctAttestationCorrectnessCanonicalServiceGetData, + FctAttestationCorrectnessCanonicalServiceGetErrors, + FctAttestationCorrectnessCanonicalServiceGetResponses, + FctAttestationCorrectnessCanonicalServiceListData, + FctAttestationCorrectnessCanonicalServiceListErrors, + FctAttestationCorrectnessCanonicalServiceListResponses, + FctAttestationCorrectnessHeadServiceGetData, + FctAttestationCorrectnessHeadServiceGetErrors, + FctAttestationCorrectnessHeadServiceGetResponses, + FctAttestationCorrectnessHeadServiceListData, + FctAttestationCorrectnessHeadServiceListErrors, + FctAttestationCorrectnessHeadServiceListResponses, + FctAttestationCorrectnessServiceGetData, + FctAttestationCorrectnessServiceGetErrors, + FctAttestationCorrectnessServiceGetResponses, + FctAttestationCorrectnessServiceListData, + FctAttestationCorrectnessServiceListErrors, + FctAttestationCorrectnessServiceListResponses, + FctAttestationFirstSeenByValidatorServiceGetData, + FctAttestationFirstSeenByValidatorServiceGetErrors, + FctAttestationFirstSeenByValidatorServiceGetResponses, + FctAttestationFirstSeenByValidatorServiceListData, + FctAttestationFirstSeenByValidatorServiceListErrors, + FctAttestationFirstSeenByValidatorServiceListResponses, + FctAttestationFirstSeenChunked50MsServiceGetData, + FctAttestationFirstSeenChunked50MsServiceGetErrors, + FctAttestationFirstSeenChunked50MsServiceGetResponses, + FctAttestationFirstSeenChunked50MsServiceListData, + FctAttestationFirstSeenChunked50MsServiceListErrors, + FctAttestationFirstSeenChunked50MsServiceListResponses, + FctAttestationInclusionDelayDailyServiceGetData, + FctAttestationInclusionDelayDailyServiceGetErrors, + FctAttestationInclusionDelayDailyServiceGetResponses, + FctAttestationInclusionDelayDailyServiceListData, + FctAttestationInclusionDelayDailyServiceListErrors, + FctAttestationInclusionDelayDailyServiceListResponses, + FctAttestationInclusionDelayHourlyServiceGetData, + FctAttestationInclusionDelayHourlyServiceGetErrors, + FctAttestationInclusionDelayHourlyServiceGetResponses, + FctAttestationInclusionDelayHourlyServiceListData, + FctAttestationInclusionDelayHourlyServiceListErrors, + FctAttestationInclusionDelayHourlyServiceListResponses, + FctAttestationLivenessByEntityHeadServiceGetData, + FctAttestationLivenessByEntityHeadServiceGetErrors, + FctAttestationLivenessByEntityHeadServiceGetResponses, + FctAttestationLivenessByEntityHeadServiceListData, + FctAttestationLivenessByEntityHeadServiceListErrors, + FctAttestationLivenessByEntityHeadServiceListResponses, + FctAttestationLivenessByEntityServiceGetData, + FctAttestationLivenessByEntityServiceGetErrors, + FctAttestationLivenessByEntityServiceGetResponses, + FctAttestationLivenessByEntityServiceListData, + FctAttestationLivenessByEntityServiceListErrors, + FctAttestationLivenessByEntityServiceListResponses, + FctAttestationObservationByNodeServiceGetData, + FctAttestationObservationByNodeServiceGetErrors, + FctAttestationObservationByNodeServiceGetResponses, + FctAttestationObservationByNodeServiceListData, + FctAttestationObservationByNodeServiceListErrors, + FctAttestationObservationByNodeServiceListResponses, + FctAttestationParticipationRateDailyServiceGetData, + FctAttestationParticipationRateDailyServiceGetErrors, + FctAttestationParticipationRateDailyServiceGetResponses, + FctAttestationParticipationRateDailyServiceListData, + FctAttestationParticipationRateDailyServiceListErrors, + FctAttestationParticipationRateDailyServiceListResponses, + FctAttestationParticipationRateHourlyServiceGetData, + FctAttestationParticipationRateHourlyServiceGetErrors, + FctAttestationParticipationRateHourlyServiceGetResponses, + FctAttestationParticipationRateHourlyServiceListData, + FctAttestationParticipationRateHourlyServiceListErrors, + FctAttestationParticipationRateHourlyServiceListResponses, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetData, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetErrors, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponses, + FctAttestationVoteCorrectnessByValidatorDailyServiceListData, + FctAttestationVoteCorrectnessByValidatorDailyServiceListErrors, + FctAttestationVoteCorrectnessByValidatorDailyServiceListResponses, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetData, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetErrors, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponses, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListData, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListErrors, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponses, + FctAttestationVoteCorrectnessByValidatorServiceGetData, + FctAttestationVoteCorrectnessByValidatorServiceGetErrors, + FctAttestationVoteCorrectnessByValidatorServiceGetResponses, + FctAttestationVoteCorrectnessByValidatorServiceListData, + FctAttestationVoteCorrectnessByValidatorServiceListErrors, + FctAttestationVoteCorrectnessByValidatorServiceListResponses, + FctBlobCountDailyServiceGetData, + FctBlobCountDailyServiceGetErrors, + FctBlobCountDailyServiceGetResponses, + FctBlobCountDailyServiceListData, + FctBlobCountDailyServiceListErrors, + FctBlobCountDailyServiceListResponses, + FctBlobCountHourlyServiceGetData, + FctBlobCountHourlyServiceGetErrors, + FctBlobCountHourlyServiceGetResponses, + FctBlobCountHourlyServiceListData, + FctBlobCountHourlyServiceListErrors, + FctBlobCountHourlyServiceListResponses, + FctBlockBlobCountHeadServiceGetData, + FctBlockBlobCountHeadServiceGetErrors, + FctBlockBlobCountHeadServiceGetResponses, + FctBlockBlobCountHeadServiceListData, + FctBlockBlobCountHeadServiceListErrors, + FctBlockBlobCountHeadServiceListResponses, + FctBlockBlobCountServiceGetData, + FctBlockBlobCountServiceGetErrors, + FctBlockBlobCountServiceGetResponses, + FctBlockBlobCountServiceListData, + FctBlockBlobCountServiceListErrors, + FctBlockBlobCountServiceListResponses, + FctBlockBlobFirstSeenByNodeServiceGetData, + FctBlockBlobFirstSeenByNodeServiceGetErrors, + FctBlockBlobFirstSeenByNodeServiceGetResponses, + FctBlockBlobFirstSeenByNodeServiceListData, + FctBlockBlobFirstSeenByNodeServiceListErrors, + FctBlockBlobFirstSeenByNodeServiceListResponses, + FctBlockBlobHeadServiceGetData, + FctBlockBlobHeadServiceGetErrors, + FctBlockBlobHeadServiceGetResponses, + FctBlockBlobHeadServiceListData, + FctBlockBlobHeadServiceListErrors, + FctBlockBlobHeadServiceListResponses, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetData, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetErrors, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponses, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListData, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListErrors, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponses, + FctBlockDataColumnSidecarFirstSeenServiceGetData, + FctBlockDataColumnSidecarFirstSeenServiceGetErrors, + FctBlockDataColumnSidecarFirstSeenServiceGetResponses, + FctBlockDataColumnSidecarFirstSeenServiceListData, + FctBlockDataColumnSidecarFirstSeenServiceListErrors, + FctBlockDataColumnSidecarFirstSeenServiceListResponses, + FctBlockFirstSeenByNodeServiceGetData, + FctBlockFirstSeenByNodeServiceGetErrors, + FctBlockFirstSeenByNodeServiceGetResponses, + FctBlockFirstSeenByNodeServiceListData, + FctBlockFirstSeenByNodeServiceListErrors, + FctBlockFirstSeenByNodeServiceListResponses, + FctBlockHeadServiceGetData, + FctBlockHeadServiceGetErrors, + FctBlockHeadServiceGetResponses, + FctBlockHeadServiceListData, + FctBlockHeadServiceListErrors, + FctBlockHeadServiceListResponses, + FctBlockMevHeadServiceGetData, + FctBlockMevHeadServiceGetErrors, + FctBlockMevHeadServiceGetResponses, + FctBlockMevHeadServiceListData, + FctBlockMevHeadServiceListErrors, + FctBlockMevHeadServiceListResponses, + FctBlockMevServiceGetData, + FctBlockMevServiceGetErrors, + FctBlockMevServiceGetResponses, + FctBlockMevServiceListData, + FctBlockMevServiceListErrors, + FctBlockMevServiceListResponses, + FctBlockPayloadAvailableByNodeServiceGetData, + FctBlockPayloadAvailableByNodeServiceGetErrors, + FctBlockPayloadAvailableByNodeServiceGetResponses, + FctBlockPayloadAvailableByNodeServiceListData, + FctBlockPayloadAvailableByNodeServiceListErrors, + FctBlockPayloadAvailableByNodeServiceListResponses, + FctBlockPayloadBidServiceGetData, + FctBlockPayloadBidServiceGetErrors, + FctBlockPayloadBidServiceGetResponses, + FctBlockPayloadBidServiceListData, + FctBlockPayloadBidServiceListErrors, + FctBlockPayloadBidServiceListResponses, + FctBlockPayloadFirstSeenByNodeServiceGetData, + FctBlockPayloadFirstSeenByNodeServiceGetErrors, + FctBlockPayloadFirstSeenByNodeServiceGetResponses, + FctBlockPayloadFirstSeenByNodeServiceListData, + FctBlockPayloadFirstSeenByNodeServiceListErrors, + FctBlockPayloadFirstSeenByNodeServiceListResponses, + FctBlockPayloadPtcVoteHeadServiceGetData, + FctBlockPayloadPtcVoteHeadServiceGetErrors, + FctBlockPayloadPtcVoteHeadServiceGetResponses, + FctBlockPayloadPtcVoteHeadServiceListData, + FctBlockPayloadPtcVoteHeadServiceListErrors, + FctBlockPayloadPtcVoteHeadServiceListResponses, + FctBlockPayloadPtcVoteServiceGetData, + FctBlockPayloadPtcVoteServiceGetErrors, + FctBlockPayloadPtcVoteServiceGetResponses, + FctBlockPayloadPtcVoteServiceListData, + FctBlockPayloadPtcVoteServiceListErrors, + FctBlockPayloadPtcVoteServiceListResponses, + FctBlockProposalStatusDailyServiceGetData, + FctBlockProposalStatusDailyServiceGetErrors, + FctBlockProposalStatusDailyServiceGetResponses, + FctBlockProposalStatusDailyServiceListData, + FctBlockProposalStatusDailyServiceListErrors, + FctBlockProposalStatusDailyServiceListResponses, + FctBlockProposalStatusHourlyServiceGetData, + FctBlockProposalStatusHourlyServiceGetErrors, + FctBlockProposalStatusHourlyServiceGetResponses, + FctBlockProposalStatusHourlyServiceListData, + FctBlockProposalStatusHourlyServiceListErrors, + FctBlockProposalStatusHourlyServiceListResponses, + FctBlockProposerByValidatorServiceGetData, + FctBlockProposerByValidatorServiceGetErrors, + FctBlockProposerByValidatorServiceGetResponses, + FctBlockProposerByValidatorServiceListData, + FctBlockProposerByValidatorServiceListErrors, + FctBlockProposerByValidatorServiceListResponses, + FctBlockProposerEntityServiceGetData, + FctBlockProposerEntityServiceGetErrors, + FctBlockProposerEntityServiceGetResponses, + FctBlockProposerEntityServiceListData, + FctBlockProposerEntityServiceListErrors, + FctBlockProposerEntityServiceListResponses, + FctBlockProposerHeadServiceGetData, + FctBlockProposerHeadServiceGetErrors, + FctBlockProposerHeadServiceGetResponses, + FctBlockProposerHeadServiceListData, + FctBlockProposerHeadServiceListErrors, + FctBlockProposerHeadServiceListResponses, + FctBlockProposerServiceGetData, + FctBlockProposerServiceGetErrors, + FctBlockProposerServiceGetResponses, + FctBlockProposerServiceListData, + FctBlockProposerServiceListErrors, + FctBlockProposerServiceListResponses, + FctBlockServiceGetData, + FctBlockServiceGetErrors, + FctBlockServiceGetResponses, + FctBlockServiceListData, + FctBlockServiceListErrors, + FctBlockServiceListResponses, + FctContractStorageStateByAddressDailyServiceGetData, + FctContractStorageStateByAddressDailyServiceGetErrors, + FctContractStorageStateByAddressDailyServiceGetResponses, + FctContractStorageStateByAddressDailyServiceListData, + FctContractStorageStateByAddressDailyServiceListErrors, + FctContractStorageStateByAddressDailyServiceListResponses, + FctContractStorageStateByAddressHourlyServiceGetData, + FctContractStorageStateByAddressHourlyServiceGetErrors, + FctContractStorageStateByAddressHourlyServiceGetResponses, + FctContractStorageStateByAddressHourlyServiceListData, + FctContractStorageStateByAddressHourlyServiceListErrors, + FctContractStorageStateByAddressHourlyServiceListResponses, + FctContractStorageStateByBlockDailyServiceGetData, + FctContractStorageStateByBlockDailyServiceGetErrors, + FctContractStorageStateByBlockDailyServiceGetResponses, + FctContractStorageStateByBlockDailyServiceListData, + FctContractStorageStateByBlockDailyServiceListErrors, + FctContractStorageStateByBlockDailyServiceListResponses, + FctContractStorageStateByBlockHourlyServiceGetData, + FctContractStorageStateByBlockHourlyServiceGetErrors, + FctContractStorageStateByBlockHourlyServiceGetResponses, + FctContractStorageStateByBlockHourlyServiceListData, + FctContractStorageStateByBlockHourlyServiceListErrors, + FctContractStorageStateByBlockHourlyServiceListResponses, + FctContractStorageStateWithExpiryByAddressDailyServiceGetData, + FctContractStorageStateWithExpiryByAddressDailyServiceGetErrors, + FctContractStorageStateWithExpiryByAddressDailyServiceGetResponses, + FctContractStorageStateWithExpiryByAddressDailyServiceListData, + FctContractStorageStateWithExpiryByAddressDailyServiceListErrors, + FctContractStorageStateWithExpiryByAddressDailyServiceListResponses, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetData, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetErrors, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponses, + FctContractStorageStateWithExpiryByAddressHourlyServiceListData, + FctContractStorageStateWithExpiryByAddressHourlyServiceListErrors, + FctContractStorageStateWithExpiryByAddressHourlyServiceListResponses, + FctContractStorageStateWithExpiryByBlockDailyServiceGetData, + FctContractStorageStateWithExpiryByBlockDailyServiceGetErrors, + FctContractStorageStateWithExpiryByBlockDailyServiceGetResponses, + FctContractStorageStateWithExpiryByBlockDailyServiceListData, + FctContractStorageStateWithExpiryByBlockDailyServiceListErrors, + FctContractStorageStateWithExpiryByBlockDailyServiceListResponses, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetData, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetErrors, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponses, + FctContractStorageStateWithExpiryByBlockHourlyServiceListData, + FctContractStorageStateWithExpiryByBlockHourlyServiceListErrors, + FctContractStorageStateWithExpiryByBlockHourlyServiceListResponses, + FctDataColumnAvailabilityByEpochServiceGetData, + FctDataColumnAvailabilityByEpochServiceGetErrors, + FctDataColumnAvailabilityByEpochServiceGetResponses, + FctDataColumnAvailabilityByEpochServiceListData, + FctDataColumnAvailabilityByEpochServiceListErrors, + FctDataColumnAvailabilityByEpochServiceListResponses, + FctDataColumnAvailabilityBySlotBlobServiceGetData, + FctDataColumnAvailabilityBySlotBlobServiceGetErrors, + FctDataColumnAvailabilityBySlotBlobServiceGetResponses, + FctDataColumnAvailabilityBySlotBlobServiceListData, + FctDataColumnAvailabilityBySlotBlobServiceListErrors, + FctDataColumnAvailabilityBySlotBlobServiceListResponses, + FctDataColumnAvailabilityBySlotServiceGetData, + FctDataColumnAvailabilityBySlotServiceGetErrors, + FctDataColumnAvailabilityBySlotServiceGetResponses, + FctDataColumnAvailabilityBySlotServiceListData, + FctDataColumnAvailabilityBySlotServiceListErrors, + FctDataColumnAvailabilityBySlotServiceListResponses, + FctDataColumnAvailabilityDailyServiceGetData, + FctDataColumnAvailabilityDailyServiceGetErrors, + FctDataColumnAvailabilityDailyServiceGetResponses, + FctDataColumnAvailabilityDailyServiceListData, + FctDataColumnAvailabilityDailyServiceListErrors, + FctDataColumnAvailabilityDailyServiceListResponses, + FctDataColumnAvailabilityHourlyServiceGetData, + FctDataColumnAvailabilityHourlyServiceGetErrors, + FctDataColumnAvailabilityHourlyServiceGetResponses, + FctDataColumnAvailabilityHourlyServiceListData, + FctDataColumnAvailabilityHourlyServiceListErrors, + FctDataColumnAvailabilityHourlyServiceListResponses, + FctEngineGetBlobsByElClientHourlyServiceGetData, + FctEngineGetBlobsByElClientHourlyServiceGetErrors, + FctEngineGetBlobsByElClientHourlyServiceGetResponses, + FctEngineGetBlobsByElClientHourlyServiceListData, + FctEngineGetBlobsByElClientHourlyServiceListErrors, + FctEngineGetBlobsByElClientHourlyServiceListResponses, + FctEngineGetBlobsByElClientServiceGetData, + FctEngineGetBlobsByElClientServiceGetErrors, + FctEngineGetBlobsByElClientServiceGetResponses, + FctEngineGetBlobsByElClientServiceListData, + FctEngineGetBlobsByElClientServiceListErrors, + FctEngineGetBlobsByElClientServiceListResponses, + FctEngineGetBlobsBySlotServiceGetData, + FctEngineGetBlobsBySlotServiceGetErrors, + FctEngineGetBlobsBySlotServiceGetResponses, + FctEngineGetBlobsBySlotServiceListData, + FctEngineGetBlobsBySlotServiceListErrors, + FctEngineGetBlobsBySlotServiceListResponses, + FctEngineGetBlobsDurationChunked50MsServiceGetData, + FctEngineGetBlobsDurationChunked50MsServiceGetErrors, + FctEngineGetBlobsDurationChunked50MsServiceGetResponses, + FctEngineGetBlobsDurationChunked50MsServiceListData, + FctEngineGetBlobsDurationChunked50MsServiceListErrors, + FctEngineGetBlobsDurationChunked50MsServiceListResponses, + FctEngineNewPayloadByElClientHourlyServiceGetData, + FctEngineNewPayloadByElClientHourlyServiceGetErrors, + FctEngineNewPayloadByElClientHourlyServiceGetResponses, + FctEngineNewPayloadByElClientHourlyServiceListData, + FctEngineNewPayloadByElClientHourlyServiceListErrors, + FctEngineNewPayloadByElClientHourlyServiceListResponses, + FctEngineNewPayloadByElClientServiceGetData, + FctEngineNewPayloadByElClientServiceGetErrors, + FctEngineNewPayloadByElClientServiceGetResponses, + FctEngineNewPayloadByElClientServiceListData, + FctEngineNewPayloadByElClientServiceListErrors, + FctEngineNewPayloadByElClientServiceListResponses, + FctEngineNewPayloadBySlotServiceGetData, + FctEngineNewPayloadBySlotServiceGetErrors, + FctEngineNewPayloadBySlotServiceGetResponses, + FctEngineNewPayloadBySlotServiceListData, + FctEngineNewPayloadBySlotServiceListErrors, + FctEngineNewPayloadBySlotServiceListResponses, + FctEngineNewPayloadDurationChunked50MsServiceGetData, + FctEngineNewPayloadDurationChunked50MsServiceGetErrors, + FctEngineNewPayloadDurationChunked50MsServiceGetResponses, + FctEngineNewPayloadDurationChunked50MsServiceListData, + FctEngineNewPayloadDurationChunked50MsServiceListErrors, + FctEngineNewPayloadDurationChunked50MsServiceListResponses, + FctEngineNewPayloadWinrateDailyServiceGetData, + FctEngineNewPayloadWinrateDailyServiceGetErrors, + FctEngineNewPayloadWinrateDailyServiceGetResponses, + FctEngineNewPayloadWinrateDailyServiceListData, + FctEngineNewPayloadWinrateDailyServiceListErrors, + FctEngineNewPayloadWinrateDailyServiceListResponses, + FctEngineNewPayloadWinrateHourlyServiceGetData, + FctEngineNewPayloadWinrateHourlyServiceGetErrors, + FctEngineNewPayloadWinrateHourlyServiceGetResponses, + FctEngineNewPayloadWinrateHourlyServiceListData, + FctEngineNewPayloadWinrateHourlyServiceListErrors, + FctEngineNewPayloadWinrateHourlyServiceListResponses, + FctExecutionGasLimitDailyServiceGetData, + FctExecutionGasLimitDailyServiceGetErrors, + FctExecutionGasLimitDailyServiceGetResponses, + FctExecutionGasLimitDailyServiceListData, + FctExecutionGasLimitDailyServiceListErrors, + FctExecutionGasLimitDailyServiceListResponses, + FctExecutionGasLimitHourlyServiceGetData, + FctExecutionGasLimitHourlyServiceGetErrors, + FctExecutionGasLimitHourlyServiceGetResponses, + FctExecutionGasLimitHourlyServiceListData, + FctExecutionGasLimitHourlyServiceListErrors, + FctExecutionGasLimitHourlyServiceListResponses, + FctExecutionGasLimitSignallingDailyServiceGetData, + FctExecutionGasLimitSignallingDailyServiceGetErrors, + FctExecutionGasLimitSignallingDailyServiceGetResponses, + FctExecutionGasLimitSignallingDailyServiceListData, + FctExecutionGasLimitSignallingDailyServiceListErrors, + FctExecutionGasLimitSignallingDailyServiceListResponses, + FctExecutionGasLimitSignallingHourlyServiceGetData, + FctExecutionGasLimitSignallingHourlyServiceGetErrors, + FctExecutionGasLimitSignallingHourlyServiceGetResponses, + FctExecutionGasLimitSignallingHourlyServiceListData, + FctExecutionGasLimitSignallingHourlyServiceListErrors, + FctExecutionGasLimitSignallingHourlyServiceListResponses, + FctExecutionGasUsedDailyServiceGetData, + FctExecutionGasUsedDailyServiceGetErrors, + FctExecutionGasUsedDailyServiceGetResponses, + FctExecutionGasUsedDailyServiceListData, + FctExecutionGasUsedDailyServiceListErrors, + FctExecutionGasUsedDailyServiceListResponses, + FctExecutionGasUsedHourlyServiceGetData, + FctExecutionGasUsedHourlyServiceGetErrors, + FctExecutionGasUsedHourlyServiceGetResponses, + FctExecutionGasUsedHourlyServiceListData, + FctExecutionGasUsedHourlyServiceListErrors, + FctExecutionGasUsedHourlyServiceListResponses, + FctExecutionReceiptSizeDailyServiceGetData, + FctExecutionReceiptSizeDailyServiceGetErrors, + FctExecutionReceiptSizeDailyServiceGetResponses, + FctExecutionReceiptSizeDailyServiceListData, + FctExecutionReceiptSizeDailyServiceListErrors, + FctExecutionReceiptSizeDailyServiceListResponses, + FctExecutionReceiptSizeHourlyServiceGetData, + FctExecutionReceiptSizeHourlyServiceGetErrors, + FctExecutionReceiptSizeHourlyServiceGetResponses, + FctExecutionReceiptSizeHourlyServiceListData, + FctExecutionReceiptSizeHourlyServiceListErrors, + FctExecutionReceiptSizeHourlyServiceListResponses, + FctExecutionStateSizeDailyServiceGetData, + FctExecutionStateSizeDailyServiceGetErrors, + FctExecutionStateSizeDailyServiceGetResponses, + FctExecutionStateSizeDailyServiceListData, + FctExecutionStateSizeDailyServiceListErrors, + FctExecutionStateSizeDailyServiceListResponses, + FctExecutionStateSizeHourlyServiceGetData, + FctExecutionStateSizeHourlyServiceGetErrors, + FctExecutionStateSizeHourlyServiceGetResponses, + FctExecutionStateSizeHourlyServiceListData, + FctExecutionStateSizeHourlyServiceListErrors, + FctExecutionStateSizeHourlyServiceListResponses, + FctExecutionTpsDailyServiceGetData, + FctExecutionTpsDailyServiceGetErrors, + FctExecutionTpsDailyServiceGetResponses, + FctExecutionTpsDailyServiceListData, + FctExecutionTpsDailyServiceListErrors, + FctExecutionTpsDailyServiceListResponses, + FctExecutionTpsHourlyServiceGetData, + FctExecutionTpsHourlyServiceGetErrors, + FctExecutionTpsHourlyServiceGetResponses, + FctExecutionTpsHourlyServiceListData, + FctExecutionTpsHourlyServiceListErrors, + FctExecutionTpsHourlyServiceListResponses, + FctExecutionTransactionsDailyServiceGetData, + FctExecutionTransactionsDailyServiceGetErrors, + FctExecutionTransactionsDailyServiceGetResponses, + FctExecutionTransactionsDailyServiceListData, + FctExecutionTransactionsDailyServiceListErrors, + FctExecutionTransactionsDailyServiceListResponses, + FctExecutionTransactionsHourlyServiceGetData, + FctExecutionTransactionsHourlyServiceGetErrors, + FctExecutionTransactionsHourlyServiceGetResponses, + FctExecutionTransactionsHourlyServiceListData, + FctExecutionTransactionsHourlyServiceListErrors, + FctExecutionTransactionsHourlyServiceListResponses, + FctHeadFirstSeenByNodeServiceGetData, + FctHeadFirstSeenByNodeServiceGetErrors, + FctHeadFirstSeenByNodeServiceGetResponses, + FctHeadFirstSeenByNodeServiceListData, + FctHeadFirstSeenByNodeServiceListErrors, + FctHeadFirstSeenByNodeServiceListResponses, + FctHeadVoteCorrectnessRateDailyServiceGetData, + FctHeadVoteCorrectnessRateDailyServiceGetErrors, + FctHeadVoteCorrectnessRateDailyServiceGetResponses, + FctHeadVoteCorrectnessRateDailyServiceListData, + FctHeadVoteCorrectnessRateDailyServiceListErrors, + FctHeadVoteCorrectnessRateDailyServiceListResponses, + FctHeadVoteCorrectnessRateHourlyServiceGetData, + FctHeadVoteCorrectnessRateHourlyServiceGetErrors, + FctHeadVoteCorrectnessRateHourlyServiceGetResponses, + FctHeadVoteCorrectnessRateHourlyServiceListData, + FctHeadVoteCorrectnessRateHourlyServiceListErrors, + FctHeadVoteCorrectnessRateHourlyServiceListResponses, + FctMevBidCountByBuilderServiceGetData, + FctMevBidCountByBuilderServiceGetErrors, + FctMevBidCountByBuilderServiceGetResponses, + FctMevBidCountByBuilderServiceListData, + FctMevBidCountByBuilderServiceListErrors, + FctMevBidCountByBuilderServiceListResponses, + FctMevBidCountByRelayServiceGetData, + FctMevBidCountByRelayServiceGetErrors, + FctMevBidCountByRelayServiceGetResponses, + FctMevBidCountByRelayServiceListData, + FctMevBidCountByRelayServiceListErrors, + FctMevBidCountByRelayServiceListResponses, + FctMevBidHighestValueByBuilderChunked50MsServiceGetData, + FctMevBidHighestValueByBuilderChunked50MsServiceGetErrors, + FctMevBidHighestValueByBuilderChunked50MsServiceGetResponses, + FctMevBidHighestValueByBuilderChunked50MsServiceListData, + FctMevBidHighestValueByBuilderChunked50MsServiceListErrors, + FctMevBidHighestValueByBuilderChunked50MsServiceListResponses, + FctMissedSlotRateDailyServiceGetData, + FctMissedSlotRateDailyServiceGetErrors, + FctMissedSlotRateDailyServiceGetResponses, + FctMissedSlotRateDailyServiceListData, + FctMissedSlotRateDailyServiceListErrors, + FctMissedSlotRateDailyServiceListResponses, + FctMissedSlotRateHourlyServiceGetData, + FctMissedSlotRateHourlyServiceGetErrors, + FctMissedSlotRateHourlyServiceGetResponses, + FctMissedSlotRateHourlyServiceListData, + FctMissedSlotRateHourlyServiceListErrors, + FctMissedSlotRateHourlyServiceListResponses, + FctNodeActiveLast24hServiceGetData, + FctNodeActiveLast24hServiceGetErrors, + FctNodeActiveLast24hServiceGetResponses, + FctNodeActiveLast24hServiceListData, + FctNodeActiveLast24hServiceListErrors, + FctNodeActiveLast24hServiceListResponses, + FctNodeCpuUtilizationByProcessServiceGetData, + FctNodeCpuUtilizationByProcessServiceGetErrors, + FctNodeCpuUtilizationByProcessServiceGetResponses, + FctNodeCpuUtilizationByProcessServiceListData, + FctNodeCpuUtilizationByProcessServiceListErrors, + FctNodeCpuUtilizationByProcessServiceListResponses, + FctNodeDiskIoByProcessServiceGetData, + FctNodeDiskIoByProcessServiceGetErrors, + FctNodeDiskIoByProcessServiceGetResponses, + FctNodeDiskIoByProcessServiceListData, + FctNodeDiskIoByProcessServiceListErrors, + FctNodeDiskIoByProcessServiceListResponses, + FctNodeMemoryUsageByProcessServiceGetData, + FctNodeMemoryUsageByProcessServiceGetErrors, + FctNodeMemoryUsageByProcessServiceGetResponses, + FctNodeMemoryUsageByProcessServiceListData, + FctNodeMemoryUsageByProcessServiceListErrors, + FctNodeMemoryUsageByProcessServiceListResponses, + FctNodeNetworkIoByProcessServiceGetData, + FctNodeNetworkIoByProcessServiceGetErrors, + FctNodeNetworkIoByProcessServiceGetResponses, + FctNodeNetworkIoByProcessServiceListData, + FctNodeNetworkIoByProcessServiceListErrors, + FctNodeNetworkIoByProcessServiceListResponses, + FctOpcodeGasByOpcodeDailyServiceGetData, + FctOpcodeGasByOpcodeDailyServiceGetErrors, + FctOpcodeGasByOpcodeDailyServiceGetResponses, + FctOpcodeGasByOpcodeDailyServiceListData, + FctOpcodeGasByOpcodeDailyServiceListErrors, + FctOpcodeGasByOpcodeDailyServiceListResponses, + FctOpcodeGasByOpcodeHourlyServiceGetData, + FctOpcodeGasByOpcodeHourlyServiceGetErrors, + FctOpcodeGasByOpcodeHourlyServiceGetResponses, + FctOpcodeGasByOpcodeHourlyServiceListData, + FctOpcodeGasByOpcodeHourlyServiceListErrors, + FctOpcodeGasByOpcodeHourlyServiceListResponses, + FctOpcodeOpsDailyServiceGetData, + FctOpcodeOpsDailyServiceGetErrors, + FctOpcodeOpsDailyServiceGetResponses, + FctOpcodeOpsDailyServiceListData, + FctOpcodeOpsDailyServiceListErrors, + FctOpcodeOpsDailyServiceListResponses, + FctOpcodeOpsHourlyServiceGetData, + FctOpcodeOpsHourlyServiceGetErrors, + FctOpcodeOpsHourlyServiceGetResponses, + FctOpcodeOpsHourlyServiceListData, + FctOpcodeOpsHourlyServiceListErrors, + FctOpcodeOpsHourlyServiceListResponses, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetData, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetErrors, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponses, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListData, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListErrors, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponses, + FctPreparedBlockServiceGetData, + FctPreparedBlockServiceGetErrors, + FctPreparedBlockServiceGetResponses, + FctPreparedBlockServiceListData, + FctPreparedBlockServiceListErrors, + FctPreparedBlockServiceListResponses, + FctProposerRewardDailyServiceGetData, + FctProposerRewardDailyServiceGetErrors, + FctProposerRewardDailyServiceGetResponses, + FctProposerRewardDailyServiceListData, + FctProposerRewardDailyServiceListErrors, + FctProposerRewardDailyServiceListResponses, + FctProposerRewardHourlyServiceGetData, + FctProposerRewardHourlyServiceGetErrors, + FctProposerRewardHourlyServiceGetResponses, + FctProposerRewardHourlyServiceListData, + FctProposerRewardHourlyServiceListErrors, + FctProposerRewardHourlyServiceListResponses, + FctReorgDailyServiceGetData, + FctReorgDailyServiceGetErrors, + FctReorgDailyServiceGetResponses, + FctReorgDailyServiceListData, + FctReorgDailyServiceListErrors, + FctReorgDailyServiceListResponses, + FctReorgHourlyServiceGetData, + FctReorgHourlyServiceGetErrors, + FctReorgHourlyServiceGetResponses, + FctReorgHourlyServiceListData, + FctReorgHourlyServiceListErrors, + FctReorgHourlyServiceListResponses, + FctRocketpoolValidatorServiceGetData, + FctRocketpoolValidatorServiceGetErrors, + FctRocketpoolValidatorServiceGetResponses, + FctRocketpoolValidatorServiceListData, + FctRocketpoolValidatorServiceListErrors, + FctRocketpoolValidatorServiceListResponses, + FctStorageSlotStateByAddressDailyServiceGetData, + FctStorageSlotStateByAddressDailyServiceGetErrors, + FctStorageSlotStateByAddressDailyServiceGetResponses, + FctStorageSlotStateByAddressDailyServiceListData, + FctStorageSlotStateByAddressDailyServiceListErrors, + FctStorageSlotStateByAddressDailyServiceListResponses, + FctStorageSlotStateByAddressHourlyServiceGetData, + FctStorageSlotStateByAddressHourlyServiceGetErrors, + FctStorageSlotStateByAddressHourlyServiceGetResponses, + FctStorageSlotStateByAddressHourlyServiceListData, + FctStorageSlotStateByAddressHourlyServiceListErrors, + FctStorageSlotStateByAddressHourlyServiceListResponses, + FctStorageSlotStateByBlockDailyServiceGetData, + FctStorageSlotStateByBlockDailyServiceGetErrors, + FctStorageSlotStateByBlockDailyServiceGetResponses, + FctStorageSlotStateByBlockDailyServiceListData, + FctStorageSlotStateByBlockDailyServiceListErrors, + FctStorageSlotStateByBlockDailyServiceListResponses, + FctStorageSlotStateByBlockHourlyServiceGetData, + FctStorageSlotStateByBlockHourlyServiceGetErrors, + FctStorageSlotStateByBlockHourlyServiceGetResponses, + FctStorageSlotStateByBlockHourlyServiceListData, + FctStorageSlotStateByBlockHourlyServiceListErrors, + FctStorageSlotStateByBlockHourlyServiceListResponses, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetData, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetErrors, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponses, + FctStorageSlotStateWithExpiryByAddressDailyServiceListData, + FctStorageSlotStateWithExpiryByAddressDailyServiceListErrors, + FctStorageSlotStateWithExpiryByAddressDailyServiceListResponses, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetData, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetErrors, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponses, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListData, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListErrors, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponses, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetData, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetErrors, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponses, + FctStorageSlotStateWithExpiryByBlockDailyServiceListData, + FctStorageSlotStateWithExpiryByBlockDailyServiceListErrors, + FctStorageSlotStateWithExpiryByBlockDailyServiceListResponses, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetData, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetErrors, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponses, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListData, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListErrors, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponses, + FctStorageSlotTop100ByBytesServiceGetData, + FctStorageSlotTop100ByBytesServiceGetErrors, + FctStorageSlotTop100ByBytesServiceGetResponses, + FctStorageSlotTop100ByBytesServiceListData, + FctStorageSlotTop100ByBytesServiceListErrors, + FctStorageSlotTop100ByBytesServiceListResponses, + FctStorageSlotTop100BySlotsServiceGetData, + FctStorageSlotTop100BySlotsServiceGetErrors, + FctStorageSlotTop100BySlotsServiceGetResponses, + FctStorageSlotTop100BySlotsServiceListData, + FctStorageSlotTop100BySlotsServiceListErrors, + FctStorageSlotTop100BySlotsServiceListResponses, + FctSyncCommitteeParticipationByValidatorDailyServiceGetData, + FctSyncCommitteeParticipationByValidatorDailyServiceGetErrors, + FctSyncCommitteeParticipationByValidatorDailyServiceGetResponses, + FctSyncCommitteeParticipationByValidatorDailyServiceListData, + FctSyncCommitteeParticipationByValidatorDailyServiceListErrors, + FctSyncCommitteeParticipationByValidatorDailyServiceListResponses, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetData, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetErrors, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponses, + FctSyncCommitteeParticipationByValidatorHourlyServiceListData, + FctSyncCommitteeParticipationByValidatorHourlyServiceListErrors, + FctSyncCommitteeParticipationByValidatorHourlyServiceListResponses, + FctSyncCommitteeParticipationByValidatorServiceGetData, + FctSyncCommitteeParticipationByValidatorServiceGetErrors, + FctSyncCommitteeParticipationByValidatorServiceGetResponses, + FctSyncCommitteeParticipationByValidatorServiceListData, + FctSyncCommitteeParticipationByValidatorServiceListErrors, + FctSyncCommitteeParticipationByValidatorServiceListResponses, + FctTokenContractStorageStateByBlockDailyServiceGetData, + FctTokenContractStorageStateByBlockDailyServiceGetErrors, + FctTokenContractStorageStateByBlockDailyServiceGetResponses, + FctTokenContractStorageStateByBlockDailyServiceListData, + FctTokenContractStorageStateByBlockDailyServiceListErrors, + FctTokenContractStorageStateByBlockDailyServiceListResponses, + FctValidatorBalanceDailyServiceGetData, + FctValidatorBalanceDailyServiceGetErrors, + FctValidatorBalanceDailyServiceGetResponses, + FctValidatorBalanceDailyServiceListData, + FctValidatorBalanceDailyServiceListErrors, + FctValidatorBalanceDailyServiceListResponses, + FctValidatorBalanceHourlyServiceGetData, + FctValidatorBalanceHourlyServiceGetErrors, + FctValidatorBalanceHourlyServiceGetResponses, + FctValidatorBalanceHourlyServiceListData, + FctValidatorBalanceHourlyServiceListErrors, + FctValidatorBalanceHourlyServiceListResponses, + FctValidatorBalanceServiceGetData, + FctValidatorBalanceServiceGetErrors, + FctValidatorBalanceServiceGetResponses, + FctValidatorBalanceServiceListData, + FctValidatorBalanceServiceListErrors, + FctValidatorBalanceServiceListResponses, + FctValidatorCountByEntityByStatusDailyServiceGetData, + FctValidatorCountByEntityByStatusDailyServiceGetErrors, + FctValidatorCountByEntityByStatusDailyServiceGetResponses, + FctValidatorCountByEntityByStatusDailyServiceListData, + FctValidatorCountByEntityByStatusDailyServiceListErrors, + FctValidatorCountByEntityByStatusDailyServiceListResponses, + IntAttestationAttestedCanonicalServiceGetData, + IntAttestationAttestedCanonicalServiceGetErrors, + IntAttestationAttestedCanonicalServiceGetResponses, + IntAttestationAttestedCanonicalServiceListData, + IntAttestationAttestedCanonicalServiceListErrors, + IntAttestationAttestedCanonicalServiceListResponses, + IntAttestationAttestedHeadServiceGetData, + IntAttestationAttestedHeadServiceGetErrors, + IntAttestationAttestedHeadServiceGetResponses, + IntAttestationAttestedHeadServiceListData, + IntAttestationAttestedHeadServiceListErrors, + IntAttestationAttestedHeadServiceListResponses, + IntAttestationAttestedServiceGetData, + IntAttestationAttestedServiceGetErrors, + IntAttestationAttestedServiceGetResponses, + IntAttestationAttestedServiceListData, + IntAttestationAttestedServiceListErrors, + IntAttestationAttestedServiceListResponses, + IntAttestationFirstSeenAggregateServiceGetData, + IntAttestationFirstSeenAggregateServiceGetErrors, + IntAttestationFirstSeenAggregateServiceGetResponses, + IntAttestationFirstSeenAggregateServiceListData, + IntAttestationFirstSeenAggregateServiceListErrors, + IntAttestationFirstSeenAggregateServiceListResponses, + IntAttestationFirstSeenServiceGetData, + IntAttestationFirstSeenServiceGetErrors, + IntAttestationFirstSeenServiceGetResponses, + IntAttestationFirstSeenServiceListData, + IntAttestationFirstSeenServiceListErrors, + IntAttestationFirstSeenServiceListResponses, + IntBeaconCommitteeHeadServiceGetData, + IntBeaconCommitteeHeadServiceGetErrors, + IntBeaconCommitteeHeadServiceGetResponses, + IntBeaconCommitteeHeadServiceListData, + IntBeaconCommitteeHeadServiceListErrors, + IntBeaconCommitteeHeadServiceListResponses, + IntBeaconCommitteeServiceGetData, + IntBeaconCommitteeServiceGetErrors, + IntBeaconCommitteeServiceGetResponses, + IntBeaconCommitteeServiceListData, + IntBeaconCommitteeServiceListErrors, + IntBeaconCommitteeServiceListResponses, + IntBlockBlobCountCanonicalServiceGetData, + IntBlockBlobCountCanonicalServiceGetErrors, + IntBlockBlobCountCanonicalServiceGetResponses, + IntBlockBlobCountCanonicalServiceListData, + IntBlockBlobCountCanonicalServiceListErrors, + IntBlockBlobCountCanonicalServiceListResponses, + IntBlockCanonicalServiceGetData, + IntBlockCanonicalServiceGetErrors, + IntBlockCanonicalServiceGetResponses, + IntBlockCanonicalServiceListData, + IntBlockCanonicalServiceListErrors, + IntBlockCanonicalServiceListResponses, + IntBlockMevCanonicalServiceGetData, + IntBlockMevCanonicalServiceGetErrors, + IntBlockMevCanonicalServiceGetResponses, + IntBlockMevCanonicalServiceListData, + IntBlockMevCanonicalServiceListErrors, + IntBlockMevCanonicalServiceListResponses, + IntBlockOpcodeGasServiceGetData, + IntBlockOpcodeGasServiceGetErrors, + IntBlockOpcodeGasServiceGetResponses, + IntBlockOpcodeGasServiceListData, + IntBlockOpcodeGasServiceListErrors, + IntBlockOpcodeGasServiceListResponses, + IntBlockPayloadPtcVoteCanonicalServiceGetData, + IntBlockPayloadPtcVoteCanonicalServiceGetErrors, + IntBlockPayloadPtcVoteCanonicalServiceGetResponses, + IntBlockPayloadPtcVoteCanonicalServiceListData, + IntBlockPayloadPtcVoteCanonicalServiceListErrors, + IntBlockPayloadPtcVoteCanonicalServiceListResponses, + IntBlockProposerCanonicalServiceGetData, + IntBlockProposerCanonicalServiceGetErrors, + IntBlockProposerCanonicalServiceGetResponses, + IntBlockProposerCanonicalServiceListData, + IntBlockProposerCanonicalServiceListErrors, + IntBlockProposerCanonicalServiceListResponses, + IntBlockReceiptSizeServiceGetData, + IntBlockReceiptSizeServiceGetErrors, + IntBlockReceiptSizeServiceGetResponses, + IntBlockReceiptSizeServiceListData, + IntBlockReceiptSizeServiceListErrors, + IntBlockReceiptSizeServiceListResponses, + IntBlockResourceGasServiceGetData, + IntBlockResourceGasServiceGetErrors, + IntBlockResourceGasServiceGetResponses, + IntBlockResourceGasServiceListData, + IntBlockResourceGasServiceListErrors, + IntBlockResourceGasServiceListResponses, + IntContractCreationServiceGetData, + IntContractCreationServiceGetErrors, + IntContractCreationServiceGetResponses, + IntContractCreationServiceListData, + IntContractCreationServiceListErrors, + IntContractCreationServiceListResponses, + IntContractSelfdestructServiceGetData, + IntContractSelfdestructServiceGetErrors, + IntContractSelfdestructServiceGetResponses, + IntContractSelfdestructServiceListData, + IntContractSelfdestructServiceListErrors, + IntContractSelfdestructServiceListResponses, + IntContractStorageExpiry12mServiceGetData, + IntContractStorageExpiry12mServiceGetErrors, + IntContractStorageExpiry12mServiceGetResponses, + IntContractStorageExpiry12mServiceListData, + IntContractStorageExpiry12mServiceListErrors, + IntContractStorageExpiry12mServiceListResponses, + IntContractStorageExpiry18mServiceGetData, + IntContractStorageExpiry18mServiceGetErrors, + IntContractStorageExpiry18mServiceGetResponses, + IntContractStorageExpiry18mServiceListData, + IntContractStorageExpiry18mServiceListErrors, + IntContractStorageExpiry18mServiceListResponses, + IntContractStorageExpiry1mServiceGetData, + IntContractStorageExpiry1mServiceGetErrors, + IntContractStorageExpiry1mServiceGetResponses, + IntContractStorageExpiry1mServiceListData, + IntContractStorageExpiry1mServiceListErrors, + IntContractStorageExpiry1mServiceListResponses, + IntContractStorageExpiry24mServiceGetData, + IntContractStorageExpiry24mServiceGetErrors, + IntContractStorageExpiry24mServiceGetResponses, + IntContractStorageExpiry24mServiceListData, + IntContractStorageExpiry24mServiceListErrors, + IntContractStorageExpiry24mServiceListResponses, + IntContractStorageExpiry6mServiceGetData, + IntContractStorageExpiry6mServiceGetErrors, + IntContractStorageExpiry6mServiceGetResponses, + IntContractStorageExpiry6mServiceListData, + IntContractStorageExpiry6mServiceListErrors, + IntContractStorageExpiry6mServiceListResponses, + IntContractStorageNextTouchServiceGetData, + IntContractStorageNextTouchServiceGetErrors, + IntContractStorageNextTouchServiceGetResponses, + IntContractStorageNextTouchServiceListData, + IntContractStorageNextTouchServiceListErrors, + IntContractStorageNextTouchServiceListResponses, + IntContractStorageReactivation12mServiceGetData, + IntContractStorageReactivation12mServiceGetErrors, + IntContractStorageReactivation12mServiceGetResponses, + IntContractStorageReactivation12mServiceListData, + IntContractStorageReactivation12mServiceListErrors, + IntContractStorageReactivation12mServiceListResponses, + IntContractStorageReactivation18mServiceGetData, + IntContractStorageReactivation18mServiceGetErrors, + IntContractStorageReactivation18mServiceGetResponses, + IntContractStorageReactivation18mServiceListData, + IntContractStorageReactivation18mServiceListErrors, + IntContractStorageReactivation18mServiceListResponses, + IntContractStorageReactivation1mServiceGetData, + IntContractStorageReactivation1mServiceGetErrors, + IntContractStorageReactivation1mServiceGetResponses, + IntContractStorageReactivation1mServiceListData, + IntContractStorageReactivation1mServiceListErrors, + IntContractStorageReactivation1mServiceListResponses, + IntContractStorageReactivation24mServiceGetData, + IntContractStorageReactivation24mServiceGetErrors, + IntContractStorageReactivation24mServiceGetResponses, + IntContractStorageReactivation24mServiceListData, + IntContractStorageReactivation24mServiceListErrors, + IntContractStorageReactivation24mServiceListResponses, + IntContractStorageReactivation6mServiceGetData, + IntContractStorageReactivation6mServiceGetErrors, + IntContractStorageReactivation6mServiceGetResponses, + IntContractStorageReactivation6mServiceListData, + IntContractStorageReactivation6mServiceListErrors, + IntContractStorageReactivation6mServiceListResponses, + IntContractStorageStateByAddressServiceGetData, + IntContractStorageStateByAddressServiceGetErrors, + IntContractStorageStateByAddressServiceGetResponses, + IntContractStorageStateByAddressServiceListData, + IntContractStorageStateByAddressServiceListErrors, + IntContractStorageStateByAddressServiceListResponses, + IntContractStorageStateByBlockServiceGetData, + IntContractStorageStateByBlockServiceGetErrors, + IntContractStorageStateByBlockServiceGetResponses, + IntContractStorageStateByBlockServiceListData, + IntContractStorageStateByBlockServiceListErrors, + IntContractStorageStateByBlockServiceListResponses, + IntContractStorageStateServiceGetData, + IntContractStorageStateServiceGetErrors, + IntContractStorageStateServiceGetResponses, + IntContractStorageStateServiceListData, + IntContractStorageStateServiceListErrors, + IntContractStorageStateServiceListResponses, + IntContractStorageStateWithExpiryByAddressServiceGetData, + IntContractStorageStateWithExpiryByAddressServiceGetErrors, + IntContractStorageStateWithExpiryByAddressServiceGetResponses, + IntContractStorageStateWithExpiryByAddressServiceListData, + IntContractStorageStateWithExpiryByAddressServiceListErrors, + IntContractStorageStateWithExpiryByAddressServiceListResponses, + IntContractStorageStateWithExpiryByBlockServiceGetData, + IntContractStorageStateWithExpiryByBlockServiceGetErrors, + IntContractStorageStateWithExpiryByBlockServiceGetResponses, + IntContractStorageStateWithExpiryByBlockServiceListData, + IntContractStorageStateWithExpiryByBlockServiceListErrors, + IntContractStorageStateWithExpiryByBlockServiceListResponses, + IntContractStorageStateWithExpiryServiceGetData, + IntContractStorageStateWithExpiryServiceGetErrors, + IntContractStorageStateWithExpiryServiceGetResponses, + IntContractStorageStateWithExpiryServiceListData, + IntContractStorageStateWithExpiryServiceListErrors, + IntContractStorageStateWithExpiryServiceListResponses, + IntCustodyProbeOrderBySlotServiceGetData, + IntCustodyProbeOrderBySlotServiceGetErrors, + IntCustodyProbeOrderBySlotServiceGetResponses, + IntCustodyProbeOrderBySlotServiceListData, + IntCustodyProbeOrderBySlotServiceListErrors, + IntCustodyProbeOrderBySlotServiceListResponses, + IntCustodyProbeServiceGetData, + IntCustodyProbeServiceGetErrors, + IntCustodyProbeServiceGetResponses, + IntCustodyProbeServiceListData, + IntCustodyProbeServiceListErrors, + IntCustodyProbeServiceListResponses, + IntEngineGetBlobsServiceGetData, + IntEngineGetBlobsServiceGetErrors, + IntEngineGetBlobsServiceGetResponses, + IntEngineGetBlobsServiceListData, + IntEngineGetBlobsServiceListErrors, + IntEngineGetBlobsServiceListResponses, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetData, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetErrors, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponses, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListData, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListErrors, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponses, + IntEngineNewPayloadServiceGetData, + IntEngineNewPayloadServiceGetErrors, + IntEngineNewPayloadServiceGetResponses, + IntEngineNewPayloadServiceListData, + IntEngineNewPayloadServiceListErrors, + IntEngineNewPayloadServiceListResponses, + IntExecutionBlockByDateServiceGetData, + IntExecutionBlockByDateServiceGetErrors, + IntExecutionBlockByDateServiceGetResponses, + IntExecutionBlockByDateServiceListData, + IntExecutionBlockByDateServiceListErrors, + IntExecutionBlockByDateServiceListResponses, + IntExecutionStateSizeByBlockServiceGetData, + IntExecutionStateSizeByBlockServiceGetErrors, + IntExecutionStateSizeByBlockServiceGetResponses, + IntExecutionStateSizeByBlockServiceListData, + IntExecutionStateSizeByBlockServiceListErrors, + IntExecutionStateSizeByBlockServiceListResponses, + IntRocketpoolMegapoolServiceGetData, + IntRocketpoolMegapoolServiceGetErrors, + IntRocketpoolMegapoolServiceGetResponses, + IntRocketpoolMegapoolServiceListData, + IntRocketpoolMegapoolServiceListErrors, + IntRocketpoolMegapoolServiceListResponses, + IntRocketpoolMinipoolServiceGetData, + IntRocketpoolMinipoolServiceGetErrors, + IntRocketpoolMinipoolServiceGetResponses, + IntRocketpoolMinipoolServiceListData, + IntRocketpoolMinipoolServiceListErrors, + IntRocketpoolMinipoolServiceListResponses, + IntRocketpoolNodeEventServiceGetData, + IntRocketpoolNodeEventServiceGetErrors, + IntRocketpoolNodeEventServiceGetResponses, + IntRocketpoolNodeEventServiceListData, + IntRocketpoolNodeEventServiceListErrors, + IntRocketpoolNodeEventServiceListResponses, + IntRocketpoolNodeTimezoneServiceGetData, + IntRocketpoolNodeTimezoneServiceGetErrors, + IntRocketpoolNodeTimezoneServiceGetResponses, + IntRocketpoolNodeTimezoneServiceListData, + IntRocketpoolNodeTimezoneServiceListErrors, + IntRocketpoolNodeTimezoneServiceListResponses, + IntStorageSelfdestructDiffsServiceGetData, + IntStorageSelfdestructDiffsServiceGetErrors, + IntStorageSelfdestructDiffsServiceGetResponses, + IntStorageSelfdestructDiffsServiceListData, + IntStorageSelfdestructDiffsServiceListErrors, + IntStorageSelfdestructDiffsServiceListResponses, + IntStorageSlotDiffByAddressSlotServiceGetData, + IntStorageSlotDiffByAddressSlotServiceGetErrors, + IntStorageSlotDiffByAddressSlotServiceGetResponses, + IntStorageSlotDiffByAddressSlotServiceListData, + IntStorageSlotDiffByAddressSlotServiceListErrors, + IntStorageSlotDiffByAddressSlotServiceListResponses, + IntStorageSlotDiffServiceGetData, + IntStorageSlotDiffServiceGetErrors, + IntStorageSlotDiffServiceGetResponses, + IntStorageSlotDiffServiceListData, + IntStorageSlotDiffServiceListErrors, + IntStorageSlotDiffServiceListResponses, + IntStorageSlotExpiry12mServiceGetData, + IntStorageSlotExpiry12mServiceGetErrors, + IntStorageSlotExpiry12mServiceGetResponses, + IntStorageSlotExpiry12mServiceListData, + IntStorageSlotExpiry12mServiceListErrors, + IntStorageSlotExpiry12mServiceListResponses, + IntStorageSlotExpiry18mServiceGetData, + IntStorageSlotExpiry18mServiceGetErrors, + IntStorageSlotExpiry18mServiceGetResponses, + IntStorageSlotExpiry18mServiceListData, + IntStorageSlotExpiry18mServiceListErrors, + IntStorageSlotExpiry18mServiceListResponses, + IntStorageSlotExpiry1mServiceGetData, + IntStorageSlotExpiry1mServiceGetErrors, + IntStorageSlotExpiry1mServiceGetResponses, + IntStorageSlotExpiry1mServiceListData, + IntStorageSlotExpiry1mServiceListErrors, + IntStorageSlotExpiry1mServiceListResponses, + IntStorageSlotExpiry24mServiceGetData, + IntStorageSlotExpiry24mServiceGetErrors, + IntStorageSlotExpiry24mServiceGetResponses, + IntStorageSlotExpiry24mServiceListData, + IntStorageSlotExpiry24mServiceListErrors, + IntStorageSlotExpiry24mServiceListResponses, + IntStorageSlotExpiry6mServiceGetData, + IntStorageSlotExpiry6mServiceGetErrors, + IntStorageSlotExpiry6mServiceGetResponses, + IntStorageSlotExpiry6mServiceListData, + IntStorageSlotExpiry6mServiceListErrors, + IntStorageSlotExpiry6mServiceListResponses, + IntStorageSlotLifecycleBoundaryServiceGetData, + IntStorageSlotLifecycleBoundaryServiceGetErrors, + IntStorageSlotLifecycleBoundaryServiceGetResponses, + IntStorageSlotLifecycleBoundaryServiceListData, + IntStorageSlotLifecycleBoundaryServiceListErrors, + IntStorageSlotLifecycleBoundaryServiceListResponses, + IntStorageSlotLifecycleServiceGetData, + IntStorageSlotLifecycleServiceGetErrors, + IntStorageSlotLifecycleServiceGetResponses, + IntStorageSlotLifecycleServiceListData, + IntStorageSlotLifecycleServiceListErrors, + IntStorageSlotLifecycleServiceListResponses, + IntStorageSlotNextTouchServiceGetData, + IntStorageSlotNextTouchServiceGetErrors, + IntStorageSlotNextTouchServiceGetResponses, + IntStorageSlotNextTouchServiceListData, + IntStorageSlotNextTouchServiceListErrors, + IntStorageSlotNextTouchServiceListResponses, + IntStorageSlotReactivation12mServiceGetData, + IntStorageSlotReactivation12mServiceGetErrors, + IntStorageSlotReactivation12mServiceGetResponses, + IntStorageSlotReactivation12mServiceListData, + IntStorageSlotReactivation12mServiceListErrors, + IntStorageSlotReactivation12mServiceListResponses, + IntStorageSlotReactivation18mServiceGetData, + IntStorageSlotReactivation18mServiceGetErrors, + IntStorageSlotReactivation18mServiceGetResponses, + IntStorageSlotReactivation18mServiceListData, + IntStorageSlotReactivation18mServiceListErrors, + IntStorageSlotReactivation18mServiceListResponses, + IntStorageSlotReactivation1mServiceGetData, + IntStorageSlotReactivation1mServiceGetErrors, + IntStorageSlotReactivation1mServiceGetResponses, + IntStorageSlotReactivation1mServiceListData, + IntStorageSlotReactivation1mServiceListErrors, + IntStorageSlotReactivation1mServiceListResponses, + IntStorageSlotReactivation24mServiceGetData, + IntStorageSlotReactivation24mServiceGetErrors, + IntStorageSlotReactivation24mServiceGetResponses, + IntStorageSlotReactivation24mServiceListData, + IntStorageSlotReactivation24mServiceListErrors, + IntStorageSlotReactivation24mServiceListResponses, + IntStorageSlotReactivation6mServiceGetData, + IntStorageSlotReactivation6mServiceGetErrors, + IntStorageSlotReactivation6mServiceGetResponses, + IntStorageSlotReactivation6mServiceListData, + IntStorageSlotReactivation6mServiceListErrors, + IntStorageSlotReactivation6mServiceListResponses, + IntStorageSlotReadServiceGetData, + IntStorageSlotReadServiceGetErrors, + IntStorageSlotReadServiceGetResponses, + IntStorageSlotReadServiceListData, + IntStorageSlotReadServiceListErrors, + IntStorageSlotReadServiceListResponses, + IntStorageSlotStateByAddressServiceGetData, + IntStorageSlotStateByAddressServiceGetErrors, + IntStorageSlotStateByAddressServiceGetResponses, + IntStorageSlotStateByAddressServiceListData, + IntStorageSlotStateByAddressServiceListErrors, + IntStorageSlotStateByAddressServiceListResponses, + IntStorageSlotStateByBlockServiceGetData, + IntStorageSlotStateByBlockServiceGetErrors, + IntStorageSlotStateByBlockServiceGetResponses, + IntStorageSlotStateByBlockServiceListData, + IntStorageSlotStateByBlockServiceListErrors, + IntStorageSlotStateByBlockServiceListResponses, + IntStorageSlotStateServiceGetData, + IntStorageSlotStateServiceGetErrors, + IntStorageSlotStateServiceGetResponses, + IntStorageSlotStateServiceListData, + IntStorageSlotStateServiceListErrors, + IntStorageSlotStateServiceListResponses, + IntStorageSlotStateWithExpiryByAddressServiceGetData, + IntStorageSlotStateWithExpiryByAddressServiceGetErrors, + IntStorageSlotStateWithExpiryByAddressServiceGetResponses, + IntStorageSlotStateWithExpiryByAddressServiceListData, + IntStorageSlotStateWithExpiryByAddressServiceListErrors, + IntStorageSlotStateWithExpiryByAddressServiceListResponses, + IntStorageSlotStateWithExpiryByBlockServiceGetData, + IntStorageSlotStateWithExpiryByBlockServiceGetErrors, + IntStorageSlotStateWithExpiryByBlockServiceGetResponses, + IntStorageSlotStateWithExpiryByBlockServiceListData, + IntStorageSlotStateWithExpiryByBlockServiceListErrors, + IntStorageSlotStateWithExpiryByBlockServiceListResponses, + IntStorageSlotStateWithExpiryServiceGetData, + IntStorageSlotStateWithExpiryServiceGetErrors, + IntStorageSlotStateWithExpiryServiceGetResponses, + IntStorageSlotStateWithExpiryServiceListData, + IntStorageSlotStateWithExpiryServiceListErrors, + IntStorageSlotStateWithExpiryServiceListResponses, + IntTokenContractStorageStateByBlockServiceGetData, + IntTokenContractStorageStateByBlockServiceGetErrors, + IntTokenContractStorageStateByBlockServiceGetResponses, + IntTokenContractStorageStateByBlockServiceListData, + IntTokenContractStorageStateByBlockServiceListErrors, + IntTokenContractStorageStateByBlockServiceListResponses, + IntTransactionCallFrameOpcodeGasServiceGetData, + IntTransactionCallFrameOpcodeGasServiceGetErrors, + IntTransactionCallFrameOpcodeGasServiceGetResponses, + IntTransactionCallFrameOpcodeGasServiceListData, + IntTransactionCallFrameOpcodeGasServiceListErrors, + IntTransactionCallFrameOpcodeGasServiceListResponses, + IntTransactionCallFrameOpcodeResourceGasServiceGetData, + IntTransactionCallFrameOpcodeResourceGasServiceGetErrors, + IntTransactionCallFrameOpcodeResourceGasServiceGetResponses, + IntTransactionCallFrameOpcodeResourceGasServiceListData, + IntTransactionCallFrameOpcodeResourceGasServiceListErrors, + IntTransactionCallFrameOpcodeResourceGasServiceListResponses, + IntTransactionCallFrameServiceGetData, + IntTransactionCallFrameServiceGetErrors, + IntTransactionCallFrameServiceGetResponses, + IntTransactionCallFrameServiceListData, + IntTransactionCallFrameServiceListErrors, + IntTransactionCallFrameServiceListResponses, + IntTransactionOpcodeGasServiceGetData, + IntTransactionOpcodeGasServiceGetErrors, + IntTransactionOpcodeGasServiceGetResponses, + IntTransactionOpcodeGasServiceListData, + IntTransactionOpcodeGasServiceListErrors, + IntTransactionOpcodeGasServiceListResponses, + IntTransactionReceiptSizeServiceGetData, + IntTransactionReceiptSizeServiceGetErrors, + IntTransactionReceiptSizeServiceGetResponses, + IntTransactionReceiptSizeServiceListData, + IntTransactionReceiptSizeServiceListErrors, + IntTransactionReceiptSizeServiceListResponses, + IntTransactionResourceGasServiceGetData, + IntTransactionResourceGasServiceGetErrors, + IntTransactionResourceGasServiceGetResponses, + IntTransactionResourceGasServiceListData, + IntTransactionResourceGasServiceListErrors, + IntTransactionResourceGasServiceListResponses, +} from './types.gen'; +import { + zAdminCbtIncrementalServiceGetData, + zAdminCbtIncrementalServiceGetResponse, + zAdminCbtIncrementalServiceListData, + zAdminCbtIncrementalServiceListResponse, + zAdminCbtScheduledServiceGetData, + zAdminCbtScheduledServiceGetResponse, + zAdminCbtScheduledServiceListData, + zAdminCbtScheduledServiceListResponse, + zDimBlockBlobSubmitterServiceGetData, + zDimBlockBlobSubmitterServiceGetResponse, + zDimBlockBlobSubmitterServiceListData, + zDimBlockBlobSubmitterServiceListResponse, + zDimContractOwnerServiceGetData, + zDimContractOwnerServiceGetResponse, + zDimContractOwnerServiceListData, + zDimContractOwnerServiceListResponse, + zDimFunctionSignatureServiceGetData, + zDimFunctionSignatureServiceGetResponse, + zDimFunctionSignatureServiceListData, + zDimFunctionSignatureServiceListResponse, + zDimNodeServiceGetData, + zDimNodeServiceGetResponse, + zDimNodeServiceListData, + zDimNodeServiceListResponse, + zDimRocketpoolNodeServiceGetData, + zDimRocketpoolNodeServiceGetResponse, + zDimRocketpoolNodeServiceListData, + zDimRocketpoolNodeServiceListResponse, + zDimTokenContractServiceGetData, + zDimTokenContractServiceGetResponse, + zDimTokenContractServiceListData, + zDimTokenContractServiceListResponse, + zDimValidatorPubkeyServiceGetData, + zDimValidatorPubkeyServiceGetResponse, + zDimValidatorPubkeyServiceListData, + zDimValidatorPubkeyServiceListResponse, + zDimValidatorStatusServiceGetData, + zDimValidatorStatusServiceGetResponse, + zDimValidatorStatusServiceListData, + zDimValidatorStatusServiceListResponse, + zFctAttestationCorrectnessByValidatorCanonicalServiceGetData, + zFctAttestationCorrectnessByValidatorCanonicalServiceGetResponse, + zFctAttestationCorrectnessByValidatorCanonicalServiceListData, + zFctAttestationCorrectnessByValidatorCanonicalServiceListResponse, + zFctAttestationCorrectnessByValidatorHeadServiceGetData, + zFctAttestationCorrectnessByValidatorHeadServiceGetResponse, + zFctAttestationCorrectnessByValidatorHeadServiceListData, + zFctAttestationCorrectnessByValidatorHeadServiceListResponse, + zFctAttestationCorrectnessByValidatorServiceGetData, + zFctAttestationCorrectnessByValidatorServiceGetResponse, + zFctAttestationCorrectnessByValidatorServiceListData, + zFctAttestationCorrectnessByValidatorServiceListResponse, + zFctAttestationCorrectnessCanonicalServiceGetData, + zFctAttestationCorrectnessCanonicalServiceGetResponse, + zFctAttestationCorrectnessCanonicalServiceListData, + zFctAttestationCorrectnessCanonicalServiceListResponse, + zFctAttestationCorrectnessHeadServiceGetData, + zFctAttestationCorrectnessHeadServiceGetResponse, + zFctAttestationCorrectnessHeadServiceListData, + zFctAttestationCorrectnessHeadServiceListResponse, + zFctAttestationCorrectnessServiceGetData, + zFctAttestationCorrectnessServiceGetResponse, + zFctAttestationCorrectnessServiceListData, + zFctAttestationCorrectnessServiceListResponse, + zFctAttestationFirstSeenByValidatorServiceGetData, + zFctAttestationFirstSeenByValidatorServiceGetResponse, + zFctAttestationFirstSeenByValidatorServiceListData, + zFctAttestationFirstSeenByValidatorServiceListResponse, + zFctAttestationFirstSeenChunked50MsServiceGetData, + zFctAttestationFirstSeenChunked50MsServiceGetResponse, + zFctAttestationFirstSeenChunked50MsServiceListData, + zFctAttestationFirstSeenChunked50MsServiceListResponse, + zFctAttestationInclusionDelayDailyServiceGetData, + zFctAttestationInclusionDelayDailyServiceGetResponse, + zFctAttestationInclusionDelayDailyServiceListData, + zFctAttestationInclusionDelayDailyServiceListResponse, + zFctAttestationInclusionDelayHourlyServiceGetData, + zFctAttestationInclusionDelayHourlyServiceGetResponse, + zFctAttestationInclusionDelayHourlyServiceListData, + zFctAttestationInclusionDelayHourlyServiceListResponse, + zFctAttestationLivenessByEntityHeadServiceGetData, + zFctAttestationLivenessByEntityHeadServiceGetResponse, + zFctAttestationLivenessByEntityHeadServiceListData, + zFctAttestationLivenessByEntityHeadServiceListResponse, + zFctAttestationLivenessByEntityServiceGetData, + zFctAttestationLivenessByEntityServiceGetResponse, + zFctAttestationLivenessByEntityServiceListData, + zFctAttestationLivenessByEntityServiceListResponse, + zFctAttestationObservationByNodeServiceGetData, + zFctAttestationObservationByNodeServiceGetResponse, + zFctAttestationObservationByNodeServiceListData, + zFctAttestationObservationByNodeServiceListResponse, + zFctAttestationParticipationRateDailyServiceGetData, + zFctAttestationParticipationRateDailyServiceGetResponse, + zFctAttestationParticipationRateDailyServiceListData, + zFctAttestationParticipationRateDailyServiceListResponse, + zFctAttestationParticipationRateHourlyServiceGetData, + zFctAttestationParticipationRateHourlyServiceGetResponse, + zFctAttestationParticipationRateHourlyServiceListData, + zFctAttestationParticipationRateHourlyServiceListResponse, + zFctAttestationVoteCorrectnessByValidatorDailyServiceGetData, + zFctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse, + zFctAttestationVoteCorrectnessByValidatorDailyServiceListData, + zFctAttestationVoteCorrectnessByValidatorDailyServiceListResponse, + zFctAttestationVoteCorrectnessByValidatorHourlyServiceGetData, + zFctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse, + zFctAttestationVoteCorrectnessByValidatorHourlyServiceListData, + zFctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse, + zFctAttestationVoteCorrectnessByValidatorServiceGetData, + zFctAttestationVoteCorrectnessByValidatorServiceGetResponse, + zFctAttestationVoteCorrectnessByValidatorServiceListData, + zFctAttestationVoteCorrectnessByValidatorServiceListResponse, + zFctBlobCountDailyServiceGetData, + zFctBlobCountDailyServiceGetResponse, + zFctBlobCountDailyServiceListData, + zFctBlobCountDailyServiceListResponse, + zFctBlobCountHourlyServiceGetData, + zFctBlobCountHourlyServiceGetResponse, + zFctBlobCountHourlyServiceListData, + zFctBlobCountHourlyServiceListResponse, + zFctBlockBlobCountHeadServiceGetData, + zFctBlockBlobCountHeadServiceGetResponse, + zFctBlockBlobCountHeadServiceListData, + zFctBlockBlobCountHeadServiceListResponse, + zFctBlockBlobCountServiceGetData, + zFctBlockBlobCountServiceGetResponse, + zFctBlockBlobCountServiceListData, + zFctBlockBlobCountServiceListResponse, + zFctBlockBlobFirstSeenByNodeServiceGetData, + zFctBlockBlobFirstSeenByNodeServiceGetResponse, + zFctBlockBlobFirstSeenByNodeServiceListData, + zFctBlockBlobFirstSeenByNodeServiceListResponse, + zFctBlockBlobHeadServiceGetData, + zFctBlockBlobHeadServiceGetResponse, + zFctBlockBlobHeadServiceListData, + zFctBlockBlobHeadServiceListResponse, + zFctBlockDataColumnSidecarFirstSeenByNodeServiceGetData, + zFctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse, + zFctBlockDataColumnSidecarFirstSeenByNodeServiceListData, + zFctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse, + zFctBlockDataColumnSidecarFirstSeenServiceGetData, + zFctBlockDataColumnSidecarFirstSeenServiceGetResponse, + zFctBlockDataColumnSidecarFirstSeenServiceListData, + zFctBlockDataColumnSidecarFirstSeenServiceListResponse, + zFctBlockFirstSeenByNodeServiceGetData, + zFctBlockFirstSeenByNodeServiceGetResponse, + zFctBlockFirstSeenByNodeServiceListData, + zFctBlockFirstSeenByNodeServiceListResponse, + zFctBlockHeadServiceGetData, + zFctBlockHeadServiceGetResponse, + zFctBlockHeadServiceListData, + zFctBlockHeadServiceListResponse, + zFctBlockMevHeadServiceGetData, + zFctBlockMevHeadServiceGetResponse, + zFctBlockMevHeadServiceListData, + zFctBlockMevHeadServiceListResponse, + zFctBlockMevServiceGetData, + zFctBlockMevServiceGetResponse, + zFctBlockMevServiceListData, + zFctBlockMevServiceListResponse, + zFctBlockPayloadAvailableByNodeServiceGetData, + zFctBlockPayloadAvailableByNodeServiceGetResponse, + zFctBlockPayloadAvailableByNodeServiceListData, + zFctBlockPayloadAvailableByNodeServiceListResponse, + zFctBlockPayloadBidServiceGetData, + zFctBlockPayloadBidServiceGetResponse, + zFctBlockPayloadBidServiceListData, + zFctBlockPayloadBidServiceListResponse, + zFctBlockPayloadFirstSeenByNodeServiceGetData, + zFctBlockPayloadFirstSeenByNodeServiceGetResponse, + zFctBlockPayloadFirstSeenByNodeServiceListData, + zFctBlockPayloadFirstSeenByNodeServiceListResponse, + zFctBlockPayloadPtcVoteHeadServiceGetData, + zFctBlockPayloadPtcVoteHeadServiceGetResponse, + zFctBlockPayloadPtcVoteHeadServiceListData, + zFctBlockPayloadPtcVoteHeadServiceListResponse, + zFctBlockPayloadPtcVoteServiceGetData, + zFctBlockPayloadPtcVoteServiceGetResponse, + zFctBlockPayloadPtcVoteServiceListData, + zFctBlockPayloadPtcVoteServiceListResponse, + zFctBlockProposalStatusDailyServiceGetData, + zFctBlockProposalStatusDailyServiceGetResponse, + zFctBlockProposalStatusDailyServiceListData, + zFctBlockProposalStatusDailyServiceListResponse, + zFctBlockProposalStatusHourlyServiceGetData, + zFctBlockProposalStatusHourlyServiceGetResponse, + zFctBlockProposalStatusHourlyServiceListData, + zFctBlockProposalStatusHourlyServiceListResponse, + zFctBlockProposerByValidatorServiceGetData, + zFctBlockProposerByValidatorServiceGetResponse, + zFctBlockProposerByValidatorServiceListData, + zFctBlockProposerByValidatorServiceListResponse, + zFctBlockProposerEntityServiceGetData, + zFctBlockProposerEntityServiceGetResponse, + zFctBlockProposerEntityServiceListData, + zFctBlockProposerEntityServiceListResponse, + zFctBlockProposerHeadServiceGetData, + zFctBlockProposerHeadServiceGetResponse, + zFctBlockProposerHeadServiceListData, + zFctBlockProposerHeadServiceListResponse, + zFctBlockProposerServiceGetData, + zFctBlockProposerServiceGetResponse, + zFctBlockProposerServiceListData, + zFctBlockProposerServiceListResponse, + zFctBlockServiceGetData, + zFctBlockServiceGetResponse, + zFctBlockServiceListData, + zFctBlockServiceListResponse, + zFctContractStorageStateByAddressDailyServiceGetData, + zFctContractStorageStateByAddressDailyServiceGetResponse, + zFctContractStorageStateByAddressDailyServiceListData, + zFctContractStorageStateByAddressDailyServiceListResponse, + zFctContractStorageStateByAddressHourlyServiceGetData, + zFctContractStorageStateByAddressHourlyServiceGetResponse, + zFctContractStorageStateByAddressHourlyServiceListData, + zFctContractStorageStateByAddressHourlyServiceListResponse, + zFctContractStorageStateByBlockDailyServiceGetData, + zFctContractStorageStateByBlockDailyServiceGetResponse, + zFctContractStorageStateByBlockDailyServiceListData, + zFctContractStorageStateByBlockDailyServiceListResponse, + zFctContractStorageStateByBlockHourlyServiceGetData, + zFctContractStorageStateByBlockHourlyServiceGetResponse, + zFctContractStorageStateByBlockHourlyServiceListData, + zFctContractStorageStateByBlockHourlyServiceListResponse, + zFctContractStorageStateWithExpiryByAddressDailyServiceGetData, + zFctContractStorageStateWithExpiryByAddressDailyServiceGetResponse, + zFctContractStorageStateWithExpiryByAddressDailyServiceListData, + zFctContractStorageStateWithExpiryByAddressDailyServiceListResponse, + zFctContractStorageStateWithExpiryByAddressHourlyServiceGetData, + zFctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse, + zFctContractStorageStateWithExpiryByAddressHourlyServiceListData, + zFctContractStorageStateWithExpiryByAddressHourlyServiceListResponse, + zFctContractStorageStateWithExpiryByBlockDailyServiceGetData, + zFctContractStorageStateWithExpiryByBlockDailyServiceGetResponse, + zFctContractStorageStateWithExpiryByBlockDailyServiceListData, + zFctContractStorageStateWithExpiryByBlockDailyServiceListResponse, + zFctContractStorageStateWithExpiryByBlockHourlyServiceGetData, + zFctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse, + zFctContractStorageStateWithExpiryByBlockHourlyServiceListData, + zFctContractStorageStateWithExpiryByBlockHourlyServiceListResponse, + zFctDataColumnAvailabilityByEpochServiceGetData, + zFctDataColumnAvailabilityByEpochServiceGetResponse, + zFctDataColumnAvailabilityByEpochServiceListData, + zFctDataColumnAvailabilityByEpochServiceListResponse, + zFctDataColumnAvailabilityBySlotBlobServiceGetData, + zFctDataColumnAvailabilityBySlotBlobServiceGetResponse, + zFctDataColumnAvailabilityBySlotBlobServiceListData, + zFctDataColumnAvailabilityBySlotBlobServiceListResponse, + zFctDataColumnAvailabilityBySlotServiceGetData, + zFctDataColumnAvailabilityBySlotServiceGetResponse, + zFctDataColumnAvailabilityBySlotServiceListData, + zFctDataColumnAvailabilityBySlotServiceListResponse, + zFctDataColumnAvailabilityDailyServiceGetData, + zFctDataColumnAvailabilityDailyServiceGetResponse, + zFctDataColumnAvailabilityDailyServiceListData, + zFctDataColumnAvailabilityDailyServiceListResponse, + zFctDataColumnAvailabilityHourlyServiceGetData, + zFctDataColumnAvailabilityHourlyServiceGetResponse, + zFctDataColumnAvailabilityHourlyServiceListData, + zFctDataColumnAvailabilityHourlyServiceListResponse, + zFctEngineGetBlobsByElClientHourlyServiceGetData, + zFctEngineGetBlobsByElClientHourlyServiceGetResponse, + zFctEngineGetBlobsByElClientHourlyServiceListData, + zFctEngineGetBlobsByElClientHourlyServiceListResponse, + zFctEngineGetBlobsByElClientServiceGetData, + zFctEngineGetBlobsByElClientServiceGetResponse, + zFctEngineGetBlobsByElClientServiceListData, + zFctEngineGetBlobsByElClientServiceListResponse, + zFctEngineGetBlobsBySlotServiceGetData, + zFctEngineGetBlobsBySlotServiceGetResponse, + zFctEngineGetBlobsBySlotServiceListData, + zFctEngineGetBlobsBySlotServiceListResponse, + zFctEngineGetBlobsDurationChunked50MsServiceGetData, + zFctEngineGetBlobsDurationChunked50MsServiceGetResponse, + zFctEngineGetBlobsDurationChunked50MsServiceListData, + zFctEngineGetBlobsDurationChunked50MsServiceListResponse, + zFctEngineNewPayloadByElClientHourlyServiceGetData, + zFctEngineNewPayloadByElClientHourlyServiceGetResponse, + zFctEngineNewPayloadByElClientHourlyServiceListData, + zFctEngineNewPayloadByElClientHourlyServiceListResponse, + zFctEngineNewPayloadByElClientServiceGetData, + zFctEngineNewPayloadByElClientServiceGetResponse, + zFctEngineNewPayloadByElClientServiceListData, + zFctEngineNewPayloadByElClientServiceListResponse, + zFctEngineNewPayloadBySlotServiceGetData, + zFctEngineNewPayloadBySlotServiceGetResponse, + zFctEngineNewPayloadBySlotServiceListData, + zFctEngineNewPayloadBySlotServiceListResponse, + zFctEngineNewPayloadDurationChunked50MsServiceGetData, + zFctEngineNewPayloadDurationChunked50MsServiceGetResponse, + zFctEngineNewPayloadDurationChunked50MsServiceListData, + zFctEngineNewPayloadDurationChunked50MsServiceListResponse, + zFctEngineNewPayloadWinrateDailyServiceGetData, + zFctEngineNewPayloadWinrateDailyServiceGetResponse, + zFctEngineNewPayloadWinrateDailyServiceListData, + zFctEngineNewPayloadWinrateDailyServiceListResponse, + zFctEngineNewPayloadWinrateHourlyServiceGetData, + zFctEngineNewPayloadWinrateHourlyServiceGetResponse, + zFctEngineNewPayloadWinrateHourlyServiceListData, + zFctEngineNewPayloadWinrateHourlyServiceListResponse, + zFctExecutionGasLimitDailyServiceGetData, + zFctExecutionGasLimitDailyServiceGetResponse, + zFctExecutionGasLimitDailyServiceListData, + zFctExecutionGasLimitDailyServiceListResponse, + zFctExecutionGasLimitHourlyServiceGetData, + zFctExecutionGasLimitHourlyServiceGetResponse, + zFctExecutionGasLimitHourlyServiceListData, + zFctExecutionGasLimitHourlyServiceListResponse, + zFctExecutionGasLimitSignallingDailyServiceGetData, + zFctExecutionGasLimitSignallingDailyServiceGetResponse, + zFctExecutionGasLimitSignallingDailyServiceListData, + zFctExecutionGasLimitSignallingDailyServiceListResponse, + zFctExecutionGasLimitSignallingHourlyServiceGetData, + zFctExecutionGasLimitSignallingHourlyServiceGetResponse, + zFctExecutionGasLimitSignallingHourlyServiceListData, + zFctExecutionGasLimitSignallingHourlyServiceListResponse, + zFctExecutionGasUsedDailyServiceGetData, + zFctExecutionGasUsedDailyServiceGetResponse, + zFctExecutionGasUsedDailyServiceListData, + zFctExecutionGasUsedDailyServiceListResponse, + zFctExecutionGasUsedHourlyServiceGetData, + zFctExecutionGasUsedHourlyServiceGetResponse, + zFctExecutionGasUsedHourlyServiceListData, + zFctExecutionGasUsedHourlyServiceListResponse, + zFctExecutionReceiptSizeDailyServiceGetData, + zFctExecutionReceiptSizeDailyServiceGetResponse, + zFctExecutionReceiptSizeDailyServiceListData, + zFctExecutionReceiptSizeDailyServiceListResponse, + zFctExecutionReceiptSizeHourlyServiceGetData, + zFctExecutionReceiptSizeHourlyServiceGetResponse, + zFctExecutionReceiptSizeHourlyServiceListData, + zFctExecutionReceiptSizeHourlyServiceListResponse, + zFctExecutionStateSizeDailyServiceGetData, + zFctExecutionStateSizeDailyServiceGetResponse, + zFctExecutionStateSizeDailyServiceListData, + zFctExecutionStateSizeDailyServiceListResponse, + zFctExecutionStateSizeHourlyServiceGetData, + zFctExecutionStateSizeHourlyServiceGetResponse, + zFctExecutionStateSizeHourlyServiceListData, + zFctExecutionStateSizeHourlyServiceListResponse, + zFctExecutionTpsDailyServiceGetData, + zFctExecutionTpsDailyServiceGetResponse, + zFctExecutionTpsDailyServiceListData, + zFctExecutionTpsDailyServiceListResponse, + zFctExecutionTpsHourlyServiceGetData, + zFctExecutionTpsHourlyServiceGetResponse, + zFctExecutionTpsHourlyServiceListData, + zFctExecutionTpsHourlyServiceListResponse, + zFctExecutionTransactionsDailyServiceGetData, + zFctExecutionTransactionsDailyServiceGetResponse, + zFctExecutionTransactionsDailyServiceListData, + zFctExecutionTransactionsDailyServiceListResponse, + zFctExecutionTransactionsHourlyServiceGetData, + zFctExecutionTransactionsHourlyServiceGetResponse, + zFctExecutionTransactionsHourlyServiceListData, + zFctExecutionTransactionsHourlyServiceListResponse, + zFctHeadFirstSeenByNodeServiceGetData, + zFctHeadFirstSeenByNodeServiceGetResponse, + zFctHeadFirstSeenByNodeServiceListData, + zFctHeadFirstSeenByNodeServiceListResponse, + zFctHeadVoteCorrectnessRateDailyServiceGetData, + zFctHeadVoteCorrectnessRateDailyServiceGetResponse, + zFctHeadVoteCorrectnessRateDailyServiceListData, + zFctHeadVoteCorrectnessRateDailyServiceListResponse, + zFctHeadVoteCorrectnessRateHourlyServiceGetData, + zFctHeadVoteCorrectnessRateHourlyServiceGetResponse, + zFctHeadVoteCorrectnessRateHourlyServiceListData, + zFctHeadVoteCorrectnessRateHourlyServiceListResponse, + zFctMevBidCountByBuilderServiceGetData, + zFctMevBidCountByBuilderServiceGetResponse, + zFctMevBidCountByBuilderServiceListData, + zFctMevBidCountByBuilderServiceListResponse, + zFctMevBidCountByRelayServiceGetData, + zFctMevBidCountByRelayServiceGetResponse, + zFctMevBidCountByRelayServiceListData, + zFctMevBidCountByRelayServiceListResponse, + zFctMevBidHighestValueByBuilderChunked50MsServiceGetData, + zFctMevBidHighestValueByBuilderChunked50MsServiceGetResponse, + zFctMevBidHighestValueByBuilderChunked50MsServiceListData, + zFctMevBidHighestValueByBuilderChunked50MsServiceListResponse, + zFctMissedSlotRateDailyServiceGetData, + zFctMissedSlotRateDailyServiceGetResponse, + zFctMissedSlotRateDailyServiceListData, + zFctMissedSlotRateDailyServiceListResponse, + zFctMissedSlotRateHourlyServiceGetData, + zFctMissedSlotRateHourlyServiceGetResponse, + zFctMissedSlotRateHourlyServiceListData, + zFctMissedSlotRateHourlyServiceListResponse, + zFctNodeActiveLast24hServiceGetData, + zFctNodeActiveLast24hServiceGetResponse, + zFctNodeActiveLast24hServiceListData, + zFctNodeActiveLast24hServiceListResponse, + zFctNodeCpuUtilizationByProcessServiceGetData, + zFctNodeCpuUtilizationByProcessServiceGetResponse, + zFctNodeCpuUtilizationByProcessServiceListData, + zFctNodeCpuUtilizationByProcessServiceListResponse, + zFctNodeDiskIoByProcessServiceGetData, + zFctNodeDiskIoByProcessServiceGetResponse, + zFctNodeDiskIoByProcessServiceListData, + zFctNodeDiskIoByProcessServiceListResponse, + zFctNodeMemoryUsageByProcessServiceGetData, + zFctNodeMemoryUsageByProcessServiceGetResponse, + zFctNodeMemoryUsageByProcessServiceListData, + zFctNodeMemoryUsageByProcessServiceListResponse, + zFctNodeNetworkIoByProcessServiceGetData, + zFctNodeNetworkIoByProcessServiceGetResponse, + zFctNodeNetworkIoByProcessServiceListData, + zFctNodeNetworkIoByProcessServiceListResponse, + zFctOpcodeGasByOpcodeDailyServiceGetData, + zFctOpcodeGasByOpcodeDailyServiceGetResponse, + zFctOpcodeGasByOpcodeDailyServiceListData, + zFctOpcodeGasByOpcodeDailyServiceListResponse, + zFctOpcodeGasByOpcodeHourlyServiceGetData, + zFctOpcodeGasByOpcodeHourlyServiceGetResponse, + zFctOpcodeGasByOpcodeHourlyServiceListData, + zFctOpcodeGasByOpcodeHourlyServiceListResponse, + zFctOpcodeOpsDailyServiceGetData, + zFctOpcodeOpsDailyServiceGetResponse, + zFctOpcodeOpsDailyServiceListData, + zFctOpcodeOpsDailyServiceListResponse, + zFctOpcodeOpsHourlyServiceGetData, + zFctOpcodeOpsHourlyServiceGetResponse, + zFctOpcodeOpsHourlyServiceListData, + zFctOpcodeOpsHourlyServiceListResponse, + zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetData, + zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse, + zFctPayloadBidHighestValueByBuilderChunked50MsServiceListData, + zFctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse, + zFctPreparedBlockServiceGetData, + zFctPreparedBlockServiceGetResponse, + zFctPreparedBlockServiceListData, + zFctPreparedBlockServiceListResponse, + zFctProposerRewardDailyServiceGetData, + zFctProposerRewardDailyServiceGetResponse, + zFctProposerRewardDailyServiceListData, + zFctProposerRewardDailyServiceListResponse, + zFctProposerRewardHourlyServiceGetData, + zFctProposerRewardHourlyServiceGetResponse, + zFctProposerRewardHourlyServiceListData, + zFctProposerRewardHourlyServiceListResponse, + zFctReorgDailyServiceGetData, + zFctReorgDailyServiceGetResponse, + zFctReorgDailyServiceListData, + zFctReorgDailyServiceListResponse, + zFctReorgHourlyServiceGetData, + zFctReorgHourlyServiceGetResponse, + zFctReorgHourlyServiceListData, + zFctReorgHourlyServiceListResponse, + zFctRocketpoolValidatorServiceGetData, + zFctRocketpoolValidatorServiceGetResponse, + zFctRocketpoolValidatorServiceListData, + zFctRocketpoolValidatorServiceListResponse, + zFctStorageSlotStateByAddressDailyServiceGetData, + zFctStorageSlotStateByAddressDailyServiceGetResponse, + zFctStorageSlotStateByAddressDailyServiceListData, + zFctStorageSlotStateByAddressDailyServiceListResponse, + zFctStorageSlotStateByAddressHourlyServiceGetData, + zFctStorageSlotStateByAddressHourlyServiceGetResponse, + zFctStorageSlotStateByAddressHourlyServiceListData, + zFctStorageSlotStateByAddressHourlyServiceListResponse, + zFctStorageSlotStateByBlockDailyServiceGetData, + zFctStorageSlotStateByBlockDailyServiceGetResponse, + zFctStorageSlotStateByBlockDailyServiceListData, + zFctStorageSlotStateByBlockDailyServiceListResponse, + zFctStorageSlotStateByBlockHourlyServiceGetData, + zFctStorageSlotStateByBlockHourlyServiceGetResponse, + zFctStorageSlotStateByBlockHourlyServiceListData, + zFctStorageSlotStateByBlockHourlyServiceListResponse, + zFctStorageSlotStateWithExpiryByAddressDailyServiceGetData, + zFctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse, + zFctStorageSlotStateWithExpiryByAddressDailyServiceListData, + zFctStorageSlotStateWithExpiryByAddressDailyServiceListResponse, + zFctStorageSlotStateWithExpiryByAddressHourlyServiceGetData, + zFctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse, + zFctStorageSlotStateWithExpiryByAddressHourlyServiceListData, + zFctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse, + zFctStorageSlotStateWithExpiryByBlockDailyServiceGetData, + zFctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse, + zFctStorageSlotStateWithExpiryByBlockDailyServiceListData, + zFctStorageSlotStateWithExpiryByBlockDailyServiceListResponse, + zFctStorageSlotStateWithExpiryByBlockHourlyServiceGetData, + zFctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse, + zFctStorageSlotStateWithExpiryByBlockHourlyServiceListData, + zFctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse, + zFctStorageSlotTop100ByBytesServiceGetData, + zFctStorageSlotTop100ByBytesServiceGetResponse, + zFctStorageSlotTop100ByBytesServiceListData, + zFctStorageSlotTop100ByBytesServiceListResponse, + zFctStorageSlotTop100BySlotsServiceGetData, + zFctStorageSlotTop100BySlotsServiceGetResponse, + zFctStorageSlotTop100BySlotsServiceListData, + zFctStorageSlotTop100BySlotsServiceListResponse, + zFctSyncCommitteeParticipationByValidatorDailyServiceGetData, + zFctSyncCommitteeParticipationByValidatorDailyServiceGetResponse, + zFctSyncCommitteeParticipationByValidatorDailyServiceListData, + zFctSyncCommitteeParticipationByValidatorDailyServiceListResponse, + zFctSyncCommitteeParticipationByValidatorHourlyServiceGetData, + zFctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse, + zFctSyncCommitteeParticipationByValidatorHourlyServiceListData, + zFctSyncCommitteeParticipationByValidatorHourlyServiceListResponse, + zFctSyncCommitteeParticipationByValidatorServiceGetData, + zFctSyncCommitteeParticipationByValidatorServiceGetResponse, + zFctSyncCommitteeParticipationByValidatorServiceListData, + zFctSyncCommitteeParticipationByValidatorServiceListResponse, + zFctTokenContractStorageStateByBlockDailyServiceGetData, + zFctTokenContractStorageStateByBlockDailyServiceGetResponse, + zFctTokenContractStorageStateByBlockDailyServiceListData, + zFctTokenContractStorageStateByBlockDailyServiceListResponse, + zFctValidatorBalanceDailyServiceGetData, + zFctValidatorBalanceDailyServiceGetResponse, + zFctValidatorBalanceDailyServiceListData, + zFctValidatorBalanceDailyServiceListResponse, + zFctValidatorBalanceHourlyServiceGetData, + zFctValidatorBalanceHourlyServiceGetResponse, + zFctValidatorBalanceHourlyServiceListData, + zFctValidatorBalanceHourlyServiceListResponse, + zFctValidatorBalanceServiceGetData, + zFctValidatorBalanceServiceGetResponse, + zFctValidatorBalanceServiceListData, + zFctValidatorBalanceServiceListResponse, + zFctValidatorCountByEntityByStatusDailyServiceGetData, + zFctValidatorCountByEntityByStatusDailyServiceGetResponse, + zFctValidatorCountByEntityByStatusDailyServiceListData, + zFctValidatorCountByEntityByStatusDailyServiceListResponse, + zIntAttestationAttestedCanonicalServiceGetData, + zIntAttestationAttestedCanonicalServiceGetResponse, + zIntAttestationAttestedCanonicalServiceListData, + zIntAttestationAttestedCanonicalServiceListResponse, + zIntAttestationAttestedHeadServiceGetData, + zIntAttestationAttestedHeadServiceGetResponse, + zIntAttestationAttestedHeadServiceListData, + zIntAttestationAttestedHeadServiceListResponse, + zIntAttestationAttestedServiceGetData, + zIntAttestationAttestedServiceGetResponse, + zIntAttestationAttestedServiceListData, + zIntAttestationAttestedServiceListResponse, + zIntAttestationFirstSeenAggregateServiceGetData, + zIntAttestationFirstSeenAggregateServiceGetResponse, + zIntAttestationFirstSeenAggregateServiceListData, + zIntAttestationFirstSeenAggregateServiceListResponse, + zIntAttestationFirstSeenServiceGetData, + zIntAttestationFirstSeenServiceGetResponse, + zIntAttestationFirstSeenServiceListData, + zIntAttestationFirstSeenServiceListResponse, + zIntBeaconCommitteeHeadServiceGetData, + zIntBeaconCommitteeHeadServiceGetResponse, + zIntBeaconCommitteeHeadServiceListData, + zIntBeaconCommitteeHeadServiceListResponse, + zIntBeaconCommitteeServiceGetData, + zIntBeaconCommitteeServiceGetResponse, + zIntBeaconCommitteeServiceListData, + zIntBeaconCommitteeServiceListResponse, + zIntBlockBlobCountCanonicalServiceGetData, + zIntBlockBlobCountCanonicalServiceGetResponse, + zIntBlockBlobCountCanonicalServiceListData, + zIntBlockBlobCountCanonicalServiceListResponse, + zIntBlockCanonicalServiceGetData, + zIntBlockCanonicalServiceGetResponse, + zIntBlockCanonicalServiceListData, + zIntBlockCanonicalServiceListResponse, + zIntBlockMevCanonicalServiceGetData, + zIntBlockMevCanonicalServiceGetResponse, + zIntBlockMevCanonicalServiceListData, + zIntBlockMevCanonicalServiceListResponse, + zIntBlockOpcodeGasServiceGetData, + zIntBlockOpcodeGasServiceGetResponse, + zIntBlockOpcodeGasServiceListData, + zIntBlockOpcodeGasServiceListResponse, + zIntBlockPayloadPtcVoteCanonicalServiceGetData, + zIntBlockPayloadPtcVoteCanonicalServiceGetResponse, + zIntBlockPayloadPtcVoteCanonicalServiceListData, + zIntBlockPayloadPtcVoteCanonicalServiceListResponse, + zIntBlockProposerCanonicalServiceGetData, + zIntBlockProposerCanonicalServiceGetResponse, + zIntBlockProposerCanonicalServiceListData, + zIntBlockProposerCanonicalServiceListResponse, + zIntBlockReceiptSizeServiceGetData, + zIntBlockReceiptSizeServiceGetResponse, + zIntBlockReceiptSizeServiceListData, + zIntBlockReceiptSizeServiceListResponse, + zIntBlockResourceGasServiceGetData, + zIntBlockResourceGasServiceGetResponse, + zIntBlockResourceGasServiceListData, + zIntBlockResourceGasServiceListResponse, + zIntContractCreationServiceGetData, + zIntContractCreationServiceGetResponse, + zIntContractCreationServiceListData, + zIntContractCreationServiceListResponse, + zIntContractSelfdestructServiceGetData, + zIntContractSelfdestructServiceGetResponse, + zIntContractSelfdestructServiceListData, + zIntContractSelfdestructServiceListResponse, + zIntContractStorageExpiry12mServiceGetData, + zIntContractStorageExpiry12mServiceGetResponse, + zIntContractStorageExpiry12mServiceListData, + zIntContractStorageExpiry12mServiceListResponse, + zIntContractStorageExpiry18mServiceGetData, + zIntContractStorageExpiry18mServiceGetResponse, + zIntContractStorageExpiry18mServiceListData, + zIntContractStorageExpiry18mServiceListResponse, + zIntContractStorageExpiry1mServiceGetData, + zIntContractStorageExpiry1mServiceGetResponse, + zIntContractStorageExpiry1mServiceListData, + zIntContractStorageExpiry1mServiceListResponse, + zIntContractStorageExpiry24mServiceGetData, + zIntContractStorageExpiry24mServiceGetResponse, + zIntContractStorageExpiry24mServiceListData, + zIntContractStorageExpiry24mServiceListResponse, + zIntContractStorageExpiry6mServiceGetData, + zIntContractStorageExpiry6mServiceGetResponse, + zIntContractStorageExpiry6mServiceListData, + zIntContractStorageExpiry6mServiceListResponse, + zIntContractStorageNextTouchServiceGetData, + zIntContractStorageNextTouchServiceGetResponse, + zIntContractStorageNextTouchServiceListData, + zIntContractStorageNextTouchServiceListResponse, + zIntContractStorageReactivation12mServiceGetData, + zIntContractStorageReactivation12mServiceGetResponse, + zIntContractStorageReactivation12mServiceListData, + zIntContractStorageReactivation12mServiceListResponse, + zIntContractStorageReactivation18mServiceGetData, + zIntContractStorageReactivation18mServiceGetResponse, + zIntContractStorageReactivation18mServiceListData, + zIntContractStorageReactivation18mServiceListResponse, + zIntContractStorageReactivation1mServiceGetData, + zIntContractStorageReactivation1mServiceGetResponse, + zIntContractStorageReactivation1mServiceListData, + zIntContractStorageReactivation1mServiceListResponse, + zIntContractStorageReactivation24mServiceGetData, + zIntContractStorageReactivation24mServiceGetResponse, + zIntContractStorageReactivation24mServiceListData, + zIntContractStorageReactivation24mServiceListResponse, + zIntContractStorageReactivation6mServiceGetData, + zIntContractStorageReactivation6mServiceGetResponse, + zIntContractStorageReactivation6mServiceListData, + zIntContractStorageReactivation6mServiceListResponse, + zIntContractStorageStateByAddressServiceGetData, + zIntContractStorageStateByAddressServiceGetResponse, + zIntContractStorageStateByAddressServiceListData, + zIntContractStorageStateByAddressServiceListResponse, + zIntContractStorageStateByBlockServiceGetData, + zIntContractStorageStateByBlockServiceGetResponse, + zIntContractStorageStateByBlockServiceListData, + zIntContractStorageStateByBlockServiceListResponse, + zIntContractStorageStateServiceGetData, + zIntContractStorageStateServiceGetResponse, + zIntContractStorageStateServiceListData, + zIntContractStorageStateServiceListResponse, + zIntContractStorageStateWithExpiryByAddressServiceGetData, + zIntContractStorageStateWithExpiryByAddressServiceGetResponse, + zIntContractStorageStateWithExpiryByAddressServiceListData, + zIntContractStorageStateWithExpiryByAddressServiceListResponse, + zIntContractStorageStateWithExpiryByBlockServiceGetData, + zIntContractStorageStateWithExpiryByBlockServiceGetResponse, + zIntContractStorageStateWithExpiryByBlockServiceListData, + zIntContractStorageStateWithExpiryByBlockServiceListResponse, + zIntContractStorageStateWithExpiryServiceGetData, + zIntContractStorageStateWithExpiryServiceGetResponse, + zIntContractStorageStateWithExpiryServiceListData, + zIntContractStorageStateWithExpiryServiceListResponse, + zIntCustodyProbeOrderBySlotServiceGetData, + zIntCustodyProbeOrderBySlotServiceGetResponse, + zIntCustodyProbeOrderBySlotServiceListData, + zIntCustodyProbeOrderBySlotServiceListResponse, + zIntCustodyProbeServiceGetData, + zIntCustodyProbeServiceGetResponse, + zIntCustodyProbeServiceListData, + zIntCustodyProbeServiceListResponse, + zIntEngineGetBlobsServiceGetData, + zIntEngineGetBlobsServiceGetResponse, + zIntEngineGetBlobsServiceListData, + zIntEngineGetBlobsServiceListResponse, + zIntEngineNewPayloadFastestExecutionByNodeClassServiceGetData, + zIntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse, + zIntEngineNewPayloadFastestExecutionByNodeClassServiceListData, + zIntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse, + zIntEngineNewPayloadServiceGetData, + zIntEngineNewPayloadServiceGetResponse, + zIntEngineNewPayloadServiceListData, + zIntEngineNewPayloadServiceListResponse, + zIntExecutionBlockByDateServiceGetData, + zIntExecutionBlockByDateServiceGetResponse, + zIntExecutionBlockByDateServiceListData, + zIntExecutionBlockByDateServiceListResponse, + zIntExecutionStateSizeByBlockServiceGetData, + zIntExecutionStateSizeByBlockServiceGetResponse, + zIntExecutionStateSizeByBlockServiceListData, + zIntExecutionStateSizeByBlockServiceListResponse, + zIntRocketpoolMegapoolServiceGetData, + zIntRocketpoolMegapoolServiceGetResponse, + zIntRocketpoolMegapoolServiceListData, + zIntRocketpoolMegapoolServiceListResponse, + zIntRocketpoolMinipoolServiceGetData, + zIntRocketpoolMinipoolServiceGetResponse, + zIntRocketpoolMinipoolServiceListData, + zIntRocketpoolMinipoolServiceListResponse, + zIntRocketpoolNodeEventServiceGetData, + zIntRocketpoolNodeEventServiceGetResponse, + zIntRocketpoolNodeEventServiceListData, + zIntRocketpoolNodeEventServiceListResponse, + zIntRocketpoolNodeTimezoneServiceGetData, + zIntRocketpoolNodeTimezoneServiceGetResponse, + zIntRocketpoolNodeTimezoneServiceListData, + zIntRocketpoolNodeTimezoneServiceListResponse, + zIntStorageSelfdestructDiffsServiceGetData, + zIntStorageSelfdestructDiffsServiceGetResponse, + zIntStorageSelfdestructDiffsServiceListData, + zIntStorageSelfdestructDiffsServiceListResponse, + zIntStorageSlotDiffByAddressSlotServiceGetData, + zIntStorageSlotDiffByAddressSlotServiceGetResponse, + zIntStorageSlotDiffByAddressSlotServiceListData, + zIntStorageSlotDiffByAddressSlotServiceListResponse, + zIntStorageSlotDiffServiceGetData, + zIntStorageSlotDiffServiceGetResponse, + zIntStorageSlotDiffServiceListData, + zIntStorageSlotDiffServiceListResponse, + zIntStorageSlotExpiry12mServiceGetData, + zIntStorageSlotExpiry12mServiceGetResponse, + zIntStorageSlotExpiry12mServiceListData, + zIntStorageSlotExpiry12mServiceListResponse, + zIntStorageSlotExpiry18mServiceGetData, + zIntStorageSlotExpiry18mServiceGetResponse, + zIntStorageSlotExpiry18mServiceListData, + zIntStorageSlotExpiry18mServiceListResponse, + zIntStorageSlotExpiry1mServiceGetData, + zIntStorageSlotExpiry1mServiceGetResponse, + zIntStorageSlotExpiry1mServiceListData, + zIntStorageSlotExpiry1mServiceListResponse, + zIntStorageSlotExpiry24mServiceGetData, + zIntStorageSlotExpiry24mServiceGetResponse, + zIntStorageSlotExpiry24mServiceListData, + zIntStorageSlotExpiry24mServiceListResponse, + zIntStorageSlotExpiry6mServiceGetData, + zIntStorageSlotExpiry6mServiceGetResponse, + zIntStorageSlotExpiry6mServiceListData, + zIntStorageSlotExpiry6mServiceListResponse, + zIntStorageSlotLifecycleBoundaryServiceGetData, + zIntStorageSlotLifecycleBoundaryServiceGetResponse, + zIntStorageSlotLifecycleBoundaryServiceListData, + zIntStorageSlotLifecycleBoundaryServiceListResponse, + zIntStorageSlotLifecycleServiceGetData, + zIntStorageSlotLifecycleServiceGetResponse, + zIntStorageSlotLifecycleServiceListData, + zIntStorageSlotLifecycleServiceListResponse, + zIntStorageSlotNextTouchServiceGetData, + zIntStorageSlotNextTouchServiceGetResponse, + zIntStorageSlotNextTouchServiceListData, + zIntStorageSlotNextTouchServiceListResponse, + zIntStorageSlotReactivation12mServiceGetData, + zIntStorageSlotReactivation12mServiceGetResponse, + zIntStorageSlotReactivation12mServiceListData, + zIntStorageSlotReactivation12mServiceListResponse, + zIntStorageSlotReactivation18mServiceGetData, + zIntStorageSlotReactivation18mServiceGetResponse, + zIntStorageSlotReactivation18mServiceListData, + zIntStorageSlotReactivation18mServiceListResponse, + zIntStorageSlotReactivation1mServiceGetData, + zIntStorageSlotReactivation1mServiceGetResponse, + zIntStorageSlotReactivation1mServiceListData, + zIntStorageSlotReactivation1mServiceListResponse, + zIntStorageSlotReactivation24mServiceGetData, + zIntStorageSlotReactivation24mServiceGetResponse, + zIntStorageSlotReactivation24mServiceListData, + zIntStorageSlotReactivation24mServiceListResponse, + zIntStorageSlotReactivation6mServiceGetData, + zIntStorageSlotReactivation6mServiceGetResponse, + zIntStorageSlotReactivation6mServiceListData, + zIntStorageSlotReactivation6mServiceListResponse, + zIntStorageSlotReadServiceGetData, + zIntStorageSlotReadServiceGetResponse, + zIntStorageSlotReadServiceListData, + zIntStorageSlotReadServiceListResponse, + zIntStorageSlotStateByAddressServiceGetData, + zIntStorageSlotStateByAddressServiceGetResponse, + zIntStorageSlotStateByAddressServiceListData, + zIntStorageSlotStateByAddressServiceListResponse, + zIntStorageSlotStateByBlockServiceGetData, + zIntStorageSlotStateByBlockServiceGetResponse, + zIntStorageSlotStateByBlockServiceListData, + zIntStorageSlotStateByBlockServiceListResponse, + zIntStorageSlotStateServiceGetData, + zIntStorageSlotStateServiceGetResponse, + zIntStorageSlotStateServiceListData, + zIntStorageSlotStateServiceListResponse, + zIntStorageSlotStateWithExpiryByAddressServiceGetData, + zIntStorageSlotStateWithExpiryByAddressServiceGetResponse, + zIntStorageSlotStateWithExpiryByAddressServiceListData, + zIntStorageSlotStateWithExpiryByAddressServiceListResponse, + zIntStorageSlotStateWithExpiryByBlockServiceGetData, + zIntStorageSlotStateWithExpiryByBlockServiceGetResponse, + zIntStorageSlotStateWithExpiryByBlockServiceListData, + zIntStorageSlotStateWithExpiryByBlockServiceListResponse, + zIntStorageSlotStateWithExpiryServiceGetData, + zIntStorageSlotStateWithExpiryServiceGetResponse, + zIntStorageSlotStateWithExpiryServiceListData, + zIntStorageSlotStateWithExpiryServiceListResponse, + zIntTokenContractStorageStateByBlockServiceGetData, + zIntTokenContractStorageStateByBlockServiceGetResponse, + zIntTokenContractStorageStateByBlockServiceListData, + zIntTokenContractStorageStateByBlockServiceListResponse, + zIntTransactionCallFrameOpcodeGasServiceGetData, + zIntTransactionCallFrameOpcodeGasServiceGetResponse, + zIntTransactionCallFrameOpcodeGasServiceListData, + zIntTransactionCallFrameOpcodeGasServiceListResponse, + zIntTransactionCallFrameOpcodeResourceGasServiceGetData, + zIntTransactionCallFrameOpcodeResourceGasServiceGetResponse, + zIntTransactionCallFrameOpcodeResourceGasServiceListData, + zIntTransactionCallFrameOpcodeResourceGasServiceListResponse, + zIntTransactionCallFrameServiceGetData, + zIntTransactionCallFrameServiceGetResponse, + zIntTransactionCallFrameServiceListData, + zIntTransactionCallFrameServiceListResponse, + zIntTransactionOpcodeGasServiceGetData, + zIntTransactionOpcodeGasServiceGetResponse, + zIntTransactionOpcodeGasServiceListData, + zIntTransactionOpcodeGasServiceListResponse, + zIntTransactionReceiptSizeServiceGetData, + zIntTransactionReceiptSizeServiceGetResponse, + zIntTransactionReceiptSizeServiceListData, + zIntTransactionReceiptSizeServiceListResponse, + zIntTransactionResourceGasServiceGetData, + zIntTransactionResourceGasServiceGetResponse, + zIntTransactionResourceGasServiceListData, + zIntTransactionResourceGasServiceListResponse, +} from './zod.gen'; + +export type Options = Options2< + TData, + ThrowOnError +> & { + /** + * You can provide a client instance returned by `createClient()` instead of + * individual options. This might be also useful if you want to implement a + * custom client. + */ + client?: Client; + /** + * You can pass arbitrary values through the `meta` object. This can be + * used to access values that aren't defined as part of the SDK function. + */ + meta?: Record; }; /** @@ -24,4629 +2089,7783 @@ export type Options(options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zAdminCbtIncrementalServiceListData.parseAsync(data), - responseValidator: async (data) => await zAdminCbtIncrementalServiceListResponse.parseAsync(data), +export const adminCbtIncrementalServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + AdminCbtIncrementalServiceListResponses, + AdminCbtIncrementalServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zAdminCbtIncrementalServiceListData.parseAsync(data), + responseValidator: async data => await zAdminCbtIncrementalServiceListResponse.parseAsync(data), url: '/api/v1/admin_cbt_incremental', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by database */ -export const adminCbtIncrementalServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zAdminCbtIncrementalServiceGetData.parseAsync(data), - responseValidator: async (data) => await zAdminCbtIncrementalServiceGetResponse.parseAsync(data), +export const adminCbtIncrementalServiceGet = ( + options: Options +) => + (options.client ?? client).get< + AdminCbtIncrementalServiceGetResponses, + AdminCbtIncrementalServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zAdminCbtIncrementalServiceGetData.parseAsync(data), + responseValidator: async data => await zAdminCbtIncrementalServiceGetResponse.parseAsync(data), url: '/api/v1/admin_cbt_incremental/{database}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimBlockBlobSubmitterServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zDimBlockBlobSubmitterServiceListData.parseAsync(data), - responseValidator: async (data) => await zDimBlockBlobSubmitterServiceListResponse.parseAsync(data), +export const adminCbtScheduledServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + AdminCbtScheduledServiceListResponses, + AdminCbtScheduledServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zAdminCbtScheduledServiceListData.parseAsync(data), + responseValidator: async data => await zAdminCbtScheduledServiceListResponse.parseAsync(data), + url: '/api/v1/admin_cbt_scheduled', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by database + */ +export const adminCbtScheduledServiceGet = ( + options: Options +) => + (options.client ?? client).get( + { + requestValidator: async data => await zAdminCbtScheduledServiceGetData.parseAsync(data), + responseValidator: async data => await zAdminCbtScheduledServiceGetResponse.parseAsync(data), + url: '/api/v1/admin_cbt_scheduled/{database}', + ...options, + } + ); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const dimBlockBlobSubmitterServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + DimBlockBlobSubmitterServiceListResponses, + DimBlockBlobSubmitterServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zDimBlockBlobSubmitterServiceListData.parseAsync(data), + responseValidator: async data => await zDimBlockBlobSubmitterServiceListResponse.parseAsync(data), url: '/api/v1/dim_block_blob_submitter', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const dimBlockBlobSubmitterServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zDimBlockBlobSubmitterServiceGetData.parseAsync(data), - responseValidator: async (data) => await zDimBlockBlobSubmitterServiceGetResponse.parseAsync(data), +export const dimBlockBlobSubmitterServiceGet = ( + options: Options +) => + (options.client ?? client).get< + DimBlockBlobSubmitterServiceGetResponses, + DimBlockBlobSubmitterServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zDimBlockBlobSubmitterServiceGetData.parseAsync(data), + responseValidator: async data => await zDimBlockBlobSubmitterServiceGetResponse.parseAsync(data), url: '/api/v1/dim_block_blob_submitter/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimContractOwnerServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zDimContractOwnerServiceListData.parseAsync(data), - responseValidator: async (data) => await zDimContractOwnerServiceListResponse.parseAsync(data), +export const dimContractOwnerServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + DimContractOwnerServiceListResponses, + DimContractOwnerServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zDimContractOwnerServiceListData.parseAsync(data), + responseValidator: async data => await zDimContractOwnerServiceListResponse.parseAsync(data), url: '/api/v1/dim_contract_owner', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by contract_address */ -export const dimContractOwnerServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zDimContractOwnerServiceGetData.parseAsync(data), - responseValidator: async (data) => await zDimContractOwnerServiceGetResponse.parseAsync(data), +export const dimContractOwnerServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zDimContractOwnerServiceGetData.parseAsync(data), + responseValidator: async data => await zDimContractOwnerServiceGetResponse.parseAsync(data), url: '/api/v1/dim_contract_owner/{contract_address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimFunctionSignatureServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zDimFunctionSignatureServiceListData.parseAsync(data), - responseValidator: async (data) => await zDimFunctionSignatureServiceListResponse.parseAsync(data), +export const dimFunctionSignatureServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + DimFunctionSignatureServiceListResponses, + DimFunctionSignatureServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zDimFunctionSignatureServiceListData.parseAsync(data), + responseValidator: async data => await zDimFunctionSignatureServiceListResponse.parseAsync(data), url: '/api/v1/dim_function_signature', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by selector */ -export const dimFunctionSignatureServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zDimFunctionSignatureServiceGetData.parseAsync(data), - responseValidator: async (data) => await zDimFunctionSignatureServiceGetResponse.parseAsync(data), +export const dimFunctionSignatureServiceGet = ( + options: Options +) => + (options.client ?? client).get< + DimFunctionSignatureServiceGetResponses, + DimFunctionSignatureServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zDimFunctionSignatureServiceGetData.parseAsync(data), + responseValidator: async data => await zDimFunctionSignatureServiceGetResponse.parseAsync(data), url: '/api/v1/dim_function_signature/{selector}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimNodeServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zDimNodeServiceListData.parseAsync(data), - responseValidator: async (data) => await zDimNodeServiceListResponse.parseAsync(data), +export const dimNodeServiceList = ( + options?: Options +) => + (options?.client ?? client).get({ + requestValidator: async data => await zDimNodeServiceListData.parseAsync(data), + responseValidator: async data => await zDimNodeServiceListResponse.parseAsync(data), url: '/api/v1/dim_node', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const dimNodeServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zDimNodeServiceGetData.parseAsync(data), - responseValidator: async (data) => await zDimNodeServiceGetResponse.parseAsync(data), +export const dimNodeServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zDimNodeServiceGetData.parseAsync(data), + responseValidator: async data => await zDimNodeServiceGetResponse.parseAsync(data), url: '/api/v1/dim_node/{validator_index}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimRocketpoolNodeServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zDimRocketpoolNodeServiceListData.parseAsync(data), - responseValidator: async (data) => await zDimRocketpoolNodeServiceListResponse.parseAsync(data), +export const dimRocketpoolNodeServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + DimRocketpoolNodeServiceListResponses, + DimRocketpoolNodeServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zDimRocketpoolNodeServiceListData.parseAsync(data), + responseValidator: async data => await zDimRocketpoolNodeServiceListResponse.parseAsync(data), url: '/api/v1/dim_rocketpool_node', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by node_operator */ -export const dimRocketpoolNodeServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zDimRocketpoolNodeServiceGetData.parseAsync(data), - responseValidator: async (data) => await zDimRocketpoolNodeServiceGetResponse.parseAsync(data), - url: '/api/v1/dim_rocketpool_node/{node_operator}', - ...options -}); +export const dimRocketpoolNodeServiceGet = ( + options: Options +) => + (options.client ?? client).get( + { + requestValidator: async data => await zDimRocketpoolNodeServiceGetData.parseAsync(data), + responseValidator: async data => await zDimRocketpoolNodeServiceGetResponse.parseAsync(data), + url: '/api/v1/dim_rocketpool_node/{node_operator}', + ...options, + } + ); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimTokenContractServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zDimTokenContractServiceListData.parseAsync(data), - responseValidator: async (data) => await zDimTokenContractServiceListResponse.parseAsync(data), +export const dimTokenContractServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + DimTokenContractServiceListResponses, + DimTokenContractServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zDimTokenContractServiceListData.parseAsync(data), + responseValidator: async data => await zDimTokenContractServiceListResponse.parseAsync(data), url: '/api/v1/dim_token_contract', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by contract_address */ -export const dimTokenContractServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zDimTokenContractServiceGetData.parseAsync(data), - responseValidator: async (data) => await zDimTokenContractServiceGetResponse.parseAsync(data), +export const dimTokenContractServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zDimTokenContractServiceGetData.parseAsync(data), + responseValidator: async data => await zDimTokenContractServiceGetResponse.parseAsync(data), url: '/api/v1/dim_token_contract/{contract_address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimValidatorPubkeyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zDimValidatorPubkeyServiceListData.parseAsync(data), - responseValidator: async (data) => await zDimValidatorPubkeyServiceListResponse.parseAsync(data), +export const dimValidatorPubkeyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + DimValidatorPubkeyServiceListResponses, + DimValidatorPubkeyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zDimValidatorPubkeyServiceListData.parseAsync(data), + responseValidator: async data => await zDimValidatorPubkeyServiceListResponse.parseAsync(data), url: '/api/v1/dim_validator_pubkey', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by pubkey */ -export const dimValidatorPubkeyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zDimValidatorPubkeyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zDimValidatorPubkeyServiceGetResponse.parseAsync(data), +export const dimValidatorPubkeyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + DimValidatorPubkeyServiceGetResponses, + DimValidatorPubkeyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zDimValidatorPubkeyServiceGetData.parseAsync(data), + responseValidator: async data => await zDimValidatorPubkeyServiceGetResponse.parseAsync(data), url: '/api/v1/dim_validator_pubkey/{pubkey}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const dimValidatorStatusServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zDimValidatorStatusServiceListData.parseAsync(data), - responseValidator: async (data) => await zDimValidatorStatusServiceListResponse.parseAsync(data), +export const dimValidatorStatusServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + DimValidatorStatusServiceListResponses, + DimValidatorStatusServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zDimValidatorStatusServiceListData.parseAsync(data), + responseValidator: async data => await zDimValidatorStatusServiceListResponse.parseAsync(data), url: '/api/v1/dim_validator_status', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const dimValidatorStatusServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zDimValidatorStatusServiceGetData.parseAsync(data), - responseValidator: async (data) => await zDimValidatorStatusServiceGetResponse.parseAsync(data), +export const dimValidatorStatusServiceGet = ( + options: Options +) => + (options.client ?? client).get< + DimValidatorStatusServiceGetResponses, + DimValidatorStatusServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zDimValidatorStatusServiceGetData.parseAsync(data), + responseValidator: async data => await zDimValidatorStatusServiceGetResponse.parseAsync(data), url: '/api/v1/dim_validator_status/{validator_index}', - ...options -}); + ...options, + }); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctAttestationCorrectnessServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationCorrectnessServiceListResponses, + FctAttestationCorrectnessServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationCorrectnessServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationCorrectnessServiceListResponse.parseAsync(data), + url: '/api/v1/fct_attestation_correctness', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctAttestationCorrectnessServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationCorrectnessServiceGetResponses, + FctAttestationCorrectnessServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationCorrectnessServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationCorrectnessServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_attestation_correctness/{slot_start_date_time}', + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationCorrectnessByValidatorCanonicalServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationCorrectnessByValidatorCanonicalServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationCorrectnessByValidatorCanonicalServiceListResponse.parseAsync(data), +export const fctAttestationCorrectnessByValidatorServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationCorrectnessByValidatorServiceListResponses, + FctAttestationCorrectnessByValidatorServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationCorrectnessByValidatorServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationCorrectnessByValidatorServiceListResponse.parseAsync(data), + url: '/api/v1/fct_attestation_correctness_by_validator', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctAttestationCorrectnessByValidatorServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationCorrectnessByValidatorServiceGetResponses, + FctAttestationCorrectnessByValidatorServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationCorrectnessByValidatorServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationCorrectnessByValidatorServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_attestation_correctness_by_validator/{slot_start_date_time}', + ...options, + }); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctAttestationCorrectnessByValidatorCanonicalServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationCorrectnessByValidatorCanonicalServiceListResponses, + FctAttestationCorrectnessByValidatorCanonicalServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctAttestationCorrectnessByValidatorCanonicalServiceListData.parseAsync(data), + responseValidator: async data => + await zFctAttestationCorrectnessByValidatorCanonicalServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_correctness_by_validator_canonical', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationCorrectnessByValidatorCanonicalServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationCorrectnessByValidatorCanonicalServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationCorrectnessByValidatorCanonicalServiceGetResponse.parseAsync(data), +export const fctAttestationCorrectnessByValidatorCanonicalServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationCorrectnessByValidatorCanonicalServiceGetResponses, + FctAttestationCorrectnessByValidatorCanonicalServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationCorrectnessByValidatorCanonicalServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctAttestationCorrectnessByValidatorCanonicalServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_correctness_by_validator_canonical/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationCorrectnessByValidatorHeadServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationCorrectnessByValidatorHeadServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationCorrectnessByValidatorHeadServiceListResponse.parseAsync(data), +export const fctAttestationCorrectnessByValidatorHeadServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationCorrectnessByValidatorHeadServiceListResponses, + FctAttestationCorrectnessByValidatorHeadServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationCorrectnessByValidatorHeadServiceListData.parseAsync(data), + responseValidator: async data => + await zFctAttestationCorrectnessByValidatorHeadServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_correctness_by_validator_head', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationCorrectnessByValidatorHeadServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationCorrectnessByValidatorHeadServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationCorrectnessByValidatorHeadServiceGetResponse.parseAsync(data), +export const fctAttestationCorrectnessByValidatorHeadServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationCorrectnessByValidatorHeadServiceGetResponses, + FctAttestationCorrectnessByValidatorHeadServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationCorrectnessByValidatorHeadServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationCorrectnessByValidatorHeadServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_correctness_by_validator_head/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationCorrectnessCanonicalServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationCorrectnessCanonicalServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationCorrectnessCanonicalServiceListResponse.parseAsync(data), +export const fctAttestationCorrectnessCanonicalServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationCorrectnessCanonicalServiceListResponses, + FctAttestationCorrectnessCanonicalServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationCorrectnessCanonicalServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationCorrectnessCanonicalServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_correctness_canonical', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationCorrectnessCanonicalServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationCorrectnessCanonicalServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationCorrectnessCanonicalServiceGetResponse.parseAsync(data), +export const fctAttestationCorrectnessCanonicalServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationCorrectnessCanonicalServiceGetResponses, + FctAttestationCorrectnessCanonicalServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationCorrectnessCanonicalServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationCorrectnessCanonicalServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_correctness_canonical/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationCorrectnessHeadServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationCorrectnessHeadServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationCorrectnessHeadServiceListResponse.parseAsync(data), +export const fctAttestationCorrectnessHeadServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationCorrectnessHeadServiceListResponses, + FctAttestationCorrectnessHeadServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationCorrectnessHeadServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationCorrectnessHeadServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_correctness_head', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationCorrectnessHeadServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationCorrectnessHeadServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationCorrectnessHeadServiceGetResponse.parseAsync(data), +export const fctAttestationCorrectnessHeadServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationCorrectnessHeadServiceGetResponses, + FctAttestationCorrectnessHeadServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationCorrectnessHeadServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationCorrectnessHeadServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_correctness_head/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationFirstSeenByValidatorServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationFirstSeenByValidatorServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationFirstSeenByValidatorServiceListResponse.parseAsync(data), +export const fctAttestationFirstSeenByValidatorServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationFirstSeenByValidatorServiceListResponses, + FctAttestationFirstSeenByValidatorServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationFirstSeenByValidatorServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationFirstSeenByValidatorServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_first_seen_by_validator', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationFirstSeenByValidatorServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationFirstSeenByValidatorServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationFirstSeenByValidatorServiceGetResponse.parseAsync(data), +export const fctAttestationFirstSeenByValidatorServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationFirstSeenByValidatorServiceGetResponses, + FctAttestationFirstSeenByValidatorServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationFirstSeenByValidatorServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationFirstSeenByValidatorServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_first_seen_by_validator/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationFirstSeenChunked50MsServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationFirstSeenChunked50MsServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationFirstSeenChunked50MsServiceListResponse.parseAsync(data), +export const fctAttestationFirstSeenChunked50MsServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationFirstSeenChunked50MsServiceListResponses, + FctAttestationFirstSeenChunked50MsServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationFirstSeenChunked50MsServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationFirstSeenChunked50MsServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_first_seen_chunked_50ms', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationFirstSeenChunked50MsServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationFirstSeenChunked50MsServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationFirstSeenChunked50MsServiceGetResponse.parseAsync(data), +export const fctAttestationFirstSeenChunked50MsServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationFirstSeenChunked50MsServiceGetResponses, + FctAttestationFirstSeenChunked50MsServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationFirstSeenChunked50MsServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationFirstSeenChunked50MsServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_first_seen_chunked_50ms/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationInclusionDelayDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationInclusionDelayDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationInclusionDelayDailyServiceListResponse.parseAsync(data), +export const fctAttestationInclusionDelayDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationInclusionDelayDailyServiceListResponses, + FctAttestationInclusionDelayDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationInclusionDelayDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationInclusionDelayDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_inclusion_delay_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctAttestationInclusionDelayDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationInclusionDelayDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationInclusionDelayDailyServiceGetResponse.parseAsync(data), +export const fctAttestationInclusionDelayDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationInclusionDelayDailyServiceGetResponses, + FctAttestationInclusionDelayDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationInclusionDelayDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationInclusionDelayDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_inclusion_delay_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationInclusionDelayHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationInclusionDelayHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationInclusionDelayHourlyServiceListResponse.parseAsync(data), +export const fctAttestationInclusionDelayHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationInclusionDelayHourlyServiceListResponses, + FctAttestationInclusionDelayHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationInclusionDelayHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationInclusionDelayHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_inclusion_delay_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctAttestationInclusionDelayHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationInclusionDelayHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationInclusionDelayHourlyServiceGetResponse.parseAsync(data), +export const fctAttestationInclusionDelayHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationInclusionDelayHourlyServiceGetResponses, + FctAttestationInclusionDelayHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationInclusionDelayHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationInclusionDelayHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_inclusion_delay_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationLivenessByEntityHeadServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationLivenessByEntityHeadServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationLivenessByEntityHeadServiceListResponse.parseAsync(data), +export const fctAttestationLivenessByEntityServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationLivenessByEntityServiceListResponses, + FctAttestationLivenessByEntityServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationLivenessByEntityServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationLivenessByEntityServiceListResponse.parseAsync(data), + url: '/api/v1/fct_attestation_liveness_by_entity', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctAttestationLivenessByEntityServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationLivenessByEntityServiceGetResponses, + FctAttestationLivenessByEntityServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationLivenessByEntityServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationLivenessByEntityServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_attestation_liveness_by_entity/{slot_start_date_time}', + ...options, + }); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctAttestationLivenessByEntityHeadServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationLivenessByEntityHeadServiceListResponses, + FctAttestationLivenessByEntityHeadServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationLivenessByEntityHeadServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationLivenessByEntityHeadServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_liveness_by_entity_head', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationLivenessByEntityHeadServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationLivenessByEntityHeadServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationLivenessByEntityHeadServiceGetResponse.parseAsync(data), +export const fctAttestationLivenessByEntityHeadServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationLivenessByEntityHeadServiceGetResponses, + FctAttestationLivenessByEntityHeadServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationLivenessByEntityHeadServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationLivenessByEntityHeadServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_liveness_by_entity_head/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationObservationByNodeServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationObservationByNodeServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationObservationByNodeServiceListResponse.parseAsync(data), +export const fctAttestationObservationByNodeServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationObservationByNodeServiceListResponses, + FctAttestationObservationByNodeServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationObservationByNodeServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationObservationByNodeServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_observation_by_node', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctAttestationObservationByNodeServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationObservationByNodeServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationObservationByNodeServiceGetResponse.parseAsync(data), +export const fctAttestationObservationByNodeServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationObservationByNodeServiceGetResponses, + FctAttestationObservationByNodeServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationObservationByNodeServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationObservationByNodeServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_observation_by_node/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationParticipationRateDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationParticipationRateDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationParticipationRateDailyServiceListResponse.parseAsync(data), +export const fctAttestationParticipationRateDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationParticipationRateDailyServiceListResponses, + FctAttestationParticipationRateDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationParticipationRateDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationParticipationRateDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_participation_rate_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctAttestationParticipationRateDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationParticipationRateDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationParticipationRateDailyServiceGetResponse.parseAsync(data), +export const fctAttestationParticipationRateDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationParticipationRateDailyServiceGetResponses, + FctAttestationParticipationRateDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationParticipationRateDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationParticipationRateDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_participation_rate_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationParticipationRateHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationParticipationRateHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationParticipationRateHourlyServiceListResponse.parseAsync(data), +export const fctAttestationParticipationRateHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationParticipationRateHourlyServiceListResponses, + FctAttestationParticipationRateHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationParticipationRateHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctAttestationParticipationRateHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_participation_rate_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctAttestationParticipationRateHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationParticipationRateHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationParticipationRateHourlyServiceGetResponse.parseAsync(data), +export const fctAttestationParticipationRateHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationParticipationRateHourlyServiceGetResponses, + FctAttestationParticipationRateHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationParticipationRateHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationParticipationRateHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_participation_rate_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationVoteCorrectnessByValidatorServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationVoteCorrectnessByValidatorServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationVoteCorrectnessByValidatorServiceListResponse.parseAsync(data), +export const fctAttestationVoteCorrectnessByValidatorServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationVoteCorrectnessByValidatorServiceListResponses, + FctAttestationVoteCorrectnessByValidatorServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationVoteCorrectnessByValidatorServiceListData.parseAsync(data), + responseValidator: async data => + await zFctAttestationVoteCorrectnessByValidatorServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_vote_correctness_by_validator', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const fctAttestationVoteCorrectnessByValidatorServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationVoteCorrectnessByValidatorServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationVoteCorrectnessByValidatorServiceGetResponse.parseAsync(data), +export const fctAttestationVoteCorrectnessByValidatorServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationVoteCorrectnessByValidatorServiceGetResponses, + FctAttestationVoteCorrectnessByValidatorServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationVoteCorrectnessByValidatorServiceGetData.parseAsync(data), + responseValidator: async data => await zFctAttestationVoteCorrectnessByValidatorServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_vote_correctness_by_validator/{validator_index}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationVoteCorrectnessByValidatorDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationVoteCorrectnessByValidatorDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationVoteCorrectnessByValidatorDailyServiceListResponse.parseAsync(data), +export const fctAttestationVoteCorrectnessByValidatorDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationVoteCorrectnessByValidatorDailyServiceListResponses, + FctAttestationVoteCorrectnessByValidatorDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctAttestationVoteCorrectnessByValidatorDailyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctAttestationVoteCorrectnessByValidatorDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_vote_correctness_by_validator_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const fctAttestationVoteCorrectnessByValidatorDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationVoteCorrectnessByValidatorDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse.parseAsync(data), +export const fctAttestationVoteCorrectnessByValidatorDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponses, + FctAttestationVoteCorrectnessByValidatorDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctAttestationVoteCorrectnessByValidatorDailyServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_vote_correctness_by_validator_daily/{validator_index}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctAttestationVoteCorrectnessByValidatorHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationVoteCorrectnessByValidatorHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse.parseAsync(data), +export const fctAttestationVoteCorrectnessByValidatorHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponses, + FctAttestationVoteCorrectnessByValidatorHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctAttestationVoteCorrectnessByValidatorHourlyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_attestation_vote_correctness_by_validator_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const fctAttestationVoteCorrectnessByValidatorHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctAttestationVoteCorrectnessByValidatorHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse.parseAsync(data), +export const fctAttestationVoteCorrectnessByValidatorHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponses, + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctAttestationVoteCorrectnessByValidatorHourlyServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_attestation_vote_correctness_by_validator_hourly/{validator_index}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlobCountDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlobCountDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlobCountDailyServiceListResponse.parseAsync(data), +export const fctBlobCountDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlobCountDailyServiceListResponses, + FctBlobCountDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlobCountDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlobCountDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_blob_count_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctBlobCountDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlobCountDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlobCountDailyServiceGetResponse.parseAsync(data), - url: '/api/v1/fct_blob_count_daily/{day_start_date}', - ...options -}); +export const fctBlobCountDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get( + { + requestValidator: async data => await zFctBlobCountDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlobCountDailyServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_blob_count_daily/{day_start_date}', + ...options, + } + ); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlobCountHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlobCountHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlobCountHourlyServiceListResponse.parseAsync(data), +export const fctBlobCountHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlobCountHourlyServiceListResponses, + FctBlobCountHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlobCountHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlobCountHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_blob_count_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctBlobCountHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlobCountHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlobCountHourlyServiceGetResponse.parseAsync(data), +export const fctBlobCountHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlobCountHourlyServiceGetResponses, + FctBlobCountHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlobCountHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlobCountHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_blob_count_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockServiceListResponse.parseAsync(data), +export const fctBlockServiceList = ( + options?: Options +) => + (options?.client ?? client).get({ + requestValidator: async data => await zFctBlockServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockServiceListResponse.parseAsync(data), url: '/api/v1/fct_block', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockServiceGetResponse.parseAsync(data), +export const fctBlockServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zFctBlockServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockBlobCountServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockBlobCountServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockBlobCountServiceListResponse.parseAsync(data), +export const fctBlockBlobCountServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockBlobCountServiceListResponses, + FctBlockBlobCountServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockBlobCountServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockBlobCountServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_blob_count', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockBlobCountServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockBlobCountServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockBlobCountServiceGetResponse.parseAsync(data), - url: '/api/v1/fct_block_blob_count/{slot_start_date_time}', - ...options -}); +export const fctBlockBlobCountServiceGet = ( + options: Options +) => + (options.client ?? client).get( + { + requestValidator: async data => await zFctBlockBlobCountServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockBlobCountServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_block_blob_count/{slot_start_date_time}', + ...options, + } + ); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockBlobCountHeadServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockBlobCountHeadServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockBlobCountHeadServiceListResponse.parseAsync(data), +export const fctBlockBlobCountHeadServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockBlobCountHeadServiceListResponses, + FctBlockBlobCountHeadServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockBlobCountHeadServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockBlobCountHeadServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_blob_count_head', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockBlobCountHeadServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockBlobCountHeadServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockBlobCountHeadServiceGetResponse.parseAsync(data), +export const fctBlockBlobCountHeadServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockBlobCountHeadServiceGetResponses, + FctBlockBlobCountHeadServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockBlobCountHeadServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockBlobCountHeadServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_blob_count_head/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockBlobFirstSeenByNodeServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockBlobFirstSeenByNodeServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockBlobFirstSeenByNodeServiceListResponse.parseAsync(data), +export const fctBlockBlobFirstSeenByNodeServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockBlobFirstSeenByNodeServiceListResponses, + FctBlockBlobFirstSeenByNodeServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockBlobFirstSeenByNodeServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockBlobFirstSeenByNodeServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_blob_first_seen_by_node', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockBlobFirstSeenByNodeServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockBlobFirstSeenByNodeServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockBlobFirstSeenByNodeServiceGetResponse.parseAsync(data), +export const fctBlockBlobFirstSeenByNodeServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockBlobFirstSeenByNodeServiceGetResponses, + FctBlockBlobFirstSeenByNodeServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockBlobFirstSeenByNodeServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockBlobFirstSeenByNodeServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_blob_first_seen_by_node/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockBlobHeadServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockBlobHeadServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockBlobHeadServiceListResponse.parseAsync(data), +export const fctBlockBlobHeadServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockBlobHeadServiceListResponses, + FctBlockBlobHeadServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockBlobHeadServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockBlobHeadServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_blob_head', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockBlobHeadServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockBlobHeadServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockBlobHeadServiceGetResponse.parseAsync(data), +export const fctBlockBlobHeadServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zFctBlockBlobHeadServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockBlobHeadServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_blob_head/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockDataColumnSidecarFirstSeenServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockDataColumnSidecarFirstSeenServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockDataColumnSidecarFirstSeenServiceListResponse.parseAsync(data), +export const fctBlockDataColumnSidecarFirstSeenServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockDataColumnSidecarFirstSeenServiceListResponses, + FctBlockDataColumnSidecarFirstSeenServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockDataColumnSidecarFirstSeenServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockDataColumnSidecarFirstSeenServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_data_column_sidecar_first_seen', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockDataColumnSidecarFirstSeenServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockDataColumnSidecarFirstSeenServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockDataColumnSidecarFirstSeenServiceGetResponse.parseAsync(data), +export const fctBlockDataColumnSidecarFirstSeenServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockDataColumnSidecarFirstSeenServiceGetResponses, + FctBlockDataColumnSidecarFirstSeenServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockDataColumnSidecarFirstSeenServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockDataColumnSidecarFirstSeenServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_data_column_sidecar_first_seen/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockDataColumnSidecarFirstSeenByNodeServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockDataColumnSidecarFirstSeenByNodeServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse.parseAsync(data), +export const fctBlockDataColumnSidecarFirstSeenByNodeServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponses, + FctBlockDataColumnSidecarFirstSeenByNodeServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockDataColumnSidecarFirstSeenByNodeServiceListData.parseAsync(data), + responseValidator: async data => + await zFctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_data_column_sidecar_first_seen_by_node', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockDataColumnSidecarFirstSeenByNodeServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockDataColumnSidecarFirstSeenByNodeServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse.parseAsync(data), +export const fctBlockDataColumnSidecarFirstSeenByNodeServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponses, + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockDataColumnSidecarFirstSeenByNodeServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_data_column_sidecar_first_seen_by_node/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockFirstSeenByNodeServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockFirstSeenByNodeServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockFirstSeenByNodeServiceListResponse.parseAsync(data), +export const fctBlockFirstSeenByNodeServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockFirstSeenByNodeServiceListResponses, + FctBlockFirstSeenByNodeServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockFirstSeenByNodeServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockFirstSeenByNodeServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_first_seen_by_node', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockFirstSeenByNodeServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockFirstSeenByNodeServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockFirstSeenByNodeServiceGetResponse.parseAsync(data), +export const fctBlockFirstSeenByNodeServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockFirstSeenByNodeServiceGetResponses, + FctBlockFirstSeenByNodeServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockFirstSeenByNodeServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockFirstSeenByNodeServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_first_seen_by_node/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockHeadServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockHeadServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockHeadServiceListResponse.parseAsync(data), +export const fctBlockHeadServiceList = ( + options?: Options +) => + (options?.client ?? client).get({ + requestValidator: async data => await zFctBlockHeadServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockHeadServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_head', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockHeadServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockHeadServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockHeadServiceGetResponse.parseAsync(data), +export const fctBlockHeadServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zFctBlockHeadServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockHeadServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_head/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockMevServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockMevServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockMevServiceListResponse.parseAsync(data), +export const fctBlockMevServiceList = ( + options?: Options +) => + (options?.client ?? client).get({ + requestValidator: async data => await zFctBlockMevServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockMevServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_mev', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockMevServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockMevServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockMevServiceGetResponse.parseAsync(data), +export const fctBlockMevServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zFctBlockMevServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockMevServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_mev/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockMevHeadServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockMevHeadServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockMevHeadServiceListResponse.parseAsync(data), +export const fctBlockMevHeadServiceList = ( + options?: Options +) => + (options?.client ?? client).get({ + requestValidator: async data => await zFctBlockMevHeadServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockMevHeadServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_mev_head', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockMevHeadServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockMevHeadServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockMevHeadServiceGetResponse.parseAsync(data), +export const fctBlockMevHeadServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zFctBlockMevHeadServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockMevHeadServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_mev_head/{slot_start_date_time}', - ...options -}); + ...options, + }); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockPayloadAvailableByNodeServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockPayloadAvailableByNodeServiceListResponses, + FctBlockPayloadAvailableByNodeServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockPayloadAvailableByNodeServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadAvailableByNodeServiceListResponse.parseAsync(data), + url: '/api/v1/fct_block_payload_available_by_node', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctBlockPayloadAvailableByNodeServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockPayloadAvailableByNodeServiceGetResponses, + FctBlockPayloadAvailableByNodeServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockPayloadAvailableByNodeServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadAvailableByNodeServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_block_payload_available_by_node/{slot_start_date_time}', + ...options, + }); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockPayloadBidServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockPayloadBidServiceListResponses, + FctBlockPayloadBidServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockPayloadBidServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadBidServiceListResponse.parseAsync(data), + url: '/api/v1/fct_block_payload_bid', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctBlockPayloadBidServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockPayloadBidServiceGetResponses, + FctBlockPayloadBidServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockPayloadBidServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadBidServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_block_payload_bid/{slot_start_date_time}', + ...options, + }); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockPayloadFirstSeenByNodeServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockPayloadFirstSeenByNodeServiceListResponses, + FctBlockPayloadFirstSeenByNodeServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockPayloadFirstSeenByNodeServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadFirstSeenByNodeServiceListResponse.parseAsync(data), + url: '/api/v1/fct_block_payload_first_seen_by_node', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctBlockPayloadFirstSeenByNodeServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockPayloadFirstSeenByNodeServiceGetResponses, + FctBlockPayloadFirstSeenByNodeServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockPayloadFirstSeenByNodeServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadFirstSeenByNodeServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_block_payload_first_seen_by_node/{slot_start_date_time}', + ...options, + }); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockPayloadPtcVoteServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockPayloadPtcVoteServiceListResponses, + FctBlockPayloadPtcVoteServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockPayloadPtcVoteServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadPtcVoteServiceListResponse.parseAsync(data), + url: '/api/v1/fct_block_payload_ptc_vote', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctBlockPayloadPtcVoteServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockPayloadPtcVoteServiceGetResponses, + FctBlockPayloadPtcVoteServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockPayloadPtcVoteServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadPtcVoteServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_block_payload_ptc_vote/{slot_start_date_time}', + ...options, + }); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockPayloadPtcVoteHeadServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockPayloadPtcVoteHeadServiceListResponses, + FctBlockPayloadPtcVoteHeadServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockPayloadPtcVoteHeadServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadPtcVoteHeadServiceListResponse.parseAsync(data), + url: '/api/v1/fct_block_payload_ptc_vote_head', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctBlockPayloadPtcVoteHeadServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockPayloadPtcVoteHeadServiceGetResponses, + FctBlockPayloadPtcVoteHeadServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockPayloadPtcVoteHeadServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadPtcVoteHeadServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_block_payload_ptc_vote_head/{slot_start_date_time}', + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockProposalStatusDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockProposalStatusDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockProposalStatusDailyServiceListResponse.parseAsync(data), +export const fctBlockProposalStatusDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockProposalStatusDailyServiceListResponses, + FctBlockProposalStatusDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockProposalStatusDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockProposalStatusDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_proposal_status_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctBlockProposalStatusDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockProposalStatusDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockProposalStatusDailyServiceGetResponse.parseAsync(data), +export const fctBlockProposalStatusDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockProposalStatusDailyServiceGetResponses, + FctBlockProposalStatusDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockProposalStatusDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockProposalStatusDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_proposal_status_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockProposalStatusHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockProposalStatusHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockProposalStatusHourlyServiceListResponse.parseAsync(data), +export const fctBlockProposalStatusHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockProposalStatusHourlyServiceListResponses, + FctBlockProposalStatusHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockProposalStatusHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockProposalStatusHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_proposal_status_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctBlockProposalStatusHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockProposalStatusHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockProposalStatusHourlyServiceGetResponse.parseAsync(data), +export const fctBlockProposalStatusHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockProposalStatusHourlyServiceGetResponses, + FctBlockProposalStatusHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockProposalStatusHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockProposalStatusHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_proposal_status_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockProposerServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockProposerServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockProposerServiceListResponse.parseAsync(data), +export const fctBlockProposerServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockProposerServiceListResponses, + FctBlockProposerServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockProposerServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockProposerServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_proposer', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockProposerServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockProposerServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockProposerServiceGetResponse.parseAsync(data), +export const fctBlockProposerServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zFctBlockProposerServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockProposerServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_proposer/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockProposerByValidatorServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockProposerByValidatorServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockProposerByValidatorServiceListResponse.parseAsync(data), +export const fctBlockProposerByValidatorServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockProposerByValidatorServiceListResponses, + FctBlockProposerByValidatorServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockProposerByValidatorServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockProposerByValidatorServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_proposer_by_validator', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const fctBlockProposerByValidatorServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockProposerByValidatorServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockProposerByValidatorServiceGetResponse.parseAsync(data), +export const fctBlockProposerByValidatorServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockProposerByValidatorServiceGetResponses, + FctBlockProposerByValidatorServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockProposerByValidatorServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockProposerByValidatorServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_proposer_by_validator/{validator_index}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockProposerEntityServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockProposerEntityServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockProposerEntityServiceListResponse.parseAsync(data), +export const fctBlockProposerEntityServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockProposerEntityServiceListResponses, + FctBlockProposerEntityServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockProposerEntityServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockProposerEntityServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_proposer_entity', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockProposerEntityServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockProposerEntityServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockProposerEntityServiceGetResponse.parseAsync(data), +export const fctBlockProposerEntityServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockProposerEntityServiceGetResponses, + FctBlockProposerEntityServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockProposerEntityServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockProposerEntityServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_proposer_entity/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctBlockProposerHeadServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctBlockProposerHeadServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctBlockProposerHeadServiceListResponse.parseAsync(data), +export const fctBlockProposerHeadServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockProposerHeadServiceListResponses, + FctBlockProposerHeadServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockProposerHeadServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockProposerHeadServiceListResponse.parseAsync(data), url: '/api/v1/fct_block_proposer_head', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctBlockProposerHeadServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctBlockProposerHeadServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctBlockProposerHeadServiceGetResponse.parseAsync(data), +export const fctBlockProposerHeadServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockProposerHeadServiceGetResponses, + FctBlockProposerHeadServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockProposerHeadServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockProposerHeadServiceGetResponse.parseAsync(data), url: '/api/v1/fct_block_proposer_head/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateByAddressDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateByAddressDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateByAddressDailyServiceListResponse.parseAsync(data), +export const fctContractStorageStateByAddressDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctContractStorageStateByAddressDailyServiceListResponses, + FctContractStorageStateByAddressDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctContractStorageStateByAddressDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctContractStorageStateByAddressDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_by_address_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const fctContractStorageStateByAddressDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateByAddressDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateByAddressDailyServiceGetResponse.parseAsync(data), +export const fctContractStorageStateByAddressDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctContractStorageStateByAddressDailyServiceGetResponses, + FctContractStorageStateByAddressDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctContractStorageStateByAddressDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctContractStorageStateByAddressDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_by_address_daily/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateByAddressHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateByAddressHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateByAddressHourlyServiceListResponse.parseAsync(data), +export const fctContractStorageStateByAddressHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctContractStorageStateByAddressHourlyServiceListResponses, + FctContractStorageStateByAddressHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctContractStorageStateByAddressHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctContractStorageStateByAddressHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_by_address_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const fctContractStorageStateByAddressHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateByAddressHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateByAddressHourlyServiceGetResponse.parseAsync(data), +export const fctContractStorageStateByAddressHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctContractStorageStateByAddressHourlyServiceGetResponses, + FctContractStorageStateByAddressHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctContractStorageStateByAddressHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctContractStorageStateByAddressHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_by_address_hourly/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateByBlockDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateByBlockDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateByBlockDailyServiceListResponse.parseAsync(data), +export const fctContractStorageStateByBlockDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctContractStorageStateByBlockDailyServiceListResponses, + FctContractStorageStateByBlockDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctContractStorageStateByBlockDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctContractStorageStateByBlockDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_by_block_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctContractStorageStateByBlockDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateByBlockDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateByBlockDailyServiceGetResponse.parseAsync(data), +export const fctContractStorageStateByBlockDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctContractStorageStateByBlockDailyServiceGetResponses, + FctContractStorageStateByBlockDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctContractStorageStateByBlockDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctContractStorageStateByBlockDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_by_block_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateByBlockHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateByBlockHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateByBlockHourlyServiceListResponse.parseAsync(data), +export const fctContractStorageStateByBlockHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctContractStorageStateByBlockHourlyServiceListResponses, + FctContractStorageStateByBlockHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctContractStorageStateByBlockHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctContractStorageStateByBlockHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_by_block_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctContractStorageStateByBlockHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateByBlockHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateByBlockHourlyServiceGetResponse.parseAsync(data), +export const fctContractStorageStateByBlockHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctContractStorageStateByBlockHourlyServiceGetResponses, + FctContractStorageStateByBlockHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctContractStorageStateByBlockHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctContractStorageStateByBlockHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_by_block_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateWithExpiryByAddressDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateWithExpiryByAddressDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateWithExpiryByAddressDailyServiceListResponse.parseAsync(data), +export const fctContractStorageStateWithExpiryByAddressDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctContractStorageStateWithExpiryByAddressDailyServiceListResponses, + FctContractStorageStateWithExpiryByAddressDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctContractStorageStateWithExpiryByAddressDailyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctContractStorageStateWithExpiryByAddressDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_with_expiry_by_address_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const fctContractStorageStateWithExpiryByAddressDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateWithExpiryByAddressDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateWithExpiryByAddressDailyServiceGetResponse.parseAsync(data), +export const fctContractStorageStateWithExpiryByAddressDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctContractStorageStateWithExpiryByAddressDailyServiceGetResponses, + FctContractStorageStateWithExpiryByAddressDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctContractStorageStateWithExpiryByAddressDailyServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctContractStorageStateWithExpiryByAddressDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_with_expiry_by_address_daily/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateWithExpiryByAddressHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateWithExpiryByAddressHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateWithExpiryByAddressHourlyServiceListResponse.parseAsync(data), +export const fctContractStorageStateWithExpiryByAddressHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctContractStorageStateWithExpiryByAddressHourlyServiceListResponses, + FctContractStorageStateWithExpiryByAddressHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctContractStorageStateWithExpiryByAddressHourlyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctContractStorageStateWithExpiryByAddressHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_with_expiry_by_address_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const fctContractStorageStateWithExpiryByAddressHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateWithExpiryByAddressHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse.parseAsync(data), +export const fctContractStorageStateWithExpiryByAddressHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponses, + FctContractStorageStateWithExpiryByAddressHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctContractStorageStateWithExpiryByAddressHourlyServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_with_expiry_by_address_hourly/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateWithExpiryByBlockDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateWithExpiryByBlockDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateWithExpiryByBlockDailyServiceListResponse.parseAsync(data), +export const fctContractStorageStateWithExpiryByBlockDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctContractStorageStateWithExpiryByBlockDailyServiceListResponses, + FctContractStorageStateWithExpiryByBlockDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctContractStorageStateWithExpiryByBlockDailyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctContractStorageStateWithExpiryByBlockDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_with_expiry_by_block_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by expiry_policy */ -export const fctContractStorageStateWithExpiryByBlockDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateWithExpiryByBlockDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateWithExpiryByBlockDailyServiceGetResponse.parseAsync(data), +export const fctContractStorageStateWithExpiryByBlockDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctContractStorageStateWithExpiryByBlockDailyServiceGetResponses, + FctContractStorageStateWithExpiryByBlockDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctContractStorageStateWithExpiryByBlockDailyServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctContractStorageStateWithExpiryByBlockDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_with_expiry_by_block_daily/{expiry_policy}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctContractStorageStateWithExpiryByBlockHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateWithExpiryByBlockHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateWithExpiryByBlockHourlyServiceListResponse.parseAsync(data), +export const fctContractStorageStateWithExpiryByBlockHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctContractStorageStateWithExpiryByBlockHourlyServiceListResponses, + FctContractStorageStateWithExpiryByBlockHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctContractStorageStateWithExpiryByBlockHourlyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctContractStorageStateWithExpiryByBlockHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_with_expiry_by_block_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by expiry_policy */ -export const fctContractStorageStateWithExpiryByBlockHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctContractStorageStateWithExpiryByBlockHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse.parseAsync(data), +export const fctContractStorageStateWithExpiryByBlockHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponses, + FctContractStorageStateWithExpiryByBlockHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctContractStorageStateWithExpiryByBlockHourlyServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_contract_storage_state_with_expiry_by_block_hourly/{expiry_policy}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctDataColumnAvailabilityByEpochServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctDataColumnAvailabilityByEpochServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctDataColumnAvailabilityByEpochServiceListResponse.parseAsync(data), +export const fctDataColumnAvailabilityByEpochServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctDataColumnAvailabilityByEpochServiceListResponses, + FctDataColumnAvailabilityByEpochServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctDataColumnAvailabilityByEpochServiceListData.parseAsync(data), + responseValidator: async data => await zFctDataColumnAvailabilityByEpochServiceListResponse.parseAsync(data), url: '/api/v1/fct_data_column_availability_by_epoch', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by epoch_start_date_time */ -export const fctDataColumnAvailabilityByEpochServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctDataColumnAvailabilityByEpochServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctDataColumnAvailabilityByEpochServiceGetResponse.parseAsync(data), +export const fctDataColumnAvailabilityByEpochServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctDataColumnAvailabilityByEpochServiceGetResponses, + FctDataColumnAvailabilityByEpochServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctDataColumnAvailabilityByEpochServiceGetData.parseAsync(data), + responseValidator: async data => await zFctDataColumnAvailabilityByEpochServiceGetResponse.parseAsync(data), url: '/api/v1/fct_data_column_availability_by_epoch/{epoch_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctDataColumnAvailabilityBySlotServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctDataColumnAvailabilityBySlotServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctDataColumnAvailabilityBySlotServiceListResponse.parseAsync(data), +export const fctDataColumnAvailabilityBySlotServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctDataColumnAvailabilityBySlotServiceListResponses, + FctDataColumnAvailabilityBySlotServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctDataColumnAvailabilityBySlotServiceListData.parseAsync(data), + responseValidator: async data => await zFctDataColumnAvailabilityBySlotServiceListResponse.parseAsync(data), url: '/api/v1/fct_data_column_availability_by_slot', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctDataColumnAvailabilityBySlotServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctDataColumnAvailabilityBySlotServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctDataColumnAvailabilityBySlotServiceGetResponse.parseAsync(data), +export const fctDataColumnAvailabilityBySlotServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctDataColumnAvailabilityBySlotServiceGetResponses, + FctDataColumnAvailabilityBySlotServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctDataColumnAvailabilityBySlotServiceGetData.parseAsync(data), + responseValidator: async data => await zFctDataColumnAvailabilityBySlotServiceGetResponse.parseAsync(data), url: '/api/v1/fct_data_column_availability_by_slot/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctDataColumnAvailabilityBySlotBlobServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctDataColumnAvailabilityBySlotBlobServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctDataColumnAvailabilityBySlotBlobServiceListResponse.parseAsync(data), +export const fctDataColumnAvailabilityBySlotBlobServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctDataColumnAvailabilityBySlotBlobServiceListResponses, + FctDataColumnAvailabilityBySlotBlobServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctDataColumnAvailabilityBySlotBlobServiceListData.parseAsync(data), + responseValidator: async data => await zFctDataColumnAvailabilityBySlotBlobServiceListResponse.parseAsync(data), url: '/api/v1/fct_data_column_availability_by_slot_blob', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctDataColumnAvailabilityBySlotBlobServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctDataColumnAvailabilityBySlotBlobServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctDataColumnAvailabilityBySlotBlobServiceGetResponse.parseAsync(data), +export const fctDataColumnAvailabilityBySlotBlobServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctDataColumnAvailabilityBySlotBlobServiceGetResponses, + FctDataColumnAvailabilityBySlotBlobServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctDataColumnAvailabilityBySlotBlobServiceGetData.parseAsync(data), + responseValidator: async data => await zFctDataColumnAvailabilityBySlotBlobServiceGetResponse.parseAsync(data), url: '/api/v1/fct_data_column_availability_by_slot_blob/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctDataColumnAvailabilityDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctDataColumnAvailabilityDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctDataColumnAvailabilityDailyServiceListResponse.parseAsync(data), +export const fctDataColumnAvailabilityDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctDataColumnAvailabilityDailyServiceListResponses, + FctDataColumnAvailabilityDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctDataColumnAvailabilityDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctDataColumnAvailabilityDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_data_column_availability_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by date */ -export const fctDataColumnAvailabilityDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctDataColumnAvailabilityDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctDataColumnAvailabilityDailyServiceGetResponse.parseAsync(data), +export const fctDataColumnAvailabilityDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctDataColumnAvailabilityDailyServiceGetResponses, + FctDataColumnAvailabilityDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctDataColumnAvailabilityDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctDataColumnAvailabilityDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_data_column_availability_daily/{date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctDataColumnAvailabilityHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctDataColumnAvailabilityHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctDataColumnAvailabilityHourlyServiceListResponse.parseAsync(data), +export const fctDataColumnAvailabilityHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctDataColumnAvailabilityHourlyServiceListResponses, + FctDataColumnAvailabilityHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctDataColumnAvailabilityHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctDataColumnAvailabilityHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_data_column_availability_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctDataColumnAvailabilityHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctDataColumnAvailabilityHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctDataColumnAvailabilityHourlyServiceGetResponse.parseAsync(data), +export const fctDataColumnAvailabilityHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctDataColumnAvailabilityHourlyServiceGetResponses, + FctDataColumnAvailabilityHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctDataColumnAvailabilityHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctDataColumnAvailabilityHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_data_column_availability_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineGetBlobsByElClientServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctEngineGetBlobsByElClientServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctEngineGetBlobsByElClientServiceListResponse.parseAsync(data), +export const fctEngineGetBlobsByElClientServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctEngineGetBlobsByElClientServiceListResponses, + FctEngineGetBlobsByElClientServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineGetBlobsByElClientServiceListData.parseAsync(data), + responseValidator: async data => await zFctEngineGetBlobsByElClientServiceListResponse.parseAsync(data), url: '/api/v1/fct_engine_get_blobs_by_el_client', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctEngineGetBlobsByElClientServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctEngineGetBlobsByElClientServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctEngineGetBlobsByElClientServiceGetResponse.parseAsync(data), +export const fctEngineGetBlobsByElClientServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctEngineGetBlobsByElClientServiceGetResponses, + FctEngineGetBlobsByElClientServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineGetBlobsByElClientServiceGetData.parseAsync(data), + responseValidator: async data => await zFctEngineGetBlobsByElClientServiceGetResponse.parseAsync(data), url: '/api/v1/fct_engine_get_blobs_by_el_client/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineGetBlobsByElClientHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctEngineGetBlobsByElClientHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctEngineGetBlobsByElClientHourlyServiceListResponse.parseAsync(data), +export const fctEngineGetBlobsByElClientHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctEngineGetBlobsByElClientHourlyServiceListResponses, + FctEngineGetBlobsByElClientHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineGetBlobsByElClientHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctEngineGetBlobsByElClientHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_engine_get_blobs_by_el_client_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctEngineGetBlobsByElClientHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctEngineGetBlobsByElClientHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctEngineGetBlobsByElClientHourlyServiceGetResponse.parseAsync(data), +export const fctEngineGetBlobsByElClientHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctEngineGetBlobsByElClientHourlyServiceGetResponses, + FctEngineGetBlobsByElClientHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineGetBlobsByElClientHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctEngineGetBlobsByElClientHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_engine_get_blobs_by_el_client_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineGetBlobsBySlotServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctEngineGetBlobsBySlotServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctEngineGetBlobsBySlotServiceListResponse.parseAsync(data), +export const fctEngineGetBlobsBySlotServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctEngineGetBlobsBySlotServiceListResponses, + FctEngineGetBlobsBySlotServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineGetBlobsBySlotServiceListData.parseAsync(data), + responseValidator: async data => await zFctEngineGetBlobsBySlotServiceListResponse.parseAsync(data), url: '/api/v1/fct_engine_get_blobs_by_slot', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctEngineGetBlobsBySlotServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctEngineGetBlobsBySlotServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctEngineGetBlobsBySlotServiceGetResponse.parseAsync(data), +export const fctEngineGetBlobsBySlotServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctEngineGetBlobsBySlotServiceGetResponses, + FctEngineGetBlobsBySlotServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineGetBlobsBySlotServiceGetData.parseAsync(data), + responseValidator: async data => await zFctEngineGetBlobsBySlotServiceGetResponse.parseAsync(data), url: '/api/v1/fct_engine_get_blobs_by_slot/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineGetBlobsDurationChunked50MsServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctEngineGetBlobsDurationChunked50MsServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctEngineGetBlobsDurationChunked50MsServiceListResponse.parseAsync(data), +export const fctEngineGetBlobsDurationChunked50MsServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctEngineGetBlobsDurationChunked50MsServiceListResponses, + FctEngineGetBlobsDurationChunked50MsServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineGetBlobsDurationChunked50MsServiceListData.parseAsync(data), + responseValidator: async data => await zFctEngineGetBlobsDurationChunked50MsServiceListResponse.parseAsync(data), url: '/api/v1/fct_engine_get_blobs_duration_chunked_50ms', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctEngineGetBlobsDurationChunked50MsServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctEngineGetBlobsDurationChunked50MsServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctEngineGetBlobsDurationChunked50MsServiceGetResponse.parseAsync(data), +export const fctEngineGetBlobsDurationChunked50MsServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctEngineGetBlobsDurationChunked50MsServiceGetResponses, + FctEngineGetBlobsDurationChunked50MsServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineGetBlobsDurationChunked50MsServiceGetData.parseAsync(data), + responseValidator: async data => await zFctEngineGetBlobsDurationChunked50MsServiceGetResponse.parseAsync(data), url: '/api/v1/fct_engine_get_blobs_duration_chunked_50ms/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineNewPayloadByElClientServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctEngineNewPayloadByElClientServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctEngineNewPayloadByElClientServiceListResponse.parseAsync(data), +export const fctEngineNewPayloadByElClientServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctEngineNewPayloadByElClientServiceListResponses, + FctEngineNewPayloadByElClientServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineNewPayloadByElClientServiceListData.parseAsync(data), + responseValidator: async data => await zFctEngineNewPayloadByElClientServiceListResponse.parseAsync(data), url: '/api/v1/fct_engine_new_payload_by_el_client', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctEngineNewPayloadByElClientServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctEngineNewPayloadByElClientServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctEngineNewPayloadByElClientServiceGetResponse.parseAsync(data), +export const fctEngineNewPayloadByElClientServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctEngineNewPayloadByElClientServiceGetResponses, + FctEngineNewPayloadByElClientServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineNewPayloadByElClientServiceGetData.parseAsync(data), + responseValidator: async data => await zFctEngineNewPayloadByElClientServiceGetResponse.parseAsync(data), url: '/api/v1/fct_engine_new_payload_by_el_client/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineNewPayloadByElClientHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctEngineNewPayloadByElClientHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctEngineNewPayloadByElClientHourlyServiceListResponse.parseAsync(data), +export const fctEngineNewPayloadByElClientHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctEngineNewPayloadByElClientHourlyServiceListResponses, + FctEngineNewPayloadByElClientHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineNewPayloadByElClientHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctEngineNewPayloadByElClientHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_engine_new_payload_by_el_client_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctEngineNewPayloadByElClientHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctEngineNewPayloadByElClientHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctEngineNewPayloadByElClientHourlyServiceGetResponse.parseAsync(data), +export const fctEngineNewPayloadByElClientHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctEngineNewPayloadByElClientHourlyServiceGetResponses, + FctEngineNewPayloadByElClientHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineNewPayloadByElClientHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctEngineNewPayloadByElClientHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_engine_new_payload_by_el_client_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineNewPayloadBySlotServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctEngineNewPayloadBySlotServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctEngineNewPayloadBySlotServiceListResponse.parseAsync(data), +export const fctEngineNewPayloadBySlotServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctEngineNewPayloadBySlotServiceListResponses, + FctEngineNewPayloadBySlotServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineNewPayloadBySlotServiceListData.parseAsync(data), + responseValidator: async data => await zFctEngineNewPayloadBySlotServiceListResponse.parseAsync(data), url: '/api/v1/fct_engine_new_payload_by_slot', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctEngineNewPayloadBySlotServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctEngineNewPayloadBySlotServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctEngineNewPayloadBySlotServiceGetResponse.parseAsync(data), +export const fctEngineNewPayloadBySlotServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctEngineNewPayloadBySlotServiceGetResponses, + FctEngineNewPayloadBySlotServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineNewPayloadBySlotServiceGetData.parseAsync(data), + responseValidator: async data => await zFctEngineNewPayloadBySlotServiceGetResponse.parseAsync(data), url: '/api/v1/fct_engine_new_payload_by_slot/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineNewPayloadDurationChunked50MsServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctEngineNewPayloadDurationChunked50MsServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctEngineNewPayloadDurationChunked50MsServiceListResponse.parseAsync(data), +export const fctEngineNewPayloadDurationChunked50MsServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctEngineNewPayloadDurationChunked50MsServiceListResponses, + FctEngineNewPayloadDurationChunked50MsServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineNewPayloadDurationChunked50MsServiceListData.parseAsync(data), + responseValidator: async data => await zFctEngineNewPayloadDurationChunked50MsServiceListResponse.parseAsync(data), url: '/api/v1/fct_engine_new_payload_duration_chunked_50ms', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctEngineNewPayloadDurationChunked50MsServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctEngineNewPayloadDurationChunked50MsServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctEngineNewPayloadDurationChunked50MsServiceGetResponse.parseAsync(data), +export const fctEngineNewPayloadDurationChunked50MsServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctEngineNewPayloadDurationChunked50MsServiceGetResponses, + FctEngineNewPayloadDurationChunked50MsServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineNewPayloadDurationChunked50MsServiceGetData.parseAsync(data), + responseValidator: async data => await zFctEngineNewPayloadDurationChunked50MsServiceGetResponse.parseAsync(data), url: '/api/v1/fct_engine_new_payload_duration_chunked_50ms/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineNewPayloadWinrateDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctEngineNewPayloadWinrateDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctEngineNewPayloadWinrateDailyServiceListResponse.parseAsync(data), +export const fctEngineNewPayloadWinrateDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctEngineNewPayloadWinrateDailyServiceListResponses, + FctEngineNewPayloadWinrateDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineNewPayloadWinrateDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctEngineNewPayloadWinrateDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_engine_new_payload_winrate_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctEngineNewPayloadWinrateDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctEngineNewPayloadWinrateDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctEngineNewPayloadWinrateDailyServiceGetResponse.parseAsync(data), +export const fctEngineNewPayloadWinrateDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctEngineNewPayloadWinrateDailyServiceGetResponses, + FctEngineNewPayloadWinrateDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineNewPayloadWinrateDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctEngineNewPayloadWinrateDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_engine_new_payload_winrate_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctEngineNewPayloadWinrateHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctEngineNewPayloadWinrateHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctEngineNewPayloadWinrateHourlyServiceListResponse.parseAsync(data), +export const fctEngineNewPayloadWinrateHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctEngineNewPayloadWinrateHourlyServiceListResponses, + FctEngineNewPayloadWinrateHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineNewPayloadWinrateHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctEngineNewPayloadWinrateHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_engine_new_payload_winrate_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctEngineNewPayloadWinrateHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctEngineNewPayloadWinrateHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctEngineNewPayloadWinrateHourlyServiceGetResponse.parseAsync(data), +export const fctEngineNewPayloadWinrateHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctEngineNewPayloadWinrateHourlyServiceGetResponses, + FctEngineNewPayloadWinrateHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctEngineNewPayloadWinrateHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctEngineNewPayloadWinrateHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_engine_new_payload_winrate_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionGasLimitDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionGasLimitDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionGasLimitDailyServiceListResponse.parseAsync(data), +export const fctExecutionGasLimitDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionGasLimitDailyServiceListResponses, + FctExecutionGasLimitDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionGasLimitDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionGasLimitDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_gas_limit_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionGasLimitDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionGasLimitDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionGasLimitDailyServiceGetResponse.parseAsync(data), +export const fctExecutionGasLimitDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionGasLimitDailyServiceGetResponses, + FctExecutionGasLimitDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionGasLimitDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionGasLimitDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_gas_limit_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionGasLimitHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionGasLimitHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionGasLimitHourlyServiceListResponse.parseAsync(data), +export const fctExecutionGasLimitHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionGasLimitHourlyServiceListResponses, + FctExecutionGasLimitHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionGasLimitHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionGasLimitHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_gas_limit_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionGasLimitHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionGasLimitHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionGasLimitHourlyServiceGetResponse.parseAsync(data), +export const fctExecutionGasLimitHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionGasLimitHourlyServiceGetResponses, + FctExecutionGasLimitHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionGasLimitHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionGasLimitHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_gas_limit_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionGasLimitSignallingDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionGasLimitSignallingDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionGasLimitSignallingDailyServiceListResponse.parseAsync(data), +export const fctExecutionGasLimitSignallingDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionGasLimitSignallingDailyServiceListResponses, + FctExecutionGasLimitSignallingDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionGasLimitSignallingDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionGasLimitSignallingDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_gas_limit_signalling_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionGasLimitSignallingDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionGasLimitSignallingDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionGasLimitSignallingDailyServiceGetResponse.parseAsync(data), +export const fctExecutionGasLimitSignallingDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionGasLimitSignallingDailyServiceGetResponses, + FctExecutionGasLimitSignallingDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionGasLimitSignallingDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionGasLimitSignallingDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_gas_limit_signalling_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionGasLimitSignallingHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionGasLimitSignallingHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionGasLimitSignallingHourlyServiceListResponse.parseAsync(data), +export const fctExecutionGasLimitSignallingHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionGasLimitSignallingHourlyServiceListResponses, + FctExecutionGasLimitSignallingHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionGasLimitSignallingHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionGasLimitSignallingHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_gas_limit_signalling_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionGasLimitSignallingHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionGasLimitSignallingHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionGasLimitSignallingHourlyServiceGetResponse.parseAsync(data), +export const fctExecutionGasLimitSignallingHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionGasLimitSignallingHourlyServiceGetResponses, + FctExecutionGasLimitSignallingHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionGasLimitSignallingHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionGasLimitSignallingHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_gas_limit_signalling_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionGasUsedDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionGasUsedDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionGasUsedDailyServiceListResponse.parseAsync(data), +export const fctExecutionGasUsedDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionGasUsedDailyServiceListResponses, + FctExecutionGasUsedDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionGasUsedDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionGasUsedDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_gas_used_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionGasUsedDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionGasUsedDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionGasUsedDailyServiceGetResponse.parseAsync(data), +export const fctExecutionGasUsedDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionGasUsedDailyServiceGetResponses, + FctExecutionGasUsedDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionGasUsedDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionGasUsedDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_gas_used_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionGasUsedHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionGasUsedHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionGasUsedHourlyServiceListResponse.parseAsync(data), +export const fctExecutionGasUsedHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionGasUsedHourlyServiceListResponses, + FctExecutionGasUsedHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionGasUsedHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionGasUsedHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_gas_used_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionGasUsedHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionGasUsedHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionGasUsedHourlyServiceGetResponse.parseAsync(data), +export const fctExecutionGasUsedHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionGasUsedHourlyServiceGetResponses, + FctExecutionGasUsedHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionGasUsedHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionGasUsedHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_gas_used_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionReceiptSizeDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionReceiptSizeDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionReceiptSizeDailyServiceListResponse.parseAsync(data), +export const fctExecutionReceiptSizeDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionReceiptSizeDailyServiceListResponses, + FctExecutionReceiptSizeDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionReceiptSizeDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionReceiptSizeDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_receipt_size_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionReceiptSizeDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionReceiptSizeDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionReceiptSizeDailyServiceGetResponse.parseAsync(data), +export const fctExecutionReceiptSizeDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionReceiptSizeDailyServiceGetResponses, + FctExecutionReceiptSizeDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionReceiptSizeDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionReceiptSizeDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_receipt_size_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionReceiptSizeHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionReceiptSizeHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionReceiptSizeHourlyServiceListResponse.parseAsync(data), +export const fctExecutionReceiptSizeHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionReceiptSizeHourlyServiceListResponses, + FctExecutionReceiptSizeHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionReceiptSizeHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionReceiptSizeHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_receipt_size_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionReceiptSizeHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionReceiptSizeHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionReceiptSizeHourlyServiceGetResponse.parseAsync(data), +export const fctExecutionReceiptSizeHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionReceiptSizeHourlyServiceGetResponses, + FctExecutionReceiptSizeHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionReceiptSizeHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionReceiptSizeHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_receipt_size_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionStateSizeDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionStateSizeDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionStateSizeDailyServiceListResponse.parseAsync(data), +export const fctExecutionStateSizeDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionStateSizeDailyServiceListResponses, + FctExecutionStateSizeDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionStateSizeDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionStateSizeDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_state_size_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionStateSizeDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionStateSizeDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionStateSizeDailyServiceGetResponse.parseAsync(data), +export const fctExecutionStateSizeDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionStateSizeDailyServiceGetResponses, + FctExecutionStateSizeDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionStateSizeDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionStateSizeDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_state_size_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionStateSizeHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionStateSizeHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionStateSizeHourlyServiceListResponse.parseAsync(data), +export const fctExecutionStateSizeHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionStateSizeHourlyServiceListResponses, + FctExecutionStateSizeHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionStateSizeHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionStateSizeHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_state_size_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionStateSizeHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionStateSizeHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionStateSizeHourlyServiceGetResponse.parseAsync(data), +export const fctExecutionStateSizeHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionStateSizeHourlyServiceGetResponses, + FctExecutionStateSizeHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionStateSizeHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionStateSizeHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_state_size_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionTpsDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionTpsDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionTpsDailyServiceListResponse.parseAsync(data), +export const fctExecutionTpsDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionTpsDailyServiceListResponses, + FctExecutionTpsDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionTpsDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionTpsDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_tps_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionTpsDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionTpsDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionTpsDailyServiceGetResponse.parseAsync(data), +export const fctExecutionTpsDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionTpsDailyServiceGetResponses, + FctExecutionTpsDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionTpsDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionTpsDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_tps_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionTpsHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionTpsHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionTpsHourlyServiceListResponse.parseAsync(data), +export const fctExecutionTpsHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionTpsHourlyServiceListResponses, + FctExecutionTpsHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionTpsHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionTpsHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_tps_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionTpsHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionTpsHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionTpsHourlyServiceGetResponse.parseAsync(data), +export const fctExecutionTpsHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionTpsHourlyServiceGetResponses, + FctExecutionTpsHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionTpsHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionTpsHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_tps_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionTransactionsDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionTransactionsDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionTransactionsDailyServiceListResponse.parseAsync(data), +export const fctExecutionTransactionsDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionTransactionsDailyServiceListResponses, + FctExecutionTransactionsDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionTransactionsDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionTransactionsDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_transactions_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctExecutionTransactionsDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionTransactionsDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionTransactionsDailyServiceGetResponse.parseAsync(data), +export const fctExecutionTransactionsDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionTransactionsDailyServiceGetResponses, + FctExecutionTransactionsDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionTransactionsDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionTransactionsDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_transactions_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctExecutionTransactionsHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionTransactionsHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionTransactionsHourlyServiceListResponse.parseAsync(data), +export const fctExecutionTransactionsHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctExecutionTransactionsHourlyServiceListResponses, + FctExecutionTransactionsHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionTransactionsHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctExecutionTransactionsHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_execution_transactions_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctExecutionTransactionsHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctExecutionTransactionsHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctExecutionTransactionsHourlyServiceGetResponse.parseAsync(data), +export const fctExecutionTransactionsHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctExecutionTransactionsHourlyServiceGetResponses, + FctExecutionTransactionsHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctExecutionTransactionsHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctExecutionTransactionsHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_execution_transactions_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctHeadFirstSeenByNodeServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctHeadFirstSeenByNodeServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctHeadFirstSeenByNodeServiceListResponse.parseAsync(data), +export const fctHeadFirstSeenByNodeServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctHeadFirstSeenByNodeServiceListResponses, + FctHeadFirstSeenByNodeServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctHeadFirstSeenByNodeServiceListData.parseAsync(data), + responseValidator: async data => await zFctHeadFirstSeenByNodeServiceListResponse.parseAsync(data), url: '/api/v1/fct_head_first_seen_by_node', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctHeadFirstSeenByNodeServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctHeadFirstSeenByNodeServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctHeadFirstSeenByNodeServiceGetResponse.parseAsync(data), +export const fctHeadFirstSeenByNodeServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctHeadFirstSeenByNodeServiceGetResponses, + FctHeadFirstSeenByNodeServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctHeadFirstSeenByNodeServiceGetData.parseAsync(data), + responseValidator: async data => await zFctHeadFirstSeenByNodeServiceGetResponse.parseAsync(data), url: '/api/v1/fct_head_first_seen_by_node/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctHeadVoteCorrectnessRateDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctHeadVoteCorrectnessRateDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctHeadVoteCorrectnessRateDailyServiceListResponse.parseAsync(data), +export const fctHeadVoteCorrectnessRateDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctHeadVoteCorrectnessRateDailyServiceListResponses, + FctHeadVoteCorrectnessRateDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctHeadVoteCorrectnessRateDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctHeadVoteCorrectnessRateDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_head_vote_correctness_rate_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctHeadVoteCorrectnessRateDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctHeadVoteCorrectnessRateDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctHeadVoteCorrectnessRateDailyServiceGetResponse.parseAsync(data), +export const fctHeadVoteCorrectnessRateDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctHeadVoteCorrectnessRateDailyServiceGetResponses, + FctHeadVoteCorrectnessRateDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctHeadVoteCorrectnessRateDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctHeadVoteCorrectnessRateDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_head_vote_correctness_rate_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctHeadVoteCorrectnessRateHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctHeadVoteCorrectnessRateHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctHeadVoteCorrectnessRateHourlyServiceListResponse.parseAsync(data), +export const fctHeadVoteCorrectnessRateHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctHeadVoteCorrectnessRateHourlyServiceListResponses, + FctHeadVoteCorrectnessRateHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctHeadVoteCorrectnessRateHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctHeadVoteCorrectnessRateHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_head_vote_correctness_rate_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctHeadVoteCorrectnessRateHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctHeadVoteCorrectnessRateHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctHeadVoteCorrectnessRateHourlyServiceGetResponse.parseAsync(data), +export const fctHeadVoteCorrectnessRateHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctHeadVoteCorrectnessRateHourlyServiceGetResponses, + FctHeadVoteCorrectnessRateHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctHeadVoteCorrectnessRateHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctHeadVoteCorrectnessRateHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_head_vote_correctness_rate_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctMevBidCountByBuilderServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctMevBidCountByBuilderServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctMevBidCountByBuilderServiceListResponse.parseAsync(data), +export const fctMevBidCountByBuilderServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctMevBidCountByBuilderServiceListResponses, + FctMevBidCountByBuilderServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctMevBidCountByBuilderServiceListData.parseAsync(data), + responseValidator: async data => await zFctMevBidCountByBuilderServiceListResponse.parseAsync(data), url: '/api/v1/fct_mev_bid_count_by_builder', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctMevBidCountByBuilderServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctMevBidCountByBuilderServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctMevBidCountByBuilderServiceGetResponse.parseAsync(data), +export const fctMevBidCountByBuilderServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctMevBidCountByBuilderServiceGetResponses, + FctMevBidCountByBuilderServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctMevBidCountByBuilderServiceGetData.parseAsync(data), + responseValidator: async data => await zFctMevBidCountByBuilderServiceGetResponse.parseAsync(data), url: '/api/v1/fct_mev_bid_count_by_builder/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctMevBidCountByRelayServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctMevBidCountByRelayServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctMevBidCountByRelayServiceListResponse.parseAsync(data), +export const fctMevBidCountByRelayServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctMevBidCountByRelayServiceListResponses, + FctMevBidCountByRelayServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctMevBidCountByRelayServiceListData.parseAsync(data), + responseValidator: async data => await zFctMevBidCountByRelayServiceListResponse.parseAsync(data), url: '/api/v1/fct_mev_bid_count_by_relay', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctMevBidCountByRelayServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctMevBidCountByRelayServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctMevBidCountByRelayServiceGetResponse.parseAsync(data), +export const fctMevBidCountByRelayServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctMevBidCountByRelayServiceGetResponses, + FctMevBidCountByRelayServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctMevBidCountByRelayServiceGetData.parseAsync(data), + responseValidator: async data => await zFctMevBidCountByRelayServiceGetResponse.parseAsync(data), url: '/api/v1/fct_mev_bid_count_by_relay/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctMevBidHighestValueByBuilderChunked50MsServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctMevBidHighestValueByBuilderChunked50MsServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctMevBidHighestValueByBuilderChunked50MsServiceListResponse.parseAsync(data), +export const fctMevBidHighestValueByBuilderChunked50MsServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctMevBidHighestValueByBuilderChunked50MsServiceListResponses, + FctMevBidHighestValueByBuilderChunked50MsServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctMevBidHighestValueByBuilderChunked50MsServiceListData.parseAsync(data), + responseValidator: async data => + await zFctMevBidHighestValueByBuilderChunked50MsServiceListResponse.parseAsync(data), url: '/api/v1/fct_mev_bid_highest_value_by_builder_chunked_50ms', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctMevBidHighestValueByBuilderChunked50MsServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctMevBidHighestValueByBuilderChunked50MsServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctMevBidHighestValueByBuilderChunked50MsServiceGetResponse.parseAsync(data), +export const fctMevBidHighestValueByBuilderChunked50MsServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctMevBidHighestValueByBuilderChunked50MsServiceGetResponses, + FctMevBidHighestValueByBuilderChunked50MsServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctMevBidHighestValueByBuilderChunked50MsServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctMevBidHighestValueByBuilderChunked50MsServiceGetResponse.parseAsync(data), url: '/api/v1/fct_mev_bid_highest_value_by_builder_chunked_50ms/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctMissedSlotRateDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctMissedSlotRateDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctMissedSlotRateDailyServiceListResponse.parseAsync(data), +export const fctMissedSlotRateDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctMissedSlotRateDailyServiceListResponses, + FctMissedSlotRateDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctMissedSlotRateDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctMissedSlotRateDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_missed_slot_rate_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctMissedSlotRateDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctMissedSlotRateDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctMissedSlotRateDailyServiceGetResponse.parseAsync(data), +export const fctMissedSlotRateDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctMissedSlotRateDailyServiceGetResponses, + FctMissedSlotRateDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctMissedSlotRateDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctMissedSlotRateDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_missed_slot_rate_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctMissedSlotRateHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctMissedSlotRateHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctMissedSlotRateHourlyServiceListResponse.parseAsync(data), +export const fctMissedSlotRateHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctMissedSlotRateHourlyServiceListResponses, + FctMissedSlotRateHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctMissedSlotRateHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctMissedSlotRateHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_missed_slot_rate_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctMissedSlotRateHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctMissedSlotRateHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctMissedSlotRateHourlyServiceGetResponse.parseAsync(data), +export const fctMissedSlotRateHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctMissedSlotRateHourlyServiceGetResponses, + FctMissedSlotRateHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctMissedSlotRateHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctMissedSlotRateHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_missed_slot_rate_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctNodeActiveLast24hServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctNodeActiveLast24hServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctNodeActiveLast24hServiceListResponse.parseAsync(data), +export const fctNodeActiveLast24hServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctNodeActiveLast24hServiceListResponses, + FctNodeActiveLast24hServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctNodeActiveLast24hServiceListData.parseAsync(data), + responseValidator: async data => await zFctNodeActiveLast24hServiceListResponse.parseAsync(data), url: '/api/v1/fct_node_active_last_24h', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by meta_client_name */ -export const fctNodeActiveLast24hServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctNodeActiveLast24hServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctNodeActiveLast24hServiceGetResponse.parseAsync(data), +export const fctNodeActiveLast24hServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctNodeActiveLast24hServiceGetResponses, + FctNodeActiveLast24hServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctNodeActiveLast24hServiceGetData.parseAsync(data), + responseValidator: async data => await zFctNodeActiveLast24hServiceGetResponse.parseAsync(data), url: '/api/v1/fct_node_active_last_24h/{meta_client_name}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctNodeCpuUtilizationByProcessServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctNodeCpuUtilizationByProcessServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctNodeCpuUtilizationByProcessServiceListResponse.parseAsync(data), +export const fctNodeCpuUtilizationByProcessServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctNodeCpuUtilizationByProcessServiceListResponses, + FctNodeCpuUtilizationByProcessServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctNodeCpuUtilizationByProcessServiceListData.parseAsync(data), + responseValidator: async data => await zFctNodeCpuUtilizationByProcessServiceListResponse.parseAsync(data), url: '/api/v1/fct_node_cpu_utilization_by_process', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by wallclock_slot_start_date_time */ -export const fctNodeCpuUtilizationByProcessServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctNodeCpuUtilizationByProcessServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctNodeCpuUtilizationByProcessServiceGetResponse.parseAsync(data), +export const fctNodeCpuUtilizationByProcessServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctNodeCpuUtilizationByProcessServiceGetResponses, + FctNodeCpuUtilizationByProcessServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctNodeCpuUtilizationByProcessServiceGetData.parseAsync(data), + responseValidator: async data => await zFctNodeCpuUtilizationByProcessServiceGetResponse.parseAsync(data), url: '/api/v1/fct_node_cpu_utilization_by_process/{wallclock_slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctNodeDiskIoByProcessServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctNodeDiskIoByProcessServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctNodeDiskIoByProcessServiceListResponse.parseAsync(data), +export const fctNodeDiskIoByProcessServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctNodeDiskIoByProcessServiceListResponses, + FctNodeDiskIoByProcessServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctNodeDiskIoByProcessServiceListData.parseAsync(data), + responseValidator: async data => await zFctNodeDiskIoByProcessServiceListResponse.parseAsync(data), url: '/api/v1/fct_node_disk_io_by_process', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by wallclock_slot_start_date_time */ -export const fctNodeDiskIoByProcessServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctNodeDiskIoByProcessServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctNodeDiskIoByProcessServiceGetResponse.parseAsync(data), +export const fctNodeDiskIoByProcessServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctNodeDiskIoByProcessServiceGetResponses, + FctNodeDiskIoByProcessServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctNodeDiskIoByProcessServiceGetData.parseAsync(data), + responseValidator: async data => await zFctNodeDiskIoByProcessServiceGetResponse.parseAsync(data), url: '/api/v1/fct_node_disk_io_by_process/{wallclock_slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctNodeMemoryUsageByProcessServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctNodeMemoryUsageByProcessServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctNodeMemoryUsageByProcessServiceListResponse.parseAsync(data), +export const fctNodeMemoryUsageByProcessServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctNodeMemoryUsageByProcessServiceListResponses, + FctNodeMemoryUsageByProcessServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctNodeMemoryUsageByProcessServiceListData.parseAsync(data), + responseValidator: async data => await zFctNodeMemoryUsageByProcessServiceListResponse.parseAsync(data), url: '/api/v1/fct_node_memory_usage_by_process', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by wallclock_slot_start_date_time */ -export const fctNodeMemoryUsageByProcessServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctNodeMemoryUsageByProcessServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctNodeMemoryUsageByProcessServiceGetResponse.parseAsync(data), +export const fctNodeMemoryUsageByProcessServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctNodeMemoryUsageByProcessServiceGetResponses, + FctNodeMemoryUsageByProcessServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctNodeMemoryUsageByProcessServiceGetData.parseAsync(data), + responseValidator: async data => await zFctNodeMemoryUsageByProcessServiceGetResponse.parseAsync(data), url: '/api/v1/fct_node_memory_usage_by_process/{wallclock_slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctNodeNetworkIoByProcessServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctNodeNetworkIoByProcessServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctNodeNetworkIoByProcessServiceListResponse.parseAsync(data), +export const fctNodeNetworkIoByProcessServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctNodeNetworkIoByProcessServiceListResponses, + FctNodeNetworkIoByProcessServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctNodeNetworkIoByProcessServiceListData.parseAsync(data), + responseValidator: async data => await zFctNodeNetworkIoByProcessServiceListResponse.parseAsync(data), url: '/api/v1/fct_node_network_io_by_process', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by wallclock_slot_start_date_time */ -export const fctNodeNetworkIoByProcessServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctNodeNetworkIoByProcessServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctNodeNetworkIoByProcessServiceGetResponse.parseAsync(data), +export const fctNodeNetworkIoByProcessServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctNodeNetworkIoByProcessServiceGetResponses, + FctNodeNetworkIoByProcessServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctNodeNetworkIoByProcessServiceGetData.parseAsync(data), + responseValidator: async data => await zFctNodeNetworkIoByProcessServiceGetResponse.parseAsync(data), url: '/api/v1/fct_node_network_io_by_process/{wallclock_slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctOpcodeGasByOpcodeDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctOpcodeGasByOpcodeDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctOpcodeGasByOpcodeDailyServiceListResponse.parseAsync(data), +export const fctOpcodeGasByOpcodeDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctOpcodeGasByOpcodeDailyServiceListResponses, + FctOpcodeGasByOpcodeDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctOpcodeGasByOpcodeDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctOpcodeGasByOpcodeDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_opcode_gas_by_opcode_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctOpcodeGasByOpcodeDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctOpcodeGasByOpcodeDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctOpcodeGasByOpcodeDailyServiceGetResponse.parseAsync(data), +export const fctOpcodeGasByOpcodeDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctOpcodeGasByOpcodeDailyServiceGetResponses, + FctOpcodeGasByOpcodeDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctOpcodeGasByOpcodeDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctOpcodeGasByOpcodeDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_opcode_gas_by_opcode_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctOpcodeGasByOpcodeHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctOpcodeGasByOpcodeHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctOpcodeGasByOpcodeHourlyServiceListResponse.parseAsync(data), +export const fctOpcodeGasByOpcodeHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctOpcodeGasByOpcodeHourlyServiceListResponses, + FctOpcodeGasByOpcodeHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctOpcodeGasByOpcodeHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctOpcodeGasByOpcodeHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_opcode_gas_by_opcode_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctOpcodeGasByOpcodeHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctOpcodeGasByOpcodeHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctOpcodeGasByOpcodeHourlyServiceGetResponse.parseAsync(data), +export const fctOpcodeGasByOpcodeHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctOpcodeGasByOpcodeHourlyServiceGetResponses, + FctOpcodeGasByOpcodeHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctOpcodeGasByOpcodeHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctOpcodeGasByOpcodeHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_opcode_gas_by_opcode_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctOpcodeOpsDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctOpcodeOpsDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctOpcodeOpsDailyServiceListResponse.parseAsync(data), +export const fctOpcodeOpsDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctOpcodeOpsDailyServiceListResponses, + FctOpcodeOpsDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctOpcodeOpsDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctOpcodeOpsDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_opcode_ops_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctOpcodeOpsDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctOpcodeOpsDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctOpcodeOpsDailyServiceGetResponse.parseAsync(data), - url: '/api/v1/fct_opcode_ops_daily/{day_start_date}', - ...options -}); +export const fctOpcodeOpsDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get( + { + requestValidator: async data => await zFctOpcodeOpsDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctOpcodeOpsDailyServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_opcode_ops_daily/{day_start_date}', + ...options, + } + ); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctOpcodeOpsHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctOpcodeOpsHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctOpcodeOpsHourlyServiceListResponse.parseAsync(data), +export const fctOpcodeOpsHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctOpcodeOpsHourlyServiceListResponses, + FctOpcodeOpsHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctOpcodeOpsHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctOpcodeOpsHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_opcode_ops_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctOpcodeOpsHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctOpcodeOpsHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctOpcodeOpsHourlyServiceGetResponse.parseAsync(data), +export const fctOpcodeOpsHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctOpcodeOpsHourlyServiceGetResponses, + FctOpcodeOpsHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctOpcodeOpsHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctOpcodeOpsHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_opcode_ops_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctPreparedBlockServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctPreparedBlockServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctPreparedBlockServiceListResponse.parseAsync(data), +export const fctPayloadBidHighestValueByBuilderChunked50MsServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponses, + FctPayloadBidHighestValueByBuilderChunked50MsServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctPayloadBidHighestValueByBuilderChunked50MsServiceListData.parseAsync(data), + responseValidator: async data => + await zFctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse.parseAsync(data), + url: '/api/v1/fct_payload_bid_highest_value_by_builder_chunked_50ms', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctPayloadBidHighestValueByBuilderChunked50MsServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponses, + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_payload_bid_highest_value_by_builder_chunked_50ms/{slot_start_date_time}', + ...options, + }); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctPreparedBlockServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctPreparedBlockServiceListResponses, + FctPreparedBlockServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctPreparedBlockServiceListData.parseAsync(data), + responseValidator: async data => await zFctPreparedBlockServiceListResponse.parseAsync(data), url: '/api/v1/fct_prepared_block', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const fctPreparedBlockServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctPreparedBlockServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctPreparedBlockServiceGetResponse.parseAsync(data), +export const fctPreparedBlockServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zFctPreparedBlockServiceGetData.parseAsync(data), + responseValidator: async data => await zFctPreparedBlockServiceGetResponse.parseAsync(data), url: '/api/v1/fct_prepared_block/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctProposerRewardDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctProposerRewardDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctProposerRewardDailyServiceListResponse.parseAsync(data), +export const fctProposerRewardDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctProposerRewardDailyServiceListResponses, + FctProposerRewardDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctProposerRewardDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctProposerRewardDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_proposer_reward_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctProposerRewardDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctProposerRewardDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctProposerRewardDailyServiceGetResponse.parseAsync(data), +export const fctProposerRewardDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctProposerRewardDailyServiceGetResponses, + FctProposerRewardDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctProposerRewardDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctProposerRewardDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_proposer_reward_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctProposerRewardHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctProposerRewardHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctProposerRewardHourlyServiceListResponse.parseAsync(data), +export const fctProposerRewardHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctProposerRewardHourlyServiceListResponses, + FctProposerRewardHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctProposerRewardHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctProposerRewardHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_proposer_reward_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctProposerRewardHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctProposerRewardHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctProposerRewardHourlyServiceGetResponse.parseAsync(data), +export const fctProposerRewardHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctProposerRewardHourlyServiceGetResponses, + FctProposerRewardHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctProposerRewardHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctProposerRewardHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_proposer_reward_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctReorgDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctReorgDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctReorgDailyServiceListResponse.parseAsync(data), +export const fctReorgDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get({ + requestValidator: async data => await zFctReorgDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctReorgDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_reorg_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctReorgDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctReorgDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctReorgDailyServiceGetResponse.parseAsync(data), +export const fctReorgDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zFctReorgDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctReorgDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_reorg_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctReorgHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctReorgHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctReorgHourlyServiceListResponse.parseAsync(data), +export const fctReorgHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get({ + requestValidator: async data => await zFctReorgHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctReorgHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_reorg_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctReorgHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctReorgHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctReorgHourlyServiceGetResponse.parseAsync(data), +export const fctReorgHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zFctReorgHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctReorgHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_reorg_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctRocketpoolValidatorServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctRocketpoolValidatorServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctRocketpoolValidatorServiceListResponse.parseAsync(data), +export const fctRocketpoolValidatorServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctRocketpoolValidatorServiceListResponses, + FctRocketpoolValidatorServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctRocketpoolValidatorServiceListData.parseAsync(data), + responseValidator: async data => await zFctRocketpoolValidatorServiceListResponse.parseAsync(data), url: '/api/v1/fct_rocketpool_validator', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const fctRocketpoolValidatorServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctRocketpoolValidatorServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctRocketpoolValidatorServiceGetResponse.parseAsync(data), +export const fctRocketpoolValidatorServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctRocketpoolValidatorServiceGetResponses, + FctRocketpoolValidatorServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctRocketpoolValidatorServiceGetData.parseAsync(data), + responseValidator: async data => await zFctRocketpoolValidatorServiceGetResponse.parseAsync(data), url: '/api/v1/fct_rocketpool_validator/{validator_index}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateByAddressDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateByAddressDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateByAddressDailyServiceListResponse.parseAsync(data), +export const fctStorageSlotStateByAddressDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctStorageSlotStateByAddressDailyServiceListResponses, + FctStorageSlotStateByAddressDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateByAddressDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctStorageSlotStateByAddressDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_by_address_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const fctStorageSlotStateByAddressDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateByAddressDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateByAddressDailyServiceGetResponse.parseAsync(data), +export const fctStorageSlotStateByAddressDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctStorageSlotStateByAddressDailyServiceGetResponses, + FctStorageSlotStateByAddressDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateByAddressDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctStorageSlotStateByAddressDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_by_address_daily/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateByAddressHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateByAddressHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateByAddressHourlyServiceListResponse.parseAsync(data), +export const fctStorageSlotStateByAddressHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctStorageSlotStateByAddressHourlyServiceListResponses, + FctStorageSlotStateByAddressHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateByAddressHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctStorageSlotStateByAddressHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_by_address_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const fctStorageSlotStateByAddressHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateByAddressHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateByAddressHourlyServiceGetResponse.parseAsync(data), +export const fctStorageSlotStateByAddressHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctStorageSlotStateByAddressHourlyServiceGetResponses, + FctStorageSlotStateByAddressHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateByAddressHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctStorageSlotStateByAddressHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_by_address_hourly/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateByBlockDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateByBlockDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateByBlockDailyServiceListResponse.parseAsync(data), +export const fctStorageSlotStateByBlockDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctStorageSlotStateByBlockDailyServiceListResponses, + FctStorageSlotStateByBlockDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateByBlockDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctStorageSlotStateByBlockDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_by_block_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctStorageSlotStateByBlockDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateByBlockDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateByBlockDailyServiceGetResponse.parseAsync(data), +export const fctStorageSlotStateByBlockDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctStorageSlotStateByBlockDailyServiceGetResponses, + FctStorageSlotStateByBlockDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateByBlockDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctStorageSlotStateByBlockDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_by_block_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateByBlockHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateByBlockHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateByBlockHourlyServiceListResponse.parseAsync(data), +export const fctStorageSlotStateByBlockHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctStorageSlotStateByBlockHourlyServiceListResponses, + FctStorageSlotStateByBlockHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateByBlockHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctStorageSlotStateByBlockHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_by_block_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by hour_start_date_time */ -export const fctStorageSlotStateByBlockHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateByBlockHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateByBlockHourlyServiceGetResponse.parseAsync(data), +export const fctStorageSlotStateByBlockHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctStorageSlotStateByBlockHourlyServiceGetResponses, + FctStorageSlotStateByBlockHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateByBlockHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctStorageSlotStateByBlockHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_by_block_hourly/{hour_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateWithExpiryByAddressDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateWithExpiryByAddressDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateWithExpiryByAddressDailyServiceListResponse.parseAsync(data), +export const fctStorageSlotStateWithExpiryByAddressDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctStorageSlotStateWithExpiryByAddressDailyServiceListResponses, + FctStorageSlotStateWithExpiryByAddressDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateWithExpiryByAddressDailyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctStorageSlotStateWithExpiryByAddressDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_with_expiry_by_address_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const fctStorageSlotStateWithExpiryByAddressDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateWithExpiryByAddressDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse.parseAsync(data), +export const fctStorageSlotStateWithExpiryByAddressDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponses, + FctStorageSlotStateWithExpiryByAddressDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateWithExpiryByAddressDailyServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_with_expiry_by_address_daily/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateWithExpiryByAddressHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateWithExpiryByAddressHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse.parseAsync(data), +export const fctStorageSlotStateWithExpiryByAddressHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponses, + FctStorageSlotStateWithExpiryByAddressHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateWithExpiryByAddressHourlyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_with_expiry_by_address_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const fctStorageSlotStateWithExpiryByAddressHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateWithExpiryByAddressHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse.parseAsync(data), +export const fctStorageSlotStateWithExpiryByAddressHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponses, + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateWithExpiryByAddressHourlyServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_with_expiry_by_address_hourly/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateWithExpiryByBlockDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateWithExpiryByBlockDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateWithExpiryByBlockDailyServiceListResponse.parseAsync(data), +export const fctStorageSlotStateWithExpiryByBlockDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctStorageSlotStateWithExpiryByBlockDailyServiceListResponses, + FctStorageSlotStateWithExpiryByBlockDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateWithExpiryByBlockDailyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctStorageSlotStateWithExpiryByBlockDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_with_expiry_by_block_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by expiry_policy */ -export const fctStorageSlotStateWithExpiryByBlockDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateWithExpiryByBlockDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse.parseAsync(data), +export const fctStorageSlotStateWithExpiryByBlockDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponses, + FctStorageSlotStateWithExpiryByBlockDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateWithExpiryByBlockDailyServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_with_expiry_by_block_daily/{expiry_policy}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotStateWithExpiryByBlockHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateWithExpiryByBlockHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse.parseAsync(data), +export const fctStorageSlotStateWithExpiryByBlockHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponses, + FctStorageSlotStateWithExpiryByBlockHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateWithExpiryByBlockHourlyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_with_expiry_by_block_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by expiry_policy */ -export const fctStorageSlotStateWithExpiryByBlockHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotStateWithExpiryByBlockHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse.parseAsync(data), +export const fctStorageSlotStateWithExpiryByBlockHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponses, + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotStateWithExpiryByBlockHourlyServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_state_with_expiry_by_block_hourly/{expiry_policy}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotTop100ByBytesServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotTop100ByBytesServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotTop100ByBytesServiceListResponse.parseAsync(data), +export const fctStorageSlotTop100ByBytesServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctStorageSlotTop100ByBytesServiceListResponses, + FctStorageSlotTop100ByBytesServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotTop100ByBytesServiceListData.parseAsync(data), + responseValidator: async data => await zFctStorageSlotTop100ByBytesServiceListResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_top_100_by_bytes', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by rank */ -export const fctStorageSlotTop100ByBytesServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotTop100ByBytesServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotTop100ByBytesServiceGetResponse.parseAsync(data), +export const fctStorageSlotTop100ByBytesServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctStorageSlotTop100ByBytesServiceGetResponses, + FctStorageSlotTop100ByBytesServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotTop100ByBytesServiceGetData.parseAsync(data), + responseValidator: async data => await zFctStorageSlotTop100ByBytesServiceGetResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_top_100_by_bytes/{rank}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctStorageSlotTop100BySlotsServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotTop100BySlotsServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotTop100BySlotsServiceListResponse.parseAsync(data), +export const fctStorageSlotTop100BySlotsServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctStorageSlotTop100BySlotsServiceListResponses, + FctStorageSlotTop100BySlotsServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotTop100BySlotsServiceListData.parseAsync(data), + responseValidator: async data => await zFctStorageSlotTop100BySlotsServiceListResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_top_100_by_slots', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by rank */ -export const fctStorageSlotTop100BySlotsServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctStorageSlotTop100BySlotsServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctStorageSlotTop100BySlotsServiceGetResponse.parseAsync(data), +export const fctStorageSlotTop100BySlotsServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctStorageSlotTop100BySlotsServiceGetResponses, + FctStorageSlotTop100BySlotsServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctStorageSlotTop100BySlotsServiceGetData.parseAsync(data), + responseValidator: async data => await zFctStorageSlotTop100BySlotsServiceGetResponse.parseAsync(data), url: '/api/v1/fct_storage_slot_top_100_by_slots/{rank}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctSyncCommitteeParticipationByValidatorServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctSyncCommitteeParticipationByValidatorServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctSyncCommitteeParticipationByValidatorServiceListResponse.parseAsync(data), +export const fctSyncCommitteeParticipationByValidatorServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctSyncCommitteeParticipationByValidatorServiceListResponses, + FctSyncCommitteeParticipationByValidatorServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctSyncCommitteeParticipationByValidatorServiceListData.parseAsync(data), + responseValidator: async data => + await zFctSyncCommitteeParticipationByValidatorServiceListResponse.parseAsync(data), url: '/api/v1/fct_sync_committee_participation_by_validator', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const fctSyncCommitteeParticipationByValidatorServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctSyncCommitteeParticipationByValidatorServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctSyncCommitteeParticipationByValidatorServiceGetResponse.parseAsync(data), +export const fctSyncCommitteeParticipationByValidatorServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctSyncCommitteeParticipationByValidatorServiceGetResponses, + FctSyncCommitteeParticipationByValidatorServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctSyncCommitteeParticipationByValidatorServiceGetData.parseAsync(data), + responseValidator: async data => await zFctSyncCommitteeParticipationByValidatorServiceGetResponse.parseAsync(data), url: '/api/v1/fct_sync_committee_participation_by_validator/{validator_index}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctSyncCommitteeParticipationByValidatorDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctSyncCommitteeParticipationByValidatorDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctSyncCommitteeParticipationByValidatorDailyServiceListResponse.parseAsync(data), +export const fctSyncCommitteeParticipationByValidatorDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctSyncCommitteeParticipationByValidatorDailyServiceListResponses, + FctSyncCommitteeParticipationByValidatorDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctSyncCommitteeParticipationByValidatorDailyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctSyncCommitteeParticipationByValidatorDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_sync_committee_participation_by_validator_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const fctSyncCommitteeParticipationByValidatorDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctSyncCommitteeParticipationByValidatorDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctSyncCommitteeParticipationByValidatorDailyServiceGetResponse.parseAsync(data), +export const fctSyncCommitteeParticipationByValidatorDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctSyncCommitteeParticipationByValidatorDailyServiceGetResponses, + FctSyncCommitteeParticipationByValidatorDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctSyncCommitteeParticipationByValidatorDailyServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctSyncCommitteeParticipationByValidatorDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_sync_committee_participation_by_validator_daily/{validator_index}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctSyncCommitteeParticipationByValidatorHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctSyncCommitteeParticipationByValidatorHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctSyncCommitteeParticipationByValidatorHourlyServiceListResponse.parseAsync(data), +export const fctSyncCommitteeParticipationByValidatorHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctSyncCommitteeParticipationByValidatorHourlyServiceListResponses, + FctSyncCommitteeParticipationByValidatorHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctSyncCommitteeParticipationByValidatorHourlyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctSyncCommitteeParticipationByValidatorHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_sync_committee_participation_by_validator_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const fctSyncCommitteeParticipationByValidatorHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctSyncCommitteeParticipationByValidatorHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse.parseAsync(data), +export const fctSyncCommitteeParticipationByValidatorHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponses, + FctSyncCommitteeParticipationByValidatorHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => + await zFctSyncCommitteeParticipationByValidatorHourlyServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_sync_committee_participation_by_validator_hourly/{validator_index}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctTokenContractStorageStateByBlockDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctTokenContractStorageStateByBlockDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctTokenContractStorageStateByBlockDailyServiceListResponse.parseAsync(data), +export const fctTokenContractStorageStateByBlockDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctTokenContractStorageStateByBlockDailyServiceListResponses, + FctTokenContractStorageStateByBlockDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctTokenContractStorageStateByBlockDailyServiceListData.parseAsync(data), + responseValidator: async data => + await zFctTokenContractStorageStateByBlockDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_token_contract_storage_state_by_block_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctTokenContractStorageStateByBlockDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctTokenContractStorageStateByBlockDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctTokenContractStorageStateByBlockDailyServiceGetResponse.parseAsync(data), +export const fctTokenContractStorageStateByBlockDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctTokenContractStorageStateByBlockDailyServiceGetResponses, + FctTokenContractStorageStateByBlockDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctTokenContractStorageStateByBlockDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctTokenContractStorageStateByBlockDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_token_contract_storage_state_by_block_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctValidatorBalanceServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctValidatorBalanceServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctValidatorBalanceServiceListResponse.parseAsync(data), +export const fctValidatorBalanceServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctValidatorBalanceServiceListResponses, + FctValidatorBalanceServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctValidatorBalanceServiceListData.parseAsync(data), + responseValidator: async data => await zFctValidatorBalanceServiceListResponse.parseAsync(data), url: '/api/v1/fct_validator_balance', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const fctValidatorBalanceServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctValidatorBalanceServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctValidatorBalanceServiceGetResponse.parseAsync(data), +export const fctValidatorBalanceServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctValidatorBalanceServiceGetResponses, + FctValidatorBalanceServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctValidatorBalanceServiceGetData.parseAsync(data), + responseValidator: async data => await zFctValidatorBalanceServiceGetResponse.parseAsync(data), url: '/api/v1/fct_validator_balance/{validator_index}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctValidatorBalanceDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctValidatorBalanceDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctValidatorBalanceDailyServiceListResponse.parseAsync(data), +export const fctValidatorBalanceDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctValidatorBalanceDailyServiceListResponses, + FctValidatorBalanceDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctValidatorBalanceDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctValidatorBalanceDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_validator_balance_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const fctValidatorBalanceDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctValidatorBalanceDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctValidatorBalanceDailyServiceGetResponse.parseAsync(data), +export const fctValidatorBalanceDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctValidatorBalanceDailyServiceGetResponses, + FctValidatorBalanceDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctValidatorBalanceDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctValidatorBalanceDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_validator_balance_daily/{validator_index}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctValidatorBalanceHourlyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctValidatorBalanceHourlyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctValidatorBalanceHourlyServiceListResponse.parseAsync(data), +export const fctValidatorBalanceHourlyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctValidatorBalanceHourlyServiceListResponses, + FctValidatorBalanceHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctValidatorBalanceHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctValidatorBalanceHourlyServiceListResponse.parseAsync(data), url: '/api/v1/fct_validator_balance_hourly', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by validator_index */ -export const fctValidatorBalanceHourlyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctValidatorBalanceHourlyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctValidatorBalanceHourlyServiceGetResponse.parseAsync(data), +export const fctValidatorBalanceHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctValidatorBalanceHourlyServiceGetResponses, + FctValidatorBalanceHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctValidatorBalanceHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctValidatorBalanceHourlyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_validator_balance_hourly/{validator_index}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const fctValidatorCountByEntityByStatusDailyServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zFctValidatorCountByEntityByStatusDailyServiceListData.parseAsync(data), - responseValidator: async (data) => await zFctValidatorCountByEntityByStatusDailyServiceListResponse.parseAsync(data), +export const fctValidatorCountByEntityByStatusDailyServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + FctValidatorCountByEntityByStatusDailyServiceListResponses, + FctValidatorCountByEntityByStatusDailyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctValidatorCountByEntityByStatusDailyServiceListData.parseAsync(data), + responseValidator: async data => await zFctValidatorCountByEntityByStatusDailyServiceListResponse.parseAsync(data), url: '/api/v1/fct_validator_count_by_entity_by_status_daily', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by day_start_date */ -export const fctValidatorCountByEntityByStatusDailyServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zFctValidatorCountByEntityByStatusDailyServiceGetData.parseAsync(data), - responseValidator: async (data) => await zFctValidatorCountByEntityByStatusDailyServiceGetResponse.parseAsync(data), +export const fctValidatorCountByEntityByStatusDailyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctValidatorCountByEntityByStatusDailyServiceGetResponses, + FctValidatorCountByEntityByStatusDailyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctValidatorCountByEntityByStatusDailyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctValidatorCountByEntityByStatusDailyServiceGetResponse.parseAsync(data), url: '/api/v1/fct_validator_count_by_entity_by_status_daily/{day_start_date}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intAttestationAttestedCanonicalServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntAttestationAttestedCanonicalServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntAttestationAttestedCanonicalServiceListResponse.parseAsync(data), +export const intAttestationAttestedServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntAttestationAttestedServiceListResponses, + IntAttestationAttestedServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntAttestationAttestedServiceListData.parseAsync(data), + responseValidator: async data => await zIntAttestationAttestedServiceListResponse.parseAsync(data), + url: '/api/v1/int_attestation_attested', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const intAttestationAttestedServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntAttestationAttestedServiceGetResponses, + IntAttestationAttestedServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntAttestationAttestedServiceGetData.parseAsync(data), + responseValidator: async data => await zIntAttestationAttestedServiceGetResponse.parseAsync(data), + url: '/api/v1/int_attestation_attested/{slot_start_date_time}', + ...options, + }); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const intAttestationAttestedCanonicalServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntAttestationAttestedCanonicalServiceListResponses, + IntAttestationAttestedCanonicalServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntAttestationAttestedCanonicalServiceListData.parseAsync(data), + responseValidator: async data => await zIntAttestationAttestedCanonicalServiceListResponse.parseAsync(data), url: '/api/v1/int_attestation_attested_canonical', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intAttestationAttestedCanonicalServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntAttestationAttestedCanonicalServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntAttestationAttestedCanonicalServiceGetResponse.parseAsync(data), +export const intAttestationAttestedCanonicalServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntAttestationAttestedCanonicalServiceGetResponses, + IntAttestationAttestedCanonicalServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntAttestationAttestedCanonicalServiceGetData.parseAsync(data), + responseValidator: async data => await zIntAttestationAttestedCanonicalServiceGetResponse.parseAsync(data), url: '/api/v1/int_attestation_attested_canonical/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intAttestationAttestedHeadServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntAttestationAttestedHeadServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntAttestationAttestedHeadServiceListResponse.parseAsync(data), +export const intAttestationAttestedHeadServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntAttestationAttestedHeadServiceListResponses, + IntAttestationAttestedHeadServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntAttestationAttestedHeadServiceListData.parseAsync(data), + responseValidator: async data => await zIntAttestationAttestedHeadServiceListResponse.parseAsync(data), url: '/api/v1/int_attestation_attested_head', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intAttestationAttestedHeadServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntAttestationAttestedHeadServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntAttestationAttestedHeadServiceGetResponse.parseAsync(data), +export const intAttestationAttestedHeadServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntAttestationAttestedHeadServiceGetResponses, + IntAttestationAttestedHeadServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntAttestationAttestedHeadServiceGetData.parseAsync(data), + responseValidator: async data => await zIntAttestationAttestedHeadServiceGetResponse.parseAsync(data), url: '/api/v1/int_attestation_attested_head/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intAttestationFirstSeenServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntAttestationFirstSeenServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntAttestationFirstSeenServiceListResponse.parseAsync(data), +export const intAttestationFirstSeenServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntAttestationFirstSeenServiceListResponses, + IntAttestationFirstSeenServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntAttestationFirstSeenServiceListData.parseAsync(data), + responseValidator: async data => await zIntAttestationFirstSeenServiceListResponse.parseAsync(data), url: '/api/v1/int_attestation_first_seen', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intAttestationFirstSeenServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntAttestationFirstSeenServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntAttestationFirstSeenServiceGetResponse.parseAsync(data), +export const intAttestationFirstSeenServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntAttestationFirstSeenServiceGetResponses, + IntAttestationFirstSeenServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntAttestationFirstSeenServiceGetData.parseAsync(data), + responseValidator: async data => await zIntAttestationFirstSeenServiceGetResponse.parseAsync(data), url: '/api/v1/int_attestation_first_seen/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intAttestationFirstSeenAggregateServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntAttestationFirstSeenAggregateServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntAttestationFirstSeenAggregateServiceListResponse.parseAsync(data), +export const intAttestationFirstSeenAggregateServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntAttestationFirstSeenAggregateServiceListResponses, + IntAttestationFirstSeenAggregateServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntAttestationFirstSeenAggregateServiceListData.parseAsync(data), + responseValidator: async data => await zIntAttestationFirstSeenAggregateServiceListResponse.parseAsync(data), url: '/api/v1/int_attestation_first_seen_aggregate', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intAttestationFirstSeenAggregateServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntAttestationFirstSeenAggregateServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntAttestationFirstSeenAggregateServiceGetResponse.parseAsync(data), +export const intAttestationFirstSeenAggregateServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntAttestationFirstSeenAggregateServiceGetResponses, + IntAttestationFirstSeenAggregateServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntAttestationFirstSeenAggregateServiceGetData.parseAsync(data), + responseValidator: async data => await zIntAttestationFirstSeenAggregateServiceGetResponse.parseAsync(data), url: '/api/v1/int_attestation_first_seen_aggregate/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBeaconCommitteeHeadServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntBeaconCommitteeHeadServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntBeaconCommitteeHeadServiceListResponse.parseAsync(data), +export const intBeaconCommitteeServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntBeaconCommitteeServiceListResponses, + IntBeaconCommitteeServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBeaconCommitteeServiceListData.parseAsync(data), + responseValidator: async data => await zIntBeaconCommitteeServiceListResponse.parseAsync(data), + url: '/api/v1/int_beacon_committee', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const intBeaconCommitteeServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntBeaconCommitteeServiceGetResponses, + IntBeaconCommitteeServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBeaconCommitteeServiceGetData.parseAsync(data), + responseValidator: async data => await zIntBeaconCommitteeServiceGetResponse.parseAsync(data), + url: '/api/v1/int_beacon_committee/{slot_start_date_time}', + ...options, + }); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const intBeaconCommitteeHeadServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntBeaconCommitteeHeadServiceListResponses, + IntBeaconCommitteeHeadServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBeaconCommitteeHeadServiceListData.parseAsync(data), + responseValidator: async data => await zIntBeaconCommitteeHeadServiceListResponse.parseAsync(data), url: '/api/v1/int_beacon_committee_head', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intBeaconCommitteeHeadServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntBeaconCommitteeHeadServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntBeaconCommitteeHeadServiceGetResponse.parseAsync(data), +export const intBeaconCommitteeHeadServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntBeaconCommitteeHeadServiceGetResponses, + IntBeaconCommitteeHeadServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBeaconCommitteeHeadServiceGetData.parseAsync(data), + responseValidator: async data => await zIntBeaconCommitteeHeadServiceGetResponse.parseAsync(data), url: '/api/v1/int_beacon_committee_head/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockBlobCountCanonicalServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntBlockBlobCountCanonicalServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntBlockBlobCountCanonicalServiceListResponse.parseAsync(data), +export const intBlockBlobCountCanonicalServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntBlockBlobCountCanonicalServiceListResponses, + IntBlockBlobCountCanonicalServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockBlobCountCanonicalServiceListData.parseAsync(data), + responseValidator: async data => await zIntBlockBlobCountCanonicalServiceListResponse.parseAsync(data), url: '/api/v1/int_block_blob_count_canonical', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intBlockBlobCountCanonicalServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntBlockBlobCountCanonicalServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntBlockBlobCountCanonicalServiceGetResponse.parseAsync(data), +export const intBlockBlobCountCanonicalServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntBlockBlobCountCanonicalServiceGetResponses, + IntBlockBlobCountCanonicalServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockBlobCountCanonicalServiceGetData.parseAsync(data), + responseValidator: async data => await zIntBlockBlobCountCanonicalServiceGetResponse.parseAsync(data), url: '/api/v1/int_block_blob_count_canonical/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockCanonicalServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntBlockCanonicalServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntBlockCanonicalServiceListResponse.parseAsync(data), +export const intBlockCanonicalServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntBlockCanonicalServiceListResponses, + IntBlockCanonicalServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockCanonicalServiceListData.parseAsync(data), + responseValidator: async data => await zIntBlockCanonicalServiceListResponse.parseAsync(data), url: '/api/v1/int_block_canonical', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intBlockCanonicalServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntBlockCanonicalServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntBlockCanonicalServiceGetResponse.parseAsync(data), - url: '/api/v1/int_block_canonical/{slot_start_date_time}', - ...options -}); +export const intBlockCanonicalServiceGet = ( + options: Options +) => + (options.client ?? client).get( + { + requestValidator: async data => await zIntBlockCanonicalServiceGetData.parseAsync(data), + responseValidator: async data => await zIntBlockCanonicalServiceGetResponse.parseAsync(data), + url: '/api/v1/int_block_canonical/{slot_start_date_time}', + ...options, + } + ); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockMevCanonicalServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntBlockMevCanonicalServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntBlockMevCanonicalServiceListResponse.parseAsync(data), +export const intBlockMevCanonicalServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntBlockMevCanonicalServiceListResponses, + IntBlockMevCanonicalServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockMevCanonicalServiceListData.parseAsync(data), + responseValidator: async data => await zIntBlockMevCanonicalServiceListResponse.parseAsync(data), url: '/api/v1/int_block_mev_canonical', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intBlockMevCanonicalServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntBlockMevCanonicalServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntBlockMevCanonicalServiceGetResponse.parseAsync(data), +export const intBlockMevCanonicalServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntBlockMevCanonicalServiceGetResponses, + IntBlockMevCanonicalServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockMevCanonicalServiceGetData.parseAsync(data), + responseValidator: async data => await zIntBlockMevCanonicalServiceGetResponse.parseAsync(data), url: '/api/v1/int_block_mev_canonical/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockOpcodeGasServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntBlockOpcodeGasServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntBlockOpcodeGasServiceListResponse.parseAsync(data), +export const intBlockOpcodeGasServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntBlockOpcodeGasServiceListResponses, + IntBlockOpcodeGasServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockOpcodeGasServiceListData.parseAsync(data), + responseValidator: async data => await zIntBlockOpcodeGasServiceListResponse.parseAsync(data), url: '/api/v1/int_block_opcode_gas', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intBlockOpcodeGasServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntBlockOpcodeGasServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntBlockOpcodeGasServiceGetResponse.parseAsync(data), - url: '/api/v1/int_block_opcode_gas/{block_number}', - ...options -}); +export const intBlockOpcodeGasServiceGet = ( + options: Options +) => + (options.client ?? client).get( + { + requestValidator: async data => await zIntBlockOpcodeGasServiceGetData.parseAsync(data), + responseValidator: async data => await zIntBlockOpcodeGasServiceGetResponse.parseAsync(data), + url: '/api/v1/int_block_opcode_gas/{block_number}', + ...options, + } + ); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const intBlockPayloadPtcVoteCanonicalServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntBlockPayloadPtcVoteCanonicalServiceListResponses, + IntBlockPayloadPtcVoteCanonicalServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockPayloadPtcVoteCanonicalServiceListData.parseAsync(data), + responseValidator: async data => await zIntBlockPayloadPtcVoteCanonicalServiceListResponse.parseAsync(data), + url: '/api/v1/int_block_payload_ptc_vote_canonical', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const intBlockPayloadPtcVoteCanonicalServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntBlockPayloadPtcVoteCanonicalServiceGetResponses, + IntBlockPayloadPtcVoteCanonicalServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockPayloadPtcVoteCanonicalServiceGetData.parseAsync(data), + responseValidator: async data => await zIntBlockPayloadPtcVoteCanonicalServiceGetResponse.parseAsync(data), + url: '/api/v1/int_block_payload_ptc_vote_canonical/{slot_start_date_time}', + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockProposerCanonicalServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntBlockProposerCanonicalServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntBlockProposerCanonicalServiceListResponse.parseAsync(data), +export const intBlockProposerCanonicalServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntBlockProposerCanonicalServiceListResponses, + IntBlockProposerCanonicalServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockProposerCanonicalServiceListData.parseAsync(data), + responseValidator: async data => await zIntBlockProposerCanonicalServiceListResponse.parseAsync(data), url: '/api/v1/int_block_proposer_canonical', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intBlockProposerCanonicalServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntBlockProposerCanonicalServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntBlockProposerCanonicalServiceGetResponse.parseAsync(data), +export const intBlockProposerCanonicalServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntBlockProposerCanonicalServiceGetResponses, + IntBlockProposerCanonicalServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockProposerCanonicalServiceGetData.parseAsync(data), + responseValidator: async data => await zIntBlockProposerCanonicalServiceGetResponse.parseAsync(data), url: '/api/v1/int_block_proposer_canonical/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockReceiptSizeServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntBlockReceiptSizeServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntBlockReceiptSizeServiceListResponse.parseAsync(data), +export const intBlockReceiptSizeServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntBlockReceiptSizeServiceListResponses, + IntBlockReceiptSizeServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockReceiptSizeServiceListData.parseAsync(data), + responseValidator: async data => await zIntBlockReceiptSizeServiceListResponse.parseAsync(data), url: '/api/v1/int_block_receipt_size', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intBlockReceiptSizeServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntBlockReceiptSizeServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntBlockReceiptSizeServiceGetResponse.parseAsync(data), +export const intBlockReceiptSizeServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntBlockReceiptSizeServiceGetResponses, + IntBlockReceiptSizeServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockReceiptSizeServiceGetData.parseAsync(data), + responseValidator: async data => await zIntBlockReceiptSizeServiceGetResponse.parseAsync(data), url: '/api/v1/int_block_receipt_size/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intBlockResourceGasServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntBlockResourceGasServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntBlockResourceGasServiceListResponse.parseAsync(data), +export const intBlockResourceGasServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntBlockResourceGasServiceListResponses, + IntBlockResourceGasServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockResourceGasServiceListData.parseAsync(data), + responseValidator: async data => await zIntBlockResourceGasServiceListResponse.parseAsync(data), url: '/api/v1/int_block_resource_gas', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intBlockResourceGasServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntBlockResourceGasServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntBlockResourceGasServiceGetResponse.parseAsync(data), +export const intBlockResourceGasServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntBlockResourceGasServiceGetResponses, + IntBlockResourceGasServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntBlockResourceGasServiceGetData.parseAsync(data), + responseValidator: async data => await zIntBlockResourceGasServiceGetResponse.parseAsync(data), url: '/api/v1/int_block_resource_gas/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractCreationServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractCreationServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractCreationServiceListResponse.parseAsync(data), +export const intContractCreationServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractCreationServiceListResponses, + IntContractCreationServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractCreationServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractCreationServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_creation', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractCreationServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractCreationServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractCreationServiceGetResponse.parseAsync(data), +export const intContractCreationServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractCreationServiceGetResponses, + IntContractCreationServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractCreationServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractCreationServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_creation/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractSelfdestructServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractSelfdestructServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractSelfdestructServiceListResponse.parseAsync(data), +export const intContractSelfdestructServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractSelfdestructServiceListResponses, + IntContractSelfdestructServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractSelfdestructServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractSelfdestructServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_selfdestruct', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractSelfdestructServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractSelfdestructServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractSelfdestructServiceGetResponse.parseAsync(data), +export const intContractSelfdestructServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractSelfdestructServiceGetResponses, + IntContractSelfdestructServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractSelfdestructServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractSelfdestructServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_selfdestruct/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageExpiry1mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageExpiry1mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageExpiry1mServiceListResponse.parseAsync(data), +export const intContractStorageExpiry1mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageExpiry1mServiceListResponses, + IntContractStorageExpiry1mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageExpiry1mServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageExpiry1mServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_expiry_1m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageExpiry1mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageExpiry1mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageExpiry1mServiceGetResponse.parseAsync(data), +export const intContractStorageExpiry1mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageExpiry1mServiceGetResponses, + IntContractStorageExpiry1mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageExpiry1mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageExpiry1mServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_expiry_1m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageExpiry6mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageExpiry6mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageExpiry6mServiceListResponse.parseAsync(data), +export const intContractStorageExpiry6mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageExpiry6mServiceListResponses, + IntContractStorageExpiry6mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageExpiry6mServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageExpiry6mServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_expiry_6m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageExpiry6mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageExpiry6mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageExpiry6mServiceGetResponse.parseAsync(data), +export const intContractStorageExpiry6mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageExpiry6mServiceGetResponses, + IntContractStorageExpiry6mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageExpiry6mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageExpiry6mServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_expiry_6m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageExpiry12mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageExpiry12mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageExpiry12mServiceListResponse.parseAsync(data), +export const intContractStorageExpiry12mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageExpiry12mServiceListResponses, + IntContractStorageExpiry12mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageExpiry12mServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageExpiry12mServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_expiry_12m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageExpiry12mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageExpiry12mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageExpiry12mServiceGetResponse.parseAsync(data), +export const intContractStorageExpiry12mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageExpiry12mServiceGetResponses, + IntContractStorageExpiry12mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageExpiry12mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageExpiry12mServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_expiry_12m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageExpiry18mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageExpiry18mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageExpiry18mServiceListResponse.parseAsync(data), +export const intContractStorageExpiry18mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageExpiry18mServiceListResponses, + IntContractStorageExpiry18mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageExpiry18mServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageExpiry18mServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_expiry_18m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageExpiry18mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageExpiry18mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageExpiry18mServiceGetResponse.parseAsync(data), +export const intContractStorageExpiry18mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageExpiry18mServiceGetResponses, + IntContractStorageExpiry18mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageExpiry18mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageExpiry18mServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_expiry_18m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageExpiry24mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageExpiry24mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageExpiry24mServiceListResponse.parseAsync(data), +export const intContractStorageExpiry24mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageExpiry24mServiceListResponses, + IntContractStorageExpiry24mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageExpiry24mServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageExpiry24mServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_expiry_24m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageExpiry24mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageExpiry24mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageExpiry24mServiceGetResponse.parseAsync(data), +export const intContractStorageExpiry24mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageExpiry24mServiceGetResponses, + IntContractStorageExpiry24mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageExpiry24mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageExpiry24mServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_expiry_24m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageNextTouchServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageNextTouchServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageNextTouchServiceListResponse.parseAsync(data), +export const intContractStorageNextTouchServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageNextTouchServiceListResponses, + IntContractStorageNextTouchServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageNextTouchServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageNextTouchServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_next_touch', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageNextTouchServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageNextTouchServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageNextTouchServiceGetResponse.parseAsync(data), +export const intContractStorageNextTouchServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageNextTouchServiceGetResponses, + IntContractStorageNextTouchServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageNextTouchServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageNextTouchServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_next_touch/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageReactivation1mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageReactivation1mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageReactivation1mServiceListResponse.parseAsync(data), +export const intContractStorageReactivation1mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageReactivation1mServiceListResponses, + IntContractStorageReactivation1mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageReactivation1mServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageReactivation1mServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_reactivation_1m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageReactivation1mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageReactivation1mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageReactivation1mServiceGetResponse.parseAsync(data), +export const intContractStorageReactivation1mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageReactivation1mServiceGetResponses, + IntContractStorageReactivation1mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageReactivation1mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageReactivation1mServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_reactivation_1m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageReactivation6mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageReactivation6mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageReactivation6mServiceListResponse.parseAsync(data), +export const intContractStorageReactivation6mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageReactivation6mServiceListResponses, + IntContractStorageReactivation6mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageReactivation6mServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageReactivation6mServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_reactivation_6m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageReactivation6mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageReactivation6mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageReactivation6mServiceGetResponse.parseAsync(data), +export const intContractStorageReactivation6mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageReactivation6mServiceGetResponses, + IntContractStorageReactivation6mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageReactivation6mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageReactivation6mServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_reactivation_6m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageReactivation12mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageReactivation12mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageReactivation12mServiceListResponse.parseAsync(data), +export const intContractStorageReactivation12mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageReactivation12mServiceListResponses, + IntContractStorageReactivation12mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageReactivation12mServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageReactivation12mServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_reactivation_12m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageReactivation12mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageReactivation12mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageReactivation12mServiceGetResponse.parseAsync(data), +export const intContractStorageReactivation12mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageReactivation12mServiceGetResponses, + IntContractStorageReactivation12mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageReactivation12mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageReactivation12mServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_reactivation_12m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageReactivation18mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageReactivation18mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageReactivation18mServiceListResponse.parseAsync(data), +export const intContractStorageReactivation18mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageReactivation18mServiceListResponses, + IntContractStorageReactivation18mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageReactivation18mServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageReactivation18mServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_reactivation_18m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageReactivation18mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageReactivation18mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageReactivation18mServiceGetResponse.parseAsync(data), +export const intContractStorageReactivation18mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageReactivation18mServiceGetResponses, + IntContractStorageReactivation18mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageReactivation18mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageReactivation18mServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_reactivation_18m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageReactivation24mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageReactivation24mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageReactivation24mServiceListResponse.parseAsync(data), +export const intContractStorageReactivation24mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageReactivation24mServiceListResponses, + IntContractStorageReactivation24mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageReactivation24mServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageReactivation24mServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_reactivation_24m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageReactivation24mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageReactivation24mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageReactivation24mServiceGetResponse.parseAsync(data), +export const intContractStorageReactivation24mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageReactivation24mServiceGetResponses, + IntContractStorageReactivation24mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageReactivation24mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageReactivation24mServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_reactivation_24m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageStateServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageStateServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageStateServiceListResponse.parseAsync(data), +export const intContractStorageStateServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageStateServiceListResponses, + IntContractStorageStateServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageStateServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageStateServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_state', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageStateServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageStateServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageStateServiceGetResponse.parseAsync(data), +export const intContractStorageStateServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageStateServiceGetResponses, + IntContractStorageStateServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageStateServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageStateServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_state/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageStateByAddressServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageStateByAddressServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageStateByAddressServiceListResponse.parseAsync(data), +export const intContractStorageStateByAddressServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageStateByAddressServiceListResponses, + IntContractStorageStateByAddressServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageStateByAddressServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageStateByAddressServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_state_by_address', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const intContractStorageStateByAddressServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageStateByAddressServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageStateByAddressServiceGetResponse.parseAsync(data), +export const intContractStorageStateByAddressServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageStateByAddressServiceGetResponses, + IntContractStorageStateByAddressServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageStateByAddressServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageStateByAddressServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_state_by_address/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageStateByBlockServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageStateByBlockServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageStateByBlockServiceListResponse.parseAsync(data), +export const intContractStorageStateByBlockServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageStateByBlockServiceListResponses, + IntContractStorageStateByBlockServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageStateByBlockServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageStateByBlockServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_state_by_block', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intContractStorageStateByBlockServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageStateByBlockServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageStateByBlockServiceGetResponse.parseAsync(data), +export const intContractStorageStateByBlockServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageStateByBlockServiceGetResponses, + IntContractStorageStateByBlockServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageStateByBlockServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageStateByBlockServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_state_by_block/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageStateWithExpiryServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageStateWithExpiryServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageStateWithExpiryServiceListResponse.parseAsync(data), +export const intContractStorageStateWithExpiryServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageStateWithExpiryServiceListResponses, + IntContractStorageStateWithExpiryServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageStateWithExpiryServiceListData.parseAsync(data), + responseValidator: async data => await zIntContractStorageStateWithExpiryServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_state_with_expiry', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by expiry_policy */ -export const intContractStorageStateWithExpiryServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageStateWithExpiryServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageStateWithExpiryServiceGetResponse.parseAsync(data), +export const intContractStorageStateWithExpiryServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageStateWithExpiryServiceGetResponses, + IntContractStorageStateWithExpiryServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageStateWithExpiryServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageStateWithExpiryServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_state_with_expiry/{expiry_policy}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageStateWithExpiryByAddressServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageStateWithExpiryByAddressServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageStateWithExpiryByAddressServiceListResponse.parseAsync(data), +export const intContractStorageStateWithExpiryByAddressServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageStateWithExpiryByAddressServiceListResponses, + IntContractStorageStateWithExpiryByAddressServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageStateWithExpiryByAddressServiceListData.parseAsync(data), + responseValidator: async data => + await zIntContractStorageStateWithExpiryByAddressServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_state_with_expiry_by_address', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const intContractStorageStateWithExpiryByAddressServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageStateWithExpiryByAddressServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageStateWithExpiryByAddressServiceGetResponse.parseAsync(data), +export const intContractStorageStateWithExpiryByAddressServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageStateWithExpiryByAddressServiceGetResponses, + IntContractStorageStateWithExpiryByAddressServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageStateWithExpiryByAddressServiceGetData.parseAsync(data), + responseValidator: async data => + await zIntContractStorageStateWithExpiryByAddressServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_state_with_expiry_by_address/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intContractStorageStateWithExpiryByBlockServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageStateWithExpiryByBlockServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageStateWithExpiryByBlockServiceListResponse.parseAsync(data), +export const intContractStorageStateWithExpiryByBlockServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntContractStorageStateWithExpiryByBlockServiceListResponses, + IntContractStorageStateWithExpiryByBlockServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageStateWithExpiryByBlockServiceListData.parseAsync(data), + responseValidator: async data => + await zIntContractStorageStateWithExpiryByBlockServiceListResponse.parseAsync(data), url: '/api/v1/int_contract_storage_state_with_expiry_by_block', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by expiry_policy */ -export const intContractStorageStateWithExpiryByBlockServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntContractStorageStateWithExpiryByBlockServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntContractStorageStateWithExpiryByBlockServiceGetResponse.parseAsync(data), +export const intContractStorageStateWithExpiryByBlockServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntContractStorageStateWithExpiryByBlockServiceGetResponses, + IntContractStorageStateWithExpiryByBlockServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntContractStorageStateWithExpiryByBlockServiceGetData.parseAsync(data), + responseValidator: async data => await zIntContractStorageStateWithExpiryByBlockServiceGetResponse.parseAsync(data), url: '/api/v1/int_contract_storage_state_with_expiry_by_block/{expiry_policy}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intCustodyProbeServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntCustodyProbeServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntCustodyProbeServiceListResponse.parseAsync(data), +export const intCustodyProbeServiceList = ( + options?: Options +) => + (options?.client ?? client).get({ + requestValidator: async data => await zIntCustodyProbeServiceListData.parseAsync(data), + responseValidator: async data => await zIntCustodyProbeServiceListResponse.parseAsync(data), url: '/api/v1/int_custody_probe', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by probe_date_time */ -export const intCustodyProbeServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntCustodyProbeServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntCustodyProbeServiceGetResponse.parseAsync(data), +export const intCustodyProbeServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zIntCustodyProbeServiceGetData.parseAsync(data), + responseValidator: async data => await zIntCustodyProbeServiceGetResponse.parseAsync(data), url: '/api/v1/int_custody_probe/{probe_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intCustodyProbeOrderBySlotServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntCustodyProbeOrderBySlotServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntCustodyProbeOrderBySlotServiceListResponse.parseAsync(data), +export const intCustodyProbeOrderBySlotServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntCustodyProbeOrderBySlotServiceListResponses, + IntCustodyProbeOrderBySlotServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntCustodyProbeOrderBySlotServiceListData.parseAsync(data), + responseValidator: async data => await zIntCustodyProbeOrderBySlotServiceListResponse.parseAsync(data), url: '/api/v1/int_custody_probe_order_by_slot', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intCustodyProbeOrderBySlotServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntCustodyProbeOrderBySlotServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntCustodyProbeOrderBySlotServiceGetResponse.parseAsync(data), +export const intCustodyProbeOrderBySlotServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntCustodyProbeOrderBySlotServiceGetResponses, + IntCustodyProbeOrderBySlotServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntCustodyProbeOrderBySlotServiceGetData.parseAsync(data), + responseValidator: async data => await zIntCustodyProbeOrderBySlotServiceGetResponse.parseAsync(data), url: '/api/v1/int_custody_probe_order_by_slot/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intEngineGetBlobsServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntEngineGetBlobsServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntEngineGetBlobsServiceListResponse.parseAsync(data), +export const intEngineGetBlobsServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntEngineGetBlobsServiceListResponses, + IntEngineGetBlobsServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntEngineGetBlobsServiceListData.parseAsync(data), + responseValidator: async data => await zIntEngineGetBlobsServiceListResponse.parseAsync(data), url: '/api/v1/int_engine_get_blobs', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intEngineGetBlobsServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntEngineGetBlobsServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntEngineGetBlobsServiceGetResponse.parseAsync(data), - url: '/api/v1/int_engine_get_blobs/{slot_start_date_time}', - ...options -}); +export const intEngineGetBlobsServiceGet = ( + options: Options +) => + (options.client ?? client).get( + { + requestValidator: async data => await zIntEngineGetBlobsServiceGetData.parseAsync(data), + responseValidator: async data => await zIntEngineGetBlobsServiceGetResponse.parseAsync(data), + url: '/api/v1/int_engine_get_blobs/{slot_start_date_time}', + ...options, + } + ); /** * List records * * Retrieve paginated results with optional filtering */ -export const intEngineNewPayloadServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntEngineNewPayloadServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntEngineNewPayloadServiceListResponse.parseAsync(data), +export const intEngineNewPayloadServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntEngineNewPayloadServiceListResponses, + IntEngineNewPayloadServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntEngineNewPayloadServiceListData.parseAsync(data), + responseValidator: async data => await zIntEngineNewPayloadServiceListResponse.parseAsync(data), url: '/api/v1/int_engine_new_payload', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intEngineNewPayloadServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntEngineNewPayloadServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntEngineNewPayloadServiceGetResponse.parseAsync(data), +export const intEngineNewPayloadServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntEngineNewPayloadServiceGetResponses, + IntEngineNewPayloadServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntEngineNewPayloadServiceGetData.parseAsync(data), + responseValidator: async data => await zIntEngineNewPayloadServiceGetResponse.parseAsync(data), url: '/api/v1/int_engine_new_payload/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intEngineNewPayloadFastestExecutionByNodeClassServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntEngineNewPayloadFastestExecutionByNodeClassServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse.parseAsync(data), +export const intEngineNewPayloadFastestExecutionByNodeClassServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponses, + IntEngineNewPayloadFastestExecutionByNodeClassServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => + await zIntEngineNewPayloadFastestExecutionByNodeClassServiceListData.parseAsync(data), + responseValidator: async data => + await zIntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse.parseAsync(data), url: '/api/v1/int_engine_new_payload_fastest_execution_by_node_class', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by slot_start_date_time */ -export const intEngineNewPayloadFastestExecutionByNodeClassServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntEngineNewPayloadFastestExecutionByNodeClassServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse.parseAsync(data), +export const intEngineNewPayloadFastestExecutionByNodeClassServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponses, + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => + await zIntEngineNewPayloadFastestExecutionByNodeClassServiceGetData.parseAsync(data), + responseValidator: async data => + await zIntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse.parseAsync(data), url: '/api/v1/int_engine_new_payload_fastest_execution_by_node_class/{slot_start_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intExecutionBlockByDateServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntExecutionBlockByDateServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntExecutionBlockByDateServiceListResponse.parseAsync(data), +export const intExecutionBlockByDateServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntExecutionBlockByDateServiceListResponses, + IntExecutionBlockByDateServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntExecutionBlockByDateServiceListData.parseAsync(data), + responseValidator: async data => await zIntExecutionBlockByDateServiceListResponse.parseAsync(data), url: '/api/v1/int_execution_block_by_date', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_date_time */ -export const intExecutionBlockByDateServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntExecutionBlockByDateServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntExecutionBlockByDateServiceGetResponse.parseAsync(data), +export const intExecutionBlockByDateServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntExecutionBlockByDateServiceGetResponses, + IntExecutionBlockByDateServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntExecutionBlockByDateServiceGetData.parseAsync(data), + responseValidator: async data => await zIntExecutionBlockByDateServiceGetResponse.parseAsync(data), url: '/api/v1/int_execution_block_by_date/{block_date_time}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intExecutionStateSizeByBlockServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntExecutionStateSizeByBlockServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntExecutionStateSizeByBlockServiceListResponse.parseAsync(data), +export const intExecutionStateSizeByBlockServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntExecutionStateSizeByBlockServiceListResponses, + IntExecutionStateSizeByBlockServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntExecutionStateSizeByBlockServiceListData.parseAsync(data), + responseValidator: async data => await zIntExecutionStateSizeByBlockServiceListResponse.parseAsync(data), url: '/api/v1/int_execution_state_size_by_block', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intExecutionStateSizeByBlockServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntExecutionStateSizeByBlockServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntExecutionStateSizeByBlockServiceGetResponse.parseAsync(data), +export const intExecutionStateSizeByBlockServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntExecutionStateSizeByBlockServiceGetResponses, + IntExecutionStateSizeByBlockServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntExecutionStateSizeByBlockServiceGetData.parseAsync(data), + responseValidator: async data => await zIntExecutionStateSizeByBlockServiceGetResponse.parseAsync(data), url: '/api/v1/int_execution_state_size_by_block/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intRocketpoolMegapoolServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntRocketpoolMegapoolServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntRocketpoolMegapoolServiceListResponse.parseAsync(data), +export const intRocketpoolMegapoolServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntRocketpoolMegapoolServiceListResponses, + IntRocketpoolMegapoolServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntRocketpoolMegapoolServiceListData.parseAsync(data), + responseValidator: async data => await zIntRocketpoolMegapoolServiceListResponse.parseAsync(data), url: '/api/v1/int_rocketpool_megapool', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by megapool_address */ -export const intRocketpoolMegapoolServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntRocketpoolMegapoolServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntRocketpoolMegapoolServiceGetResponse.parseAsync(data), +export const intRocketpoolMegapoolServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntRocketpoolMegapoolServiceGetResponses, + IntRocketpoolMegapoolServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntRocketpoolMegapoolServiceGetData.parseAsync(data), + responseValidator: async data => await zIntRocketpoolMegapoolServiceGetResponse.parseAsync(data), url: '/api/v1/int_rocketpool_megapool/{megapool_address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intRocketpoolMinipoolServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntRocketpoolMinipoolServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntRocketpoolMinipoolServiceListResponse.parseAsync(data), +export const intRocketpoolMinipoolServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntRocketpoolMinipoolServiceListResponses, + IntRocketpoolMinipoolServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntRocketpoolMinipoolServiceListData.parseAsync(data), + responseValidator: async data => await zIntRocketpoolMinipoolServiceListResponse.parseAsync(data), url: '/api/v1/int_rocketpool_minipool', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by event_name */ -export const intRocketpoolMinipoolServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntRocketpoolMinipoolServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntRocketpoolMinipoolServiceGetResponse.parseAsync(data), +export const intRocketpoolMinipoolServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntRocketpoolMinipoolServiceGetResponses, + IntRocketpoolMinipoolServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntRocketpoolMinipoolServiceGetData.parseAsync(data), + responseValidator: async data => await zIntRocketpoolMinipoolServiceGetResponse.parseAsync(data), url: '/api/v1/int_rocketpool_minipool/{event_name}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intRocketpoolNodeEventServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntRocketpoolNodeEventServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntRocketpoolNodeEventServiceListResponse.parseAsync(data), +export const intRocketpoolNodeEventServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntRocketpoolNodeEventServiceListResponses, + IntRocketpoolNodeEventServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntRocketpoolNodeEventServiceListData.parseAsync(data), + responseValidator: async data => await zIntRocketpoolNodeEventServiceListResponse.parseAsync(data), url: '/api/v1/int_rocketpool_node_event', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by event_name */ -export const intRocketpoolNodeEventServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntRocketpoolNodeEventServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntRocketpoolNodeEventServiceGetResponse.parseAsync(data), +export const intRocketpoolNodeEventServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntRocketpoolNodeEventServiceGetResponses, + IntRocketpoolNodeEventServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntRocketpoolNodeEventServiceGetData.parseAsync(data), + responseValidator: async data => await zIntRocketpoolNodeEventServiceGetResponse.parseAsync(data), url: '/api/v1/int_rocketpool_node_event/{event_name}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intRocketpoolNodeTimezoneServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntRocketpoolNodeTimezoneServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntRocketpoolNodeTimezoneServiceListResponse.parseAsync(data), +export const intRocketpoolNodeTimezoneServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntRocketpoolNodeTimezoneServiceListResponses, + IntRocketpoolNodeTimezoneServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntRocketpoolNodeTimezoneServiceListData.parseAsync(data), + responseValidator: async data => await zIntRocketpoolNodeTimezoneServiceListResponse.parseAsync(data), url: '/api/v1/int_rocketpool_node_timezone', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by node_address */ -export const intRocketpoolNodeTimezoneServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntRocketpoolNodeTimezoneServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntRocketpoolNodeTimezoneServiceGetResponse.parseAsync(data), +export const intRocketpoolNodeTimezoneServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntRocketpoolNodeTimezoneServiceGetResponses, + IntRocketpoolNodeTimezoneServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntRocketpoolNodeTimezoneServiceGetData.parseAsync(data), + responseValidator: async data => await zIntRocketpoolNodeTimezoneServiceGetResponse.parseAsync(data), url: '/api/v1/int_rocketpool_node_timezone/{node_address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSelfdestructDiffsServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSelfdestructDiffsServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSelfdestructDiffsServiceListResponse.parseAsync(data), +export const intStorageSelfdestructDiffsServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSelfdestructDiffsServiceListResponses, + IntStorageSelfdestructDiffsServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSelfdestructDiffsServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSelfdestructDiffsServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_selfdestruct_diffs', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSelfdestructDiffsServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSelfdestructDiffsServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSelfdestructDiffsServiceGetResponse.parseAsync(data), +export const intStorageSelfdestructDiffsServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSelfdestructDiffsServiceGetResponses, + IntStorageSelfdestructDiffsServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSelfdestructDiffsServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSelfdestructDiffsServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_selfdestruct_diffs/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotDiffServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotDiffServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotDiffServiceListResponse.parseAsync(data), +export const intStorageSlotDiffServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotDiffServiceListResponses, + IntStorageSlotDiffServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotDiffServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotDiffServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_diff', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotDiffServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotDiffServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotDiffServiceGetResponse.parseAsync(data), +export const intStorageSlotDiffServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotDiffServiceGetResponses, + IntStorageSlotDiffServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotDiffServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotDiffServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_diff/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotDiffByAddressSlotServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotDiffByAddressSlotServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotDiffByAddressSlotServiceListResponse.parseAsync(data), +export const intStorageSlotDiffByAddressSlotServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotDiffByAddressSlotServiceListResponses, + IntStorageSlotDiffByAddressSlotServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotDiffByAddressSlotServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotDiffByAddressSlotServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_diff_by_address_slot', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const intStorageSlotDiffByAddressSlotServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotDiffByAddressSlotServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotDiffByAddressSlotServiceGetResponse.parseAsync(data), +export const intStorageSlotDiffByAddressSlotServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotDiffByAddressSlotServiceGetResponses, + IntStorageSlotDiffByAddressSlotServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotDiffByAddressSlotServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotDiffByAddressSlotServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_diff_by_address_slot/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotExpiry1mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotExpiry1mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotExpiry1mServiceListResponse.parseAsync(data), +export const intStorageSlotExpiry1mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotExpiry1mServiceListResponses, + IntStorageSlotExpiry1mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotExpiry1mServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotExpiry1mServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_expiry_1m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotExpiry1mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotExpiry1mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotExpiry1mServiceGetResponse.parseAsync(data), +export const intStorageSlotExpiry1mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotExpiry1mServiceGetResponses, + IntStorageSlotExpiry1mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotExpiry1mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotExpiry1mServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_expiry_1m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotExpiry6mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotExpiry6mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotExpiry6mServiceListResponse.parseAsync(data), +export const intStorageSlotExpiry6mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotExpiry6mServiceListResponses, + IntStorageSlotExpiry6mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotExpiry6mServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotExpiry6mServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_expiry_6m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotExpiry6mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotExpiry6mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotExpiry6mServiceGetResponse.parseAsync(data), +export const intStorageSlotExpiry6mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotExpiry6mServiceGetResponses, + IntStorageSlotExpiry6mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotExpiry6mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotExpiry6mServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_expiry_6m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotExpiry12mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotExpiry12mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotExpiry12mServiceListResponse.parseAsync(data), +export const intStorageSlotExpiry12mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotExpiry12mServiceListResponses, + IntStorageSlotExpiry12mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotExpiry12mServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotExpiry12mServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_expiry_12m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotExpiry12mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotExpiry12mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotExpiry12mServiceGetResponse.parseAsync(data), +export const intStorageSlotExpiry12mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotExpiry12mServiceGetResponses, + IntStorageSlotExpiry12mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotExpiry12mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotExpiry12mServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_expiry_12m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotExpiry18mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotExpiry18mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotExpiry18mServiceListResponse.parseAsync(data), +export const intStorageSlotExpiry18mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotExpiry18mServiceListResponses, + IntStorageSlotExpiry18mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotExpiry18mServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotExpiry18mServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_expiry_18m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotExpiry18mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotExpiry18mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotExpiry18mServiceGetResponse.parseAsync(data), +export const intStorageSlotExpiry18mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotExpiry18mServiceGetResponses, + IntStorageSlotExpiry18mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotExpiry18mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotExpiry18mServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_expiry_18m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotExpiry24mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotExpiry24mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotExpiry24mServiceListResponse.parseAsync(data), +export const intStorageSlotExpiry24mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotExpiry24mServiceListResponses, + IntStorageSlotExpiry24mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotExpiry24mServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotExpiry24mServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_expiry_24m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotExpiry24mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotExpiry24mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotExpiry24mServiceGetResponse.parseAsync(data), +export const intStorageSlotExpiry24mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotExpiry24mServiceGetResponses, + IntStorageSlotExpiry24mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotExpiry24mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotExpiry24mServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_expiry_24m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotLifecycleServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotLifecycleServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotLifecycleServiceListResponse.parseAsync(data), +export const intStorageSlotLifecycleServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotLifecycleServiceListResponses, + IntStorageSlotLifecycleServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotLifecycleServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotLifecycleServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_lifecycle', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const intStorageSlotLifecycleServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotLifecycleServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotLifecycleServiceGetResponse.parseAsync(data), +export const intStorageSlotLifecycleServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotLifecycleServiceGetResponses, + IntStorageSlotLifecycleServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotLifecycleServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotLifecycleServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_lifecycle/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotLifecycleBoundaryServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotLifecycleBoundaryServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotLifecycleBoundaryServiceListResponse.parseAsync(data), +export const intStorageSlotLifecycleBoundaryServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotLifecycleBoundaryServiceListResponses, + IntStorageSlotLifecycleBoundaryServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotLifecycleBoundaryServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotLifecycleBoundaryServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_lifecycle_boundary', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const intStorageSlotLifecycleBoundaryServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotLifecycleBoundaryServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotLifecycleBoundaryServiceGetResponse.parseAsync(data), +export const intStorageSlotLifecycleBoundaryServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotLifecycleBoundaryServiceGetResponses, + IntStorageSlotLifecycleBoundaryServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotLifecycleBoundaryServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotLifecycleBoundaryServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_lifecycle_boundary/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotNextTouchServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotNextTouchServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotNextTouchServiceListResponse.parseAsync(data), +export const intStorageSlotNextTouchServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotNextTouchServiceListResponses, + IntStorageSlotNextTouchServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotNextTouchServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotNextTouchServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_next_touch', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotNextTouchServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotNextTouchServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotNextTouchServiceGetResponse.parseAsync(data), +export const intStorageSlotNextTouchServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotNextTouchServiceGetResponses, + IntStorageSlotNextTouchServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotNextTouchServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotNextTouchServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_next_touch/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotReactivation1mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotReactivation1mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotReactivation1mServiceListResponse.parseAsync(data), +export const intStorageSlotReactivation1mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotReactivation1mServiceListResponses, + IntStorageSlotReactivation1mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotReactivation1mServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotReactivation1mServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_reactivation_1m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotReactivation1mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotReactivation1mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotReactivation1mServiceGetResponse.parseAsync(data), +export const intStorageSlotReactivation1mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotReactivation1mServiceGetResponses, + IntStorageSlotReactivation1mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotReactivation1mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotReactivation1mServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_reactivation_1m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotReactivation6mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotReactivation6mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotReactivation6mServiceListResponse.parseAsync(data), +export const intStorageSlotReactivation6mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotReactivation6mServiceListResponses, + IntStorageSlotReactivation6mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotReactivation6mServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotReactivation6mServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_reactivation_6m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotReactivation6mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotReactivation6mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotReactivation6mServiceGetResponse.parseAsync(data), +export const intStorageSlotReactivation6mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotReactivation6mServiceGetResponses, + IntStorageSlotReactivation6mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotReactivation6mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotReactivation6mServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_reactivation_6m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotReactivation12mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotReactivation12mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotReactivation12mServiceListResponse.parseAsync(data), +export const intStorageSlotReactivation12mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotReactivation12mServiceListResponses, + IntStorageSlotReactivation12mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotReactivation12mServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotReactivation12mServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_reactivation_12m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotReactivation12mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotReactivation12mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotReactivation12mServiceGetResponse.parseAsync(data), +export const intStorageSlotReactivation12mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotReactivation12mServiceGetResponses, + IntStorageSlotReactivation12mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotReactivation12mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotReactivation12mServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_reactivation_12m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotReactivation18mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotReactivation18mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotReactivation18mServiceListResponse.parseAsync(data), +export const intStorageSlotReactivation18mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotReactivation18mServiceListResponses, + IntStorageSlotReactivation18mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotReactivation18mServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotReactivation18mServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_reactivation_18m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotReactivation18mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotReactivation18mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotReactivation18mServiceGetResponse.parseAsync(data), +export const intStorageSlotReactivation18mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotReactivation18mServiceGetResponses, + IntStorageSlotReactivation18mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotReactivation18mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotReactivation18mServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_reactivation_18m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotReactivation24mServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotReactivation24mServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotReactivation24mServiceListResponse.parseAsync(data), +export const intStorageSlotReactivation24mServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotReactivation24mServiceListResponses, + IntStorageSlotReactivation24mServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotReactivation24mServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotReactivation24mServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_reactivation_24m', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotReactivation24mServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotReactivation24mServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotReactivation24mServiceGetResponse.parseAsync(data), +export const intStorageSlotReactivation24mServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotReactivation24mServiceGetResponses, + IntStorageSlotReactivation24mServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotReactivation24mServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotReactivation24mServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_reactivation_24m/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotReadServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotReadServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotReadServiceListResponse.parseAsync(data), +export const intStorageSlotReadServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotReadServiceListResponses, + IntStorageSlotReadServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotReadServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotReadServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_read', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotReadServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotReadServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotReadServiceGetResponse.parseAsync(data), +export const intStorageSlotReadServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotReadServiceGetResponses, + IntStorageSlotReadServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotReadServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotReadServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_read/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotStateServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotStateServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotStateServiceListResponse.parseAsync(data), +export const intStorageSlotStateServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotStateServiceListResponses, + IntStorageSlotStateServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotStateServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotStateServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_state', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotStateServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotStateServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotStateServiceGetResponse.parseAsync(data), +export const intStorageSlotStateServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotStateServiceGetResponses, + IntStorageSlotStateServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotStateServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotStateServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_state/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotStateByAddressServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotStateByAddressServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotStateByAddressServiceListResponse.parseAsync(data), +export const intStorageSlotStateByAddressServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotStateByAddressServiceListResponses, + IntStorageSlotStateByAddressServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotStateByAddressServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotStateByAddressServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_state_by_address', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const intStorageSlotStateByAddressServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotStateByAddressServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotStateByAddressServiceGetResponse.parseAsync(data), +export const intStorageSlotStateByAddressServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotStateByAddressServiceGetResponses, + IntStorageSlotStateByAddressServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotStateByAddressServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotStateByAddressServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_state_by_address/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotStateByBlockServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotStateByBlockServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotStateByBlockServiceListResponse.parseAsync(data), +export const intStorageSlotStateByBlockServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotStateByBlockServiceListResponses, + IntStorageSlotStateByBlockServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotStateByBlockServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotStateByBlockServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_state_by_block', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intStorageSlotStateByBlockServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotStateByBlockServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotStateByBlockServiceGetResponse.parseAsync(data), +export const intStorageSlotStateByBlockServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotStateByBlockServiceGetResponses, + IntStorageSlotStateByBlockServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotStateByBlockServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotStateByBlockServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_state_by_block/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotStateWithExpiryServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotStateWithExpiryServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotStateWithExpiryServiceListResponse.parseAsync(data), +export const intStorageSlotStateWithExpiryServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotStateWithExpiryServiceListResponses, + IntStorageSlotStateWithExpiryServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotStateWithExpiryServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotStateWithExpiryServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_state_with_expiry', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by expiry_policy */ -export const intStorageSlotStateWithExpiryServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotStateWithExpiryServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotStateWithExpiryServiceGetResponse.parseAsync(data), +export const intStorageSlotStateWithExpiryServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotStateWithExpiryServiceGetResponses, + IntStorageSlotStateWithExpiryServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotStateWithExpiryServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotStateWithExpiryServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_state_with_expiry/{expiry_policy}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotStateWithExpiryByAddressServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotStateWithExpiryByAddressServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotStateWithExpiryByAddressServiceListResponse.parseAsync(data), +export const intStorageSlotStateWithExpiryByAddressServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotStateWithExpiryByAddressServiceListResponses, + IntStorageSlotStateWithExpiryByAddressServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotStateWithExpiryByAddressServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotStateWithExpiryByAddressServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_state_with_expiry_by_address', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by address */ -export const intStorageSlotStateWithExpiryByAddressServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotStateWithExpiryByAddressServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotStateWithExpiryByAddressServiceGetResponse.parseAsync(data), +export const intStorageSlotStateWithExpiryByAddressServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotStateWithExpiryByAddressServiceGetResponses, + IntStorageSlotStateWithExpiryByAddressServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotStateWithExpiryByAddressServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotStateWithExpiryByAddressServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_state_with_expiry_by_address/{address}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intStorageSlotStateWithExpiryByBlockServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotStateWithExpiryByBlockServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotStateWithExpiryByBlockServiceListResponse.parseAsync(data), +export const intStorageSlotStateWithExpiryByBlockServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntStorageSlotStateWithExpiryByBlockServiceListResponses, + IntStorageSlotStateWithExpiryByBlockServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotStateWithExpiryByBlockServiceListData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotStateWithExpiryByBlockServiceListResponse.parseAsync(data), url: '/api/v1/int_storage_slot_state_with_expiry_by_block', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by expiry_policy */ -export const intStorageSlotStateWithExpiryByBlockServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntStorageSlotStateWithExpiryByBlockServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntStorageSlotStateWithExpiryByBlockServiceGetResponse.parseAsync(data), +export const intStorageSlotStateWithExpiryByBlockServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntStorageSlotStateWithExpiryByBlockServiceGetResponses, + IntStorageSlotStateWithExpiryByBlockServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntStorageSlotStateWithExpiryByBlockServiceGetData.parseAsync(data), + responseValidator: async data => await zIntStorageSlotStateWithExpiryByBlockServiceGetResponse.parseAsync(data), url: '/api/v1/int_storage_slot_state_with_expiry_by_block/{expiry_policy}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTokenContractStorageStateByBlockServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntTokenContractStorageStateByBlockServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntTokenContractStorageStateByBlockServiceListResponse.parseAsync(data), +export const intTokenContractStorageStateByBlockServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntTokenContractStorageStateByBlockServiceListResponses, + IntTokenContractStorageStateByBlockServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTokenContractStorageStateByBlockServiceListData.parseAsync(data), + responseValidator: async data => await zIntTokenContractStorageStateByBlockServiceListResponse.parseAsync(data), url: '/api/v1/int_token_contract_storage_state_by_block', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intTokenContractStorageStateByBlockServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntTokenContractStorageStateByBlockServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntTokenContractStorageStateByBlockServiceGetResponse.parseAsync(data), +export const intTokenContractStorageStateByBlockServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntTokenContractStorageStateByBlockServiceGetResponses, + IntTokenContractStorageStateByBlockServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTokenContractStorageStateByBlockServiceGetData.parseAsync(data), + responseValidator: async data => await zIntTokenContractStorageStateByBlockServiceGetResponse.parseAsync(data), url: '/api/v1/int_token_contract_storage_state_by_block/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTransactionCallFrameServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntTransactionCallFrameServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntTransactionCallFrameServiceListResponse.parseAsync(data), +export const intTransactionCallFrameServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntTransactionCallFrameServiceListResponses, + IntTransactionCallFrameServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTransactionCallFrameServiceListData.parseAsync(data), + responseValidator: async data => await zIntTransactionCallFrameServiceListResponse.parseAsync(data), url: '/api/v1/int_transaction_call_frame', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intTransactionCallFrameServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntTransactionCallFrameServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntTransactionCallFrameServiceGetResponse.parseAsync(data), +export const intTransactionCallFrameServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntTransactionCallFrameServiceGetResponses, + IntTransactionCallFrameServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTransactionCallFrameServiceGetData.parseAsync(data), + responseValidator: async data => await zIntTransactionCallFrameServiceGetResponse.parseAsync(data), url: '/api/v1/int_transaction_call_frame/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTransactionCallFrameOpcodeGasServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntTransactionCallFrameOpcodeGasServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntTransactionCallFrameOpcodeGasServiceListResponse.parseAsync(data), +export const intTransactionCallFrameOpcodeGasServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntTransactionCallFrameOpcodeGasServiceListResponses, + IntTransactionCallFrameOpcodeGasServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTransactionCallFrameOpcodeGasServiceListData.parseAsync(data), + responseValidator: async data => await zIntTransactionCallFrameOpcodeGasServiceListResponse.parseAsync(data), url: '/api/v1/int_transaction_call_frame_opcode_gas', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intTransactionCallFrameOpcodeGasServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntTransactionCallFrameOpcodeGasServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntTransactionCallFrameOpcodeGasServiceGetResponse.parseAsync(data), +export const intTransactionCallFrameOpcodeGasServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntTransactionCallFrameOpcodeGasServiceGetResponses, + IntTransactionCallFrameOpcodeGasServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTransactionCallFrameOpcodeGasServiceGetData.parseAsync(data), + responseValidator: async data => await zIntTransactionCallFrameOpcodeGasServiceGetResponse.parseAsync(data), url: '/api/v1/int_transaction_call_frame_opcode_gas/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTransactionCallFrameOpcodeResourceGasServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntTransactionCallFrameOpcodeResourceGasServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntTransactionCallFrameOpcodeResourceGasServiceListResponse.parseAsync(data), +export const intTransactionCallFrameOpcodeResourceGasServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntTransactionCallFrameOpcodeResourceGasServiceListResponses, + IntTransactionCallFrameOpcodeResourceGasServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTransactionCallFrameOpcodeResourceGasServiceListData.parseAsync(data), + responseValidator: async data => + await zIntTransactionCallFrameOpcodeResourceGasServiceListResponse.parseAsync(data), url: '/api/v1/int_transaction_call_frame_opcode_resource_gas', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intTransactionCallFrameOpcodeResourceGasServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntTransactionCallFrameOpcodeResourceGasServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntTransactionCallFrameOpcodeResourceGasServiceGetResponse.parseAsync(data), +export const intTransactionCallFrameOpcodeResourceGasServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntTransactionCallFrameOpcodeResourceGasServiceGetResponses, + IntTransactionCallFrameOpcodeResourceGasServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTransactionCallFrameOpcodeResourceGasServiceGetData.parseAsync(data), + responseValidator: async data => await zIntTransactionCallFrameOpcodeResourceGasServiceGetResponse.parseAsync(data), url: '/api/v1/int_transaction_call_frame_opcode_resource_gas/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTransactionOpcodeGasServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntTransactionOpcodeGasServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntTransactionOpcodeGasServiceListResponse.parseAsync(data), +export const intTransactionOpcodeGasServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntTransactionOpcodeGasServiceListResponses, + IntTransactionOpcodeGasServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTransactionOpcodeGasServiceListData.parseAsync(data), + responseValidator: async data => await zIntTransactionOpcodeGasServiceListResponse.parseAsync(data), url: '/api/v1/int_transaction_opcode_gas', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intTransactionOpcodeGasServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntTransactionOpcodeGasServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntTransactionOpcodeGasServiceGetResponse.parseAsync(data), +export const intTransactionOpcodeGasServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntTransactionOpcodeGasServiceGetResponses, + IntTransactionOpcodeGasServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTransactionOpcodeGasServiceGetData.parseAsync(data), + responseValidator: async data => await zIntTransactionOpcodeGasServiceGetResponse.parseAsync(data), url: '/api/v1/int_transaction_opcode_gas/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTransactionReceiptSizeServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntTransactionReceiptSizeServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntTransactionReceiptSizeServiceListResponse.parseAsync(data), +export const intTransactionReceiptSizeServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntTransactionReceiptSizeServiceListResponses, + IntTransactionReceiptSizeServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTransactionReceiptSizeServiceListData.parseAsync(data), + responseValidator: async data => await zIntTransactionReceiptSizeServiceListResponse.parseAsync(data), url: '/api/v1/int_transaction_receipt_size', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intTransactionReceiptSizeServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntTransactionReceiptSizeServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntTransactionReceiptSizeServiceGetResponse.parseAsync(data), +export const intTransactionReceiptSizeServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntTransactionReceiptSizeServiceGetResponses, + IntTransactionReceiptSizeServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTransactionReceiptSizeServiceGetData.parseAsync(data), + responseValidator: async data => await zIntTransactionReceiptSizeServiceGetResponse.parseAsync(data), url: '/api/v1/int_transaction_receipt_size/{block_number}', - ...options -}); + ...options, + }); /** * List records * * Retrieve paginated results with optional filtering */ -export const intTransactionResourceGasServiceList = (options?: Options) => (options?.client ?? client).get({ - requestValidator: async (data) => await zIntTransactionResourceGasServiceListData.parseAsync(data), - responseValidator: async (data) => await zIntTransactionResourceGasServiceListResponse.parseAsync(data), +export const intTransactionResourceGasServiceList = ( + options?: Options +) => + (options?.client ?? client).get< + IntTransactionResourceGasServiceListResponses, + IntTransactionResourceGasServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTransactionResourceGasServiceListData.parseAsync(data), + responseValidator: async data => await zIntTransactionResourceGasServiceListResponse.parseAsync(data), url: '/api/v1/int_transaction_resource_gas', - ...options -}); + ...options, + }); /** * Get record * * Retrieve a single record by block_number */ -export const intTransactionResourceGasServiceGet = (options: Options) => (options.client ?? client).get({ - requestValidator: async (data) => await zIntTransactionResourceGasServiceGetData.parseAsync(data), - responseValidator: async (data) => await zIntTransactionResourceGasServiceGetResponse.parseAsync(data), +export const intTransactionResourceGasServiceGet = ( + options: Options +) => + (options.client ?? client).get< + IntTransactionResourceGasServiceGetResponses, + IntTransactionResourceGasServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zIntTransactionResourceGasServiceGetData.parseAsync(data), + responseValidator: async data => await zIntTransactionResourceGasServiceGetResponse.parseAsync(data), url: '/api/v1/int_transaction_resource_gas/{block_number}', - ...options -}); + ...options, + }); diff --git a/src/api/types.gen.ts b/src/api/types.gen.ts index a4de10fdb..6750eee3e 100644 --- a/src/api/types.gen.ts +++ b/src/api/types.gen.ts @@ -1,101961 +1,110904 @@ // This file is auto-generated by @hey-api/openapi-ts export type ClientOptions = { - baseUrl: 'https://cbt-api-mainnet.analytics.production.platform.ethpandaops.io' | (string & {}); + baseUrl: 'http://localhost:9091' | (string & {}); }; export type AdminCbtIncremental = { - /** - * The database name - */ - database?: string; - /** - * The size of the interval processed - */ - interval?: number; - /** - * The starting position of the processed interval - */ - position?: number; - /** - * The table name - */ - table?: string; - updated_date_time?: number; + /** + * The database name + */ + database?: string; + /** + * The size of the interval processed + */ + interval?: number; + /** + * The starting position of the processed interval + */ + position?: number; + /** + * The table name + */ + table?: string; + updated_date_time?: number; +}; + +export type AdminCbtScheduled = { + /** + * The database name + */ + database?: string; + /** + * The start time of the scheduled job + */ + start_date_time?: number; + /** + * The table name + */ + table?: string; + updated_date_time?: number; }; export type DimBlockBlobSubmitter = { - /** - * The blob submitter address - */ - address?: string; - /** - * The block number - */ - block_number?: number; - /** - * The name of the blob submitter - */ - name?: string | null; - /** - * The transaction hash - */ - transaction_hash?: string; - /** - * The transaction index - */ - transaction_index?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The versioned hashes of the blob submitter - */ - versioned_hashes?: Array; + /** + * The blob submitter address + */ + address?: string; + /** + * The block number + */ + block_number?: number; + /** + * The name of the blob submitter + */ + name?: string | null; + /** + * The transaction hash + */ + transaction_hash?: string; + /** + * The transaction index + */ + transaction_index?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The versioned hashes of the blob submitter + */ + versioned_hashes?: Array; }; export type DimContractOwner = { - /** - * Account owner of the contract - */ - account_owner?: string | null; - /** - * The contract address - */ - contract_address?: string; - /** - * Name of the contract - */ - contract_name?: string | null; - /** - * Factory contract or deployer address - */ - factory_contract?: string | null; - /** - * Labels/categories (e.g., stablecoin, dex, circle) - */ - labels?: Array; - /** - * Owner key identifier - */ - owner_key?: string | null; - /** - * Sources of the label data (e.g., growthepie, dune, eth-labels) - */ - sources?: Array; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Account owner of the contract + */ + account_owner?: string | null; + /** + * The contract address + */ + contract_address?: string; + /** + * Name of the contract + */ + contract_name?: string | null; + /** + * Factory contract or deployer address + */ + factory_contract?: string | null; + /** + * Labels/categories (e.g., stablecoin, dex, circle) + */ + labels?: Array; + /** + * Owner key identifier + */ + owner_key?: string | null; + /** + * Sources of the label data (e.g., growthepie, dune, eth-labels) + */ + sources?: Array; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type DimFunctionSignature = { - /** - * Whether this signature comes from a verified contract source - */ - has_verified_contract?: boolean; - /** - * Function signature name (e.g., transfer(address,uint256)) - */ - name?: string; - /** - * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) - */ - selector?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Whether this signature comes from a verified contract source + */ + has_verified_contract?: boolean; + /** + * Function signature name (e.g., transfer(address,uint256)) + */ + name?: string; + /** + * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) + */ + selector?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type DimNode = { - /** - * Additional attributes of the node - */ - attributes?: { - [key: string]: string; - }; - /** - * Groups the node belongs to - */ - groups?: Array; - /** - * The name of the node - */ - name?: string | null; - /** - * The source entity of the node - */ - source?: string; - /** - * Tags associated with the node - */ - tags?: Array; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The index of the validator - */ - validator_index?: number; + /** + * Additional attributes of the node + */ + attributes?: { + [key: string]: string; + }; + /** + * Groups the node belongs to + */ + groups?: Array; + /** + * The name of the node + */ + name?: string | null; + /** + * The source entity of the node + */ + source?: string; + /** + * Tags associated with the node + */ + tags?: Array; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The index of the validator + */ + validator_index?: number; }; export type DimRocketpoolNode = { - /** - * Number of minipools created minus destroyed for this node operator - */ - active_minipool_count?: number; - /** - * Wall clock time of the node operators earliest observed Rocket Pool activity - */ - first_seen_date_time?: number; - /** - * Whether the node operator is currently registered for the smoothing pool - */ - in_smoothing_pool?: boolean; - /** - * Wall clock time of the node operators latest observed minipool or megapool activity - */ - last_activity_date_time?: number; - /** - * Number of Saturn megapool validators for this node operator - */ - megapool_validator_count?: number; - /** - * Total number of minipools ever created by this node operator - */ - minipool_count?: number; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed - */ - node_operator?: string; - /** - * Wall clock time the node registered with Rocket Pool - */ - registered_date_time?: number; - /** - * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events - */ - rpl_staked_wei?: string; - /** - * The self-reported timezone location string (e.g. Europe/London), empty if unknown - */ - timezone?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Total number of beacon chain validators (minipool and megapool) linked to this node operator - */ - validator_count?: number; + /** + * Number of minipools created minus destroyed for this node operator + */ + active_minipool_count?: number; + /** + * Wall clock time of the node operators earliest observed Rocket Pool activity + */ + first_seen_date_time?: number; + /** + * Whether the node operator is currently registered for the smoothing pool + */ + in_smoothing_pool?: boolean; + /** + * Wall clock time of the node operators latest observed minipool or megapool activity + */ + last_activity_date_time?: number; + /** + * Number of Saturn megapool validators for this node operator + */ + megapool_validator_count?: number; + /** + * Total number of minipools ever created by this node operator + */ + minipool_count?: number; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed + */ + node_operator?: string; + /** + * Wall clock time the node registered with Rocket Pool + */ + registered_date_time?: number; + /** + * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events + */ + rpl_staked_wei?: string; + /** + * The self-reported timezone location string (e.g. Europe/London), empty if unknown + */ + timezone?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Total number of beacon chain validators (minipool and megapool) linked to this node operator + */ + validator_count?: number; }; export type DimTokenContract = { - /** - * The token contract address - */ - contract_address?: string; - /** - * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 - */ - token_standard?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The token contract address + */ + contract_address?: string; + /** + * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 + */ + token_standard?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type DimValidatorPubkey = { - /** - * The public key of the validator - */ - pubkey?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The index of the validator - */ - validator_index?: number; + /** + * The public key of the validator + */ + pubkey?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The index of the validator + */ + validator_index?: number; }; export type DimValidatorStatus = { - /** - * Epoch when validator became eligible for activation - */ - activation_eligibility_epoch?: number | null; - /** - * Epoch when activation is/was scheduled - */ - activation_epoch?: number | null; - /** - * First epoch this status was observed - */ - epoch?: number; - /** - * Wall clock time of the first observed epoch - */ - epoch_start_date_time?: number; - /** - * Epoch when exit is/was scheduled - */ - exit_epoch?: number | null; - /** - * The public key of the validator - */ - pubkey?: string; - /** - * Whether the validator was slashed at this transition - */ - slashed?: boolean; - /** - * Beacon chain validator status (e.g. pending_initialized, active_ongoing) - */ - status?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The index of the validator - */ - validator_index?: number; - /** - * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch - */ - version?: number; - /** - * Epoch when withdrawal becomes possible - */ - withdrawable_epoch?: number | null; + /** + * Epoch when validator became eligible for activation + */ + activation_eligibility_epoch?: number | null; + /** + * Epoch when activation is/was scheduled + */ + activation_epoch?: number | null; + /** + * First epoch this status was observed + */ + epoch?: number; + /** + * Wall clock time of the first observed epoch + */ + epoch_start_date_time?: number; + /** + * Epoch when exit is/was scheduled + */ + exit_epoch?: number | null; + /** + * The public key of the validator + */ + pubkey?: string; + /** + * Whether the validator was slashed at this transition + */ + slashed?: boolean; + /** + * Beacon chain validator status (e.g. pending_initialized, active_ongoing) + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The index of the validator + */ + validator_index?: number; + /** + * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch + */ + version?: number; + /** + * Epoch when withdrawal becomes possible + */ + withdrawable_epoch?: number | null; +}; + +export type FctAttestationCorrectness = { + /** + * The beacon block root hash + */ + block_root?: string | null; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The number of votes for the block proposed in the current slot + */ + votes_head?: number | null; + /** + * The maximum number of scheduled votes for the block + */ + votes_max?: number; + /** + * The number of votes for any blocks proposed in previous slots + */ + votes_other?: number | null; +}; + +export type FctAttestationCorrectnessByValidator = { + /** + * The index of the validator attesting + */ + attesting_validator_index?: number; + /** + * The beacon block root hash that was attested, null means the attestation was missed + */ + block_root?: string | null; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The distance from the slot when the attestation was included in a block, sourced from canonical. Null when only the head source is present + */ + inclusion_distance?: number | null; + /** + * The distance from the slot when the attestation was propagated, sourced from head. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. Null when only the canonical source is present + */ + propagation_distance?: number | null; + /** + * The slot number + */ + slot?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago + */ + slot_distance?: number | null; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Sourced from canonical: "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available). Null when only the head source is present (not yet finalized) + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctAttestationCorrectnessByValidatorCanonical = { - /** - * The index of the validator attesting - */ - attesting_validator_index?: number; - /** - * The beacon block root hash that was attested - */ - block_root?: string | null; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The distance from the slot when the attestation was included in a block - */ - inclusion_distance?: number | null; - /** - * The slot number - */ - slot?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago - */ - slot_distance?: number | null; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) - */ - status?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The index of the validator attesting + */ + attesting_validator_index?: number; + /** + * The beacon block root hash that was attested + */ + block_root?: string | null; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The distance from the slot when the attestation was included in a block + */ + inclusion_distance?: number | null; + /** + * The slot number + */ + slot?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago + */ + slot_distance?: number | null; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctAttestationCorrectnessByValidatorHead = { - /** - * The index of the validator attesting - */ - attesting_validator_index?: number; - /** - * The beacon block root hash that was attested, null means the attestation was missed - */ - block_root?: string | null; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. - */ - propagation_distance?: number | null; - /** - * The slot number - */ - slot?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago - */ - slot_distance?: number | null; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The index of the validator attesting + */ + attesting_validator_index?: number; + /** + * The beacon block root hash that was attested, null means the attestation was missed + */ + block_root?: string | null; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. + */ + propagation_distance?: number | null; + /** + * The slot number + */ + slot?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago + */ + slot_distance?: number | null; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctAttestationCorrectnessCanonical = { - /** - * The beacon block root hash - */ - block_root?: string | null; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The number of votes for the block proposed in the current slot - */ - votes_head?: number | null; - /** - * The maximum number of scheduled votes for the block - */ - votes_max?: number; - /** - * The number of votes for any blocks proposed in previous slots - */ - votes_other?: number | null; + /** + * The beacon block root hash + */ + block_root?: string | null; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The number of votes for the block proposed in the current slot + */ + votes_head?: number | null; + /** + * The maximum number of scheduled votes for the block + */ + votes_max?: number; + /** + * The number of votes for any blocks proposed in previous slots + */ + votes_other?: number | null; }; export type FctAttestationCorrectnessHead = { - /** - * The beacon block root hash - */ - block_root?: string | null; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The number of votes for the block proposed in the current slot - */ - votes_head?: number | null; - /** - * The maximum number of scheduled votes for the block - */ - votes_max?: number; - /** - * The number of votes for any blocks proposed in previous slots - */ - votes_other?: number | null; + /** + * The beacon block root hash + */ + block_root?: string | null; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The number of votes for the block proposed in the current slot + */ + votes_head?: number | null; + /** + * The maximum number of scheduled votes for the block + */ + votes_max?: number; + /** + * The number of votes for any blocks proposed in previous slots + */ + votes_other?: number | null; }; export type FctAttestationFirstSeenByValidator = { - /** - * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. - */ - agg_seen_slot_start_diff?: number | null; - /** - * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) - */ - agg_source?: string; - /** - * Head vote (beacon block root) for this attestation - */ - block_root?: string; - /** - * The committee the validator was assigned to for this slot - */ - committee_index?: string; - /** - * The epoch containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. - */ - raw_seen_slot_start_diff?: number | null; - /** - * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) - */ - raw_source?: string; - /** - * The slot the validator was attesting for - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Source checkpoint epoch for this attestation - */ - source_epoch?: number; - /** - * Source checkpoint root for this attestation - */ - source_root?: string; - /** - * Target checkpoint epoch for this attestation - */ - target_epoch?: number; - /** - * Target checkpoint root for this attestation - */ - target_root?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The validator index - */ - validator_index?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. + */ + agg_seen_slot_start_diff?: number | null; + /** + * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) + */ + agg_source?: string; + /** + * Head vote (beacon block root) for this attestation + */ + block_root?: string; + /** + * The committee the validator was assigned to for this slot + */ + committee_index?: string; + /** + * The epoch containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. + */ + raw_seen_slot_start_diff?: number | null; + /** + * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) + */ + raw_source?: string; + /** + * The slot the validator was attesting for + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Source checkpoint epoch for this attestation + */ + source_epoch?: number; + /** + * Source checkpoint root for this attestation + */ + source_root?: string; + /** + * Target checkpoint epoch for this attestation + */ + target_epoch?: number; + /** + * Target checkpoint root for this attestation + */ + target_root?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The validator index + */ + validator_index?: number; }; export type FctAttestationFirstSeenChunked50Ms = { - /** - * The number of attestations in this chunk - */ - attestation_count?: number; - /** - * The beacon block root hash that was attested, null means the attestation was missed - */ - block_root?: string; - /** - * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot - */ - chunk_slot_start_diff?: number; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The number of attestations in this chunk + */ + attestation_count?: number; + /** + * The beacon block root hash that was attested, null means the attestation was missed + */ + block_root?: string; + /** + * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot + */ + chunk_slot_start_diff?: number; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctAttestationInclusionDelayDaily = { - /** - * Average inclusion delay (slots) - */ - avg_inclusion_delay?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_inclusion_delay?: number; - /** - * Maximum inclusion delay (slots) - */ - max_inclusion_delay?: number; - /** - * Minimum inclusion delay (slots) - */ - min_inclusion_delay?: number; - /** - * Moving average inclusion delay (7-day window) - */ - moving_avg_inclusion_delay?: number; - /** - * 5th percentile inclusion delay - */ - p05_inclusion_delay?: number; - /** - * 50th percentile (median) inclusion delay - */ - p50_inclusion_delay?: number; - /** - * 95th percentile inclusion delay - */ - p95_inclusion_delay?: number; - /** - * Number of slots in this day - */ - slot_count?: number; - /** - * Standard deviation of inclusion delay - */ - stddev_inclusion_delay?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_inclusion_delay?: number; + /** + * Average inclusion delay (slots) + */ + avg_inclusion_delay?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_inclusion_delay?: number; + /** + * Maximum inclusion delay (slots) + */ + max_inclusion_delay?: number; + /** + * Minimum inclusion delay (slots) + */ + min_inclusion_delay?: number; + /** + * Moving average inclusion delay (7-day window) + */ + moving_avg_inclusion_delay?: number; + /** + * 5th percentile inclusion delay + */ + p05_inclusion_delay?: number; + /** + * 50th percentile (median) inclusion delay + */ + p50_inclusion_delay?: number; + /** + * 95th percentile inclusion delay + */ + p95_inclusion_delay?: number; + /** + * Number of slots in this day + */ + slot_count?: number; + /** + * Standard deviation of inclusion delay + */ + stddev_inclusion_delay?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_inclusion_delay?: number; }; export type FctAttestationInclusionDelayHourly = { - /** - * Average inclusion delay (slots) - */ - avg_inclusion_delay?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_inclusion_delay?: number; - /** - * Maximum inclusion delay (slots) - */ - max_inclusion_delay?: number; - /** - * Minimum inclusion delay (slots) - */ - min_inclusion_delay?: number; - /** - * Moving average inclusion delay (6-hour window) - */ - moving_avg_inclusion_delay?: number; - /** - * 5th percentile inclusion delay - */ - p05_inclusion_delay?: number; - /** - * 50th percentile (median) inclusion delay - */ - p50_inclusion_delay?: number; - /** - * 95th percentile inclusion delay - */ - p95_inclusion_delay?: number; - /** - * Number of slots in this hour - */ - slot_count?: number; - /** - * Standard deviation of inclusion delay - */ - stddev_inclusion_delay?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_inclusion_delay?: number; + /** + * Average inclusion delay (slots) + */ + avg_inclusion_delay?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_inclusion_delay?: number; + /** + * Maximum inclusion delay (slots) + */ + max_inclusion_delay?: number; + /** + * Minimum inclusion delay (slots) + */ + min_inclusion_delay?: number; + /** + * Moving average inclusion delay (6-hour window) + */ + moving_avg_inclusion_delay?: number; + /** + * 5th percentile inclusion delay + */ + p05_inclusion_delay?: number; + /** + * 50th percentile (median) inclusion delay + */ + p50_inclusion_delay?: number; + /** + * 95th percentile inclusion delay + */ + p95_inclusion_delay?: number; + /** + * Number of slots in this hour + */ + slot_count?: number; + /** + * Standard deviation of inclusion delay + */ + stddev_inclusion_delay?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_inclusion_delay?: number; +}; + +export type FctAttestationLivenessByEntity = { + /** + * Number of attestations for this entity + */ + attestation_count?: number; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped + */ + entity?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Number of missed attestations for this entity + */ + missed_count?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctAttestationLivenessByEntityHead = { - /** - * Number of attestations for this entity - */ - attestation_count?: number; - /** - * The entity (staking provider) associated with the validators, unknown if not mapped - */ - entity?: string; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Number of missed attestations for this entity - */ - missed_count?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Number of attestations for this entity + */ + attestation_count?: number; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped + */ + entity?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Number of missed attestations for this entity + */ + missed_count?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctAttestationObservationByNode = { - /** - * Number of attestations observed by this node in this slot - */ - attestation_count?: number; - /** - * Average time from slot start to see attestations (milliseconds, rounded) - */ - avg_seen_slot_start_diff?: number; - /** - * Representative beacon block root (from most common attestation target) - */ - block_root?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" - */ - classification?: string; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Maximum time from slot start to see an attestation (milliseconds) - */ - max_seen_slot_start_diff?: number; - /** - * Median time from slot start to see attestations (milliseconds, rounded) - */ - median_seen_slot_start_diff?: number; - /** - * Autonomous system number of the client - */ - meta_client_geo_autonomous_system_number?: number | null; - /** - * Autonomous system organization of the client - */ - meta_client_geo_autonomous_system_organization?: string | null; - /** - * City of the client - */ - meta_client_geo_city?: string; - /** - * Continent code of the client - */ - meta_client_geo_continent_code?: string; - /** - * Country of the client - */ - meta_client_geo_country?: string; - /** - * Country code of the client - */ - meta_client_geo_country_code?: string; - /** - * Latitude of the client - */ - meta_client_geo_latitude?: number | null; - /** - * Longitude of the client - */ - meta_client_geo_longitude?: number | null; - /** - * Implementation of the client - */ - meta_client_implementation?: string; - /** - * Name of the client - */ - meta_client_name?: string; - /** - * Version of the client - */ - meta_client_version?: string; - /** - * Ethereum consensus client implementation - */ - meta_consensus_implementation?: string; - /** - * Ethereum consensus client version - */ - meta_consensus_version?: string; - /** - * Minimum time from slot start to see an attestation (milliseconds) - */ - min_seen_slot_start_diff?: number; - /** - * ID of the node - */ - node_id?: string; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Username of the node - */ - username?: string; + /** + * Number of attestations observed by this node in this slot + */ + attestation_count?: number; + /** + * Average time from slot start to see attestations (milliseconds, rounded) + */ + avg_seen_slot_start_diff?: number; + /** + * Representative beacon block root (from most common attestation target) + */ + block_root?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" + */ + classification?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Maximum time from slot start to see an attestation (milliseconds) + */ + max_seen_slot_start_diff?: number; + /** + * Median time from slot start to see attestations (milliseconds, rounded) + */ + median_seen_slot_start_diff?: number; + /** + * Autonomous system number of the client + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client + */ + meta_client_geo_city?: string; + /** + * Continent code of the client + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client + */ + meta_client_geo_country?: string; + /** + * Country code of the client + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client + */ + meta_client_implementation?: string; + /** + * Name of the client + */ + meta_client_name?: string; + /** + * Version of the client + */ + meta_client_version?: string; + /** + * Ethereum consensus client implementation + */ + meta_consensus_implementation?: string; + /** + * Ethereum consensus client version + */ + meta_consensus_version?: string; + /** + * Minimum time from slot start to see an attestation (milliseconds) + */ + min_seen_slot_start_diff?: number; + /** + * ID of the node + */ + node_id?: string; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Username of the node + */ + username?: string; }; export type FctAttestationParticipationRateDaily = { - /** - * Average participation rate (%) - */ - avg_participation_rate?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_participation_rate?: number; - /** - * Maximum participation rate (%) - */ - max_participation_rate?: number; - /** - * Minimum participation rate (%) - */ - min_participation_rate?: number; - /** - * Moving average participation rate (7-day window) - */ - moving_avg_participation_rate?: number; - /** - * 5th percentile participation rate - */ - p05_participation_rate?: number; - /** - * 50th percentile (median) participation rate - */ - p50_participation_rate?: number; - /** - * 95th percentile participation rate - */ - p95_participation_rate?: number; - /** - * Number of slots in this day - */ - slot_count?: number; - /** - * Standard deviation of participation rate - */ - stddev_participation_rate?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_participation_rate?: number; + /** + * Average participation rate (%) + */ + avg_participation_rate?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_participation_rate?: number; + /** + * Maximum participation rate (%) + */ + max_participation_rate?: number; + /** + * Minimum participation rate (%) + */ + min_participation_rate?: number; + /** + * Moving average participation rate (7-day window) + */ + moving_avg_participation_rate?: number; + /** + * 5th percentile participation rate + */ + p05_participation_rate?: number; + /** + * 50th percentile (median) participation rate + */ + p50_participation_rate?: number; + /** + * 95th percentile participation rate + */ + p95_participation_rate?: number; + /** + * Number of slots in this day + */ + slot_count?: number; + /** + * Standard deviation of participation rate + */ + stddev_participation_rate?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_participation_rate?: number; }; export type FctAttestationParticipationRateHourly = { - /** - * Average participation rate (%) - */ - avg_participation_rate?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_participation_rate?: number; - /** - * Maximum participation rate (%) - */ - max_participation_rate?: number; - /** - * Minimum participation rate (%) - */ - min_participation_rate?: number; - /** - * Moving average participation rate (6-hour window) - */ - moving_avg_participation_rate?: number; - /** - * 5th percentile participation rate - */ - p05_participation_rate?: number; - /** - * 50th percentile (median) participation rate - */ - p50_participation_rate?: number; - /** - * 95th percentile participation rate - */ - p95_participation_rate?: number; - /** - * Number of slots in this hour - */ - slot_count?: number; - /** - * Standard deviation of participation rate - */ - stddev_participation_rate?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_participation_rate?: number; + /** + * Average participation rate (%) + */ + avg_participation_rate?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_participation_rate?: number; + /** + * Maximum participation rate (%) + */ + max_participation_rate?: number; + /** + * Minimum participation rate (%) + */ + min_participation_rate?: number; + /** + * Moving average participation rate (6-hour window) + */ + moving_avg_participation_rate?: number; + /** + * 5th percentile participation rate + */ + p05_participation_rate?: number; + /** + * 50th percentile (median) participation rate + */ + p50_participation_rate?: number; + /** + * 95th percentile participation rate + */ + p95_participation_rate?: number; + /** + * Number of slots in this hour + */ + slot_count?: number; + /** + * Standard deviation of participation rate + */ + stddev_participation_rate?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_participation_rate?: number; }; export type FctAttestationVoteCorrectnessByValidator = { - /** - * Whether the validator attested in this slot - */ - attested?: boolean; - /** - * Whether the head vote was correct. NULL if not attested - */ - head_correct?: boolean | null; - /** - * Inclusion distance for the attestation. NULL if not attested - */ - inclusion_distance?: number | null; - /** - * The slot number - */ - slot?: number; - /** - * The start time of the slot - */ - slot_start_date_time?: number; - /** - * Whether the source vote was correct. NULL if not attested - */ - source_correct?: boolean | null; - /** - * Whether the target vote was correct. NULL if not attested - */ - target_correct?: boolean | null; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The index of the validator - */ - validator_index?: number; + /** + * Whether the validator attested in this slot + */ + attested?: boolean; + /** + * Whether the head vote was correct. NULL if not attested + */ + head_correct?: boolean | null; + /** + * Inclusion distance for the attestation. NULL if not attested + */ + inclusion_distance?: number | null; + /** + * The slot number + */ + slot?: number; + /** + * The start time of the slot + */ + slot_start_date_time?: number; + /** + * Whether the source vote was correct. NULL if not attested + */ + source_correct?: boolean | null; + /** + * Whether the target vote was correct. NULL if not attested + */ + target_correct?: boolean | null; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The index of the validator + */ + validator_index?: number; }; export type FctAttestationVoteCorrectnessByValidatorDaily = { - /** - * Number of attestations made - */ - attested_count?: number; - /** - * Average inclusion distance for attested slots. NULL if no attestations - */ - avg_inclusion_distance?: number | null; - /** - * The start of the day for this aggregation - */ - day_start_date?: string; - /** - * Number of head votes that were correct - */ - head_correct_count?: number; - /** - * Number of attestations missed - */ - missed_count?: number; - /** - * Number of source votes that were correct - */ - source_correct_count?: number; - /** - * Number of target votes that were correct - */ - target_correct_count?: number; - /** - * Total attestation duties for the validator in this day - */ - total_duties?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The index of the validator - */ - validator_index?: number; + /** + * Number of attestations made + */ + attested_count?: number; + /** + * Average inclusion distance for attested slots. NULL if no attestations + */ + avg_inclusion_distance?: number | null; + /** + * The start of the day for this aggregation + */ + day_start_date?: string; + /** + * Number of head votes that were correct + */ + head_correct_count?: number; + /** + * Number of attestations missed + */ + missed_count?: number; + /** + * Number of source votes that were correct + */ + source_correct_count?: number; + /** + * Number of target votes that were correct + */ + target_correct_count?: number; + /** + * Total attestation duties for the validator in this day + */ + total_duties?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The index of the validator + */ + validator_index?: number; }; export type FctAttestationVoteCorrectnessByValidatorHourly = { - /** - * Number of attestations made - */ - attested_count?: number; - /** - * Average inclusion distance for attested slots. NULL if no attestations - */ - avg_inclusion_distance?: number | null; - /** - * Number of head votes that were correct - */ - head_correct_count?: number; - /** - * The start of the hour for this aggregation - */ - hour_start_date_time?: number; - /** - * Number of attestations missed - */ - missed_count?: number; - /** - * Number of source votes that were correct - */ - source_correct_count?: number; - /** - * Number of target votes that were correct - */ - target_correct_count?: number; - /** - * Total attestation duties for the validator in this hour - */ - total_duties?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The index of the validator - */ - validator_index?: number; + /** + * Number of attestations made + */ + attested_count?: number; + /** + * Average inclusion distance for attested slots. NULL if no attestations + */ + avg_inclusion_distance?: number | null; + /** + * Number of head votes that were correct + */ + head_correct_count?: number; + /** + * The start of the hour for this aggregation + */ + hour_start_date_time?: number; + /** + * Number of attestations missed + */ + missed_count?: number; + /** + * Number of source votes that were correct + */ + source_correct_count?: number; + /** + * Number of target votes that were correct + */ + target_correct_count?: number; + /** + * Total attestation duties for the validator in this hour + */ + total_duties?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The index of the validator + */ + validator_index?: number; }; export type FctBlobCountDaily = { - /** - * Average blob count per slot - */ - avg_blob_count?: number; - /** - * Number of slots with blobs in this day - */ - block_count?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_blob_count?: number; - /** - * Maximum blob count in a slot - */ - max_blob_count?: number; - /** - * Minimum blob count in a slot - */ - min_blob_count?: number; - /** - * Moving average blob count (7-day window) - */ - moving_avg_blob_count?: number; - /** - * 5th percentile blob count - */ - p05_blob_count?: number; - /** - * 50th percentile (median) blob count - */ - p50_blob_count?: number; - /** - * 95th percentile blob count - */ - p95_blob_count?: number; - /** - * Standard deviation of blob count - */ - stddev_blob_count?: number; - /** - * Total blobs in this day - */ - total_blobs?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_blob_count?: number; + /** + * Average blob count per slot + */ + avg_blob_count?: number; + /** + * Number of slots with blobs in this day + */ + block_count?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_blob_count?: number; + /** + * Maximum blob count in a slot + */ + max_blob_count?: number; + /** + * Minimum blob count in a slot + */ + min_blob_count?: number; + /** + * Moving average blob count (7-day window) + */ + moving_avg_blob_count?: number; + /** + * 5th percentile blob count + */ + p05_blob_count?: number; + /** + * 50th percentile (median) blob count + */ + p50_blob_count?: number; + /** + * 95th percentile blob count + */ + p95_blob_count?: number; + /** + * Standard deviation of blob count + */ + stddev_blob_count?: number; + /** + * Total blobs in this day + */ + total_blobs?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_blob_count?: number; }; export type FctBlobCountHourly = { - /** - * Average blob count per slot - */ - avg_blob_count?: number; - /** - * Number of slots with blobs in this hour - */ - block_count?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_blob_count?: number; - /** - * Maximum blob count in a slot - */ - max_blob_count?: number; - /** - * Minimum blob count in a slot - */ - min_blob_count?: number; - /** - * Moving average blob count (6-hour window) - */ - moving_avg_blob_count?: number; - /** - * 5th percentile blob count - */ - p05_blob_count?: number; - /** - * 50th percentile (median) blob count - */ - p50_blob_count?: number; - /** - * 95th percentile blob count - */ - p95_blob_count?: number; - /** - * Standard deviation of blob count - */ - stddev_blob_count?: number; - /** - * Total blobs in this hour - */ - total_blobs?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_blob_count?: number; + /** + * Average blob count per slot + */ + avg_blob_count?: number; + /** + * Number of slots with blobs in this hour + */ + block_count?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_blob_count?: number; + /** + * Maximum blob count in a slot + */ + max_blob_count?: number; + /** + * Minimum blob count in a slot + */ + min_blob_count?: number; + /** + * Moving average blob count (6-hour window) + */ + moving_avg_blob_count?: number; + /** + * 5th percentile blob count + */ + p05_blob_count?: number; + /** + * 50th percentile (median) blob count + */ + p50_blob_count?: number; + /** + * 95th percentile blob count + */ + p95_blob_count?: number; + /** + * Standard deviation of blob count + */ + stddev_blob_count?: number; + /** + * Total blobs in this hour + */ + total_blobs?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_blob_count?: number; }; export type FctBlock = { - /** - * The root hash of the beacon block - */ - block_root?: string; - /** - * The total bytes of the beacon block payload - */ - block_total_bytes?: number | null; - /** - * The total bytes of the beacon block payload when compressed using snappy - */ - block_total_bytes_compressed?: number | null; - /** - * The version of the beacon block - */ - block_version?: string; - /** - * The epoch number from beacon block payload - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The block hash of the associated execution block - */ - eth1_data_block_hash?: string; - /** - * The root of the deposit tree in the associated execution block - */ - eth1_data_deposit_root?: string; - /** - * Base fee per gas for execution payload - */ - execution_payload_base_fee_per_gas?: string | null; - /** - * Gas used for blobs in execution payload - */ - execution_payload_blob_gas_used?: number | null; - /** - * The block hash of the execution payload - */ - execution_payload_block_hash?: string; - /** - * The block number of the execution payload - */ - execution_payload_block_number?: number; - /** - * Excess gas used for blobs in execution payload - */ - execution_payload_excess_blob_gas?: number | null; - /** - * The recipient of the fee for this execution payload - */ - execution_payload_fee_recipient?: string; - /** - * Gas limit for execution payload - */ - execution_payload_gas_limit?: number | null; - /** - * Gas used for execution payload - */ - execution_payload_gas_used?: number | null; - /** - * The parent hash of the execution payload - */ - execution_payload_parent_hash?: string; - /** - * The state root of the execution payload - */ - execution_payload_state_root?: string; - /** - * The transaction count of the execution payload - */ - execution_payload_transactions_count?: number | null; - /** - * The transaction total bytes of the execution payload - */ - execution_payload_transactions_total_bytes?: number | null; - /** - * The transaction total bytes of the execution payload when compressed using snappy - */ - execution_payload_transactions_total_bytes_compressed?: number | null; - /** - * The root hash of the parent beacon block - */ - parent_root?: string; - /** - * The index of the validator that proposed the beacon block - */ - proposer_index?: number; - /** - * The slot number from beacon block payload - */ - slot?: number; - /** - * The wall clock time when the reorg slot started - */ - slot_start_date_time?: number; - /** - * The root hash of the beacon state at this block - */ - state_root?: string; - /** - * Can be "canonical" or "orphaned" - */ - status?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The root hash of the beacon block + */ + block_root?: string; + /** + * The total bytes of the beacon block payload + */ + block_total_bytes?: number | null; + /** + * The total bytes of the beacon block payload when compressed using snappy + */ + block_total_bytes_compressed?: number | null; + /** + * The version of the beacon block + */ + block_version?: string; + /** + * The epoch number from beacon block payload + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The block hash of the associated execution block + */ + eth1_data_block_hash?: string; + /** + * The root of the deposit tree in the associated execution block + */ + eth1_data_deposit_root?: string; + /** + * Base fee per gas for execution payload + */ + execution_payload_base_fee_per_gas?: string | null; + /** + * Gas used for blobs in execution payload + */ + execution_payload_blob_gas_used?: number | null; + /** + * The block hash of the execution payload + */ + execution_payload_block_hash?: string; + /** + * The block number of the execution payload + */ + execution_payload_block_number?: number; + /** + * Excess gas used for blobs in execution payload + */ + execution_payload_excess_blob_gas?: number | null; + /** + * The recipient of the fee for this execution payload + */ + execution_payload_fee_recipient?: string; + /** + * Gas limit for execution payload + */ + execution_payload_gas_limit?: number | null; + /** + * Gas used for execution payload + */ + execution_payload_gas_used?: number | null; + /** + * The parent hash of the execution payload + */ + execution_payload_parent_hash?: string; + /** + * The state root of the execution payload + */ + execution_payload_state_root?: string; + /** + * The transaction count of the execution payload + */ + execution_payload_transactions_count?: number | null; + /** + * The transaction total bytes of the execution payload + */ + execution_payload_transactions_total_bytes?: number | null; + /** + * The transaction total bytes of the execution payload when compressed using snappy + */ + execution_payload_transactions_total_bytes_compressed?: number | null; + /** + * The root hash of the parent beacon block + */ + parent_root?: string; + /** + * The index of the validator that proposed the beacon block + */ + proposer_index?: number; + /** + * The slot number from beacon block payload + */ + slot?: number; + /** + * The wall clock time when the reorg slot started + */ + slot_start_date_time?: number; + /** + * The root hash of the beacon state at this block + */ + state_root?: string; + /** + * Can be "canonical" or "orphaned" + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctBlockBlobCount = { - /** - * The number of blobs in the block - */ - blob_count?: number; - /** - * The beacon block root hash - */ - block_root?: string; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Can be "canonical" or "orphaned" - */ - status?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The number of blobs in the block + */ + blob_count?: number; + /** + * The beacon block root hash + */ + block_root?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Can be "canonical" or "orphaned" + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctBlockBlobCountHead = { - /** - * The number of blobs in the block - */ - blob_count?: number; - /** - * The beacon block root hash - */ - block_root?: string; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The number of blobs in the block + */ + blob_count?: number; + /** + * The beacon block root hash + */ + block_root?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctBlockBlobFirstSeenByNode = { - /** - * The blob index - */ - blob_index?: number; - /** - * The beacon block root hash - */ - block_root?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" - */ - classification?: string; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Autonomous system number of the client - */ - meta_client_geo_autonomous_system_number?: number | null; - /** - * Autonomous system organization of the client - */ - meta_client_geo_autonomous_system_organization?: string | null; - /** - * City of the client - */ - meta_client_geo_city?: string; - /** - * Continent code of the client - */ - meta_client_geo_continent_code?: string; - /** - * Country of the client - */ - meta_client_geo_country?: string; - /** - * Country code of the client - */ - meta_client_geo_country_code?: string; - /** - * Latitude of the client - */ - meta_client_geo_latitude?: number | null; - /** - * Longitude of the client - */ - meta_client_geo_longitude?: number | null; - /** - * Implementation of the client - */ - meta_client_implementation?: string; - /** - * Name of the client - */ - meta_client_name?: string; - /** - * Version of the client - */ - meta_client_version?: string; - /** - * Ethereum consensus client implementation - */ - meta_consensus_implementation?: string; - /** - * Ethereum consensus client version - */ - meta_consensus_version?: string; - /** - * ID of the node - */ - node_id?: string; - /** - * The time from slot start for the client to see the block - */ - seen_slot_start_diff?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Source of the event - */ - source?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Username of the node - */ - username?: string; + /** + * The blob index + */ + blob_index?: number; + /** + * The beacon block root hash + */ + block_root?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" + */ + classification?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Autonomous system number of the client + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client + */ + meta_client_geo_city?: string; + /** + * Continent code of the client + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client + */ + meta_client_geo_country?: string; + /** + * Country code of the client + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client + */ + meta_client_implementation?: string; + /** + * Name of the client + */ + meta_client_name?: string; + /** + * Version of the client + */ + meta_client_version?: string; + /** + * Ethereum consensus client implementation + */ + meta_consensus_implementation?: string; + /** + * Ethereum consensus client version + */ + meta_consensus_version?: string; + /** + * ID of the node + */ + node_id?: string; + /** + * The time from slot start for the client to see the block + */ + seen_slot_start_diff?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Source of the event + */ + source?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Username of the node + */ + username?: string; }; export type FctBlockBlobHead = { - /** - * The index of the blob within the block - */ - blob_index?: number; - /** - * The beacon block root hash containing the blob - */ - block_root?: string; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The KZG commitment of the blob - */ - kzg_commitment?: string; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The versioned hash derived from the KZG commitment, used as the blob archive key - */ - versioned_hash?: string; + /** + * The index of the blob within the block + */ + blob_index?: number; + /** + * The beacon block root hash containing the blob + */ + block_root?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The KZG commitment of the blob + */ + kzg_commitment?: string; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The versioned hash derived from the KZG commitment, used as the blob archive key + */ + versioned_hash?: string; }; export type FctBlockDataColumnSidecarFirstSeen = { - /** - * The beacon block root hash - */ - block_root?: string; - /** - * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" - */ - classification?: string; - /** - * The data column index - */ - column_index?: number; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Autonomous system number of the client that first saw the data column - */ - meta_client_geo_autonomous_system_number?: number | null; - /** - * Autonomous system organization of the client that first saw the data column - */ - meta_client_geo_autonomous_system_organization?: string | null; - /** - * City of the client that first saw the data column - */ - meta_client_geo_city?: string; - /** - * Continent code of the client that first saw the data column - */ - meta_client_geo_continent_code?: string; - /** - * Country of the client that first saw the data column - */ - meta_client_geo_country?: string; - /** - * Country code of the client that first saw the data column - */ - meta_client_geo_country_code?: string; - /** - * Latitude of the client that first saw the data column - */ - meta_client_geo_latitude?: number | null; - /** - * Longitude of the client that first saw the data column - */ - meta_client_geo_longitude?: number | null; - /** - * Implementation of the client that first saw the data column - */ - meta_client_implementation?: string; - /** - * Name of the client that first saw the data column - */ - meta_client_name?: string; - /** - * Version of the client that first saw the data column - */ - meta_client_version?: string; - /** - * Ethereum consensus client implementation of the client that first saw the data column - */ - meta_consensus_implementation?: string; - /** - * Ethereum consensus client version of the client that first saw the data column - */ - meta_consensus_version?: string; - /** - * ID of the node that first saw the data column - */ - node_id?: string; - /** - * The number of rows (blobs) in the data column sidecar - */ - row_count?: number; - /** - * The time from slot start until the data column was first seen by any node - */ - seen_slot_start_diff?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Source of the event - */ - source?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Username of the node that first saw the data column - */ - username?: string; + /** + * The beacon block root hash + */ + block_root?: string; + /** + * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" + */ + classification?: string; + /** + * The data column index + */ + column_index?: number; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Autonomous system number of the client that first saw the data column + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client that first saw the data column + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client that first saw the data column + */ + meta_client_geo_city?: string; + /** + * Continent code of the client that first saw the data column + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client that first saw the data column + */ + meta_client_geo_country?: string; + /** + * Country code of the client that first saw the data column + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client that first saw the data column + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client that first saw the data column + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client that first saw the data column + */ + meta_client_implementation?: string; + /** + * Name of the client that first saw the data column + */ + meta_client_name?: string; + /** + * Version of the client that first saw the data column + */ + meta_client_version?: string; + /** + * Ethereum consensus client implementation of the client that first saw the data column + */ + meta_consensus_implementation?: string; + /** + * Ethereum consensus client version of the client that first saw the data column + */ + meta_consensus_version?: string; + /** + * ID of the node that first saw the data column + */ + node_id?: string; + /** + * The number of rows (blobs) in the data column sidecar + */ + row_count?: number; + /** + * The time from slot start until the data column was first seen by any node + */ + seen_slot_start_diff?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Source of the event + */ + source?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Username of the node that first saw the data column + */ + username?: string; }; export type FctBlockDataColumnSidecarFirstSeenByNode = { - /** - * The beacon block root hash - */ - block_root?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" - */ - classification?: string; - /** - * The data column index - */ - column_index?: number; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Autonomous system number of the client - */ - meta_client_geo_autonomous_system_number?: number | null; - /** - * Autonomous system organization of the client - */ - meta_client_geo_autonomous_system_organization?: string | null; - /** - * City of the client - */ - meta_client_geo_city?: string; - /** - * Continent code of the client - */ - meta_client_geo_continent_code?: string; - /** - * Country of the client - */ - meta_client_geo_country?: string; - /** - * Country code of the client - */ - meta_client_geo_country_code?: string; - /** - * Latitude of the client - */ - meta_client_geo_latitude?: number | null; - /** - * Longitude of the client - */ - meta_client_geo_longitude?: number | null; - /** - * Implementation of the client - */ - meta_client_implementation?: string; - /** - * Name of the client - */ - meta_client_name?: string; - /** - * Version of the client - */ - meta_client_version?: string; - /** - * Ethereum consensus client implementation - */ - meta_consensus_implementation?: string; - /** - * Ethereum consensus client version - */ - meta_consensus_version?: string; - /** - * ID of the node - */ - node_id?: string; - /** - * The number of rows (blobs) in the data column sidecar - */ - row_count?: number; - /** - * The time from slot start for the client to see the data column - */ - seen_slot_start_diff?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Source of the event - */ - source?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Username of the node - */ - username?: string; + /** + * The beacon block root hash + */ + block_root?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" + */ + classification?: string; + /** + * The data column index + */ + column_index?: number; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Autonomous system number of the client + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client + */ + meta_client_geo_city?: string; + /** + * Continent code of the client + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client + */ + meta_client_geo_country?: string; + /** + * Country code of the client + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client + */ + meta_client_implementation?: string; + /** + * Name of the client + */ + meta_client_name?: string; + /** + * Version of the client + */ + meta_client_version?: string; + /** + * Ethereum consensus client implementation + */ + meta_consensus_implementation?: string; + /** + * Ethereum consensus client version + */ + meta_consensus_version?: string; + /** + * ID of the node + */ + node_id?: string; + /** + * The number of rows (blobs) in the data column sidecar + */ + row_count?: number; + /** + * The time from slot start for the client to see the data column + */ + seen_slot_start_diff?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Source of the event + */ + source?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Username of the node + */ + username?: string; }; export type FctBlockFirstSeenByNode = { - /** - * The beacon block root hash - */ - block_root?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" - */ - classification?: string; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Autonomous system number of the client - */ - meta_client_geo_autonomous_system_number?: number | null; - /** - * Autonomous system organization of the client - */ - meta_client_geo_autonomous_system_organization?: string | null; - /** - * City of the client - */ - meta_client_geo_city?: string; - /** - * Continent code of the client - */ - meta_client_geo_continent_code?: string; - /** - * Country of the client - */ - meta_client_geo_country?: string; - /** - * Country code of the client - */ - meta_client_geo_country_code?: string; - /** - * Latitude of the client - */ - meta_client_geo_latitude?: number | null; - /** - * Longitude of the client - */ - meta_client_geo_longitude?: number | null; - /** - * Implementation of the client - */ - meta_client_implementation?: string; - /** - * Name of the client - */ - meta_client_name?: string; - /** - * Version of the client - */ - meta_client_version?: string; - /** - * Ethereum consensus client implementation - */ - meta_consensus_implementation?: string; - /** - * Ethereum consensus client version - */ - meta_consensus_version?: string; - /** - * ID of the node - */ - node_id?: string; - /** - * The time from slot start for the client to see the block - */ - seen_slot_start_diff?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Source of the event - */ - source?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Username of the node - */ - username?: string; + /** + * The beacon block root hash + */ + block_root?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" + */ + classification?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Autonomous system number of the client + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client + */ + meta_client_geo_city?: string; + /** + * Continent code of the client + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client + */ + meta_client_geo_country?: string; + /** + * Country code of the client + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client + */ + meta_client_implementation?: string; + /** + * Name of the client + */ + meta_client_name?: string; + /** + * Version of the client + */ + meta_client_version?: string; + /** + * Ethereum consensus client implementation + */ + meta_consensus_implementation?: string; + /** + * Ethereum consensus client version + */ + meta_consensus_version?: string; + /** + * ID of the node + */ + node_id?: string; + /** + * The time from slot start for the client to see the block + */ + seen_slot_start_diff?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Source of the event + */ + source?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Username of the node + */ + username?: string; }; export type FctBlockHead = { - /** - * The root hash of the beacon block - */ - block_root?: string; - /** - * The total bytes of the beacon block payload - */ - block_total_bytes?: number | null; - /** - * The total bytes of the beacon block payload when compressed using snappy - */ - block_total_bytes_compressed?: number | null; - /** - * The version of the beacon block - */ - block_version?: string; - /** - * The epoch number from beacon block payload - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The block hash of the associated execution block - */ - eth1_data_block_hash?: string; - /** - * The root of the deposit tree in the associated execution block - */ - eth1_data_deposit_root?: string; - /** - * Base fee per gas for execution payload - */ - execution_payload_base_fee_per_gas?: string | null; - /** - * Gas used for blobs in execution payload - */ - execution_payload_blob_gas_used?: number | null; - /** - * The block hash of the execution payload - */ - execution_payload_block_hash?: string; - /** - * The block number of the execution payload - */ - execution_payload_block_number?: number; - /** - * Excess gas used for blobs in execution payload - */ - execution_payload_excess_blob_gas?: number | null; - /** - * The recipient of the fee for this execution payload - */ - execution_payload_fee_recipient?: string; - /** - * Gas limit for execution payload - */ - execution_payload_gas_limit?: number | null; - /** - * Gas used for execution payload - */ - execution_payload_gas_used?: number | null; - /** - * The parent hash of the execution payload - */ - execution_payload_parent_hash?: string; - /** - * The state root of the execution payload - */ - execution_payload_state_root?: string; - /** - * The transaction count of the execution payload - */ - execution_payload_transactions_count?: number | null; - /** - * The transaction total bytes of the execution payload - */ - execution_payload_transactions_total_bytes?: number | null; - /** - * The transaction total bytes of the execution payload when compressed using snappy - */ - execution_payload_transactions_total_bytes_compressed?: number | null; - /** - * The root hash of the parent beacon block - */ - parent_root?: string; - /** - * The index of the validator that proposed the beacon block - */ - proposer_index?: number; - /** - * The slot number from beacon block payload - */ - slot?: number; - /** - * The wall clock time when the reorg slot started - */ - slot_start_date_time?: number; - /** - * The root hash of the beacon state at this block - */ - state_root?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The root hash of the beacon block + */ + block_root?: string; + /** + * The total bytes of the beacon block payload + */ + block_total_bytes?: number | null; + /** + * The total bytes of the beacon block payload when compressed using snappy + */ + block_total_bytes_compressed?: number | null; + /** + * The version of the beacon block + */ + block_version?: string; + /** + * The epoch number from beacon block payload + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The block hash of the associated execution block + */ + eth1_data_block_hash?: string; + /** + * The root of the deposit tree in the associated execution block + */ + eth1_data_deposit_root?: string; + /** + * Base fee per gas for execution payload + */ + execution_payload_base_fee_per_gas?: string | null; + /** + * Gas used for blobs in execution payload + */ + execution_payload_blob_gas_used?: number | null; + /** + * The block hash of the execution payload + */ + execution_payload_block_hash?: string; + /** + * The block number of the execution payload + */ + execution_payload_block_number?: number; + /** + * Excess gas used for blobs in execution payload + */ + execution_payload_excess_blob_gas?: number | null; + /** + * The recipient of the fee for this execution payload + */ + execution_payload_fee_recipient?: string; + /** + * Gas limit for execution payload + */ + execution_payload_gas_limit?: number | null; + /** + * Gas used for execution payload + */ + execution_payload_gas_used?: number | null; + /** + * The parent hash of the execution payload + */ + execution_payload_parent_hash?: string; + /** + * The state root of the execution payload + */ + execution_payload_state_root?: string; + /** + * The transaction count of the execution payload + */ + execution_payload_transactions_count?: number | null; + /** + * The transaction total bytes of the execution payload + */ + execution_payload_transactions_total_bytes?: number | null; + /** + * The transaction total bytes of the execution payload when compressed using snappy + */ + execution_payload_transactions_total_bytes_compressed?: number | null; + /** + * The root hash of the parent beacon block + */ + parent_root?: string; + /** + * The index of the validator that proposed the beacon block + */ + proposer_index?: number; + /** + * The slot number from beacon block payload + */ + slot?: number; + /** + * The wall clock time when the reorg slot started + */ + slot_start_date_time?: number; + /** + * The root hash of the beacon state at this block + */ + state_root?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctBlockMev = { - /** - * The block hash of the proposer payload - */ - block_hash?: string; - /** - * The block number of the proposer payload - */ - block_number?: number; - /** - * The root hash of the beacon block - */ - block_root?: string; - /** - * The builder pubkey of the proposer payload - */ - builder_pubkey?: string; - /** - * The earliest timestamp of the accepted bid in milliseconds - */ - earliest_bid_date_time?: number | null; - /** - * Epoch number derived from the slot that the proposer payload is for - */ - epoch?: number; - /** - * The start time for the epoch that the proposer payload is for - */ - epoch_start_date_time?: number; - /** - * The gas limit of the proposer payload - */ - gas_limit?: number; - /** - * The gas used of the proposer payload - */ - gas_used?: number; - /** - * The parent hash of the proposer payload - */ - parent_hash?: string; - /** - * The proposer fee recipient of the proposer payload - */ - proposer_fee_recipient?: string; - /** - * The proposer pubkey of the proposer payload - */ - proposer_pubkey?: string; - /** - * The relay names that delivered the proposer payload - */ - relay_names?: Array; - /** - * Slot number within the block proposer payload - */ - slot?: number; - /** - * The start time for the slot that the proposer payload is for - */ - slot_start_date_time?: number; - /** - * Can be "canonical" or "orphaned" - */ - status?: string; - /** - * The number of transactions in the proposer payload - */ - transaction_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The transaction value in wei - */ - value?: string | null; + /** + * The block hash of the proposer payload + */ + block_hash?: string; + /** + * The block number of the proposer payload + */ + block_number?: number; + /** + * The root hash of the beacon block + */ + block_root?: string; + /** + * The builder pubkey of the proposer payload + */ + builder_pubkey?: string; + /** + * The earliest timestamp of the accepted bid in milliseconds + */ + earliest_bid_date_time?: number | null; + /** + * Epoch number derived from the slot that the proposer payload is for + */ + epoch?: number; + /** + * The start time for the epoch that the proposer payload is for + */ + epoch_start_date_time?: number; + /** + * The gas limit of the proposer payload + */ + gas_limit?: number; + /** + * The gas used of the proposer payload + */ + gas_used?: number; + /** + * The parent hash of the proposer payload + */ + parent_hash?: string; + /** + * The proposer fee recipient of the proposer payload + */ + proposer_fee_recipient?: string; + /** + * The proposer pubkey of the proposer payload + */ + proposer_pubkey?: string; + /** + * The relay names that delivered the proposer payload + */ + relay_names?: Array; + /** + * Slot number within the block proposer payload + */ + slot?: number; + /** + * The start time for the slot that the proposer payload is for + */ + slot_start_date_time?: number; + /** + * Can be "canonical" or "orphaned" + */ + status?: string; + /** + * The number of transactions in the proposer payload + */ + transaction_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The transaction value in wei + */ + value?: string | null; }; export type FctBlockMevHead = { - /** - * The block hash of the proposer payload - */ - block_hash?: string; - /** - * The block number of the proposer payload - */ - block_number?: number; - /** - * The root hash of the beacon block - */ - block_root?: string; - /** - * The builder pubkey of the proposer payload - */ - builder_pubkey?: string; - /** - * The earliest timestamp of the accepted bid in milliseconds - */ - earliest_bid_date_time?: number | null; - /** - * Epoch number derived from the slot that the proposer payload is for - */ - epoch?: number; - /** - * The start time for the epoch that the proposer payload is for - */ - epoch_start_date_time?: number; - /** - * The gas limit of the proposer payload - */ - gas_limit?: number; - /** - * The gas used of the proposer payload - */ - gas_used?: number; - /** - * The parent hash of the proposer payload - */ - parent_hash?: string; - /** - * The proposer fee recipient of the proposer payload - */ - proposer_fee_recipient?: string; - /** - * The proposer pubkey of the proposer payload - */ - proposer_pubkey?: string; - /** - * The relay names that delivered the proposer payload - */ - relay_names?: Array; - /** - * Slot number within the block proposer payload - */ - slot?: number; - /** - * The start time for the slot that the proposer payload is for - */ - slot_start_date_time?: number; - /** - * The number of transactions in the proposer payload - */ - transaction_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The transaction value in wei - */ - value?: string | null; + /** + * The block hash of the proposer payload + */ + block_hash?: string; + /** + * The block number of the proposer payload + */ + block_number?: number; + /** + * The root hash of the beacon block + */ + block_root?: string; + /** + * The builder pubkey of the proposer payload + */ + builder_pubkey?: string; + /** + * The earliest timestamp of the accepted bid in milliseconds + */ + earliest_bid_date_time?: number | null; + /** + * Epoch number derived from the slot that the proposer payload is for + */ + epoch?: number; + /** + * The start time for the epoch that the proposer payload is for + */ + epoch_start_date_time?: number; + /** + * The gas limit of the proposer payload + */ + gas_limit?: number; + /** + * The gas used of the proposer payload + */ + gas_used?: number; + /** + * The parent hash of the proposer payload + */ + parent_hash?: string; + /** + * The proposer fee recipient of the proposer payload + */ + proposer_fee_recipient?: string; + /** + * The proposer pubkey of the proposer payload + */ + proposer_pubkey?: string; + /** + * The relay names that delivered the proposer payload + */ + relay_names?: Array; + /** + * Slot number within the block proposer payload + */ + slot?: number; + /** + * The start time for the slot that the proposer payload is for + */ + slot_start_date_time?: number; + /** + * The number of transactions in the proposer payload + */ + transaction_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The transaction value in wei + */ + value?: string | null; +}; + +export type FctBlockPayloadAvailableByNode = { + /** + * The time from slot start for the node to have the payload and its blobs locally verified + */ + available_slot_start_diff?: number; + /** + * The beacon block root whose payload became available + */ + block_root?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" + */ + classification?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Autonomous system number of the client + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client + */ + meta_client_geo_city?: string; + /** + * Continent code of the client + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client + */ + meta_client_geo_country?: string; + /** + * Country code of the client + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client + */ + meta_client_implementation?: string; + /** + * Name of the client + */ + meta_client_name?: string; + /** + * Version of the client + */ + meta_client_version?: string; + /** + * Ethereum consensus client implementation + */ + meta_consensus_implementation?: string; + /** + * Ethereum consensus client version + */ + meta_consensus_version?: string; + /** + * ID of the node + */ + node_id?: string; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Username of the node + */ + username?: string; +}; + +export type FctBlockPayloadBid = { + /** + * Number of blob KZG commitments in the bid + */ + blob_kzg_commitment_count?: number; + /** + * The execution block hash committed to in the bid + */ + block_hash?: string; + /** + * The root of the beacon block containing the bid + */ + block_root?: string; + /** + * The beacon block version, e.g. gloas + */ + block_version?: string; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads + */ + builder_index?: number; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The execution payment in wei + */ + execution_payment?: string; + /** + * The fee recipient address + */ + fee_recipient?: string; + /** + * The gas limit for the execution payload + */ + gas_limit?: number; + /** + * The parent execution block hash + */ + parent_block_hash?: string; + /** + * The parent beacon block root + */ + parent_block_root?: string; + /** + * The slot number of the block containing the bid + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The bid value in wei + */ + value?: string; +}; + +export type FctBlockPayloadFirstSeenByNode = { + /** + * The execution block hash of the payload + */ + block_hash?: string; + /** + * The beacon block root the envelope references + */ + block_root?: string; + /** + * Index of the builder that produced the payload + */ + builder_index?: number; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" + */ + classification?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Autonomous system number of the client + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client + */ + meta_client_geo_city?: string; + /** + * Continent code of the client + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client + */ + meta_client_geo_country?: string; + /** + * Country code of the client + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client + */ + meta_client_implementation?: string; + /** + * Name of the client + */ + meta_client_name?: string; + /** + * Version of the client + */ + meta_client_version?: string; + /** + * Ethereum consensus client implementation + */ + meta_consensus_implementation?: string; + /** + * Ethereum consensus client version + */ + meta_consensus_version?: string; + /** + * ID of the node + */ + node_id?: string; + /** + * The time from slot start for the client to see the execution payload envelope + */ + seen_slot_start_diff?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Source of the event + */ + source?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Username of the node + */ + username?: string; +}; + +export type FctBlockPayloadPtcVote = { + /** + * PTC validators attesting blob data was available + */ + blob_data_available_votes?: number; + /** + * The beacon block root being attested by the PTC + */ + block_root?: string; + /** + * The beacon block version of the containing block, empty for orphaned rows + */ + block_version?: string; + /** + * The epoch number containing the attested slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Root of the canonical block that included the payload attestations, null for orphaned rows + */ + included_in_block_root?: string | null; + /** + * Slot of the canonical block that included the payload attestations, null for orphaned rows + */ + included_in_slot?: number | null; + /** + * PTC validators attesting the payload was present + */ + payload_present_votes?: number; + /** + * Total PTC validators covered: on-chain aggregate counts for canonical rows, distinct validators seen on the live stream for orphaned rows + */ + ptc_validators?: number; + /** + * The attested slot number + */ + slot?: number; + /** + * The wall clock time when the attested slot started + */ + slot_start_date_time?: number; + /** + * Whether the attested block is canonical or orphaned + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type FctBlockPayloadPtcVoteHead = { + /** + * Distinct PTC validators attesting blob data was available + */ + blob_data_available_votes?: number; + /** + * The beacon block root being attested by the PTC + */ + block_root?: string; + /** + * The epoch number containing the attested slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Time from slot start that the first payload attestation was seen in ms + */ + first_seen_slot_start_diff?: number; + /** + * Time from slot start that the last payload attestation was seen in ms + */ + last_seen_slot_start_diff?: number; + /** + * Distinct PTC validators attesting the payload was present + */ + payload_present_votes?: number; + /** + * Distinct PTC validators whose payload attestation was seen on the live event stream + */ + ptc_validators_seen?: number; + /** + * The attested slot number + */ + slot?: number; + /** + * The wall clock time when the attested slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctBlockProposalStatusDaily = { - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Number of slots with this status - */ - slot_count?: number; - /** - * Block proposal status (canonical, orphaned, missed) - */ - status?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Number of slots with this status + */ + slot_count?: number; + /** + * Block proposal status (canonical, orphaned, missed) + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctBlockProposalStatusHourly = { - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Number of slots with this status - */ - slot_count?: number; - /** - * Block proposal status (canonical, orphaned, missed) - */ - status?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Number of slots with this status + */ + slot_count?: number; + /** + * Block proposal status (canonical, orphaned, missed) + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctBlockProposer = { - /** - * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" - */ - block_root?: string | null; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The public key of the validator proposer - */ - proposer_pubkey?: string; - /** - * The validator index of the proposer for the slot - */ - proposer_validator_index?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Can be "canonical", "orphaned" or "missed" - */ - status?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" + */ + block_root?: string | null; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The public key of the validator proposer + */ + proposer_pubkey?: string; + /** + * The validator index of the proposer for the slot + */ + proposer_validator_index?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Can be "canonical", "orphaned" or "missed" + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctBlockProposerByValidator = { - /** - * The beacon block root hash. NULL if missed - */ - block_root?: string | null; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The public key of the proposer - */ - pubkey?: string; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Can be "canonical", "orphaned" or "missed" - */ - status?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The validator index of the proposer - */ - validator_index?: number; + /** + * The beacon block root hash. NULL if missed + */ + block_root?: string | null; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The public key of the proposer + */ + pubkey?: string; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Can be "canonical", "orphaned" or "missed" + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The validator index of the proposer + */ + validator_index?: number; }; export type FctBlockProposerEntity = { - /** - * The entity that proposed the block - */ - entity?: string | null; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The entity that proposed the block + */ + entity?: string | null; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctBlockProposerHead = { - /** - * The beacon block root hash. Null if a block was never seen by a sentry - */ - block_root?: string | null; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * The public key of the validator proposer - */ - proposer_pubkey?: string; - /** - * The validator index of the proposer for the slot - */ - proposer_validator_index?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The beacon block root hash. Null if a block was never seen by a sentry + */ + block_root?: string | null; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The public key of the validator proposer + */ + proposer_pubkey?: string; + /** + * The validator index of the proposer for the slot + */ + proposer_validator_index?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctContractStorageStateByAddressDaily = { - /** - * Cumulative count of active storage slots at end of day - */ - active_slots?: number; - /** - * The contract address - */ - address?: string; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Cumulative sum of effective bytes at end of day - */ - effective_bytes?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative count of active storage slots at end of day + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Cumulative sum of effective bytes at end of day + */ + effective_bytes?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctContractStorageStateByAddressHourly = { - /** - * Cumulative count of active storage slots at end of hour - */ - active_slots?: number; - /** - * The contract address - */ - address?: string; - /** - * Cumulative sum of effective bytes at end of hour - */ - effective_bytes?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative count of active storage slots at end of hour + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * Cumulative sum of effective bytes at end of hour + */ + effective_bytes?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctContractStorageStateByBlockDaily = { - /** - * Cumulative count of contracts with at least one active slot at end of day - */ - active_contracts?: number; - /** - * Cumulative count of active storage slots at end of day - */ - active_slots?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Cumulative sum of effective bytes at end of day - */ - effective_bytes?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative count of contracts with at least one active slot at end of day + */ + active_contracts?: number; + /** + * Cumulative count of active storage slots at end of day + */ + active_slots?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Cumulative sum of effective bytes at end of day + */ + effective_bytes?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctContractStorageStateByBlockHourly = { - /** - * Cumulative count of contracts with at least one active slot at end of hour - */ - active_contracts?: number; - /** - * Cumulative count of active storage slots at end of hour - */ - active_slots?: number; - /** - * Cumulative sum of effective bytes at end of hour - */ - effective_bytes?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative count of contracts with at least one active slot at end of hour + */ + active_contracts?: number; + /** + * Cumulative count of active storage slots at end of hour + */ + active_slots?: number; + /** + * Cumulative sum of effective bytes at end of hour + */ + effective_bytes?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctContractStorageStateWithExpiryByAddressDaily = { - /** - * Active storage slots in this contract at end of day (0 if expired) - */ - active_slots?: number; - /** - * The contract address - */ - address?: string; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Effective bytes at end of day (0 if expired) - */ - effective_bytes?: number; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Active storage slots in this contract at end of day (0 if expired) + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Effective bytes at end of day (0 if expired) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctContractStorageStateWithExpiryByAddressHourly = { - /** - * Active storage slots in this contract at end of hour (0 if expired) - */ - active_slots?: number; - /** - * The contract address - */ - address?: string; - /** - * Effective bytes at end of hour (0 if expired) - */ - effective_bytes?: number; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy?: string; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Active storage slots in this contract at end of hour (0 if expired) + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * Effective bytes at end of hour (0 if expired) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctContractStorageStateWithExpiryByBlockDaily = { - /** - * Count of contracts with active_slots > 0 at end of day - */ - active_contracts?: number; - /** - * Total active storage slots at end of day (with expiry applied) - */ - active_slots?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Total effective bytes at end of day (with expiry applied) - */ - effective_bytes?: number; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Count of contracts with active_slots > 0 at end of day + */ + active_contracts?: number; + /** + * Total active storage slots at end of day (with expiry applied) + */ + active_slots?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Total effective bytes at end of day (with expiry applied) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctContractStorageStateWithExpiryByBlockHourly = { - /** - * Count of contracts with active_slots > 0 at end of hour - */ - active_contracts?: number; - /** - * Total active storage slots at end of hour (with expiry applied) - */ - active_slots?: number; - /** - * Total effective bytes at end of hour (with expiry applied) - */ - effective_bytes?: number; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy?: string; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Count of contracts with active_slots > 0 at end of hour + */ + active_contracts?: number; + /** + * Total active storage slots at end of hour (with expiry applied) + */ + active_slots?: number; + /** + * Total effective bytes at end of hour (with expiry applied) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctDataColumnAvailabilityByEpoch = { - /** - * Availability percentage calculated from total counts (total_success_count / total_probe_count * 100, rounded to 2 decimal places) - */ - avg_availability_pct?: number; - /** - * Average of p50 response times across slots for successful probes only (rounded to whole number) - */ - avg_p50_response_time_ms?: number; - /** - * Average of p95 response times across slots for successful probes only (rounded to whole number) - */ - avg_p95_response_time_ms?: number; - /** - * Average of p99 response times across slots for successful probes only (rounded to whole number) - */ - avg_p99_response_time_ms?: number; - /** - * Column index (0-127) - */ - column_index?: number; - /** - * Epoch number - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Maximum availability percentage across slots (rounded to 2 decimal places) - */ - max_availability_pct?: number; - /** - * Maximum blob count observed in this epoch - */ - max_blob_count?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) - */ - max_response_time_ms?: number; - /** - * Minimum availability percentage across slots (rounded to 2 decimal places) - */ - min_availability_pct?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) - */ - min_response_time_ms?: number; - /** - * Number of slots in this epoch aggregation - */ - slot_count?: number; - /** - * Earliest slot start time in this epoch (used for CBT position tracking) - */ - slot_start_date_time?: number; - /** - * Total failed probes across all slots (result = failure) - */ - total_failure_count?: number; - /** - * Total missing probes across all slots (result = missing) - */ - total_missing_count?: number; - /** - * Total probe count across all slots - */ - total_probe_count?: number; - /** - * Total successful probes across all slots - */ - total_success_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Availability percentage calculated from total counts (total_success_count / total_probe_count * 100, rounded to 2 decimal places) + */ + avg_availability_pct?: number; + /** + * Average of p50 response times across slots for successful probes only (rounded to whole number) + */ + avg_p50_response_time_ms?: number; + /** + * Average of p95 response times across slots for successful probes only (rounded to whole number) + */ + avg_p95_response_time_ms?: number; + /** + * Average of p99 response times across slots for successful probes only (rounded to whole number) + */ + avg_p99_response_time_ms?: number; + /** + * Column index (0-127) + */ + column_index?: number; + /** + * Epoch number + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Maximum availability percentage across slots (rounded to 2 decimal places) + */ + max_availability_pct?: number; + /** + * Maximum blob count observed in this epoch + */ + max_blob_count?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) + */ + max_response_time_ms?: number; + /** + * Minimum availability percentage across slots (rounded to 2 decimal places) + */ + min_availability_pct?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) + */ + min_response_time_ms?: number; + /** + * Number of slots in this epoch aggregation + */ + slot_count?: number; + /** + * Earliest slot start time in this epoch (used for CBT position tracking) + */ + slot_start_date_time?: number; + /** + * Total failed probes across all slots (result = failure) + */ + total_failure_count?: number; + /** + * Total missing probes across all slots (result = missing) + */ + total_missing_count?: number; + /** + * Total probe count across all slots + */ + total_probe_count?: number; + /** + * Total successful probes across all slots + */ + total_success_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctDataColumnAvailabilityBySlot = { - /** - * Availability percentage (success / total * 100) rounded to 2 decimal places - */ - availability_pct?: number; - /** - * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) - */ - beacon_block_root?: string | null; - /** - * Number of unique block roots observed (>1 indicates reorg/fork) - */ - beacon_block_root_variants?: number; - /** - * Number of blobs in the slot (max column_rows_count) - */ - blob_count?: number; - /** - * Column index being probed (0-127) - */ - column_index?: number; - /** - * Count of observations from active RPC custody probes - */ - custody_probe_count?: number; - /** - * Epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Count of failed probes (result = failure) - */ - failure_count?: number; - /** - * Count of observations from passive gossipsub propagation - */ - gossipsub_count?: number; - /** - * Maximum response time in milliseconds for successful probes only - */ - max_response_time_ms?: number; - /** - * Minimum response time in milliseconds for successful probes only - */ - min_response_time_ms?: number; - /** - * Count of missing probes (result = missing) - */ - missing_count?: number; - /** - * Median (p50) response time in milliseconds for successful probes only - */ - p50_response_time_ms?: number; - /** - * 95th percentile response time in milliseconds for successful probes only - */ - p95_response_time_ms?: number; - /** - * 99th percentile response time in milliseconds for successful probes only - */ - p99_response_time_ms?: number; - /** - * Total count of probes - */ - probe_count?: number; - /** - * Slot number being probed - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Count of successful probes - */ - success_count?: number; - /** - * Count of unique client names - */ - unique_client_count?: number; - /** - * Count of unique client implementations - */ - unique_implementation_count?: number; - /** - * Count of unique peers probed - */ - unique_peer_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The wallclock epoch when the request was sent - */ - wallclock_request_epoch?: number; - /** - * The start time for the wallclock epoch when the request was sent - */ - wallclock_request_epoch_start_date_time?: number; - /** - * The wallclock slot when the request was sent - */ - wallclock_request_slot?: number; - /** - * The start time for the slot when the request was sent - */ - wallclock_request_slot_start_date_time?: number; + /** + * Availability percentage (success / total * 100) rounded to 2 decimal places + */ + availability_pct?: number; + /** + * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) + */ + beacon_block_root?: string | null; + /** + * Number of unique block roots observed (>1 indicates reorg/fork) + */ + beacon_block_root_variants?: number; + /** + * Number of blobs in the slot (max column_rows_count) + */ + blob_count?: number; + /** + * Column index being probed (0-127) + */ + column_index?: number; + /** + * Count of observations from active RPC custody probes + */ + custody_probe_count?: number; + /** + * Epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Count of failed probes (result = failure) + */ + failure_count?: number; + /** + * Count of observations from passive gossipsub propagation + */ + gossipsub_count?: number; + /** + * Maximum response time in milliseconds for successful probes only + */ + max_response_time_ms?: number; + /** + * Minimum response time in milliseconds for successful probes only + */ + min_response_time_ms?: number; + /** + * Count of missing probes (result = missing) + */ + missing_count?: number; + /** + * Median (p50) response time in milliseconds for successful probes only + */ + p50_response_time_ms?: number; + /** + * 95th percentile response time in milliseconds for successful probes only + */ + p95_response_time_ms?: number; + /** + * 99th percentile response time in milliseconds for successful probes only + */ + p99_response_time_ms?: number; + /** + * Total count of probes + */ + probe_count?: number; + /** + * Slot number being probed + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Count of successful probes + */ + success_count?: number; + /** + * Count of unique client names + */ + unique_client_count?: number; + /** + * Count of unique client implementations + */ + unique_implementation_count?: number; + /** + * Count of unique peers probed + */ + unique_peer_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The wallclock epoch when the request was sent + */ + wallclock_request_epoch?: number; + /** + * The start time for the wallclock epoch when the request was sent + */ + wallclock_request_epoch_start_date_time?: number; + /** + * The wallclock slot when the request was sent + */ + wallclock_request_slot?: number; + /** + * The start time for the slot when the request was sent + */ + wallclock_request_slot_start_date_time?: number; }; export type FctDataColumnAvailabilityBySlotBlob = { - /** - * Availability percentage (success / total * 100) rounded to 2 decimal places - same for all blobs in column - */ - availability_pct?: number; - /** - * Total number of blobs in the slot - */ - blob_count?: number; - /** - * Blob index within the slot (0-based, typically 0-5) - */ - blob_index?: number; - /** - * Column index being probed (0-127) - */ - column_index?: number; - /** - * Epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Count of failed probes (result = failure) - */ - failure_count?: number; - /** - * Maximum response time in milliseconds for successful probes only - */ - max_response_time_ms?: number; - /** - * Minimum response time in milliseconds for successful probes only - */ - min_response_time_ms?: number; - /** - * Count of missing probes (result = missing) - */ - missing_count?: number; - /** - * Median (p50) response time in milliseconds for successful probes only - */ - p50_response_time_ms?: number; - /** - * 95th percentile response time in milliseconds for successful probes only - */ - p95_response_time_ms?: number; - /** - * 99th percentile response time in milliseconds for successful probes only - */ - p99_response_time_ms?: number; - /** - * Total count of probes - */ - probe_count?: number; - /** - * Slot number being probed - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Count of successful probes - */ - success_count?: number; - /** - * Count of unique client names - */ - unique_client_count?: number; - /** - * Count of unique client implementations - */ - unique_implementation_count?: number; - /** - * Count of unique peers probed - */ - unique_peer_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The wallclock epoch when the request was sent - */ - wallclock_request_epoch?: number; - /** - * The start time for the wallclock epoch when the request was sent - */ - wallclock_request_epoch_start_date_time?: number; - /** - * The wallclock slot when the request was sent - */ - wallclock_request_slot?: number; - /** - * The start time for the slot when the request was sent - */ - wallclock_request_slot_start_date_time?: number; + /** + * Availability percentage (success / total * 100) rounded to 2 decimal places - same for all blobs in column + */ + availability_pct?: number; + /** + * Total number of blobs in the slot + */ + blob_count?: number; + /** + * Blob index within the slot (0-based, typically 0-5) + */ + blob_index?: number; + /** + * Column index being probed (0-127) + */ + column_index?: number; + /** + * Epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Count of failed probes (result = failure) + */ + failure_count?: number; + /** + * Maximum response time in milliseconds for successful probes only + */ + max_response_time_ms?: number; + /** + * Minimum response time in milliseconds for successful probes only + */ + min_response_time_ms?: number; + /** + * Count of missing probes (result = missing) + */ + missing_count?: number; + /** + * Median (p50) response time in milliseconds for successful probes only + */ + p50_response_time_ms?: number; + /** + * 95th percentile response time in milliseconds for successful probes only + */ + p95_response_time_ms?: number; + /** + * 99th percentile response time in milliseconds for successful probes only + */ + p99_response_time_ms?: number; + /** + * Total count of probes + */ + probe_count?: number; + /** + * Slot number being probed + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Count of successful probes + */ + success_count?: number; + /** + * Count of unique client names + */ + unique_client_count?: number; + /** + * Count of unique client implementations + */ + unique_implementation_count?: number; + /** + * Count of unique peers probed + */ + unique_peer_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The wallclock epoch when the request was sent + */ + wallclock_request_epoch?: number; + /** + * The start time for the wallclock epoch when the request was sent + */ + wallclock_request_epoch_start_date_time?: number; + /** + * The wallclock slot when the request was sent + */ + wallclock_request_slot?: number; + /** + * The start time for the slot when the request was sent + */ + wallclock_request_slot_start_date_time?: number; }; export type FctDataColumnAvailabilityDaily = { - /** - * Availability percentage calculated from total counts (total_success_count / total_probe_count * 100, rounded to 2 decimal places) - */ - avg_availability_pct?: number; - /** - * Average of p50 response times across hours for successful probes only (rounded to whole number) - */ - avg_p50_response_time_ms?: number; - /** - * Average of p95 response times across hours for successful probes only (rounded to whole number) - */ - avg_p95_response_time_ms?: number; - /** - * Average of p99 response times across hours for successful probes only (rounded to whole number) - */ - avg_p99_response_time_ms?: number; - /** - * Column index (0-127) - */ - column_index?: number; - /** - * Date of the aggregation - */ - date?: string; - /** - * Number of hours in this day aggregation - */ - hour_count?: number; - /** - * Maximum availability percentage across hours (rounded to 2 decimal places) - */ - max_availability_pct?: number; - /** - * Maximum blob count observed in this day - */ - max_blob_count?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) - */ - max_response_time_ms?: number; - /** - * Minimum availability percentage across hours (rounded to 2 decimal places) - */ - min_availability_pct?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) - */ - min_response_time_ms?: number; - /** - * Total failed probes across all hours (result = failure) - */ - total_failure_count?: number; - /** - * Total missing probes across all hours (result = missing) - */ - total_missing_count?: number; - /** - * Total probe count across all hours - */ - total_probe_count?: number; - /** - * Total successful probes across all hours - */ - total_success_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Availability percentage calculated from total counts (total_success_count / total_probe_count * 100, rounded to 2 decimal places) + */ + avg_availability_pct?: number; + /** + * Average of p50 response times across hours for successful probes only (rounded to whole number) + */ + avg_p50_response_time_ms?: number; + /** + * Average of p95 response times across hours for successful probes only (rounded to whole number) + */ + avg_p95_response_time_ms?: number; + /** + * Average of p99 response times across hours for successful probes only (rounded to whole number) + */ + avg_p99_response_time_ms?: number; + /** + * Column index (0-127) + */ + column_index?: number; + /** + * Date of the aggregation + */ + date?: string; + /** + * Number of hours in this day aggregation + */ + hour_count?: number; + /** + * Maximum availability percentage across hours (rounded to 2 decimal places) + */ + max_availability_pct?: number; + /** + * Maximum blob count observed in this day + */ + max_blob_count?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) + */ + max_response_time_ms?: number; + /** + * Minimum availability percentage across hours (rounded to 2 decimal places) + */ + min_availability_pct?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) + */ + min_response_time_ms?: number; + /** + * Total failed probes across all hours (result = failure) + */ + total_failure_count?: number; + /** + * Total missing probes across all hours (result = missing) + */ + total_missing_count?: number; + /** + * Total probe count across all hours + */ + total_probe_count?: number; + /** + * Total successful probes across all hours + */ + total_success_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctDataColumnAvailabilityHourly = { - /** - * Availability percentage calculated from total counts (total_success_count / total_probe_count * 100, rounded to 2 decimal places) - */ - avg_availability_pct?: number; - /** - * Average of p50 response times across epochs for successful probes only (rounded to whole number) - */ - avg_p50_response_time_ms?: number; - /** - * Average of p95 response times across epochs for successful probes only (rounded to whole number) - */ - avg_p95_response_time_ms?: number; - /** - * Average of p99 response times across epochs for successful probes only (rounded to whole number) - */ - avg_p99_response_time_ms?: number; - /** - * Column index (0-127) - */ - column_index?: number; - /** - * Number of epochs in this hour aggregation - */ - epoch_count?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Maximum availability percentage across epochs (rounded to 2 decimal places) - */ - max_availability_pct?: number; - /** - * Maximum blob count observed in this hour - */ - max_blob_count?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) - */ - max_response_time_ms?: number; - /** - * Minimum availability percentage across epochs (rounded to 2 decimal places) - */ - min_availability_pct?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) - */ - min_response_time_ms?: number; - /** - * Total failed probes across all epochs (result = failure) - */ - total_failure_count?: number; - /** - * Total missing probes across all epochs (result = missing) - */ - total_missing_count?: number; - /** - * Total probe count across all epochs - */ - total_probe_count?: number; - /** - * Total successful probes across all epochs - */ - total_success_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Availability percentage calculated from total counts (total_success_count / total_probe_count * 100, rounded to 2 decimal places) + */ + avg_availability_pct?: number; + /** + * Average of p50 response times across epochs for successful probes only (rounded to whole number) + */ + avg_p50_response_time_ms?: number; + /** + * Average of p95 response times across epochs for successful probes only (rounded to whole number) + */ + avg_p95_response_time_ms?: number; + /** + * Average of p99 response times across epochs for successful probes only (rounded to whole number) + */ + avg_p99_response_time_ms?: number; + /** + * Column index (0-127) + */ + column_index?: number; + /** + * Number of epochs in this hour aggregation + */ + epoch_count?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Maximum availability percentage across epochs (rounded to 2 decimal places) + */ + max_availability_pct?: number; + /** + * Maximum blob count observed in this hour + */ + max_blob_count?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) + */ + max_response_time_ms?: number; + /** + * Minimum availability percentage across epochs (rounded to 2 decimal places) + */ + min_availability_pct?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) + */ + min_response_time_ms?: number; + /** + * Total failed probes across all epochs (result = failure) + */ + total_failure_count?: number; + /** + * Total missing probes across all epochs (result = missing) + */ + total_missing_count?: number; + /** + * Total probe count across all epochs + */ + total_probe_count?: number; + /** + * Total successful probes across all epochs + */ + total_success_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctEngineGetBlobsByElClient = { - /** - * Average duration of engine_getBlobs calls in milliseconds - */ - avg_duration_ms?: number; - /** - * Average number of non-null blobs returned - */ - avg_returned_count?: number; - /** - * Root of the beacon block (hex encoded with 0x prefix) - */ - block_root?: string; - /** - * Epoch number derived from the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds - */ - max_duration_ms?: number; - /** - * Maximum number of versioned hashes requested - */ - max_requested_count?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds - */ - median_duration_ms?: number; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) - */ - meta_execution_implementation?: string; - /** - * Execution client version string - */ - meta_execution_version?: string; - /** - * Minimum duration of engine_getBlobs calls in milliseconds - */ - min_duration_ms?: number; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) - */ - node_class?: string; - /** - * Number of observations for this EL client/status - */ - observation_count?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds - */ - p95_duration_ms?: number; - /** - * Slot number of the beacon block being reconstructed - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) - */ - status?: string; - /** - * Number of unique nodes with this EL client/status - */ - unique_node_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds + */ + avg_duration_ms?: number; + /** + * Average number of non-null blobs returned + */ + avg_returned_count?: number; + /** + * Root of the beacon block (hex encoded with 0x prefix) + */ + block_root?: string; + /** + * Epoch number derived from the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds + */ + max_duration_ms?: number; + /** + * Maximum number of versioned hashes requested + */ + max_requested_count?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds + */ + median_duration_ms?: number; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) + */ + meta_execution_implementation?: string; + /** + * Execution client version string + */ + meta_execution_version?: string; + /** + * Minimum duration of engine_getBlobs calls in milliseconds + */ + min_duration_ms?: number; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Number of observations for this EL client/status + */ + observation_count?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds + */ + p95_duration_ms?: number; + /** + * Slot number of the beacon block being reconstructed + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) + */ + status?: string; + /** + * Number of unique nodes with this EL client/status + */ + unique_node_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctEngineGetBlobsByElClientHourly = { - /** - * Average duration of engine_getBlobs calls in milliseconds - */ - avg_duration_ms?: number; - /** - * Average number of blobs returned - */ - avg_returned_count?: number; - /** - * Number of observations with EMPTY status - */ - empty_count?: number; - /** - * Number of observations with ERROR status - */ - error_count?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Maximum duration in milliseconds - */ - max_duration_ms?: number; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) - */ - meta_execution_implementation?: string; - /** - * Execution client version string - */ - meta_execution_version?: string; - /** - * Minimum duration in milliseconds - */ - min_duration_ms?: number; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) - */ - node_class?: string; - /** - * Total number of observations for this client in this hour - */ - observation_count?: number; - /** - * 50th percentile (median) duration in milliseconds - */ - p50_duration_ms?: number; - /** - * 95th percentile duration in milliseconds - */ - p95_duration_ms?: number; - /** - * Number of observations with PARTIAL status - */ - partial_count?: number; - /** - * Number of unique slots in this hour - */ - slot_count?: number; - /** - * Number of observations with SUCCESS status - */ - success_count?: number; - /** - * Number of unique nodes reporting for this client - */ - unique_node_count?: number; - /** - * Number of observations with UNSUPPORTED status - */ - unsupported_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds + */ + avg_duration_ms?: number; + /** + * Average number of blobs returned + */ + avg_returned_count?: number; + /** + * Number of observations with EMPTY status + */ + empty_count?: number; + /** + * Number of observations with ERROR status + */ + error_count?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Maximum duration in milliseconds + */ + max_duration_ms?: number; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) + */ + meta_execution_implementation?: string; + /** + * Execution client version string + */ + meta_execution_version?: string; + /** + * Minimum duration in milliseconds + */ + min_duration_ms?: number; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Total number of observations for this client in this hour + */ + observation_count?: number; + /** + * 50th percentile (median) duration in milliseconds + */ + p50_duration_ms?: number; + /** + * 95th percentile duration in milliseconds + */ + p95_duration_ms?: number; + /** + * Number of observations with PARTIAL status + */ + partial_count?: number; + /** + * Number of unique slots in this hour + */ + slot_count?: number; + /** + * Number of observations with SUCCESS status + */ + success_count?: number; + /** + * Number of unique nodes reporting for this client + */ + unique_node_count?: number; + /** + * Number of observations with UNSUPPORTED status + */ + unsupported_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctEngineGetBlobsBySlot = { - /** - * Average duration of engine_getBlobs calls in milliseconds - */ - avg_duration_ms?: number; - /** - * Average number of non-null blobs returned - */ - avg_returned_count?: number; - /** - * Root of the beacon block (hex encoded with 0x prefix) - */ - block_root?: string; - /** - * Epoch number derived from the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Percentage of observations where returned_count equals requested_count - */ - full_return_pct?: number | null; - /** - * Maximum duration of engine_getBlobs calls in milliseconds - */ - max_duration_ms?: number; - /** - * Maximum number of versioned hashes requested - */ - max_requested_count?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds - */ - median_duration_ms?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds - */ - min_duration_ms?: number; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) - */ - node_class?: string; - /** - * Number of observations for this slot/block/status - */ - observation_count?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds - */ - p95_duration_ms?: number; - /** - * Slot number of the beacon block being reconstructed - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) - */ - status?: string; - /** - * Number of unique CL client implementations observing this block - */ - unique_cl_implementation_count?: number; - /** - * Number of unique EL client implementations observing this block - */ - unique_el_implementation_count?: number; - /** - * Number of unique nodes that observed this block with this status - */ - unique_node_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds + */ + avg_duration_ms?: number; + /** + * Average number of non-null blobs returned + */ + avg_returned_count?: number; + /** + * Root of the beacon block (hex encoded with 0x prefix) + */ + block_root?: string; + /** + * Epoch number derived from the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Percentage of observations where returned_count equals requested_count + */ + full_return_pct?: number | null; + /** + * Maximum duration of engine_getBlobs calls in milliseconds + */ + max_duration_ms?: number; + /** + * Maximum number of versioned hashes requested + */ + max_requested_count?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds + */ + median_duration_ms?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds + */ + min_duration_ms?: number; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Number of observations for this slot/block/status + */ + observation_count?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds + */ + p95_duration_ms?: number; + /** + * Slot number of the beacon block being reconstructed + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) + */ + status?: string; + /** + * Number of unique CL client implementations observing this block + */ + unique_cl_implementation_count?: number; + /** + * Number of unique EL client implementations observing this block + */ + unique_el_implementation_count?: number; + /** + * Number of unique nodes that observed this block with this status + */ + unique_node_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctEngineGetBlobsDurationChunked50Ms = { - /** - * Root of the beacon block (hex encoded with 0x prefix) - */ - block_root?: string; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) - */ - chunk_duration_ms?: number; - /** - * Number of EMPTY status observations in this chunk - */ - empty_count?: number; - /** - * Epoch number derived from the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Number of ERROR or UNSUPPORTED status observations in this chunk - */ - error_count?: number; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) - */ - node_class?: string; - /** - * Number of observations in this duration chunk - */ - observation_count?: number; - /** - * Number of PARTIAL status observations in this chunk - */ - partial_count?: number; - /** - * Slot number of the beacon block being reconstructed - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Number of SUCCESS status observations in this chunk - */ - success_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Root of the beacon block (hex encoded with 0x prefix) + */ + block_root?: string; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) + */ + chunk_duration_ms?: number; + /** + * Number of EMPTY status observations in this chunk + */ + empty_count?: number; + /** + * Epoch number derived from the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Number of ERROR or UNSUPPORTED status observations in this chunk + */ + error_count?: number; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Number of observations in this duration chunk + */ + observation_count?: number; + /** + * Number of PARTIAL status observations in this chunk + */ + partial_count?: number; + /** + * Slot number of the beacon block being reconstructed + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Number of SUCCESS status observations in this chunk + */ + success_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctEngineNewPayloadByElClient = { - /** - * Average duration of engine_newPayload calls in milliseconds - */ - avg_duration_ms?: number; - /** - * Number of blobs in the block - */ - blob_count?: number; - /** - * Execution block hash (hex encoded with 0x prefix) - */ - block_hash?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) - */ - block_root?: string; - /** - * Epoch number derived from the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Gas limit of the block - */ - gas_limit?: number; - /** - * Total gas used by all transactions in the block - */ - gas_used?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds - */ - max_duration_ms?: number; - /** - * Median duration of engine_newPayload calls in milliseconds - */ - median_duration_ms?: number; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) - */ - meta_execution_implementation?: string; - /** - * Execution client version string - */ - meta_execution_version?: string; - /** - * Minimum duration of engine_newPayload calls in milliseconds - */ - min_duration_ms?: number; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) - */ - node_class?: string; - /** - * Number of observations for this EL client/status - */ - observation_count?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds - */ - p95_duration_ms?: number; - /** - * Slot number of the beacon block containing the payload - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) - */ - status?: string; - /** - * Number of transactions in the block - */ - tx_count?: number; - /** - * Number of unique nodes with this EL client/status - */ - unique_node_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Average duration of engine_newPayload calls in milliseconds + */ + avg_duration_ms?: number; + /** + * Number of blobs in the block + */ + blob_count?: number; + /** + * Execution block hash (hex encoded with 0x prefix) + */ + block_hash?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) + */ + block_root?: string; + /** + * Epoch number derived from the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Gas limit of the block + */ + gas_limit?: number; + /** + * Total gas used by all transactions in the block + */ + gas_used?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds + */ + max_duration_ms?: number; + /** + * Median duration of engine_newPayload calls in milliseconds + */ + median_duration_ms?: number; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) + */ + meta_execution_implementation?: string; + /** + * Execution client version string + */ + meta_execution_version?: string; + /** + * Minimum duration of engine_newPayload calls in milliseconds + */ + min_duration_ms?: number; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Number of observations for this EL client/status + */ + observation_count?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds + */ + p95_duration_ms?: number; + /** + * Slot number of the beacon block containing the payload + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) + */ + status?: string; + /** + * Number of transactions in the block + */ + tx_count?: number; + /** + * Number of unique nodes with this EL client/status + */ + unique_node_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctEngineNewPayloadByElClientHourly = { - /** - * Number of observations with ACCEPTED status - */ - accepted_count?: number; - /** - * Average blob count per block (VALID status only) - */ - avg_blob_count?: number; - /** - * Average duration of engine_newPayload calls in milliseconds - */ - avg_duration_ms?: number; - /** - * Average gas limit per block (VALID status only) - */ - avg_gas_limit?: number; - /** - * Average gas used per block (VALID status only) - */ - avg_gas_used?: number; - /** - * Average transaction count per block (VALID status only) - */ - avg_tx_count?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Number of observations with INVALID status - */ - invalid_count?: number; - /** - * Maximum duration in milliseconds - */ - max_duration_ms?: number; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) - */ - meta_execution_implementation?: string; - /** - * Execution client version string - */ - meta_execution_version?: string; - /** - * Minimum duration in milliseconds - */ - min_duration_ms?: number; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) - */ - node_class?: string; - /** - * Total number of observations for this client in this hour - */ - observation_count?: number; - /** - * 50th percentile (median) duration in milliseconds - */ - p50_duration_ms?: number; - /** - * 95th percentile duration in milliseconds - */ - p95_duration_ms?: number; - /** - * Number of unique slots in this hour - */ - slot_count?: number; - /** - * Number of observations with SYNCING status - */ - syncing_count?: number; - /** - * Number of unique nodes reporting for this client - */ - unique_node_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Number of observations with VALID status - */ - valid_count?: number; + /** + * Number of observations with ACCEPTED status + */ + accepted_count?: number; + /** + * Average blob count per block (VALID status only) + */ + avg_blob_count?: number; + /** + * Average duration of engine_newPayload calls in milliseconds + */ + avg_duration_ms?: number; + /** + * Average gas limit per block (VALID status only) + */ + avg_gas_limit?: number; + /** + * Average gas used per block (VALID status only) + */ + avg_gas_used?: number; + /** + * Average transaction count per block (VALID status only) + */ + avg_tx_count?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Number of observations with INVALID status + */ + invalid_count?: number; + /** + * Maximum duration in milliseconds + */ + max_duration_ms?: number; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) + */ + meta_execution_implementation?: string; + /** + * Execution client version string + */ + meta_execution_version?: string; + /** + * Minimum duration in milliseconds + */ + min_duration_ms?: number; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Total number of observations for this client in this hour + */ + observation_count?: number; + /** + * 50th percentile (median) duration in milliseconds + */ + p50_duration_ms?: number; + /** + * 95th percentile duration in milliseconds + */ + p95_duration_ms?: number; + /** + * Number of unique slots in this hour + */ + slot_count?: number; + /** + * Number of observations with SYNCING status + */ + syncing_count?: number; + /** + * Number of unique nodes reporting for this client + */ + unique_node_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Number of observations with VALID status + */ + valid_count?: number; }; export type FctEngineNewPayloadBySlot = { - /** - * Average duration of engine_newPayload calls in milliseconds - */ - avg_duration_ms?: number; - /** - * Number of blobs in the block - */ - blob_count?: number; - /** - * Execution block hash (hex encoded with 0x prefix) - */ - block_hash?: string; - /** - * Execution block number - */ - block_number?: number; - /** - * Root of the beacon block (hex encoded with 0x prefix) - */ - block_root?: string; - /** - * Epoch number derived from the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Gas limit of the block - */ - gas_limit?: number; - /** - * Total gas used by all transactions in the block - */ - gas_used?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds - */ - max_duration_ms?: number; - /** - * Median duration of engine_newPayload calls in milliseconds - */ - median_duration_ms?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds - */ - min_duration_ms?: number; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) - */ - node_class?: string; - /** - * Number of observations for this slot/block/status - */ - observation_count?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds - */ - p95_duration_ms?: number; - /** - * 99th percentile duration of engine_newPayload calls in milliseconds - */ - p99_duration_ms?: number; - /** - * Validator index of the block proposer - */ - proposer_index?: number; - /** - * Slot number of the beacon block containing the payload - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) - */ - status?: string; - /** - * Number of transactions in the block - */ - tx_count?: number; - /** - * Number of unique CL client implementations observing this block - */ - unique_cl_implementation_count?: number; - /** - * Number of unique EL client implementations observing this block - */ - unique_el_implementation_count?: number; - /** - * Number of unique nodes that observed this block with this status - */ - unique_node_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Average duration of engine_newPayload calls in milliseconds + */ + avg_duration_ms?: number; + /** + * Number of blobs in the block + */ + blob_count?: number; + /** + * Execution block hash (hex encoded with 0x prefix) + */ + block_hash?: string; + /** + * Execution block number + */ + block_number?: number; + /** + * Root of the beacon block (hex encoded with 0x prefix) + */ + block_root?: string; + /** + * Epoch number derived from the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Gas limit of the block + */ + gas_limit?: number; + /** + * Total gas used by all transactions in the block + */ + gas_used?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds + */ + max_duration_ms?: number; + /** + * Median duration of engine_newPayload calls in milliseconds + */ + median_duration_ms?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds + */ + min_duration_ms?: number; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Number of observations for this slot/block/status + */ + observation_count?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds + */ + p95_duration_ms?: number; + /** + * 99th percentile duration of engine_newPayload calls in milliseconds + */ + p99_duration_ms?: number; + /** + * Validator index of the block proposer + */ + proposer_index?: number; + /** + * Slot number of the beacon block containing the payload + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) + */ + status?: string; + /** + * Number of transactions in the block + */ + tx_count?: number; + /** + * Number of unique CL client implementations observing this block + */ + unique_cl_implementation_count?: number; + /** + * Number of unique EL client implementations observing this block + */ + unique_el_implementation_count?: number; + /** + * Number of unique nodes that observed this block with this status + */ + unique_node_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctEngineNewPayloadDurationChunked50Ms = { - /** - * Execution block hash (hex encoded with 0x prefix) - */ - block_hash?: string; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) - */ - chunk_duration_ms?: number; - /** - * Epoch number derived from the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk - */ - invalid_count?: number; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) - */ - node_class?: string; - /** - * Number of observations in this duration chunk - */ - observation_count?: number; - /** - * Slot number of the beacon block containing the payload - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Number of VALID status observations in this chunk - */ - valid_count?: number; + /** + * Execution block hash (hex encoded with 0x prefix) + */ + block_hash?: string; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) + */ + chunk_duration_ms?: number; + /** + * Epoch number derived from the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk + */ + invalid_count?: number; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Number of observations in this duration chunk + */ + observation_count?: number; + /** + * Slot number of the beacon block containing the payload + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Number of VALID status observations in this chunk + */ + valid_count?: number; }; export type FctEngineNewPayloadWinrateDaily = { - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) - */ - meta_execution_implementation?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) - */ - node_class?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration - */ - win_count?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) + */ + meta_execution_implementation?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration + */ + win_count?: number; }; export type FctEngineNewPayloadWinrateHourly = { - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) - */ - meta_execution_implementation?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) - */ - node_class?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration - */ - win_count?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) + */ + meta_execution_implementation?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration + */ + win_count?: number; }; export type FctExecutionGasLimitDaily = { - /** - * Average gas limit per block - */ - avg_gas_limit?: number; - /** - * Number of blocks in this day - */ - block_count?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility - */ - lower_band_gas_limit?: number; - /** - * Maximum gas limit in a block - */ - max_gas_limit?: number; - /** - * Minimum gas limit in a block - */ - min_gas_limit?: number; - /** - * Moving average gas limit (7-day window) - */ - moving_avg_gas_limit?: number; - /** - * 5th percentile gas limit - */ - p05_gas_limit?: number; - /** - * 50th percentile (median) gas limit - */ - p50_gas_limit?: number; - /** - * 95th percentile gas limit - */ - p95_gas_limit?: number; - /** - * Standard deviation of gas limit - */ - stddev_gas_limit?: number; - /** - * Total gas limit in this day - */ - total_gas_limit?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_gas_limit?: number; + /** + * Average gas limit per block + */ + avg_gas_limit?: number; + /** + * Number of blocks in this day + */ + block_count?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility + */ + lower_band_gas_limit?: number; + /** + * Maximum gas limit in a block + */ + max_gas_limit?: number; + /** + * Minimum gas limit in a block + */ + min_gas_limit?: number; + /** + * Moving average gas limit (7-day window) + */ + moving_avg_gas_limit?: number; + /** + * 5th percentile gas limit + */ + p05_gas_limit?: number; + /** + * 50th percentile (median) gas limit + */ + p50_gas_limit?: number; + /** + * 95th percentile gas limit + */ + p95_gas_limit?: number; + /** + * Standard deviation of gas limit + */ + stddev_gas_limit?: number; + /** + * Total gas limit in this day + */ + total_gas_limit?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_gas_limit?: number; }; export type FctExecutionGasLimitHourly = { - /** - * Average gas limit per block - */ - avg_gas_limit?: number; - /** - * Number of blocks in this hour - */ - block_count?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility - */ - lower_band_gas_limit?: number; - /** - * Maximum gas limit in a block - */ - max_gas_limit?: number; - /** - * Minimum gas limit in a block - */ - min_gas_limit?: number; - /** - * Moving average gas limit (6-hour window) - */ - moving_avg_gas_limit?: number; - /** - * 5th percentile gas limit - */ - p05_gas_limit?: number; - /** - * 50th percentile (median) gas limit - */ - p50_gas_limit?: number; - /** - * 95th percentile gas limit - */ - p95_gas_limit?: number; - /** - * Standard deviation of gas limit - */ - stddev_gas_limit?: number; - /** - * Total gas limit in this hour - */ - total_gas_limit?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_gas_limit?: number; + /** + * Average gas limit per block + */ + avg_gas_limit?: number; + /** + * Number of blocks in this hour + */ + block_count?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility + */ + lower_band_gas_limit?: number; + /** + * Maximum gas limit in a block + */ + max_gas_limit?: number; + /** + * Minimum gas limit in a block + */ + min_gas_limit?: number; + /** + * Moving average gas limit (6-hour window) + */ + moving_avg_gas_limit?: number; + /** + * 5th percentile gas limit + */ + p05_gas_limit?: number; + /** + * 50th percentile (median) gas limit + */ + p50_gas_limit?: number; + /** + * 95th percentile gas limit + */ + p95_gas_limit?: number; + /** + * Standard deviation of gas limit + */ + stddev_gas_limit?: number; + /** + * Total gas limit in this hour + */ + total_gas_limit?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_gas_limit?: number; }; export type FctExecutionGasLimitSignallingDaily = { - day_start_date?: string; - gas_limit_band_counts?: { - [key: string]: number; - }; - updated_date_time?: number; + day_start_date?: string; + gas_limit_band_counts?: { + [key: string]: number; + }; + updated_date_time?: number; }; export type FctExecutionGasLimitSignallingHourly = { - gas_limit_band_counts?: { - [key: string]: number; - }; - hour_start_date_time?: number; - updated_date_time?: number; + gas_limit_band_counts?: { + [key: string]: number; + }; + hour_start_date_time?: number; + updated_date_time?: number; }; export type FctExecutionGasUsedDaily = { - /** - * Average gas used per block - */ - avg_gas_used?: number; - /** - * Number of blocks in this day - */ - block_count?: number; - /** - * Cumulative gas used since genesis - */ - cumulative_gas_used?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility - */ - lower_band_gas_used?: number; - /** - * Maximum gas used in a block - */ - max_gas_used?: number; - /** - * Minimum gas used in a block - */ - min_gas_used?: number; - /** - * Moving average gas used (7-day window) - */ - moving_avg_gas_used?: number; - /** - * 5th percentile gas used - */ - p05_gas_used?: number; - /** - * 50th percentile (median) gas used - */ - p50_gas_used?: number; - /** - * 95th percentile gas used - */ - p95_gas_used?: number; - /** - * Standard deviation of gas used - */ - stddev_gas_used?: number; - /** - * Total gas used in this day - */ - total_gas_used?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_gas_used?: number; + /** + * Average gas used per block + */ + avg_gas_used?: number; + /** + * Number of blocks in this day + */ + block_count?: number; + /** + * Cumulative gas used since genesis + */ + cumulative_gas_used?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility + */ + lower_band_gas_used?: number; + /** + * Maximum gas used in a block + */ + max_gas_used?: number; + /** + * Minimum gas used in a block + */ + min_gas_used?: number; + /** + * Moving average gas used (7-day window) + */ + moving_avg_gas_used?: number; + /** + * 5th percentile gas used + */ + p05_gas_used?: number; + /** + * 50th percentile (median) gas used + */ + p50_gas_used?: number; + /** + * 95th percentile gas used + */ + p95_gas_used?: number; + /** + * Standard deviation of gas used + */ + stddev_gas_used?: number; + /** + * Total gas used in this day + */ + total_gas_used?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_gas_used?: number; }; export type FctExecutionGasUsedHourly = { - /** - * Average gas used per block - */ - avg_gas_used?: number; - /** - * Number of blocks in this hour - */ - block_count?: number; - /** - * Cumulative gas used since genesis - */ - cumulative_gas_used?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility - */ - lower_band_gas_used?: number; - /** - * Maximum gas used in a block - */ - max_gas_used?: number; - /** - * Minimum gas used in a block - */ - min_gas_used?: number; - /** - * Moving average gas used (6-hour window) - */ - moving_avg_gas_used?: number; - /** - * 5th percentile gas used - */ - p05_gas_used?: number; - /** - * 50th percentile (median) gas used - */ - p50_gas_used?: number; - /** - * 95th percentile gas used - */ - p95_gas_used?: number; - /** - * Standard deviation of gas used - */ - stddev_gas_used?: number; - /** - * Total gas used in this hour - */ - total_gas_used?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_gas_used?: number; + /** + * Average gas used per block + */ + avg_gas_used?: number; + /** + * Number of blocks in this hour + */ + block_count?: number; + /** + * Cumulative gas used since genesis + */ + cumulative_gas_used?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility + */ + lower_band_gas_used?: number; + /** + * Maximum gas used in a block + */ + max_gas_used?: number; + /** + * Minimum gas used in a block + */ + min_gas_used?: number; + /** + * Moving average gas used (6-hour window) + */ + moving_avg_gas_used?: number; + /** + * 5th percentile gas used + */ + p05_gas_used?: number; + /** + * 50th percentile (median) gas used + */ + p50_gas_used?: number; + /** + * 95th percentile gas used + */ + p95_gas_used?: number; + /** + * Standard deviation of gas used + */ + stddev_gas_used?: number; + /** + * Total gas used in this hour + */ + total_gas_used?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_gas_used?: number; }; export type FctExecutionReceiptSizeDaily = { - /** - * Average logs per transaction - */ - avg_log_count_per_transaction?: number; - /** - * Average total receipt bytes per block - */ - avg_receipt_bytes_per_block?: number; - /** - * Average receipt bytes per transaction - */ - avg_receipt_bytes_per_transaction?: number; - /** - * Number of blocks in this day - */ - block_count?: number; - /** - * Running total of receipt bytes since genesis - */ - cumulative_receipt_bytes?: number; - /** - * The start date of the day - */ - day_start_date?: string; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_receipt_bytes_per_block?: number; - /** - * Maximum total receipt bytes in a single block - */ - max_receipt_bytes_per_block?: number; - /** - * Minimum total receipt bytes in a single block - */ - min_receipt_bytes_per_block?: number; - /** - * 7-day moving average of receipt bytes per block - */ - moving_avg_receipt_bytes_per_block?: number; - /** - * 5th percentile of total receipt bytes per block - */ - p05_receipt_bytes_per_block?: number; - /** - * 50th percentile of total receipt bytes per block - */ - p50_receipt_bytes_per_block?: number; - /** - * 50th percentile of receipt bytes per transaction - */ - p50_receipt_bytes_per_transaction?: number; - /** - * 95th percentile of total receipt bytes per block - */ - p95_receipt_bytes_per_block?: number; - /** - * 95th percentile of receipt bytes per transaction - */ - p95_receipt_bytes_per_transaction?: number; - /** - * Standard deviation of total receipt bytes per block - */ - stddev_receipt_bytes_per_block?: number; - /** - * Total logs emitted across all transactions - */ - total_log_count?: number; - /** - * Total receipt bytes across all blocks - */ - total_receipt_bytes?: number; - /** - * Number of transactions in this day - */ - transaction_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_receipt_bytes_per_block?: number; + /** + * Average logs per transaction + */ + avg_log_count_per_transaction?: number; + /** + * Average total receipt bytes per block + */ + avg_receipt_bytes_per_block?: number; + /** + * Average receipt bytes per transaction + */ + avg_receipt_bytes_per_transaction?: number; + /** + * Number of blocks in this day + */ + block_count?: number; + /** + * Running total of receipt bytes since genesis + */ + cumulative_receipt_bytes?: number; + /** + * The start date of the day + */ + day_start_date?: string; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_receipt_bytes_per_block?: number; + /** + * Maximum total receipt bytes in a single block + */ + max_receipt_bytes_per_block?: number; + /** + * Minimum total receipt bytes in a single block + */ + min_receipt_bytes_per_block?: number; + /** + * 7-day moving average of receipt bytes per block + */ + moving_avg_receipt_bytes_per_block?: number; + /** + * 5th percentile of total receipt bytes per block + */ + p05_receipt_bytes_per_block?: number; + /** + * 50th percentile of total receipt bytes per block + */ + p50_receipt_bytes_per_block?: number; + /** + * 50th percentile of receipt bytes per transaction + */ + p50_receipt_bytes_per_transaction?: number; + /** + * 95th percentile of total receipt bytes per block + */ + p95_receipt_bytes_per_block?: number; + /** + * 95th percentile of receipt bytes per transaction + */ + p95_receipt_bytes_per_transaction?: number; + /** + * Standard deviation of total receipt bytes per block + */ + stddev_receipt_bytes_per_block?: number; + /** + * Total logs emitted across all transactions + */ + total_log_count?: number; + /** + * Total receipt bytes across all blocks + */ + total_receipt_bytes?: number; + /** + * Number of transactions in this day + */ + transaction_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_receipt_bytes_per_block?: number; }; export type FctExecutionReceiptSizeHourly = { - /** - * Average logs per transaction - */ - avg_log_count_per_transaction?: number; - /** - * Average total receipt bytes per block - */ - avg_receipt_bytes_per_block?: number; - /** - * Average receipt bytes per transaction - */ - avg_receipt_bytes_per_transaction?: number; - /** - * Number of blocks in this hour - */ - block_count?: number; - /** - * Running total of receipt bytes since genesis - */ - cumulative_receipt_bytes?: number; - /** - * The start time of the hour - */ - hour_start_date_time?: number; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_receipt_bytes_per_block?: number; - /** - * Maximum total receipt bytes in a single block - */ - max_receipt_bytes_per_block?: number; - /** - * Minimum total receipt bytes in a single block - */ - min_receipt_bytes_per_block?: number; - /** - * 6-hour moving average of receipt bytes per block - */ - moving_avg_receipt_bytes_per_block?: number; - /** - * 5th percentile of total receipt bytes per block - */ - p05_receipt_bytes_per_block?: number; - /** - * 50th percentile of total receipt bytes per block - */ - p50_receipt_bytes_per_block?: number; - /** - * 50th percentile of receipt bytes per transaction - */ - p50_receipt_bytes_per_transaction?: number; - /** - * 95th percentile of total receipt bytes per block - */ - p95_receipt_bytes_per_block?: number; - /** - * 95th percentile of receipt bytes per transaction - */ - p95_receipt_bytes_per_transaction?: number; - /** - * Standard deviation of total receipt bytes per block - */ - stddev_receipt_bytes_per_block?: number; - /** - * Total logs emitted across all transactions - */ - total_log_count?: number; - /** - * Total receipt bytes across all blocks - */ - total_receipt_bytes?: number; - /** - * Number of transactions in this hour - */ - transaction_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_receipt_bytes_per_block?: number; + /** + * Average logs per transaction + */ + avg_log_count_per_transaction?: number; + /** + * Average total receipt bytes per block + */ + avg_receipt_bytes_per_block?: number; + /** + * Average receipt bytes per transaction + */ + avg_receipt_bytes_per_transaction?: number; + /** + * Number of blocks in this hour + */ + block_count?: number; + /** + * Running total of receipt bytes since genesis + */ + cumulative_receipt_bytes?: number; + /** + * The start time of the hour + */ + hour_start_date_time?: number; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_receipt_bytes_per_block?: number; + /** + * Maximum total receipt bytes in a single block + */ + max_receipt_bytes_per_block?: number; + /** + * Minimum total receipt bytes in a single block + */ + min_receipt_bytes_per_block?: number; + /** + * 6-hour moving average of receipt bytes per block + */ + moving_avg_receipt_bytes_per_block?: number; + /** + * 5th percentile of total receipt bytes per block + */ + p05_receipt_bytes_per_block?: number; + /** + * 50th percentile of total receipt bytes per block + */ + p50_receipt_bytes_per_block?: number; + /** + * 50th percentile of receipt bytes per transaction + */ + p50_receipt_bytes_per_transaction?: number; + /** + * 95th percentile of total receipt bytes per block + */ + p95_receipt_bytes_per_block?: number; + /** + * 95th percentile of receipt bytes per transaction + */ + p95_receipt_bytes_per_transaction?: number; + /** + * Standard deviation of total receipt bytes per block + */ + stddev_receipt_bytes_per_block?: number; + /** + * Total logs emitted across all transactions + */ + total_log_count?: number; + /** + * Total receipt bytes across all blocks + */ + total_receipt_bytes?: number; + /** + * Number of transactions in this hour + */ + transaction_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_receipt_bytes_per_block?: number; }; export type FctExecutionStateSizeDaily = { - /** - * Account bytes at end of day - */ - account_bytes?: number; - /** - * Account trie node bytes at end of day - */ - account_trienode_bytes?: number; - /** - * Account trie nodes at end of day - */ - account_trienodes?: number; - /** - * Total accounts at end of day - */ - accounts?: number; - /** - * Contract code bytes at end of day - */ - contract_code_bytes?: number; - /** - * Contract codes at end of day - */ - contract_codes?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Storage bytes at end of day - */ - storage_bytes?: number; - /** - * Storage trie node bytes at end of day - */ - storage_trienode_bytes?: number; - /** - * Storage trie nodes at end of day - */ - storage_trienodes?: number; - /** - * Storage slots at end of day - */ - storages?: number; - /** - * Total state size in bytes - */ - total_bytes?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Account bytes at end of day + */ + account_bytes?: number; + /** + * Account trie node bytes at end of day + */ + account_trienode_bytes?: number; + /** + * Account trie nodes at end of day + */ + account_trienodes?: number; + /** + * Total accounts at end of day + */ + accounts?: number; + /** + * Contract code bytes at end of day + */ + contract_code_bytes?: number; + /** + * Contract codes at end of day + */ + contract_codes?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Storage bytes at end of day + */ + storage_bytes?: number; + /** + * Storage trie node bytes at end of day + */ + storage_trienode_bytes?: number; + /** + * Storage trie nodes at end of day + */ + storage_trienodes?: number; + /** + * Storage slots at end of day + */ + storages?: number; + /** + * Total state size in bytes + */ + total_bytes?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctExecutionStateSizeHourly = { - /** - * Account bytes at end of hour - */ - account_bytes?: number; - /** - * Account trie node bytes at end of hour - */ - account_trienode_bytes?: number; - /** - * Account trie nodes at end of hour - */ - account_trienodes?: number; - /** - * Total accounts at end of hour - */ - accounts?: number; - /** - * Contract code bytes at end of hour - */ - contract_code_bytes?: number; - /** - * Contract codes at end of hour - */ - contract_codes?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Storage bytes at end of hour - */ - storage_bytes?: number; - /** - * Storage trie node bytes at end of hour - */ - storage_trienode_bytes?: number; - /** - * Storage trie nodes at end of hour - */ - storage_trienodes?: number; - /** - * Storage slots at end of hour - */ - storages?: number; - /** - * Total state size in bytes - */ - total_bytes?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Account bytes at end of hour + */ + account_bytes?: number; + /** + * Account trie node bytes at end of hour + */ + account_trienode_bytes?: number; + /** + * Account trie nodes at end of hour + */ + account_trienodes?: number; + /** + * Total accounts at end of hour + */ + accounts?: number; + /** + * Contract code bytes at end of hour + */ + contract_code_bytes?: number; + /** + * Contract codes at end of hour + */ + contract_codes?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Storage bytes at end of hour + */ + storage_bytes?: number; + /** + * Storage trie node bytes at end of hour + */ + storage_trienode_bytes?: number; + /** + * Storage trie nodes at end of hour + */ + storage_trienodes?: number; + /** + * Storage slots at end of hour + */ + storages?: number; + /** + * Total state size in bytes + */ + total_bytes?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctExecutionTpsDaily = { - /** - * Average TPS using actual block time gaps - */ - avg_tps?: number; - /** - * Number of blocks in this day - */ - block_count?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility - */ - lower_band_tps?: number; - /** - * Maximum per-block TPS - */ - max_tps?: number; - /** - * Minimum per-block TPS - */ - min_tps?: number; - /** - * Moving average TPS (7-day window) - */ - moving_avg_tps?: number; - /** - * 5th percentile TPS - */ - p05_tps?: number; - /** - * 50th percentile (median) TPS - */ - p50_tps?: number; - /** - * 95th percentile TPS - */ - p95_tps?: number; - /** - * Standard deviation of TPS - */ - stddev_tps?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) - */ - total_seconds?: number; - /** - * Total transactions in this day - */ - total_transactions?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_tps?: number; + /** + * Average TPS using actual block time gaps + */ + avg_tps?: number; + /** + * Number of blocks in this day + */ + block_count?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility + */ + lower_band_tps?: number; + /** + * Maximum per-block TPS + */ + max_tps?: number; + /** + * Minimum per-block TPS + */ + min_tps?: number; + /** + * Moving average TPS (7-day window) + */ + moving_avg_tps?: number; + /** + * 5th percentile TPS + */ + p05_tps?: number; + /** + * 50th percentile (median) TPS + */ + p50_tps?: number; + /** + * 95th percentile TPS + */ + p95_tps?: number; + /** + * Standard deviation of TPS + */ + stddev_tps?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) + */ + total_seconds?: number; + /** + * Total transactions in this day + */ + total_transactions?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_tps?: number; }; export type FctExecutionTpsHourly = { - /** - * Average TPS using actual block time gaps - */ - avg_tps?: number; - /** - * Number of blocks in this hour - */ - block_count?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility - */ - lower_band_tps?: number; - /** - * Maximum per-block TPS - */ - max_tps?: number; - /** - * Minimum per-block TPS - */ - min_tps?: number; - /** - * Moving average TPS (6-hour window) - */ - moving_avg_tps?: number; - /** - * 5th percentile TPS - */ - p05_tps?: number; - /** - * 50th percentile (median) TPS - */ - p50_tps?: number; - /** - * 95th percentile TPS - */ - p95_tps?: number; - /** - * Standard deviation of TPS - */ - stddev_tps?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) - */ - total_seconds?: number; - /** - * Total transactions in this hour - */ - total_transactions?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_tps?: number; + /** + * Average TPS using actual block time gaps + */ + avg_tps?: number; + /** + * Number of blocks in this hour + */ + block_count?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility + */ + lower_band_tps?: number; + /** + * Maximum per-block TPS + */ + max_tps?: number; + /** + * Minimum per-block TPS + */ + min_tps?: number; + /** + * Moving average TPS (6-hour window) + */ + moving_avg_tps?: number; + /** + * 5th percentile TPS + */ + p05_tps?: number; + /** + * 50th percentile (median) TPS + */ + p50_tps?: number; + /** + * 95th percentile TPS + */ + p95_tps?: number; + /** + * Standard deviation of TPS + */ + stddev_tps?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) + */ + total_seconds?: number; + /** + * Total transactions in this hour + */ + total_transactions?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_tps?: number; }; export type FctExecutionTransactionsDaily = { - /** - * Average transactions per block - */ - avg_txn_per_block?: number; - /** - * Number of blocks in this day - */ - block_count?: number; - /** - * Cumulative transaction count since genesis - */ - cumulative_transactions?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_txn_per_block?: number; - /** - * Maximum transactions in a block - */ - max_txn_per_block?: number; - /** - * Minimum transactions in a block - */ - min_txn_per_block?: number; - /** - * Moving average transactions per block (7-day window) - */ - moving_avg_txn_per_block?: number; - /** - * 5th percentile transactions per block - */ - p05_txn_per_block?: number; - /** - * 50th percentile (median) transactions per block - */ - p50_txn_per_block?: number; - /** - * 95th percentile transactions per block - */ - p95_txn_per_block?: number; - /** - * Standard deviation of transactions per block - */ - stddev_txn_per_block?: number; - /** - * Total transactions in this day - */ - total_transactions?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_txn_per_block?: number; + /** + * Average transactions per block + */ + avg_txn_per_block?: number; + /** + * Number of blocks in this day + */ + block_count?: number; + /** + * Cumulative transaction count since genesis + */ + cumulative_transactions?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_txn_per_block?: number; + /** + * Maximum transactions in a block + */ + max_txn_per_block?: number; + /** + * Minimum transactions in a block + */ + min_txn_per_block?: number; + /** + * Moving average transactions per block (7-day window) + */ + moving_avg_txn_per_block?: number; + /** + * 5th percentile transactions per block + */ + p05_txn_per_block?: number; + /** + * 50th percentile (median) transactions per block + */ + p50_txn_per_block?: number; + /** + * 95th percentile transactions per block + */ + p95_txn_per_block?: number; + /** + * Standard deviation of transactions per block + */ + stddev_txn_per_block?: number; + /** + * Total transactions in this day + */ + total_transactions?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_txn_per_block?: number; }; export type FctExecutionTransactionsHourly = { - /** - * Average transactions per block - */ - avg_txn_per_block?: number; - /** - * Number of blocks in this hour - */ - block_count?: number; - /** - * Cumulative transaction count since genesis - */ - cumulative_transactions?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_txn_per_block?: number; - /** - * Maximum transactions in a block - */ - max_txn_per_block?: number; - /** - * Minimum transactions in a block - */ - min_txn_per_block?: number; - /** - * Moving average transactions per block (6-hour window) - */ - moving_avg_txn_per_block?: number; - /** - * 5th percentile transactions per block - */ - p05_txn_per_block?: number; - /** - * 50th percentile (median) transactions per block - */ - p50_txn_per_block?: number; - /** - * 95th percentile transactions per block - */ - p95_txn_per_block?: number; - /** - * Standard deviation of transactions per block - */ - stddev_txn_per_block?: number; - /** - * Total transactions in this hour - */ - total_transactions?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_txn_per_block?: number; + /** + * Average transactions per block + */ + avg_txn_per_block?: number; + /** + * Number of blocks in this hour + */ + block_count?: number; + /** + * Cumulative transaction count since genesis + */ + cumulative_transactions?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_txn_per_block?: number; + /** + * Maximum transactions in a block + */ + max_txn_per_block?: number; + /** + * Minimum transactions in a block + */ + min_txn_per_block?: number; + /** + * Moving average transactions per block (6-hour window) + */ + moving_avg_txn_per_block?: number; + /** + * 5th percentile transactions per block + */ + p05_txn_per_block?: number; + /** + * 50th percentile (median) transactions per block + */ + p50_txn_per_block?: number; + /** + * 95th percentile transactions per block + */ + p95_txn_per_block?: number; + /** + * Standard deviation of transactions per block + */ + stddev_txn_per_block?: number; + /** + * Total transactions in this hour + */ + total_transactions?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_txn_per_block?: number; }; export type FctHeadFirstSeenByNode = { - /** - * The head block root hash - */ - block_root?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" - */ - classification?: string; - /** - * The epoch number containing the slot - */ - epoch?: number; - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time?: number; - /** - * Autonomous system number of the client - */ - meta_client_geo_autonomous_system_number?: number | null; - /** - * Autonomous system organization of the client - */ - meta_client_geo_autonomous_system_organization?: string | null; - /** - * City of the client - */ - meta_client_geo_city?: string; - /** - * Continent code of the client - */ - meta_client_geo_continent_code?: string; - /** - * Country of the client - */ - meta_client_geo_country?: string; - /** - * Country code of the client - */ - meta_client_geo_country_code?: string; - /** - * Latitude of the client - */ - meta_client_geo_latitude?: number | null; - /** - * Longitude of the client - */ - meta_client_geo_longitude?: number | null; - /** - * Implementation of the client - */ - meta_client_implementation?: string; - /** - * Name of the client - */ - meta_client_name?: string; - /** - * Version of the client - */ - meta_client_version?: string; - /** - * Ethereum consensus client implementation - */ - meta_consensus_implementation?: string; - /** - * Ethereum consensus client version - */ - meta_consensus_version?: string; - /** - * ID of the node - */ - node_id?: string; - /** - * The time from slot start for the client to see the head event - */ - seen_slot_start_diff?: number; - /** - * The slot number - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Source of the event - */ - source?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Username of the node - */ - username?: string; + /** + * The head block root hash + */ + block_root?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" + */ + classification?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Autonomous system number of the client + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client + */ + meta_client_geo_city?: string; + /** + * Continent code of the client + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client + */ + meta_client_geo_country?: string; + /** + * Country code of the client + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client + */ + meta_client_implementation?: string; + /** + * Name of the client + */ + meta_client_name?: string; + /** + * Version of the client + */ + meta_client_version?: string; + /** + * Ethereum consensus client implementation + */ + meta_consensus_implementation?: string; + /** + * Ethereum consensus client version + */ + meta_consensus_version?: string; + /** + * ID of the node + */ + node_id?: string; + /** + * The time from slot start for the client to see the head event + */ + seen_slot_start_diff?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Source of the event + */ + source?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Username of the node + */ + username?: string; }; export type FctHeadVoteCorrectnessRateDaily = { - /** - * Average head vote correctness rate (%) - */ - avg_head_vote_rate?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_head_vote_rate?: number; - /** - * Maximum head vote correctness rate (%) - */ - max_head_vote_rate?: number; - /** - * Minimum head vote correctness rate (%) - */ - min_head_vote_rate?: number; - /** - * Moving average head vote correctness rate (7-day window) - */ - moving_avg_head_vote_rate?: number; - /** - * 5th percentile head vote correctness rate - */ - p05_head_vote_rate?: number; - /** - * 50th percentile (median) head vote correctness rate - */ - p50_head_vote_rate?: number; - /** - * 95th percentile head vote correctness rate - */ - p95_head_vote_rate?: number; - /** - * Number of slots in this day - */ - slot_count?: number; - /** - * Standard deviation of head vote correctness rate - */ - stddev_head_vote_rate?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_head_vote_rate?: number; + /** + * Average head vote correctness rate (%) + */ + avg_head_vote_rate?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_head_vote_rate?: number; + /** + * Maximum head vote correctness rate (%) + */ + max_head_vote_rate?: number; + /** + * Minimum head vote correctness rate (%) + */ + min_head_vote_rate?: number; + /** + * Moving average head vote correctness rate (7-day window) + */ + moving_avg_head_vote_rate?: number; + /** + * 5th percentile head vote correctness rate + */ + p05_head_vote_rate?: number; + /** + * 50th percentile (median) head vote correctness rate + */ + p50_head_vote_rate?: number; + /** + * 95th percentile head vote correctness rate + */ + p95_head_vote_rate?: number; + /** + * Number of slots in this day + */ + slot_count?: number; + /** + * Standard deviation of head vote correctness rate + */ + stddev_head_vote_rate?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_head_vote_rate?: number; }; export type FctHeadVoteCorrectnessRateHourly = { - /** - * Average head vote correctness rate (%) - */ - avg_head_vote_rate?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_head_vote_rate?: number; - /** - * Maximum head vote correctness rate (%) - */ - max_head_vote_rate?: number; - /** - * Minimum head vote correctness rate (%) - */ - min_head_vote_rate?: number; - /** - * Moving average head vote correctness rate (6-hour window) - */ - moving_avg_head_vote_rate?: number; - /** - * 5th percentile head vote correctness rate - */ - p05_head_vote_rate?: number; - /** - * 50th percentile (median) head vote correctness rate - */ - p50_head_vote_rate?: number; - /** - * 95th percentile head vote correctness rate - */ - p95_head_vote_rate?: number; - /** - * Number of slots in this hour - */ - slot_count?: number; - /** - * Standard deviation of head vote correctness rate - */ - stddev_head_vote_rate?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_head_vote_rate?: number; + /** + * Average head vote correctness rate (%) + */ + avg_head_vote_rate?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_head_vote_rate?: number; + /** + * Maximum head vote correctness rate (%) + */ + max_head_vote_rate?: number; + /** + * Minimum head vote correctness rate (%) + */ + min_head_vote_rate?: number; + /** + * Moving average head vote correctness rate (6-hour window) + */ + moving_avg_head_vote_rate?: number; + /** + * 5th percentile head vote correctness rate + */ + p05_head_vote_rate?: number; + /** + * 50th percentile (median) head vote correctness rate + */ + p50_head_vote_rate?: number; + /** + * 95th percentile head vote correctness rate + */ + p95_head_vote_rate?: number; + /** + * Number of slots in this hour + */ + slot_count?: number; + /** + * Standard deviation of head vote correctness rate + */ + stddev_head_vote_rate?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_head_vote_rate?: number; }; export type FctMevBidCountByBuilder = { - /** - * The total number of bids from the builder - */ - bid_total?: number; - /** - * The relay that the bid was fetched from - */ - builder_pubkey?: string; - /** - * Epoch number derived from the slot that the bid is for - */ - epoch?: number; - /** - * The start time for the epoch that the bid is for - */ - epoch_start_date_time?: number; - /** - * Slot number within the block bid - */ - slot?: number; - /** - * The start time for the slot that the bid is for - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The total number of bids from the builder + */ + bid_total?: number; + /** + * The relay that the bid was fetched from + */ + builder_pubkey?: string; + /** + * Epoch number derived from the slot that the bid is for + */ + epoch?: number; + /** + * The start time for the epoch that the bid is for + */ + epoch_start_date_time?: number; + /** + * Slot number within the block bid + */ + slot?: number; + /** + * The start time for the slot that the bid is for + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctMevBidCountByRelay = { - /** - * The total number of bids for the relay - */ - bid_total?: number; - /** - * Epoch number derived from the slot that the bid is for - */ - epoch?: number; - /** - * The start time for the epoch that the bid is for - */ - epoch_start_date_time?: number; - /** - * The relay that the bid was fetched from - */ - relay_name?: string; - /** - * Slot number within the block bid - */ - slot?: number; - /** - * The start time for the slot that the bid is for - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The total number of bids for the relay + */ + bid_total?: number; + /** + * Epoch number derived from the slot that the bid is for + */ + epoch?: number; + /** + * The start time for the epoch that the bid is for + */ + epoch_start_date_time?: number; + /** + * The relay that the bid was fetched from + */ + relay_name?: string; + /** + * Slot number within the block bid + */ + slot?: number; + /** + * The start time for the slot that the bid is for + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctMevBidHighestValueByBuilderChunked50Ms = { - /** - * The execution block hash of the bid - */ - block_hash?: string; - /** - * The builder pubkey of the bid - */ - builder_pubkey?: string; - /** - * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start - */ - chunk_slot_start_diff?: number; - /** - * The timestamp of the earliest bid for this block_hash from this builder - */ - earliest_bid_date_time?: number; - /** - * Epoch number derived from the slot that the bid is for - */ - epoch?: number; - /** - * The start time for the epoch that the bid is for - */ - epoch_start_date_time?: number; - /** - * The relay that the bid was fetched from - */ - relay_names?: Array; - /** - * Slot number within the block bid - */ - slot?: number; - /** - * The start time for the slot that the bid is for - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The transaction value in wei - */ - value?: string; + /** + * The execution block hash of the bid + */ + block_hash?: string; + /** + * The builder pubkey of the bid + */ + builder_pubkey?: string; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start + */ + chunk_slot_start_diff?: number; + /** + * The timestamp of the earliest bid for this block_hash from this builder + */ + earliest_bid_date_time?: number; + /** + * Epoch number derived from the slot that the bid is for + */ + epoch?: number; + /** + * The start time for the epoch that the bid is for + */ + epoch_start_date_time?: number; + /** + * The relay that the bid was fetched from + */ + relay_names?: Array; + /** + * Slot number within the block bid + */ + slot?: number; + /** + * The start time for the slot that the bid is for + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The transaction value in wei + */ + value?: string; }; export type FctMissedSlotRateDaily = { - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Number of missed slots in this day - */ - missed_count?: number; - /** - * Missed slot rate (%) - */ - missed_rate?: number; - /** - * Moving average missed rate (7-day window) - */ - moving_avg_missed_rate?: number; - /** - * Total number of slots in this day - */ - slot_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Number of missed slots in this day + */ + missed_count?: number; + /** + * Missed slot rate (%) + */ + missed_rate?: number; + /** + * Moving average missed rate (7-day window) + */ + moving_avg_missed_rate?: number; + /** + * Total number of slots in this day + */ + slot_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctMissedSlotRateHourly = { - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Number of missed slots in this hour - */ - missed_count?: number; - /** - * Missed slot rate (%) - */ - missed_rate?: number; - /** - * Moving average missed rate (6-hour window) - */ - moving_avg_missed_rate?: number; - /** - * Total number of slots in this hour - */ - slot_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Number of missed slots in this hour + */ + missed_count?: number; + /** + * Missed slot rate (%) + */ + missed_rate?: number; + /** + * Moving average missed rate (6-hour window) + */ + moving_avg_missed_rate?: number; + /** + * Total number of slots in this hour + */ + slot_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctNodeActiveLast24h = { - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" - */ - classification?: string; - /** - * Timestamp when the node was last seen - */ - last_seen_date_time?: number; - /** - * Autonomous system number of the client - */ - meta_client_geo_autonomous_system_number?: number | null; - /** - * Autonomous system organization of the client - */ - meta_client_geo_autonomous_system_organization?: string | null; - /** - * City of the client - */ - meta_client_geo_city?: string; - /** - * Continent code of the client - */ - meta_client_geo_continent_code?: string; - /** - * Country of the client - */ - meta_client_geo_country?: string; - /** - * Country code of the client - */ - meta_client_geo_country_code?: string; - /** - * Latitude of the client - */ - meta_client_geo_latitude?: number | null; - /** - * Longitude of the client - */ - meta_client_geo_longitude?: number | null; - /** - * Implementation of the client - */ - meta_client_implementation?: string; - /** - * Name of the client - */ - meta_client_name?: string; - /** - * Version of the client - */ - meta_client_version?: string; - /** - * Ethereum consensus client implementation - */ - meta_consensus_implementation?: string; - /** - * Ethereum consensus client version - */ - meta_consensus_version?: string; - /** - * ID of the node - */ - node_id?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Username of the node - */ - username?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" + */ + classification?: string; + /** + * Timestamp when the node was last seen + */ + last_seen_date_time?: number; + /** + * Autonomous system number of the client + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client + */ + meta_client_geo_city?: string; + /** + * Continent code of the client + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client + */ + meta_client_geo_country?: string; + /** + * Country code of the client + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client + */ + meta_client_implementation?: string; + /** + * Name of the client + */ + meta_client_name?: string; + /** + * Version of the client + */ + meta_client_version?: string; + /** + * Ethereum consensus client implementation + */ + meta_consensus_implementation?: string; + /** + * Ethereum consensus client version + */ + meta_consensus_version?: string; + /** + * ID of the node + */ + node_id?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Username of the node + */ + username?: string; }; export type FctNodeCpuUtilizationByProcess = { - /** - * Client type: CL or EL - */ - client_type?: string; - /** - * Maximum CPU core utilization percentage (100pct = 1 core) - */ - max_core_pct?: number; - /** - * Mean CPU core utilization percentage (100pct = 1 core) - */ - mean_core_pct?: number; - /** - * Name of the observoor client that collected the data - */ - meta_client_name?: string; - /** - * Ethereum network name - */ - meta_network_name?: string; - /** - * Minimum CPU core utilization percentage (100pct = 1 core) - */ - min_core_pct?: number; - /** - * Node classification for filtering (e.g. eip7870) - */ - node_class?: string; - /** - * Process ID of the monitored client - */ - pid?: number; - /** - * Total system CPU cores - */ - system_cores?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The wallclock slot number - */ - wallclock_slot?: number; - /** - * The wall clock time when the slot started - */ - wallclock_slot_start_date_time?: number; - /** - * Start of the sub-slot aggregation window - */ - window_start?: number; + /** + * Client type: CL or EL + */ + client_type?: string; + /** + * Maximum CPU core utilization percentage (100pct = 1 core) + */ + max_core_pct?: number; + /** + * Mean CPU core utilization percentage (100pct = 1 core) + */ + mean_core_pct?: number; + /** + * Name of the observoor client that collected the data + */ + meta_client_name?: string; + /** + * Ethereum network name + */ + meta_network_name?: string; + /** + * Minimum CPU core utilization percentage (100pct = 1 core) + */ + min_core_pct?: number; + /** + * Node classification for filtering (e.g. eip7870) + */ + node_class?: string; + /** + * Process ID of the monitored client + */ + pid?: number; + /** + * Total system CPU cores + */ + system_cores?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The wallclock slot number + */ + wallclock_slot?: number; + /** + * The wall clock time when the slot started + */ + wallclock_slot_start_date_time?: number; + /** + * Start of the sub-slot aggregation window + */ + window_start?: number; }; export type FctNodeDiskIoByProcess = { - /** - * Client type: CL or EL - */ - client_type?: string; - /** - * Total bytes transferred across all devices in this window - */ - io_bytes?: number; - /** - * Total I/O operations across all devices in this window - */ - io_ops?: number; - /** - * Name of the observoor client that collected the data - */ - meta_client_name?: string; - /** - * Ethereum network name - */ - meta_network_name?: string; - /** - * Node classification for filtering (e.g. eip7870) - */ - node_class?: string; - /** - * Process ID of the monitored client - */ - pid?: number; - /** - * I/O direction: read or write - */ - rw?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The wallclock slot number - */ - wallclock_slot?: number; - /** - * The wall clock time when the slot started - */ - wallclock_slot_start_date_time?: number; - /** - * Start of the sub-slot aggregation window - */ - window_start?: number; + /** + * Client type: CL or EL + */ + client_type?: string; + /** + * Total bytes transferred across all devices in this window + */ + io_bytes?: number; + /** + * Total I/O operations across all devices in this window + */ + io_ops?: number; + /** + * Name of the observoor client that collected the data + */ + meta_client_name?: string; + /** + * Ethereum network name + */ + meta_network_name?: string; + /** + * Node classification for filtering (e.g. eip7870) + */ + node_class?: string; + /** + * Process ID of the monitored client + */ + pid?: number; + /** + * I/O direction: read or write + */ + rw?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The wallclock slot number + */ + wallclock_slot?: number; + /** + * The wall clock time when the slot started + */ + wallclock_slot_start_date_time?: number; + /** + * Start of the sub-slot aggregation window + */ + window_start?: number; }; export type FctNodeMemoryUsageByProcess = { - /** - * Client type: CL or EL - */ - client_type?: string; - /** - * Name of the observoor client that collected the data - */ - meta_client_name?: string; - /** - * Ethereum network name - */ - meta_network_name?: string; - /** - * Node classification for filtering (e.g. eip7870) - */ - node_class?: string; - /** - * Process ID of the monitored client - */ - pid?: number; - /** - * Anonymous RSS in bytes (heap, stack, anonymous mmap) - */ - rss_anon_bytes?: number; - /** - * File-backed RSS in bytes (shared libraries, mmap files) - */ - rss_file_bytes?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Resident set size in bytes (total physical memory used) - */ - vm_rss_bytes?: number; - /** - * Swap usage in bytes - */ - vm_swap_bytes?: number; - /** - * The wallclock slot number - */ - wallclock_slot?: number; - /** - * The wall clock time when the slot started - */ - wallclock_slot_start_date_time?: number; - /** - * Start of the sub-slot aggregation window - */ - window_start?: number; + /** + * Client type: CL or EL + */ + client_type?: string; + /** + * Name of the observoor client that collected the data + */ + meta_client_name?: string; + /** + * Ethereum network name + */ + meta_network_name?: string; + /** + * Node classification for filtering (e.g. eip7870) + */ + node_class?: string; + /** + * Process ID of the monitored client + */ + pid?: number; + /** + * Anonymous RSS in bytes (heap, stack, anonymous mmap) + */ + rss_anon_bytes?: number; + /** + * File-backed RSS in bytes (shared libraries, mmap files) + */ + rss_file_bytes?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Resident set size in bytes (total physical memory used) + */ + vm_rss_bytes?: number; + /** + * Swap usage in bytes + */ + vm_swap_bytes?: number; + /** + * The wallclock slot number + */ + wallclock_slot?: number; + /** + * The wall clock time when the slot started + */ + wallclock_slot_start_date_time?: number; + /** + * Start of the sub-slot aggregation window + */ + window_start?: number; }; export type FctNodeNetworkIoByProcess = { - /** - * Client type: CL or EL - */ - client_type?: string; - /** - * Traffic direction: tx or rx - */ - direction?: string; - /** - * Total bytes transferred in this window - */ - io_bytes?: number; - /** - * Total packet or event count in this window - */ - io_count?: number; - /** - * Name of the observoor client that collected the data - */ - meta_client_name?: string; - /** - * Ethereum network name - */ - meta_network_name?: string; - /** - * Node classification for filtering (e.g. eip7870) - */ - node_class?: string; - /** - * Process ID of the monitored client - */ - pid?: number; - /** - * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) - */ - port_label?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The wallclock slot number - */ - wallclock_slot?: number; - /** - * The wall clock time when the slot started - */ - wallclock_slot_start_date_time?: number; - /** - * Start of the sub-slot aggregation window - */ - window_start?: number; + /** + * Client type: CL or EL + */ + client_type?: string; + /** + * Traffic direction: tx or rx + */ + direction?: string; + /** + * Total bytes transferred in this window + */ + io_bytes?: number; + /** + * Total packet or event count in this window + */ + io_count?: number; + /** + * Name of the observoor client that collected the data + */ + meta_client_name?: string; + /** + * Ethereum network name + */ + meta_network_name?: string; + /** + * Node classification for filtering (e.g. eip7870) + */ + node_class?: string; + /** + * Process ID of the monitored client + */ + pid?: number; + /** + * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) + */ + port_label?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The wallclock slot number + */ + wallclock_slot?: number; + /** + * The wall clock time when the slot started + */ + wallclock_slot_start_date_time?: number; + /** + * Start of the sub-slot aggregation window + */ + window_start?: number; }; export type FctOpcodeGasByOpcodeDaily = { - /** - * Average executions per block - */ - avg_count_per_block?: number; - /** - * Average gas per block - */ - avg_gas_per_block?: number; - /** - * Average gas per execution - */ - avg_gas_per_execution?: number; - /** - * Number of blocks containing this opcode in this day - */ - block_count?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) - */ - opcode?: string; - /** - * Total execution count of this opcode in this day - */ - total_count?: number; - /** - * Total error count for this opcode in this day - */ - total_error_count?: number; - /** - * Total gas consumed by this opcode in this day - */ - total_gas?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Average executions per block + */ + avg_count_per_block?: number; + /** + * Average gas per block + */ + avg_gas_per_block?: number; + /** + * Average gas per execution + */ + avg_gas_per_execution?: number; + /** + * Number of blocks containing this opcode in this day + */ + block_count?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) + */ + opcode?: string; + /** + * Total execution count of this opcode in this day + */ + total_count?: number; + /** + * Total error count for this opcode in this day + */ + total_error_count?: number; + /** + * Total gas consumed by this opcode in this day + */ + total_gas?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctOpcodeGasByOpcodeHourly = { - /** - * Average executions per block - */ - avg_count_per_block?: number; - /** - * Average gas per block - */ - avg_gas_per_block?: number; - /** - * Average gas per execution - */ - avg_gas_per_execution?: number; - /** - * Number of blocks containing this opcode in this hour - */ - block_count?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) - */ - opcode?: string; - /** - * Total execution count of this opcode in this hour - */ - total_count?: number; - /** - * Total error count for this opcode in this hour - */ - total_error_count?: number; - /** - * Total gas consumed by this opcode in this hour - */ - total_gas?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Average executions per block + */ + avg_count_per_block?: number; + /** + * Average gas per block + */ + avg_gas_per_block?: number; + /** + * Average gas per execution + */ + avg_gas_per_execution?: number; + /** + * Number of blocks containing this opcode in this hour + */ + block_count?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) + */ + opcode?: string; + /** + * Total execution count of this opcode in this hour + */ + total_count?: number; + /** + * Total error count for this opcode in this hour + */ + total_error_count?: number; + /** + * Total gas consumed by this opcode in this hour + */ + total_gas?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctOpcodeOpsDaily = { - /** - * Average opcodes per second using actual block time gaps - */ - avg_ops?: number; - /** - * Number of blocks in this day - */ - block_count?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_ops?: number; - /** - * Maximum per-block ops/sec - */ - max_ops?: number; - /** - * Minimum per-block ops/sec - */ - min_ops?: number; - /** - * Moving average ops/sec (7-day window) - */ - moving_avg_ops?: number; - /** - * 5th percentile ops/sec - */ - p05_ops?: number; - /** - * 50th percentile (median) ops/sec - */ - p50_ops?: number; - /** - * 95th percentile ops/sec - */ - p95_ops?: number; - /** - * Standard deviation of ops/sec - */ - stddev_ops?: number; - /** - * Total gas consumed by opcodes in this day - */ - total_gas?: number; - /** - * Total opcode executions in this day - */ - total_opcode_count?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) - */ - total_seconds?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_ops?: number; + /** + * Average opcodes per second using actual block time gaps + */ + avg_ops?: number; + /** + * Number of blocks in this day + */ + block_count?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_ops?: number; + /** + * Maximum per-block ops/sec + */ + max_ops?: number; + /** + * Minimum per-block ops/sec + */ + min_ops?: number; + /** + * Moving average ops/sec (7-day window) + */ + moving_avg_ops?: number; + /** + * 5th percentile ops/sec + */ + p05_ops?: number; + /** + * 50th percentile (median) ops/sec + */ + p50_ops?: number; + /** + * 95th percentile ops/sec + */ + p95_ops?: number; + /** + * Standard deviation of ops/sec + */ + stddev_ops?: number; + /** + * Total gas consumed by opcodes in this day + */ + total_gas?: number; + /** + * Total opcode executions in this day + */ + total_opcode_count?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) + */ + total_seconds?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_ops?: number; }; export type FctOpcodeOpsHourly = { - /** - * Average opcodes per second using actual block time gaps - */ - avg_ops?: number; - /** - * Number of blocks in this hour - */ - block_count?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_ops?: number; - /** - * Maximum per-block ops/sec - */ - max_ops?: number; - /** - * Minimum per-block ops/sec - */ - min_ops?: number; - /** - * Moving average ops/sec (6-hour window) - */ - moving_avg_ops?: number; - /** - * 5th percentile ops/sec - */ - p05_ops?: number; - /** - * 50th percentile (median) ops/sec - */ - p50_ops?: number; - /** - * 95th percentile ops/sec - */ - p95_ops?: number; - /** - * Standard deviation of ops/sec - */ - stddev_ops?: number; - /** - * Total gas consumed by opcodes in this hour - */ - total_gas?: number; - /** - * Total opcode executions in this hour - */ - total_opcode_count?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) - */ - total_seconds?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_ops?: number; + /** + * Average opcodes per second using actual block time gaps + */ + avg_ops?: number; + /** + * Number of blocks in this hour + */ + block_count?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_ops?: number; + /** + * Maximum per-block ops/sec + */ + max_ops?: number; + /** + * Minimum per-block ops/sec + */ + min_ops?: number; + /** + * Moving average ops/sec (6-hour window) + */ + moving_avg_ops?: number; + /** + * 5th percentile ops/sec + */ + p05_ops?: number; + /** + * 50th percentile (median) ops/sec + */ + p50_ops?: number; + /** + * 95th percentile ops/sec + */ + p95_ops?: number; + /** + * Standard deviation of ops/sec + */ + stddev_ops?: number; + /** + * Total gas consumed by opcodes in this hour + */ + total_gas?: number; + /** + * Total opcode executions in this hour + */ + total_opcode_count?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) + */ + total_seconds?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_ops?: number; +}; + +export type FctPayloadBidHighestValueByBuilderChunked50Ms = { + /** + * The execution block hash committed to in the bid + */ + block_hash?: string; + /** + * Validator index of the builder that produced the bid + */ + builder_index?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest observation of this bid was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start + */ + chunk_slot_start_diff?: number; + /** + * The timestamp of the earliest observation of the highest-value bid in this chunk + */ + earliest_bid_date_time?: number; + /** + * Epoch number derived from the slot that the bid is for + */ + epoch?: number; + /** + * The start time for the epoch that the bid is for + */ + epoch_start_date_time?: number; + /** + * The execution payment in wei + */ + execution_payment?: string; + /** + * The fee recipient address of the bid + */ + fee_recipient?: string; + /** + * Slot number the bid targets + */ + slot?: number; + /** + * The start time for the slot that the bid is for + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The bid value in wei + */ + value?: string; }; export type FctPreparedBlock = { - /** - * The total bytes of the beacon block payload - */ - block_total_bytes?: number | null; - /** - * The total bytes of the beacon block payload when compressed using snappy - */ - block_total_bytes_compressed?: number | null; - /** - * The version of the beacon block - */ - block_version?: string; - /** - * The value of the consensus payload in wei - */ - consensus_payload_value?: string | null; - /** - * The wall clock time when the event was received - */ - event_date_time?: number; - /** - * The block number of the execution payload - */ - execution_payload_block_number?: number; - /** - * Gas limit for execution payload - */ - execution_payload_gas_limit?: number | null; - /** - * Gas used for execution payload - */ - execution_payload_gas_used?: number | null; - /** - * The transaction count of the execution payload - */ - execution_payload_transactions_count?: number | null; - /** - * The transaction total bytes of the execution payload - */ - execution_payload_transactions_total_bytes?: number | null; - /** - * The value of the execution payload in wei - */ - execution_payload_value?: string | null; - /** - * City of the client that generated the event - */ - meta_client_geo_city?: string; - /** - * Country of the client that generated the event - */ - meta_client_geo_country?: string; - /** - * Country code of the client that generated the event - */ - meta_client_geo_country_code?: string; - /** - * Implementation of the client that generated the event - */ - meta_client_implementation?: string; - /** - * Name of the client that generated the event - */ - meta_client_name?: string; - /** - * Version of the client that generated the event - */ - meta_client_version?: string; - /** - * Consensus implementation of the validator - */ - meta_consensus_implementation?: string; - /** - * Consensus version of the validator - */ - meta_consensus_version?: string; - /** - * The slot number from beacon block - */ - slot?: number; - /** - * The wall clock time when the slot started - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * The total bytes of the beacon block payload + */ + block_total_bytes?: number | null; + /** + * The total bytes of the beacon block payload when compressed using snappy + */ + block_total_bytes_compressed?: number | null; + /** + * The version of the beacon block + */ + block_version?: string; + /** + * The value of the consensus payload in wei + */ + consensus_payload_value?: string | null; + /** + * The wall clock time when the event was received + */ + event_date_time?: number; + /** + * The block number of the execution payload + */ + execution_payload_block_number?: number; + /** + * Gas limit for execution payload + */ + execution_payload_gas_limit?: number | null; + /** + * Gas used for execution payload + */ + execution_payload_gas_used?: number | null; + /** + * The transaction count of the execution payload + */ + execution_payload_transactions_count?: number | null; + /** + * The transaction total bytes of the execution payload + */ + execution_payload_transactions_total_bytes?: number | null; + /** + * The value of the execution payload in wei + */ + execution_payload_value?: string | null; + /** + * City of the client that generated the event + */ + meta_client_geo_city?: string; + /** + * Country of the client that generated the event + */ + meta_client_geo_country?: string; + /** + * Country code of the client that generated the event + */ + meta_client_geo_country_code?: string; + /** + * Implementation of the client that generated the event + */ + meta_client_implementation?: string; + /** + * Name of the client that generated the event + */ + meta_client_name?: string; + /** + * Version of the client that generated the event + */ + meta_client_version?: string; + /** + * Consensus implementation of the validator + */ + meta_consensus_implementation?: string; + /** + * Consensus version of the validator + */ + meta_consensus_version?: string; + /** + * The slot number from beacon block + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctProposerRewardDaily = { - /** - * Average proposer reward in ETH - */ - avg_reward_eth?: number; - /** - * Number of MEV relay blocks in this day - */ - block_count?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_reward_eth?: number; - /** - * Maximum proposer reward in ETH - */ - max_reward_eth?: number; - /** - * Minimum proposer reward in ETH - */ - min_reward_eth?: number; - /** - * Moving average proposer reward (7-day window) - */ - moving_avg_reward_eth?: number; - /** - * 5th percentile proposer reward - */ - p05_reward_eth?: number; - /** - * 50th percentile (median) proposer reward - */ - p50_reward_eth?: number; - /** - * 95th percentile proposer reward - */ - p95_reward_eth?: number; - /** - * Standard deviation of proposer reward - */ - stddev_reward_eth?: number; - /** - * Total proposer reward in ETH - */ - total_reward_eth?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_reward_eth?: number; + /** + * Average proposer reward in ETH + */ + avg_reward_eth?: number; + /** + * Number of MEV relay blocks in this day + */ + block_count?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_reward_eth?: number; + /** + * Maximum proposer reward in ETH + */ + max_reward_eth?: number; + /** + * Minimum proposer reward in ETH + */ + min_reward_eth?: number; + /** + * Moving average proposer reward (7-day window) + */ + moving_avg_reward_eth?: number; + /** + * 5th percentile proposer reward + */ + p05_reward_eth?: number; + /** + * 50th percentile (median) proposer reward + */ + p50_reward_eth?: number; + /** + * 95th percentile proposer reward + */ + p95_reward_eth?: number; + /** + * Standard deviation of proposer reward + */ + stddev_reward_eth?: number; + /** + * Total proposer reward in ETH + */ + total_reward_eth?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_reward_eth?: number; }; export type FctProposerRewardHourly = { - /** - * Average proposer reward in ETH - */ - avg_reward_eth?: number; - /** - * Number of MEV relay blocks in this hour - */ - block_count?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Lower Bollinger band (avg - 2*stddev) - */ - lower_band_reward_eth?: number; - /** - * Maximum proposer reward in ETH - */ - max_reward_eth?: number; - /** - * Minimum proposer reward in ETH - */ - min_reward_eth?: number; - /** - * Moving average proposer reward (6-hour window) - */ - moving_avg_reward_eth?: number; - /** - * 5th percentile proposer reward - */ - p05_reward_eth?: number; - /** - * 50th percentile (median) proposer reward - */ - p50_reward_eth?: number; - /** - * 95th percentile proposer reward - */ - p95_reward_eth?: number; - /** - * Standard deviation of proposer reward - */ - stddev_reward_eth?: number; - /** - * Total proposer reward in ETH - */ - total_reward_eth?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Upper Bollinger band (avg + 2*stddev) - */ - upper_band_reward_eth?: number; + /** + * Average proposer reward in ETH + */ + avg_reward_eth?: number; + /** + * Number of MEV relay blocks in this hour + */ + block_count?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Lower Bollinger band (avg - 2*stddev) + */ + lower_band_reward_eth?: number; + /** + * Maximum proposer reward in ETH + */ + max_reward_eth?: number; + /** + * Minimum proposer reward in ETH + */ + min_reward_eth?: number; + /** + * Moving average proposer reward (6-hour window) + */ + moving_avg_reward_eth?: number; + /** + * 5th percentile proposer reward + */ + p05_reward_eth?: number; + /** + * 50th percentile (median) proposer reward + */ + p50_reward_eth?: number; + /** + * 95th percentile proposer reward + */ + p95_reward_eth?: number; + /** + * Standard deviation of proposer reward + */ + stddev_reward_eth?: number; + /** + * Total proposer reward in ETH + */ + total_reward_eth?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Upper Bollinger band (avg + 2*stddev) + */ + upper_band_reward_eth?: number; }; export type FctReorgDaily = { - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Reorg depth (number of consecutive orphaned slots) - */ - depth?: number; - /** - * Number of reorg events at this depth - */ - reorg_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Reorg depth (number of consecutive orphaned slots) + */ + depth?: number; + /** + * Number of reorg events at this depth + */ + reorg_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctReorgHourly = { - /** - * Reorg depth (number of consecutive orphaned slots) - */ - depth?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Number of reorg events at this depth - */ - reorg_count?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Reorg depth (number of consecutive orphaned slots) + */ + depth?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Number of reorg events at this depth + */ + reorg_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctRocketpoolValidator = { - /** - * Wall clock time the backing minipool was created or the megapool deposit was made - */ - created_date_time?: number; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed - */ - node_operator?: string; - /** - * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed - */ - pool_address?: string; - /** - * The Rocket Pool staking mechanism backing this validator: minipool or megapool - */ - pool_type?: string; - /** - * The validator BLS public key, lowercase 0x-prefixed - */ - pubkey?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The beacon chain validator index - */ - validator_index?: number; + /** + * Wall clock time the backing minipool was created or the megapool deposit was made + */ + created_date_time?: number; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed + */ + node_operator?: string; + /** + * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed + */ + pool_address?: string; + /** + * The Rocket Pool staking mechanism backing this validator: minipool or megapool + */ + pool_type?: string; + /** + * The validator BLS public key, lowercase 0x-prefixed + */ + pubkey?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The beacon chain validator index + */ + validator_index?: number; }; export type FctStorageSlotStateByAddressDaily = { - /** - * Cumulative count of active storage slots at end of day - */ - active_slots?: number; - /** - * The contract address - */ - address?: string; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Cumulative sum of effective bytes at end of day - */ - effective_bytes?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative count of active storage slots at end of day + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Cumulative sum of effective bytes at end of day + */ + effective_bytes?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctStorageSlotStateByAddressHourly = { - /** - * Cumulative count of active storage slots at end of hour - */ - active_slots?: number; - /** - * The contract address - */ - address?: string; - /** - * Cumulative sum of effective bytes at end of hour - */ - effective_bytes?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative count of active storage slots at end of hour + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * Cumulative sum of effective bytes at end of hour + */ + effective_bytes?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctStorageSlotStateByBlockDaily = { - /** - * Cumulative count of active storage slots at end of day - */ - active_slots?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Cumulative sum of effective bytes at end of day - */ - effective_bytes?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative count of active storage slots at end of day + */ + active_slots?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Cumulative sum of effective bytes at end of day + */ + effective_bytes?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctStorageSlotStateByBlockHourly = { - /** - * Cumulative count of active storage slots at end of hour - */ - active_slots?: number; - /** - * Cumulative sum of effective bytes at end of hour - */ - effective_bytes?: number; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative count of active storage slots at end of hour + */ + active_slots?: number; + /** + * Cumulative sum of effective bytes at end of hour + */ + effective_bytes?: number; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctStorageSlotStateWithExpiryByAddressDaily = { - /** - * Cumulative count of active storage slots at end of day (with expiry applied) - */ - active_slots?: number; - /** - * The contract address - */ - address?: string; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) - */ - effective_bytes?: number; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctStorageSlotStateWithExpiryByAddressHourly = { - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) - */ - active_slots?: number; - /** - * The contract address - */ - address?: string; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) - */ - effective_bytes?: number; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy?: string; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctStorageSlotStateWithExpiryByBlockDaily = { - /** - * Cumulative count of active storage slots at end of day (with expiry applied) - */ - active_slots?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) - */ - effective_bytes?: number; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) + */ + active_slots?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctStorageSlotStateWithExpiryByBlockHourly = { - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) - */ - active_slots?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) - */ - effective_bytes?: number; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy?: string; - /** - * Start of the hour period - */ - hour_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) + */ + active_slots?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Start of the hour period + */ + hour_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctStorageSlotTop100ByBytes = { - /** - * Account owner of the contract - */ - account_owner?: string | null; - /** - * Number of active storage slots for this contract - */ - active_slots?: number; - /** - * The contract address - */ - contract_address?: string; - /** - * Name of the contract - */ - contract_name?: string | null; - /** - * Effective bytes of storage for this contract - */ - effective_bytes?: number; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m - */ - expiry_policy?: string | null; - /** - * Factory contract or deployer address - */ - factory_contract?: string | null; - /** - * Labels/categories (e.g., stablecoin, dex, circle) - */ - labels?: Array; - /** - * Owner key identifier - */ - owner_key?: string | null; - /** - * Rank by effective bytes (1=highest), based on raw state - */ - rank?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Account owner of the contract + */ + account_owner?: string | null; + /** + * Number of active storage slots for this contract + */ + active_slots?: number; + /** + * The contract address + */ + contract_address?: string; + /** + * Name of the contract + */ + contract_name?: string | null; + /** + * Effective bytes of storage for this contract + */ + effective_bytes?: number; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string | null; + /** + * Factory contract or deployer address + */ + factory_contract?: string | null; + /** + * Labels/categories (e.g., stablecoin, dex, circle) + */ + labels?: Array; + /** + * Owner key identifier + */ + owner_key?: string | null; + /** + * Rank by effective bytes (1=highest), based on raw state + */ + rank?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctStorageSlotTop100BySlots = { - /** - * Account owner of the contract - */ - account_owner?: string | null; - /** - * Number of active storage slots for this contract - */ - active_slots?: number; - /** - * The contract address - */ - contract_address?: string; - /** - * Name of the contract - */ - contract_name?: string | null; - /** - * Effective bytes of storage for this contract - */ - effective_bytes?: number; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m - */ - expiry_policy?: string | null; - /** - * Factory contract or deployer address - */ - factory_contract?: string | null; - /** - * Labels/categories (e.g., stablecoin, dex, circle) - */ - labels?: Array; - /** - * Owner key identifier - */ - owner_key?: string | null; - /** - * Rank by active slots (1=highest), based on raw state - */ - rank?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Account owner of the contract + */ + account_owner?: string | null; + /** + * Number of active storage slots for this contract + */ + active_slots?: number; + /** + * The contract address + */ + contract_address?: string; + /** + * Name of the contract + */ + contract_name?: string | null; + /** + * Effective bytes of storage for this contract + */ + effective_bytes?: number; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string | null; + /** + * Factory contract or deployer address + */ + factory_contract?: string | null; + /** + * Labels/categories (e.g., stablecoin, dex, circle) + */ + labels?: Array; + /** + * Owner key identifier + */ + owner_key?: string | null; + /** + * Rank by active slots (1=highest), based on raw state + */ + rank?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctSyncCommitteeParticipationByValidator = { - /** - * Whether the validator participated in sync committee for this slot - */ - participated?: boolean; - /** - * The slot number - */ - slot?: number; - /** - * The start time of the slot - */ - slot_start_date_time?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Index of the validator - */ - validator_index?: number; + /** + * Whether the validator participated in sync committee for this slot + */ + participated?: boolean; + /** + * The slot number + */ + slot?: number; + /** + * The start time of the slot + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Index of the validator + */ + validator_index?: number; }; export type FctSyncCommitteeParticipationByValidatorDaily = { - /** - * The start of the day for this aggregation - */ - day_start_date?: string; - /** - * Number of slots where validator missed - */ - missed_count?: number; - /** - * Number of slots where validator participated - */ - participated_count?: number; - /** - * Total sync committee slots for the validator in this day - */ - total_slots?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Index of the validator - */ - validator_index?: number; + /** + * The start of the day for this aggregation + */ + day_start_date?: string; + /** + * Number of slots where validator missed + */ + missed_count?: number; + /** + * Number of slots where validator participated + */ + participated_count?: number; + /** + * Total sync committee slots for the validator in this day + */ + total_slots?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Index of the validator + */ + validator_index?: number; }; export type FctSyncCommitteeParticipationByValidatorHourly = { - /** - * The start of the hour for this aggregation - */ - hour_start_date_time?: number; - /** - * Number of slots where validator missed - */ - missed_count?: number; - /** - * Number of slots where validator participated - */ - participated_count?: number; - /** - * Total sync committee slots for the validator in this hour - */ - total_slots?: number; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Index of the validator - */ - validator_index?: number; + /** + * The start of the hour for this aggregation + */ + hour_start_date_time?: number; + /** + * Number of slots where validator missed + */ + missed_count?: number; + /** + * Number of slots where validator participated + */ + participated_count?: number; + /** + * Total sync committee slots for the validator in this hour + */ + total_slots?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Index of the validator + */ + validator_index?: number; }; export type FctTokenContractStorageStateByBlockDaily = { - /** - * Cumulative active storage slots owned by contracts of this standard at end of day - */ - active_slots?: number; - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Token standard: erc20 or erc721 - */ - token_standard?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + /** + * Cumulative active storage slots owned by contracts of this standard at end of day + */ + active_slots?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Token standard: erc20 or erc721 + */ + token_standard?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; }; export type FctValidatorBalance = { - /** - * Validator balance at this epoch in Gwei - */ - balance?: number; - /** - * Effective balance at this epoch in Gwei - */ - effective_balance?: number; - /** - * The epoch number - */ - epoch?: number; - /** - * The start time of the epoch - */ - epoch_start_date_time?: number; - /** - * Whether the validator was slashed (as of this epoch) - */ - slashed?: boolean; - /** - * Validator status at this epoch - */ - status?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The index of the validator - */ - validator_index?: number; + /** + * Validator balance at this epoch in Gwei + */ + balance?: number; + /** + * Effective balance at this epoch in Gwei + */ + effective_balance?: number; + /** + * The epoch number + */ + epoch?: number; + /** + * The start time of the epoch + */ + epoch_start_date_time?: number; + /** + * Whether the validator was slashed (as of this epoch) + */ + slashed?: boolean; + /** + * Validator status at this epoch + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The index of the validator + */ + validator_index?: number; }; export type FctValidatorBalanceDaily = { - /** - * The start of the day for this aggregation - */ - day_start_date?: string; - /** - * Effective balance at end of day in Gwei - */ - effective_balance?: number | null; - /** - * Balance at end of day (last epoch) in Gwei - */ - end_balance?: number | null; - /** - * Last epoch in this day for this validator - */ - end_epoch?: number; - /** - * Maximum balance during the day in Gwei - */ - max_balance?: number | null; - /** - * Minimum balance during the day in Gwei - */ - min_balance?: number | null; - /** - * Whether the validator was slashed (as of end of day) - */ - slashed?: boolean; - /** - * Balance at start of day (first epoch) in Gwei - */ - start_balance?: number | null; - /** - * First epoch in this day for this validator - */ - start_epoch?: number; - /** - * Validator status at end of day - */ - status?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The index of the validator - */ - validator_index?: number; + /** + * The start of the day for this aggregation + */ + day_start_date?: string; + /** + * Effective balance at end of day in Gwei + */ + effective_balance?: number | null; + /** + * Balance at end of day (last epoch) in Gwei + */ + end_balance?: number | null; + /** + * Last epoch in this day for this validator + */ + end_epoch?: number; + /** + * Maximum balance during the day in Gwei + */ + max_balance?: number | null; + /** + * Minimum balance during the day in Gwei + */ + min_balance?: number | null; + /** + * Whether the validator was slashed (as of end of day) + */ + slashed?: boolean; + /** + * Balance at start of day (first epoch) in Gwei + */ + start_balance?: number | null; + /** + * First epoch in this day for this validator + */ + start_epoch?: number; + /** + * Validator status at end of day + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The index of the validator + */ + validator_index?: number; }; export type FctValidatorBalanceHourly = { - /** - * Effective balance at end of hour in Gwei - */ - effective_balance?: number | null; - /** - * Balance at end of hour (last epoch) in Gwei - */ - end_balance?: number | null; - /** - * Last epoch in this hour for this validator - */ - end_epoch?: number; - /** - * The start of the hour for this aggregation - */ - hour_start_date_time?: number; - /** - * Maximum balance during the hour in Gwei - */ - max_balance?: number | null; - /** - * Minimum balance during the hour in Gwei - */ - min_balance?: number | null; - /** - * Whether the validator was slashed (as of end of hour) - */ - slashed?: boolean; - /** - * Balance at start of hour (first epoch) in Gwei - */ - start_balance?: number | null; - /** - * First epoch in this hour for this validator - */ - start_epoch?: number; - /** - * Validator status at end of hour - */ - status?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * The index of the validator - */ - validator_index?: number; + /** + * Effective balance at end of hour in Gwei + */ + effective_balance?: number | null; + /** + * Balance at end of hour (last epoch) in Gwei + */ + end_balance?: number | null; + /** + * Last epoch in this hour for this validator + */ + end_epoch?: number; + /** + * The start of the hour for this aggregation + */ + hour_start_date_time?: number; + /** + * Maximum balance during the hour in Gwei + */ + max_balance?: number | null; + /** + * Minimum balance during the hour in Gwei + */ + min_balance?: number | null; + /** + * Whether the validator was slashed (as of end of hour) + */ + slashed?: boolean; + /** + * Balance at start of hour (first epoch) in Gwei + */ + start_balance?: number | null; + /** + * First epoch in this hour for this validator + */ + start_epoch?: number; + /** + * Validator status at end of hour + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The index of the validator + */ + validator_index?: number; }; export type FctValidatorCountByEntityByStatusDaily = { - /** - * Start of the day period - */ - day_start_date?: string; - /** - * Entity name from dim_node mapping - */ - entity?: string; - /** - * Validator status (active_ongoing, pending_queued, etc) - */ - status?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; - /** - * Number of validators with this status for this entity on this day - */ - validator_count?: number; + /** + * Start of the day period + */ + day_start_date?: string; + /** + * Entity name from dim_node mapping + */ + entity?: string; + /** + * Validator status (active_ongoing, pending_queued, etc) + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Number of validators with this status for this entity on this day + */ + validator_count?: number; }; /** * Response for getting a single admin_cbt_incremental record */ export type GetAdminCbtIncrementalResponse = { - item?: AdminCbtIncremental; + item?: AdminCbtIncremental; +}; + +/** + * Response for getting a single admin_cbt_scheduled record + */ +export type GetAdminCbtScheduledResponse = { + item?: AdminCbtScheduled; }; /** * Response for getting a single dim_block_blob_submitter record */ export type GetDimBlockBlobSubmitterResponse = { - item?: DimBlockBlobSubmitter; + item?: DimBlockBlobSubmitter; }; /** * Response for getting a single dim_contract_owner record */ export type GetDimContractOwnerResponse = { - item?: DimContractOwner; + item?: DimContractOwner; }; /** * Response for getting a single dim_function_signature record */ export type GetDimFunctionSignatureResponse = { - item?: DimFunctionSignature; + item?: DimFunctionSignature; }; /** * Response for getting a single dim_node record */ export type GetDimNodeResponse = { - item?: DimNode; + item?: DimNode; }; /** * Response for getting a single dim_rocketpool_node record */ export type GetDimRocketpoolNodeResponse = { - item?: DimRocketpoolNode; + item?: DimRocketpoolNode; }; /** * Response for getting a single dim_token_contract record */ export type GetDimTokenContractResponse = { - item?: DimTokenContract; + item?: DimTokenContract; }; /** * Response for getting a single dim_validator_pubkey record */ export type GetDimValidatorPubkeyResponse = { - item?: DimValidatorPubkey; + item?: DimValidatorPubkey; }; /** * Response for getting a single dim_validator_status record */ export type GetDimValidatorStatusResponse = { - item?: DimValidatorStatus; + item?: DimValidatorStatus; }; /** * Response for getting a single fct_attestation_correctness_by_validator_canonical record */ export type GetFctAttestationCorrectnessByValidatorCanonicalResponse = { - item?: FctAttestationCorrectnessByValidatorCanonical; + item?: FctAttestationCorrectnessByValidatorCanonical; }; /** * Response for getting a single fct_attestation_correctness_by_validator_head record */ export type GetFctAttestationCorrectnessByValidatorHeadResponse = { - item?: FctAttestationCorrectnessByValidatorHead; + item?: FctAttestationCorrectnessByValidatorHead; +}; + +/** + * Response for getting a single fct_attestation_correctness_by_validator record + */ +export type GetFctAttestationCorrectnessByValidatorResponse = { + item?: FctAttestationCorrectnessByValidator; }; /** * Response for getting a single fct_attestation_correctness_canonical record */ export type GetFctAttestationCorrectnessCanonicalResponse = { - item?: FctAttestationCorrectnessCanonical; + item?: FctAttestationCorrectnessCanonical; }; /** * Response for getting a single fct_attestation_correctness_head record */ export type GetFctAttestationCorrectnessHeadResponse = { - item?: FctAttestationCorrectnessHead; + item?: FctAttestationCorrectnessHead; +}; + +/** + * Response for getting a single fct_attestation_correctness record + */ +export type GetFctAttestationCorrectnessResponse = { + item?: FctAttestationCorrectness; }; /** * Response for getting a single fct_attestation_first_seen_by_validator record */ export type GetFctAttestationFirstSeenByValidatorResponse = { - item?: FctAttestationFirstSeenByValidator; + item?: FctAttestationFirstSeenByValidator; }; /** * Response for getting a single fct_attestation_first_seen_chunked_50ms record */ export type GetFctAttestationFirstSeenChunked50MsResponse = { - item?: FctAttestationFirstSeenChunked50Ms; + item?: FctAttestationFirstSeenChunked50Ms; }; /** * Response for getting a single fct_attestation_inclusion_delay_daily record */ export type GetFctAttestationInclusionDelayDailyResponse = { - item?: FctAttestationInclusionDelayDaily; + item?: FctAttestationInclusionDelayDaily; }; /** * Response for getting a single fct_attestation_inclusion_delay_hourly record */ export type GetFctAttestationInclusionDelayHourlyResponse = { - item?: FctAttestationInclusionDelayHourly; + item?: FctAttestationInclusionDelayHourly; }; /** * Response for getting a single fct_attestation_liveness_by_entity_head record */ export type GetFctAttestationLivenessByEntityHeadResponse = { - item?: FctAttestationLivenessByEntityHead; + item?: FctAttestationLivenessByEntityHead; +}; + +/** + * Response for getting a single fct_attestation_liveness_by_entity record + */ +export type GetFctAttestationLivenessByEntityResponse = { + item?: FctAttestationLivenessByEntity; }; /** * Response for getting a single fct_attestation_observation_by_node record */ export type GetFctAttestationObservationByNodeResponse = { - item?: FctAttestationObservationByNode; + item?: FctAttestationObservationByNode; }; /** * Response for getting a single fct_attestation_participation_rate_daily record */ export type GetFctAttestationParticipationRateDailyResponse = { - item?: FctAttestationParticipationRateDaily; + item?: FctAttestationParticipationRateDaily; }; /** * Response for getting a single fct_attestation_participation_rate_hourly record */ export type GetFctAttestationParticipationRateHourlyResponse = { - item?: FctAttestationParticipationRateHourly; + item?: FctAttestationParticipationRateHourly; }; /** * Response for getting a single fct_attestation_vote_correctness_by_validator_daily record */ export type GetFctAttestationVoteCorrectnessByValidatorDailyResponse = { - item?: FctAttestationVoteCorrectnessByValidatorDaily; + item?: FctAttestationVoteCorrectnessByValidatorDaily; }; /** * Response for getting a single fct_attestation_vote_correctness_by_validator_hourly record */ export type GetFctAttestationVoteCorrectnessByValidatorHourlyResponse = { - item?: FctAttestationVoteCorrectnessByValidatorHourly; + item?: FctAttestationVoteCorrectnessByValidatorHourly; }; /** * Response for getting a single fct_attestation_vote_correctness_by_validator record */ export type GetFctAttestationVoteCorrectnessByValidatorResponse = { - item?: FctAttestationVoteCorrectnessByValidator; + item?: FctAttestationVoteCorrectnessByValidator; }; /** * Response for getting a single fct_blob_count_daily record */ export type GetFctBlobCountDailyResponse = { - item?: FctBlobCountDaily; + item?: FctBlobCountDaily; }; /** * Response for getting a single fct_blob_count_hourly record */ export type GetFctBlobCountHourlyResponse = { - item?: FctBlobCountHourly; + item?: FctBlobCountHourly; }; /** * Response for getting a single fct_block_blob_count_head record */ export type GetFctBlockBlobCountHeadResponse = { - item?: FctBlockBlobCountHead; + item?: FctBlockBlobCountHead; }; /** * Response for getting a single fct_block_blob_count record */ export type GetFctBlockBlobCountResponse = { - item?: FctBlockBlobCount; + item?: FctBlockBlobCount; }; /** * Response for getting a single fct_block_blob_first_seen_by_node record */ export type GetFctBlockBlobFirstSeenByNodeResponse = { - item?: FctBlockBlobFirstSeenByNode; + item?: FctBlockBlobFirstSeenByNode; }; /** * Response for getting a single fct_block_blob_head record */ export type GetFctBlockBlobHeadResponse = { - item?: FctBlockBlobHead; + item?: FctBlockBlobHead; }; /** * Response for getting a single fct_block_data_column_sidecar_first_seen_by_node record */ export type GetFctBlockDataColumnSidecarFirstSeenByNodeResponse = { - item?: FctBlockDataColumnSidecarFirstSeenByNode; + item?: FctBlockDataColumnSidecarFirstSeenByNode; }; /** * Response for getting a single fct_block_data_column_sidecar_first_seen record */ export type GetFctBlockDataColumnSidecarFirstSeenResponse = { - item?: FctBlockDataColumnSidecarFirstSeen; + item?: FctBlockDataColumnSidecarFirstSeen; }; /** * Response for getting a single fct_block_first_seen_by_node record */ export type GetFctBlockFirstSeenByNodeResponse = { - item?: FctBlockFirstSeenByNode; + item?: FctBlockFirstSeenByNode; }; /** * Response for getting a single fct_block_head record */ export type GetFctBlockHeadResponse = { - item?: FctBlockHead; + item?: FctBlockHead; }; /** * Response for getting a single fct_block_mev_head record */ export type GetFctBlockMevHeadResponse = { - item?: FctBlockMevHead; + item?: FctBlockMevHead; }; /** * Response for getting a single fct_block_mev record */ export type GetFctBlockMevResponse = { - item?: FctBlockMev; + item?: FctBlockMev; +}; + +/** + * Response for getting a single fct_block_payload_available_by_node record + */ +export type GetFctBlockPayloadAvailableByNodeResponse = { + item?: FctBlockPayloadAvailableByNode; +}; + +/** + * Response for getting a single fct_block_payload_bid record + */ +export type GetFctBlockPayloadBidResponse = { + item?: FctBlockPayloadBid; +}; + +/** + * Response for getting a single fct_block_payload_first_seen_by_node record + */ +export type GetFctBlockPayloadFirstSeenByNodeResponse = { + item?: FctBlockPayloadFirstSeenByNode; +}; + +/** + * Response for getting a single fct_block_payload_ptc_vote_head record + */ +export type GetFctBlockPayloadPtcVoteHeadResponse = { + item?: FctBlockPayloadPtcVoteHead; +}; + +/** + * Response for getting a single fct_block_payload_ptc_vote record + */ +export type GetFctBlockPayloadPtcVoteResponse = { + item?: FctBlockPayloadPtcVote; }; /** * Response for getting a single fct_block_proposal_status_daily record */ export type GetFctBlockProposalStatusDailyResponse = { - item?: FctBlockProposalStatusDaily; + item?: FctBlockProposalStatusDaily; }; /** * Response for getting a single fct_block_proposal_status_hourly record */ export type GetFctBlockProposalStatusHourlyResponse = { - item?: FctBlockProposalStatusHourly; + item?: FctBlockProposalStatusHourly; }; /** * Response for getting a single fct_block_proposer_by_validator record */ export type GetFctBlockProposerByValidatorResponse = { - item?: FctBlockProposerByValidator; + item?: FctBlockProposerByValidator; }; /** * Response for getting a single fct_block_proposer_entity record */ export type GetFctBlockProposerEntityResponse = { - item?: FctBlockProposerEntity; + item?: FctBlockProposerEntity; }; /** * Response for getting a single fct_block_proposer_head record */ export type GetFctBlockProposerHeadResponse = { - item?: FctBlockProposerHead; + item?: FctBlockProposerHead; }; /** * Response for getting a single fct_block_proposer record */ export type GetFctBlockProposerResponse = { - item?: FctBlockProposer; + item?: FctBlockProposer; }; /** * Response for getting a single fct_block record */ export type GetFctBlockResponse = { - item?: FctBlock; + item?: FctBlock; }; /** * Response for getting a single fct_contract_storage_state_by_address_daily record */ export type GetFctContractStorageStateByAddressDailyResponse = { - item?: FctContractStorageStateByAddressDaily; + item?: FctContractStorageStateByAddressDaily; }; /** * Response for getting a single fct_contract_storage_state_by_address_hourly record */ export type GetFctContractStorageStateByAddressHourlyResponse = { - item?: FctContractStorageStateByAddressHourly; + item?: FctContractStorageStateByAddressHourly; }; /** * Response for getting a single fct_contract_storage_state_by_block_daily record */ export type GetFctContractStorageStateByBlockDailyResponse = { - item?: FctContractStorageStateByBlockDaily; + item?: FctContractStorageStateByBlockDaily; }; /** * Response for getting a single fct_contract_storage_state_by_block_hourly record */ export type GetFctContractStorageStateByBlockHourlyResponse = { - item?: FctContractStorageStateByBlockHourly; + item?: FctContractStorageStateByBlockHourly; }; /** * Response for getting a single fct_contract_storage_state_with_expiry_by_address_daily record */ export type GetFctContractStorageStateWithExpiryByAddressDailyResponse = { - item?: FctContractStorageStateWithExpiryByAddressDaily; + item?: FctContractStorageStateWithExpiryByAddressDaily; }; /** * Response for getting a single fct_contract_storage_state_with_expiry_by_address_hourly record */ export type GetFctContractStorageStateWithExpiryByAddressHourlyResponse = { - item?: FctContractStorageStateWithExpiryByAddressHourly; + item?: FctContractStorageStateWithExpiryByAddressHourly; }; /** * Response for getting a single fct_contract_storage_state_with_expiry_by_block_daily record */ export type GetFctContractStorageStateWithExpiryByBlockDailyResponse = { - item?: FctContractStorageStateWithExpiryByBlockDaily; + item?: FctContractStorageStateWithExpiryByBlockDaily; }; /** * Response for getting a single fct_contract_storage_state_with_expiry_by_block_hourly record */ export type GetFctContractStorageStateWithExpiryByBlockHourlyResponse = { - item?: FctContractStorageStateWithExpiryByBlockHourly; + item?: FctContractStorageStateWithExpiryByBlockHourly; }; /** * Response for getting a single fct_data_column_availability_by_epoch record */ export type GetFctDataColumnAvailabilityByEpochResponse = { - item?: FctDataColumnAvailabilityByEpoch; + item?: FctDataColumnAvailabilityByEpoch; }; /** * Response for getting a single fct_data_column_availability_by_slot_blob record */ export type GetFctDataColumnAvailabilityBySlotBlobResponse = { - item?: FctDataColumnAvailabilityBySlotBlob; + item?: FctDataColumnAvailabilityBySlotBlob; }; /** * Response for getting a single fct_data_column_availability_by_slot record */ export type GetFctDataColumnAvailabilityBySlotResponse = { - item?: FctDataColumnAvailabilityBySlot; + item?: FctDataColumnAvailabilityBySlot; }; /** * Response for getting a single fct_data_column_availability_daily record */ export type GetFctDataColumnAvailabilityDailyResponse = { - item?: FctDataColumnAvailabilityDaily; + item?: FctDataColumnAvailabilityDaily; }; /** * Response for getting a single fct_data_column_availability_hourly record */ export type GetFctDataColumnAvailabilityHourlyResponse = { - item?: FctDataColumnAvailabilityHourly; + item?: FctDataColumnAvailabilityHourly; }; /** * Response for getting a single fct_engine_get_blobs_by_el_client_hourly record */ export type GetFctEngineGetBlobsByElClientHourlyResponse = { - item?: FctEngineGetBlobsByElClientHourly; + item?: FctEngineGetBlobsByElClientHourly; }; /** * Response for getting a single fct_engine_get_blobs_by_el_client record */ export type GetFctEngineGetBlobsByElClientResponse = { - item?: FctEngineGetBlobsByElClient; + item?: FctEngineGetBlobsByElClient; }; /** * Response for getting a single fct_engine_get_blobs_by_slot record */ export type GetFctEngineGetBlobsBySlotResponse = { - item?: FctEngineGetBlobsBySlot; + item?: FctEngineGetBlobsBySlot; }; /** * Response for getting a single fct_engine_get_blobs_duration_chunked_50ms record */ export type GetFctEngineGetBlobsDurationChunked50MsResponse = { - item?: FctEngineGetBlobsDurationChunked50Ms; + item?: FctEngineGetBlobsDurationChunked50Ms; }; /** * Response for getting a single fct_engine_new_payload_by_el_client_hourly record */ export type GetFctEngineNewPayloadByElClientHourlyResponse = { - item?: FctEngineNewPayloadByElClientHourly; + item?: FctEngineNewPayloadByElClientHourly; }; /** * Response for getting a single fct_engine_new_payload_by_el_client record */ export type GetFctEngineNewPayloadByElClientResponse = { - item?: FctEngineNewPayloadByElClient; + item?: FctEngineNewPayloadByElClient; }; /** * Response for getting a single fct_engine_new_payload_by_slot record */ export type GetFctEngineNewPayloadBySlotResponse = { - item?: FctEngineNewPayloadBySlot; + item?: FctEngineNewPayloadBySlot; }; /** * Response for getting a single fct_engine_new_payload_duration_chunked_50ms record */ export type GetFctEngineNewPayloadDurationChunked50MsResponse = { - item?: FctEngineNewPayloadDurationChunked50Ms; + item?: FctEngineNewPayloadDurationChunked50Ms; }; /** * Response for getting a single fct_engine_new_payload_winrate_daily record */ export type GetFctEngineNewPayloadWinrateDailyResponse = { - item?: FctEngineNewPayloadWinrateDaily; + item?: FctEngineNewPayloadWinrateDaily; }; /** * Response for getting a single fct_engine_new_payload_winrate_hourly record */ export type GetFctEngineNewPayloadWinrateHourlyResponse = { - item?: FctEngineNewPayloadWinrateHourly; + item?: FctEngineNewPayloadWinrateHourly; }; /** * Response for getting a single fct_execution_gas_limit_daily record */ export type GetFctExecutionGasLimitDailyResponse = { - item?: FctExecutionGasLimitDaily; + item?: FctExecutionGasLimitDaily; }; /** * Response for getting a single fct_execution_gas_limit_hourly record */ export type GetFctExecutionGasLimitHourlyResponse = { - item?: FctExecutionGasLimitHourly; + item?: FctExecutionGasLimitHourly; }; /** * Response for getting a single fct_execution_gas_limit_signalling_daily record */ export type GetFctExecutionGasLimitSignallingDailyResponse = { - item?: FctExecutionGasLimitSignallingDaily; + item?: FctExecutionGasLimitSignallingDaily; }; /** * Response for getting a single fct_execution_gas_limit_signalling_hourly record */ export type GetFctExecutionGasLimitSignallingHourlyResponse = { - item?: FctExecutionGasLimitSignallingHourly; + item?: FctExecutionGasLimitSignallingHourly; }; /** * Response for getting a single fct_execution_gas_used_daily record */ export type GetFctExecutionGasUsedDailyResponse = { - item?: FctExecutionGasUsedDaily; + item?: FctExecutionGasUsedDaily; }; /** * Response for getting a single fct_execution_gas_used_hourly record */ export type GetFctExecutionGasUsedHourlyResponse = { - item?: FctExecutionGasUsedHourly; + item?: FctExecutionGasUsedHourly; }; /** * Response for getting a single fct_execution_receipt_size_daily record */ export type GetFctExecutionReceiptSizeDailyResponse = { - item?: FctExecutionReceiptSizeDaily; + item?: FctExecutionReceiptSizeDaily; }; /** * Response for getting a single fct_execution_receipt_size_hourly record */ export type GetFctExecutionReceiptSizeHourlyResponse = { - item?: FctExecutionReceiptSizeHourly; + item?: FctExecutionReceiptSizeHourly; }; /** * Response for getting a single fct_execution_state_size_daily record */ export type GetFctExecutionStateSizeDailyResponse = { - item?: FctExecutionStateSizeDaily; + item?: FctExecutionStateSizeDaily; }; /** * Response for getting a single fct_execution_state_size_hourly record */ export type GetFctExecutionStateSizeHourlyResponse = { - item?: FctExecutionStateSizeHourly; + item?: FctExecutionStateSizeHourly; }; /** * Response for getting a single fct_execution_tps_daily record */ export type GetFctExecutionTpsDailyResponse = { - item?: FctExecutionTpsDaily; + item?: FctExecutionTpsDaily; }; /** * Response for getting a single fct_execution_tps_hourly record */ export type GetFctExecutionTpsHourlyResponse = { - item?: FctExecutionTpsHourly; + item?: FctExecutionTpsHourly; }; /** * Response for getting a single fct_execution_transactions_daily record */ export type GetFctExecutionTransactionsDailyResponse = { - item?: FctExecutionTransactionsDaily; + item?: FctExecutionTransactionsDaily; }; /** * Response for getting a single fct_execution_transactions_hourly record */ export type GetFctExecutionTransactionsHourlyResponse = { - item?: FctExecutionTransactionsHourly; + item?: FctExecutionTransactionsHourly; }; /** * Response for getting a single fct_head_first_seen_by_node record */ export type GetFctHeadFirstSeenByNodeResponse = { - item?: FctHeadFirstSeenByNode; + item?: FctHeadFirstSeenByNode; }; /** * Response for getting a single fct_head_vote_correctness_rate_daily record */ export type GetFctHeadVoteCorrectnessRateDailyResponse = { - item?: FctHeadVoteCorrectnessRateDaily; + item?: FctHeadVoteCorrectnessRateDaily; }; /** * Response for getting a single fct_head_vote_correctness_rate_hourly record */ export type GetFctHeadVoteCorrectnessRateHourlyResponse = { - item?: FctHeadVoteCorrectnessRateHourly; + item?: FctHeadVoteCorrectnessRateHourly; }; /** * Response for getting a single fct_mev_bid_count_by_builder record */ export type GetFctMevBidCountByBuilderResponse = { - item?: FctMevBidCountByBuilder; + item?: FctMevBidCountByBuilder; }; /** * Response for getting a single fct_mev_bid_count_by_relay record */ export type GetFctMevBidCountByRelayResponse = { - item?: FctMevBidCountByRelay; + item?: FctMevBidCountByRelay; }; /** * Response for getting a single fct_mev_bid_highest_value_by_builder_chunked_50ms record */ export type GetFctMevBidHighestValueByBuilderChunked50MsResponse = { - item?: FctMevBidHighestValueByBuilderChunked50Ms; + item?: FctMevBidHighestValueByBuilderChunked50Ms; }; /** * Response for getting a single fct_missed_slot_rate_daily record */ export type GetFctMissedSlotRateDailyResponse = { - item?: FctMissedSlotRateDaily; + item?: FctMissedSlotRateDaily; }; /** * Response for getting a single fct_missed_slot_rate_hourly record */ export type GetFctMissedSlotRateHourlyResponse = { - item?: FctMissedSlotRateHourly; + item?: FctMissedSlotRateHourly; }; /** * Response for getting a single fct_node_active_last_24h record */ export type GetFctNodeActiveLast24hResponse = { - item?: FctNodeActiveLast24h; + item?: FctNodeActiveLast24h; }; /** * Response for getting a single fct_node_cpu_utilization_by_process record */ export type GetFctNodeCpuUtilizationByProcessResponse = { - item?: FctNodeCpuUtilizationByProcess; + item?: FctNodeCpuUtilizationByProcess; }; /** * Response for getting a single fct_node_disk_io_by_process record */ export type GetFctNodeDiskIoByProcessResponse = { - item?: FctNodeDiskIoByProcess; + item?: FctNodeDiskIoByProcess; }; /** * Response for getting a single fct_node_memory_usage_by_process record */ export type GetFctNodeMemoryUsageByProcessResponse = { - item?: FctNodeMemoryUsageByProcess; + item?: FctNodeMemoryUsageByProcess; }; /** * Response for getting a single fct_node_network_io_by_process record */ export type GetFctNodeNetworkIoByProcessResponse = { - item?: FctNodeNetworkIoByProcess; + item?: FctNodeNetworkIoByProcess; }; /** * Response for getting a single fct_opcode_gas_by_opcode_daily record */ export type GetFctOpcodeGasByOpcodeDailyResponse = { - item?: FctOpcodeGasByOpcodeDaily; + item?: FctOpcodeGasByOpcodeDaily; }; /** * Response for getting a single fct_opcode_gas_by_opcode_hourly record */ export type GetFctOpcodeGasByOpcodeHourlyResponse = { - item?: FctOpcodeGasByOpcodeHourly; + item?: FctOpcodeGasByOpcodeHourly; }; /** * Response for getting a single fct_opcode_ops_daily record */ export type GetFctOpcodeOpsDailyResponse = { - item?: FctOpcodeOpsDaily; + item?: FctOpcodeOpsDaily; }; /** * Response for getting a single fct_opcode_ops_hourly record */ export type GetFctOpcodeOpsHourlyResponse = { - item?: FctOpcodeOpsHourly; + item?: FctOpcodeOpsHourly; +}; + +/** + * Response for getting a single fct_payload_bid_highest_value_by_builder_chunked_50ms record + */ +export type GetFctPayloadBidHighestValueByBuilderChunked50MsResponse = { + item?: FctPayloadBidHighestValueByBuilderChunked50Ms; }; /** * Response for getting a single fct_prepared_block record */ export type GetFctPreparedBlockResponse = { - item?: FctPreparedBlock; + item?: FctPreparedBlock; }; /** * Response for getting a single fct_proposer_reward_daily record */ export type GetFctProposerRewardDailyResponse = { - item?: FctProposerRewardDaily; + item?: FctProposerRewardDaily; }; /** * Response for getting a single fct_proposer_reward_hourly record */ export type GetFctProposerRewardHourlyResponse = { - item?: FctProposerRewardHourly; + item?: FctProposerRewardHourly; }; /** * Response for getting a single fct_reorg_daily record */ export type GetFctReorgDailyResponse = { - item?: FctReorgDaily; + item?: FctReorgDaily; }; /** * Response for getting a single fct_reorg_hourly record */ export type GetFctReorgHourlyResponse = { - item?: FctReorgHourly; + item?: FctReorgHourly; }; /** * Response for getting a single fct_rocketpool_validator record */ export type GetFctRocketpoolValidatorResponse = { - item?: FctRocketpoolValidator; + item?: FctRocketpoolValidator; }; /** * Response for getting a single fct_storage_slot_state_by_address_daily record */ export type GetFctStorageSlotStateByAddressDailyResponse = { - item?: FctStorageSlotStateByAddressDaily; + item?: FctStorageSlotStateByAddressDaily; }; /** * Response for getting a single fct_storage_slot_state_by_address_hourly record */ export type GetFctStorageSlotStateByAddressHourlyResponse = { - item?: FctStorageSlotStateByAddressHourly; + item?: FctStorageSlotStateByAddressHourly; }; /** * Response for getting a single fct_storage_slot_state_by_block_daily record */ export type GetFctStorageSlotStateByBlockDailyResponse = { - item?: FctStorageSlotStateByBlockDaily; + item?: FctStorageSlotStateByBlockDaily; }; /** * Response for getting a single fct_storage_slot_state_by_block_hourly record */ export type GetFctStorageSlotStateByBlockHourlyResponse = { - item?: FctStorageSlotStateByBlockHourly; + item?: FctStorageSlotStateByBlockHourly; }; /** * Response for getting a single fct_storage_slot_state_with_expiry_by_address_daily record */ export type GetFctStorageSlotStateWithExpiryByAddressDailyResponse = { - item?: FctStorageSlotStateWithExpiryByAddressDaily; + item?: FctStorageSlotStateWithExpiryByAddressDaily; }; /** * Response for getting a single fct_storage_slot_state_with_expiry_by_address_hourly record */ export type GetFctStorageSlotStateWithExpiryByAddressHourlyResponse = { - item?: FctStorageSlotStateWithExpiryByAddressHourly; + item?: FctStorageSlotStateWithExpiryByAddressHourly; }; /** * Response for getting a single fct_storage_slot_state_with_expiry_by_block_daily record */ export type GetFctStorageSlotStateWithExpiryByBlockDailyResponse = { - item?: FctStorageSlotStateWithExpiryByBlockDaily; + item?: FctStorageSlotStateWithExpiryByBlockDaily; }; /** * Response for getting a single fct_storage_slot_state_with_expiry_by_block_hourly record */ export type GetFctStorageSlotStateWithExpiryByBlockHourlyResponse = { - item?: FctStorageSlotStateWithExpiryByBlockHourly; + item?: FctStorageSlotStateWithExpiryByBlockHourly; }; /** * Response for getting a single fct_storage_slot_top_100_by_bytes record */ export type GetFctStorageSlotTop100ByBytesResponse = { - item?: FctStorageSlotTop100ByBytes; + item?: FctStorageSlotTop100ByBytes; }; /** * Response for getting a single fct_storage_slot_top_100_by_slots record */ export type GetFctStorageSlotTop100BySlotsResponse = { - item?: FctStorageSlotTop100BySlots; + item?: FctStorageSlotTop100BySlots; }; /** * Response for getting a single fct_sync_committee_participation_by_validator_daily record */ export type GetFctSyncCommitteeParticipationByValidatorDailyResponse = { - item?: FctSyncCommitteeParticipationByValidatorDaily; + item?: FctSyncCommitteeParticipationByValidatorDaily; }; /** * Response for getting a single fct_sync_committee_participation_by_validator_hourly record */ export type GetFctSyncCommitteeParticipationByValidatorHourlyResponse = { - item?: FctSyncCommitteeParticipationByValidatorHourly; + item?: FctSyncCommitteeParticipationByValidatorHourly; }; /** * Response for getting a single fct_sync_committee_participation_by_validator record */ export type GetFctSyncCommitteeParticipationByValidatorResponse = { - item?: FctSyncCommitteeParticipationByValidator; + item?: FctSyncCommitteeParticipationByValidator; }; /** * Response for getting a single fct_token_contract_storage_state_by_block_daily record */ export type GetFctTokenContractStorageStateByBlockDailyResponse = { - item?: FctTokenContractStorageStateByBlockDaily; + item?: FctTokenContractStorageStateByBlockDaily; }; /** * Response for getting a single fct_validator_balance_daily record */ export type GetFctValidatorBalanceDailyResponse = { - item?: FctValidatorBalanceDaily; + item?: FctValidatorBalanceDaily; }; /** * Response for getting a single fct_validator_balance_hourly record */ export type GetFctValidatorBalanceHourlyResponse = { - item?: FctValidatorBalanceHourly; + item?: FctValidatorBalanceHourly; }; /** * Response for getting a single fct_validator_balance record */ export type GetFctValidatorBalanceResponse = { - item?: FctValidatorBalance; + item?: FctValidatorBalance; }; /** * Response for getting a single fct_validator_count_by_entity_by_status_daily record */ export type GetFctValidatorCountByEntityByStatusDailyResponse = { - item?: FctValidatorCountByEntityByStatusDaily; + item?: FctValidatorCountByEntityByStatusDaily; }; /** * Response for getting a single int_attestation_attested_canonical record */ export type GetIntAttestationAttestedCanonicalResponse = { - item?: IntAttestationAttestedCanonical; + item?: IntAttestationAttestedCanonical; }; /** * Response for getting a single int_attestation_attested_head record */ export type GetIntAttestationAttestedHeadResponse = { - item?: IntAttestationAttestedHead; + item?: IntAttestationAttestedHead; +}; + +/** + * Response for getting a single int_attestation_attested record + */ +export type GetIntAttestationAttestedResponse = { + item?: IntAttestationAttested; }; /** * Response for getting a single int_attestation_first_seen_aggregate record */ export type GetIntAttestationFirstSeenAggregateResponse = { - item?: IntAttestationFirstSeenAggregate; + item?: IntAttestationFirstSeenAggregate; }; /** * Response for getting a single int_attestation_first_seen record */ export type GetIntAttestationFirstSeenResponse = { - item?: IntAttestationFirstSeen; + item?: IntAttestationFirstSeen; }; /** * Response for getting a single int_beacon_committee_head record */ export type GetIntBeaconCommitteeHeadResponse = { - item?: IntBeaconCommitteeHead; + item?: IntBeaconCommitteeHead; +}; + +/** + * Response for getting a single int_beacon_committee record + */ +export type GetIntBeaconCommitteeResponse = { + item?: IntBeaconCommittee; }; /** * Response for getting a single int_block_blob_count_canonical record */ export type GetIntBlockBlobCountCanonicalResponse = { - item?: IntBlockBlobCountCanonical; + item?: IntBlockBlobCountCanonical; }; /** * Response for getting a single int_block_canonical record */ export type GetIntBlockCanonicalResponse = { - item?: IntBlockCanonical; + item?: IntBlockCanonical; +}; + +/** + * Response for getting a single int_block_mev_canonical record + */ +export type GetIntBlockMevCanonicalResponse = { + item?: IntBlockMevCanonical; +}; + +/** + * Response for getting a single int_block_opcode_gas record + */ +export type GetIntBlockOpcodeGasResponse = { + item?: IntBlockOpcodeGas; +}; + +/** + * Response for getting a single int_block_payload_ptc_vote_canonical record + */ +export type GetIntBlockPayloadPtcVoteCanonicalResponse = { + item?: IntBlockPayloadPtcVoteCanonical; +}; + +/** + * Response for getting a single int_block_proposer_canonical record + */ +export type GetIntBlockProposerCanonicalResponse = { + item?: IntBlockProposerCanonical; +}; + +/** + * Response for getting a single int_block_receipt_size record + */ +export type GetIntBlockReceiptSizeResponse = { + item?: IntBlockReceiptSize; +}; + +/** + * Response for getting a single int_block_resource_gas record + */ +export type GetIntBlockResourceGasResponse = { + item?: IntBlockResourceGas; +}; + +/** + * Response for getting a single int_contract_creation record + */ +export type GetIntContractCreationResponse = { + item?: IntContractCreation; +}; + +/** + * Response for getting a single int_contract_selfdestruct record + */ +export type GetIntContractSelfdestructResponse = { + item?: IntContractSelfdestruct; +}; + +/** + * Response for getting a single int_contract_storage_expiry_1m record + */ +export type GetIntContractStorageExpiry1mResponse = { + item?: IntContractStorageExpiry1m; +}; + +/** + * Response for getting a single int_contract_storage_expiry_6m record + */ +export type GetIntContractStorageExpiry6mResponse = { + item?: IntContractStorageExpiry6m; +}; + +/** + * Response for getting a single int_contract_storage_expiry_12m record + */ +export type GetIntContractStorageExpiry12mResponse = { + item?: IntContractStorageExpiry12m; +}; + +/** + * Response for getting a single int_contract_storage_expiry_18m record + */ +export type GetIntContractStorageExpiry18mResponse = { + item?: IntContractStorageExpiry18m; +}; + +/** + * Response for getting a single int_contract_storage_expiry_24m record + */ +export type GetIntContractStorageExpiry24mResponse = { + item?: IntContractStorageExpiry24m; +}; + +/** + * Response for getting a single int_contract_storage_next_touch record + */ +export type GetIntContractStorageNextTouchResponse = { + item?: IntContractStorageNextTouch; +}; + +/** + * Response for getting a single int_contract_storage_reactivation_1m record + */ +export type GetIntContractStorageReactivation1mResponse = { + item?: IntContractStorageReactivation1m; +}; + +/** + * Response for getting a single int_contract_storage_reactivation_6m record + */ +export type GetIntContractStorageReactivation6mResponse = { + item?: IntContractStorageReactivation6m; +}; + +/** + * Response for getting a single int_contract_storage_reactivation_12m record + */ +export type GetIntContractStorageReactivation12mResponse = { + item?: IntContractStorageReactivation12m; +}; + +/** + * Response for getting a single int_contract_storage_reactivation_18m record + */ +export type GetIntContractStorageReactivation18mResponse = { + item?: IntContractStorageReactivation18m; +}; + +/** + * Response for getting a single int_contract_storage_reactivation_24m record + */ +export type GetIntContractStorageReactivation24mResponse = { + item?: IntContractStorageReactivation24m; +}; + +/** + * Response for getting a single int_contract_storage_state_by_address record + */ +export type GetIntContractStorageStateByAddressResponse = { + item?: IntContractStorageStateByAddress; +}; + +/** + * Response for getting a single int_contract_storage_state_by_block record + */ +export type GetIntContractStorageStateByBlockResponse = { + item?: IntContractStorageStateByBlock; +}; + +/** + * Response for getting a single int_contract_storage_state record + */ +export type GetIntContractStorageStateResponse = { + item?: IntContractStorageState; +}; + +/** + * Response for getting a single int_contract_storage_state_with_expiry_by_address record + */ +export type GetIntContractStorageStateWithExpiryByAddressResponse = { + item?: IntContractStorageStateWithExpiryByAddress; +}; + +/** + * Response for getting a single int_contract_storage_state_with_expiry_by_block record + */ +export type GetIntContractStorageStateWithExpiryByBlockResponse = { + item?: IntContractStorageStateWithExpiryByBlock; +}; + +/** + * Response for getting a single int_contract_storage_state_with_expiry record + */ +export type GetIntContractStorageStateWithExpiryResponse = { + item?: IntContractStorageStateWithExpiry; +}; + +/** + * Response for getting a single int_custody_probe_order_by_slot record + */ +export type GetIntCustodyProbeOrderBySlotResponse = { + item?: IntCustodyProbeOrderBySlot; +}; + +/** + * Response for getting a single int_custody_probe record + */ +export type GetIntCustodyProbeResponse = { + item?: IntCustodyProbe; +}; + +/** + * Response for getting a single int_engine_get_blobs record + */ +export type GetIntEngineGetBlobsResponse = { + item?: IntEngineGetBlobs; +}; + +/** + * Response for getting a single int_engine_new_payload_fastest_execution_by_node_class record + */ +export type GetIntEngineNewPayloadFastestExecutionByNodeClassResponse = { + item?: IntEngineNewPayloadFastestExecutionByNodeClass; +}; + +/** + * Response for getting a single int_engine_new_payload record + */ +export type GetIntEngineNewPayloadResponse = { + item?: IntEngineNewPayload; +}; + +/** + * Response for getting a single int_execution_block_by_date record + */ +export type GetIntExecutionBlockByDateResponse = { + item?: IntExecutionBlockByDate; +}; + +/** + * Response for getting a single int_execution_state_size_by_block record + */ +export type GetIntExecutionStateSizeByBlockResponse = { + item?: IntExecutionStateSizeByBlock; +}; + +/** + * Response for getting a single int_rocketpool_megapool record + */ +export type GetIntRocketpoolMegapoolResponse = { + item?: IntRocketpoolMegapool; +}; + +/** + * Response for getting a single int_rocketpool_minipool record + */ +export type GetIntRocketpoolMinipoolResponse = { + item?: IntRocketpoolMinipool; +}; + +/** + * Response for getting a single int_rocketpool_node_event record + */ +export type GetIntRocketpoolNodeEventResponse = { + item?: IntRocketpoolNodeEvent; +}; + +/** + * Response for getting a single int_rocketpool_node_timezone record + */ +export type GetIntRocketpoolNodeTimezoneResponse = { + item?: IntRocketpoolNodeTimezone; +}; + +/** + * Response for getting a single int_storage_selfdestruct_diffs record + */ +export type GetIntStorageSelfdestructDiffsResponse = { + item?: IntStorageSelfdestructDiffs; +}; + +/** + * Response for getting a single int_storage_slot_diff_by_address_slot record + */ +export type GetIntStorageSlotDiffByAddressSlotResponse = { + item?: IntStorageSlotDiffByAddressSlot; +}; + +/** + * Response for getting a single int_storage_slot_diff record + */ +export type GetIntStorageSlotDiffResponse = { + item?: IntStorageSlotDiff; +}; + +/** + * Response for getting a single int_storage_slot_expiry_1m record + */ +export type GetIntStorageSlotExpiry1mResponse = { + item?: IntStorageSlotExpiry1m; +}; + +/** + * Response for getting a single int_storage_slot_expiry_6m record + */ +export type GetIntStorageSlotExpiry6mResponse = { + item?: IntStorageSlotExpiry6m; +}; + +/** + * Response for getting a single int_storage_slot_expiry_12m record + */ +export type GetIntStorageSlotExpiry12mResponse = { + item?: IntStorageSlotExpiry12m; +}; + +/** + * Response for getting a single int_storage_slot_expiry_18m record + */ +export type GetIntStorageSlotExpiry18mResponse = { + item?: IntStorageSlotExpiry18m; +}; + +/** + * Response for getting a single int_storage_slot_expiry_24m record + */ +export type GetIntStorageSlotExpiry24mResponse = { + item?: IntStorageSlotExpiry24m; +}; + +/** + * Response for getting a single int_storage_slot_lifecycle_boundary record + */ +export type GetIntStorageSlotLifecycleBoundaryResponse = { + item?: IntStorageSlotLifecycleBoundary; +}; + +/** + * Response for getting a single int_storage_slot_lifecycle record + */ +export type GetIntStorageSlotLifecycleResponse = { + item?: IntStorageSlotLifecycle; +}; + +/** + * Response for getting a single int_storage_slot_next_touch record + */ +export type GetIntStorageSlotNextTouchResponse = { + item?: IntStorageSlotNextTouch; +}; + +/** + * Response for getting a single int_storage_slot_reactivation_1m record + */ +export type GetIntStorageSlotReactivation1mResponse = { + item?: IntStorageSlotReactivation1m; +}; + +/** + * Response for getting a single int_storage_slot_reactivation_6m record + */ +export type GetIntStorageSlotReactivation6mResponse = { + item?: IntStorageSlotReactivation6m; +}; + +/** + * Response for getting a single int_storage_slot_reactivation_12m record + */ +export type GetIntStorageSlotReactivation12mResponse = { + item?: IntStorageSlotReactivation12m; +}; + +/** + * Response for getting a single int_storage_slot_reactivation_18m record + */ +export type GetIntStorageSlotReactivation18mResponse = { + item?: IntStorageSlotReactivation18m; +}; + +/** + * Response for getting a single int_storage_slot_reactivation_24m record + */ +export type GetIntStorageSlotReactivation24mResponse = { + item?: IntStorageSlotReactivation24m; +}; + +/** + * Response for getting a single int_storage_slot_read record + */ +export type GetIntStorageSlotReadResponse = { + item?: IntStorageSlotRead; +}; + +/** + * Response for getting a single int_storage_slot_state_by_address record + */ +export type GetIntStorageSlotStateByAddressResponse = { + item?: IntStorageSlotStateByAddress; +}; + +/** + * Response for getting a single int_storage_slot_state_by_block record + */ +export type GetIntStorageSlotStateByBlockResponse = { + item?: IntStorageSlotStateByBlock; +}; + +/** + * Response for getting a single int_storage_slot_state record + */ +export type GetIntStorageSlotStateResponse = { + item?: IntStorageSlotState; +}; + +/** + * Response for getting a single int_storage_slot_state_with_expiry_by_address record + */ +export type GetIntStorageSlotStateWithExpiryByAddressResponse = { + item?: IntStorageSlotStateWithExpiryByAddress; +}; + +/** + * Response for getting a single int_storage_slot_state_with_expiry_by_block record + */ +export type GetIntStorageSlotStateWithExpiryByBlockResponse = { + item?: IntStorageSlotStateWithExpiryByBlock; +}; + +/** + * Response for getting a single int_storage_slot_state_with_expiry record + */ +export type GetIntStorageSlotStateWithExpiryResponse = { + item?: IntStorageSlotStateWithExpiry; +}; + +/** + * Response for getting a single int_token_contract_storage_state_by_block record + */ +export type GetIntTokenContractStorageStateByBlockResponse = { + item?: IntTokenContractStorageStateByBlock; +}; + +/** + * Response for getting a single int_transaction_call_frame_opcode_gas record + */ +export type GetIntTransactionCallFrameOpcodeGasResponse = { + item?: IntTransactionCallFrameOpcodeGas; +}; + +/** + * Response for getting a single int_transaction_call_frame_opcode_resource_gas record + */ +export type GetIntTransactionCallFrameOpcodeResourceGasResponse = { + item?: IntTransactionCallFrameOpcodeResourceGas; +}; + +/** + * Response for getting a single int_transaction_call_frame record + */ +export type GetIntTransactionCallFrameResponse = { + item?: IntTransactionCallFrame; +}; + +/** + * Response for getting a single int_transaction_opcode_gas record + */ +export type GetIntTransactionOpcodeGasResponse = { + item?: IntTransactionOpcodeGas; +}; + +/** + * Response for getting a single int_transaction_receipt_size record + */ +export type GetIntTransactionReceiptSizeResponse = { + item?: IntTransactionReceiptSize; +}; + +/** + * Response for getting a single int_transaction_resource_gas record + */ +export type GetIntTransactionResourceGasResponse = { + item?: IntTransactionResourceGas; +}; + +/** + * Contains an arbitrary serialized message along with a @type that describes the type of the serialized message. + */ +export type GoogleProtobufAny = { + /** + * The type of the serialized message. + */ + '@type'?: string; + [key: string]: unknown | string | undefined; +}; + +export type IntAttestationAttested = { + /** + * The index of the validator attesting + */ + attesting_validator_index?: number; + /** + * The beacon block root hash + */ + block_root?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The distance from the slot when the attestation was included on-chain. Taken from the canonical variant. Null when only the head variant recorded the attestation. + */ + inclusion_distance?: number | null; + /** + * The distance from the slot when the attestation was propagated over gossip. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the next slot, etc. Taken from the head variant. Null when only the canonical variant recorded the attestation. + */ + propagation_distance?: number | null; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * The source epoch number in the attestation group + */ + source_epoch?: number; + /** + * The wall clock time when the source epoch started + */ + source_epoch_start_date_time?: number; + /** + * The source beacon block root hash in the attestation group + */ + source_root?: string; + /** + * The target epoch number in the attestation group + */ + target_epoch?: number; + /** + * The wall clock time when the target epoch started + */ + target_epoch_start_date_time?: number; + /** + * The target beacon block root hash in the attestation group + */ + target_root?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntAttestationAttestedCanonical = { + /** + * The index of the validator attesting + */ + attesting_validator_index?: number; + /** + * The beacon block root hash + */ + block_root?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The distance from the slot when the attestation was included + */ + inclusion_distance?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * The source epoch number in the attestation group + */ + source_epoch?: number; + /** + * The wall clock time when the source epoch started + */ + source_epoch_start_date_time?: number; + /** + * The source beacon block root hash in the attestation group + */ + source_root?: string; + /** + * The target epoch number in the attestation group + */ + target_epoch?: number; + /** + * The wall clock time when the target epoch started + */ + target_epoch_start_date_time?: number; + /** + * The target beacon block root hash in the attestation group + */ + target_root?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntAttestationAttestedHead = { + /** + * The index of the validator attesting + */ + attesting_validator_index?: number; + /** + * The beacon block root hash + */ + block_root?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. + */ + propagation_distance?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * The source epoch number in the attestation group + */ + source_epoch?: number; + /** + * The wall clock time when the source epoch started + */ + source_epoch_start_date_time?: number; + /** + * The source beacon block root hash in the attestation group + */ + source_root?: string; + /** + * The target epoch number in the attestation group + */ + target_epoch?: number; + /** + * The wall clock time when the target epoch started + */ + target_epoch_start_date_time?: number; + /** + * The target beacon block root hash in the attestation group + */ + target_root?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntAttestationFirstSeen = { + /** + * The committee index of the attesting validator + */ + attesting_validator_committee_index?: string; + /** + * The index of the validator attesting + */ + attesting_validator_index?: number; + /** + * The beacon block root hash + */ + block_root?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" + */ + classification?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Autonomous system number of the client + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client + */ + meta_client_geo_city?: string; + /** + * Continent code of the client + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client + */ + meta_client_geo_country?: string; + /** + * Country code of the client + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client + */ + meta_client_implementation?: string; + /** + * Name of the client + */ + meta_client_name?: string; + /** + * Version of the client + */ + meta_client_version?: string; + /** + * Ethereum consensus client implementation + */ + meta_consensus_implementation?: string; + /** + * Ethereum consensus client version + */ + meta_consensus_version?: string; + /** + * ID of the node + */ + node_id?: string; + /** + * The time from slot start for the client to see the block + */ + seen_slot_start_diff?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Source of the event + */ + source?: string; + /** + * Source checkpoint epoch of the attestation + */ + source_epoch?: number; + /** + * Source checkpoint root of the attestation + */ + source_root?: string; + /** + * Target checkpoint epoch of the attestation + */ + target_epoch?: number; + /** + * Target checkpoint root of the attestation + */ + target_root?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Username of the node + */ + username?: string; +}; + +export type IntAttestationFirstSeenAggregate = { + /** + * The index of the validator attesting + */ + attesting_validator_index?: number; + /** + * The head vote (beacon block root) from this aggregate + */ + block_root?: string; + /** + * The committee index the validator is assigned to + */ + committee_index?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate + */ + seen_slot_start_diff?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * The first source this aggregate was observed from (beacon_api or libp2p) + */ + source?: string; + /** + * Source checkpoint epoch from this aggregate + */ + source_epoch?: number; + /** + * Source checkpoint root from this aggregate + */ + source_root?: string; + /** + * Target checkpoint epoch from this aggregate + */ + target_epoch?: number; + /** + * Target checkpoint root from this aggregate + */ + target_root?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntBeaconCommittee = { + /** + * The committee index in the beacon API committee payload + */ + committee_index?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The validator indices in the beacon API committee payload + */ + validators?: Array; +}; + +export type IntBeaconCommitteeHead = { + /** + * The committee index in the beacon API committee payload + */ + committee_index?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The validator indices in the beacon API committee payload + */ + validators?: Array; +}; + +export type IntBlockBlobCountCanonical = { + /** + * The number of blobs in the block + */ + blob_count?: number; + /** + * The beacon block root hash + */ + block_root?: string; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntBlockCanonical = { + /** + * The root hash of the beacon block + */ + block_root?: string; + /** + * The total bytes of the beacon block payload + */ + block_total_bytes?: number | null; + /** + * The total bytes of the beacon block payload when compressed using snappy + */ + block_total_bytes_compressed?: number | null; + /** + * The version of the beacon block + */ + block_version?: string; + /** + * The epoch number from beacon block payload + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The block hash of the associated execution block + */ + eth1_data_block_hash?: string; + /** + * The root of the deposit tree in the associated execution block + */ + eth1_data_deposit_root?: string; + /** + * Base fee per gas for execution payload + */ + execution_payload_base_fee_per_gas?: string | null; + /** + * Gas used for blobs in execution payload + */ + execution_payload_blob_gas_used?: number | null; + /** + * The block hash of the execution payload + */ + execution_payload_block_hash?: string; + /** + * The block number of the execution payload + */ + execution_payload_block_number?: number; + /** + * Excess gas used for blobs in execution payload + */ + execution_payload_excess_blob_gas?: number | null; + /** + * The recipient of the fee for this execution payload + */ + execution_payload_fee_recipient?: string; + /** + * Gas limit for execution payload + */ + execution_payload_gas_limit?: number | null; + /** + * Gas used for execution payload + */ + execution_payload_gas_used?: number | null; + /** + * The parent hash of the execution payload + */ + execution_payload_parent_hash?: string; + /** + * The state root of the execution payload + */ + execution_payload_state_root?: string; + /** + * The transaction count of the execution payload + */ + execution_payload_transactions_count?: number | null; + /** + * The transaction total bytes of the execution payload + */ + execution_payload_transactions_total_bytes?: number | null; + /** + * The transaction total bytes of the execution payload when compressed using snappy + */ + execution_payload_transactions_total_bytes_compressed?: number | null; + /** + * The root hash of the parent beacon block + */ + parent_root?: string; + /** + * The index of the validator that proposed the beacon block + */ + proposer_index?: number; + /** + * The slot number from beacon block payload + */ + slot?: number; + /** + * The wall clock time when the reorg slot started + */ + slot_start_date_time?: number; + /** + * The root hash of the beacon state at this block + */ + state_root?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntBlockMevCanonical = { + /** + * The block hash of the proposer payload + */ + block_hash?: string; + /** + * The block number of the proposer payload + */ + block_number?: number; + /** + * The root hash of the beacon block + */ + block_root?: string; + /** + * The builder pubkey of the proposer payload + */ + builder_pubkey?: string; + /** + * The earliest timestamp of the accepted bid in milliseconds + */ + earliest_bid_date_time?: number | null; + /** + * Epoch number derived from the slot that the proposer payload is for + */ + epoch?: number; + /** + * The start time for the epoch that the proposer payload is for + */ + epoch_start_date_time?: number; + /** + * The gas limit of the proposer payload + */ + gas_limit?: number; + /** + * The gas used of the proposer payload + */ + gas_used?: number; + /** + * The parent hash of the proposer payload + */ + parent_hash?: string; + /** + * The proposer fee recipient of the proposer payload + */ + proposer_fee_recipient?: string; + /** + * The proposer pubkey of the proposer payload + */ + proposer_pubkey?: string; + /** + * The relay names that delivered the proposer payload + */ + relay_names?: Array; + /** + * Slot number within the block proposer payload + */ + slot?: number; + /** + * The start time for the slot that the proposer payload is for + */ + slot_start_date_time?: number; + /** + * The number of transactions in the proposer payload + */ + transaction_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The transaction value in wei + */ + value?: string | null; +}; + +export type IntBlockOpcodeGas = { + /** + * The block number + */ + block_number?: number; + /** + * Total execution count of this opcode across all transactions in the block + */ + count?: number; + /** + * Number of times this opcode resulted in an error across all transactions + */ + error_count?: number; + /** + * Total gas consumed by this opcode across all transactions in the block + */ + gas?: number; + /** + * The name of the network + */ + meta_network_name?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) + */ + opcode?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntBlockPayloadPtcVoteCanonical = { + /** + * PTC validators attesting blob data was available + */ + blob_data_available_votes?: number; + /** + * The beacon block root being attested by the PTC + */ + block_root?: string; + /** + * The beacon block version of the containing block + */ + block_version?: string; + /** + * The epoch number containing the attested slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Root of the canonical block that included the payload attestations + */ + included_in_block_root?: string; + /** + * Slot of the canonical block that included the payload attestations + */ + included_in_slot?: number; + /** + * PTC validators attesting the payload was present + */ + payload_present_votes?: number; + /** + * Total PTC validators covered by the included payload attestation aggregates + */ + ptc_validators?: number; + /** + * The attested slot number + */ + slot?: number; + /** + * The wall clock time when the attested slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntBlockProposerCanonical = { + /** + * The beacon block root hash. Null if a slot was missed + */ + block_root?: string | null; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The public key of the validator proposer + */ + proposer_pubkey?: string; + /** + * The validator index of the proposer for the slot + */ + proposer_validator_index?: number; + /** + * The slot number + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntBlockReceiptSize = { + /** + * Average receipt bytes per transaction in this block + */ + avg_receipt_bytes_per_transaction?: number; + /** + * The block number + */ + block_number?: number; + /** + * Total logs emitted across all transactions in the block + */ + log_count?: number; + /** + * Total raw bytes of log data fields across all transactions + */ + log_data_bytes?: number; + /** + * Total number of topics across all logs in the block + */ + log_topic_count?: number; + /** + * Largest single transaction receipt in this block + */ + max_receipt_bytes_per_transaction?: number; + /** + * The name of the network + */ + meta_network_name?: string; + /** + * 50th percentile of receipt bytes per transaction + */ + p50_receipt_bytes_per_transaction?: number; + /** + * 95th percentile of receipt bytes per transaction + */ + p95_receipt_bytes_per_transaction?: number; + /** + * Total RLP-encoded receipt bytes across all transactions in the block + */ + receipt_bytes?: number; + /** + * Number of transactions in the block + */ + transaction_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntBlockResourceGas = { + /** + * The block number + */ + block_number?: number; + /** + * Total cold address/storage access gas across all transactions + */ + gas_address_access?: number; + /** + * Total block size gas across all transactions + */ + gas_block_size?: number; + /** + * Total bloom filter topic gas across all transactions + */ + gas_bloom_topics?: number; + /** + * Total compute gas across all transactions + */ + gas_compute?: number; + /** + * Total history/log data gas across all transactions + */ + gas_history?: number; + /** + * Total memory expansion gas across all transactions + */ + gas_memory?: number; + /** + * Total gas refund across all transactions + */ + gas_refund?: number; + /** + * Total state growth gas across all transactions + */ + gas_state_growth?: number; + /** + * The name of the network + */ + meta_network_name?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractCreation = { + /** + * Block where contract was created + */ + block_number?: number; + /** + * Address of created contract + */ + contract_address?: string; + /** + * Address that deployed the contract + */ + deployer?: string; + /** + * Factory contract address if applicable + */ + factory?: string; + /** + * Hash of the initialization code + */ + init_code_hash?: string; + /** + * Position within transaction + */ + internal_index?: number; + /** + * Transaction hash + */ + transaction_hash?: string; + /** + * Position in block + */ + transaction_index?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractSelfdestruct = { + /** + * Contract that was destroyed + */ + address?: string; + /** + * Address receiving the ETH + */ + beneficiary?: string; + /** + * Block where SELFDESTRUCT occurred + */ + block_number?: number; + /** + * Block where contract was created (if known) + */ + creation_block?: number | null; + /** + * Transaction that created the contract (if known) + */ + creation_transaction_hash?: string | null; + /** + * True if contract was created and destroyed in the same transaction - storage always cleared per EIP-6780 + */ + ephemeral?: boolean; + /** + * Position within transaction traces + */ + internal_index?: number; + /** + * True if storage was cleared (pre-Shanghai OR ephemeral) + */ + storage_cleared?: boolean; + /** + * Transaction hash + */ + transaction_hash?: string; + /** + * Position in block + */ + transaction_index?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Amount of ETH sent to beneficiary + */ + value_transferred?: string; +}; + +export type IntContractStorageExpiry1m = { + /** + * Count of slots in the contract at expiry time + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number where this contract expiry is recorded + */ + block_number?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time + */ + effective_bytes?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageExpiry6m = { + /** + * Count of slots in the contract at expiry time + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number where this contract expiry is recorded + */ + block_number?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time + */ + effective_bytes?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageExpiry12m = { + /** + * Count of slots in the contract at expiry time + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number where this contract expiry is recorded + */ + block_number?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time + */ + effective_bytes?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageExpiry18m = { + /** + * Count of slots in the contract at expiry time + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number where this contract expiry is recorded + */ + block_number?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time + */ + effective_bytes?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageExpiry24m = { + /** + * Count of slots in the contract at expiry time + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number where this contract expiry is recorded + */ + block_number?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time + */ + effective_bytes?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageNextTouch = { + /** + * The contract address + */ + address?: string; + /** + * The block number where this contract was touched + */ + block_number?: number; + /** + * The next block number where this contract was touched (NULL if no subsequent touch) + */ + next_touch_block?: number | null; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageReactivation1m = { + /** + * Count of slots being reactivated + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number where this contract was reactivated + */ + block_number?: number; + /** + * Sum of effective bytes being reactivated + */ + effective_bytes?: number; + /** + * The original touch block that expired (for matching with expiry records) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageReactivation6m = { + /** + * Count of slots being reactivated + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number where this contract was reactivated + */ + block_number?: number; + /** + * Sum of effective bytes being reactivated + */ + effective_bytes?: number; + /** + * The original touch block that expired (for matching with expiry records) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageReactivation12m = { + /** + * Count of slots being reactivated + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number where this contract was reactivated + */ + block_number?: number; + /** + * Sum of effective bytes being reactivated + */ + effective_bytes?: number; + /** + * The original touch block that expired (for matching with expiry records) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageReactivation18m = { + /** + * Count of slots being reactivated + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number where this contract was reactivated + */ + block_number?: number; + /** + * Sum of effective bytes being reactivated + */ + effective_bytes?: number; + /** + * The original touch block that expired (for matching with expiry records) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageReactivation24m = { + /** + * Count of slots being reactivated + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number where this contract was reactivated + */ + block_number?: number; + /** + * Sum of effective bytes being reactivated + */ + effective_bytes?: number; + /** + * The original touch block that expired (for matching with expiry records) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageState = { + /** + * Cumulative count of active storage slots for this contract at this block + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number + */ + block_number?: number; + /** + * Change in effective bytes for this block + */ + bytes_delta?: number; + /** + * Cumulative sum of effective bytes for this contract at this block + */ + effective_bytes?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) + */ + slots_delta?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageStateByAddress = { + /** + * Cumulative count of active storage slots for this contract at this block + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number + */ + block_number?: number; + /** + * Change in effective bytes for this block + */ + bytes_delta?: number; + /** + * Cumulative sum of effective bytes for this contract at this block + */ + effective_bytes?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) + */ + slots_delta?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageStateByBlock = { + /** + * Cumulative count of contracts with at least one active slot at this block + */ + active_contracts?: number; + /** + * Cumulative count of active storage slots at this block + */ + active_slots?: number; + /** + * The block number + */ + block_number?: number; + /** + * Change in effective bytes for this block + */ + bytes_delta?: number; + /** + * Change in active contracts for this block (positive=activated, negative=deactivated) + */ + contracts_delta?: number; + /** + * Cumulative sum of effective bytes across all active slots at this block + */ + effective_bytes?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) + */ + slots_delta?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageStateWithExpiry = { + /** + * Number of active storage slots in this contract (with expiry applied) + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number + */ + block_number?: number; + /** + * Cumulative net bytes adjustment up to this block + */ + cumulative_net_bytes?: number; + /** + * Cumulative net slot adjustment up to this block + */ + cumulative_net_slots?: number; + /** + * Effective bytes for this contract (with expiry applied) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) + */ + net_bytes_delta?: number; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) + */ + net_slots_delta?: number; + /** + * Previous block active_slots for this address (for transition detection) + */ + prev_active_slots?: number; + /** + * Previous block effective_bytes for this address (for delta calculation) + */ + prev_effective_bytes?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageStateWithExpiryByAddress = { + /** + * Number of active storage slots in this contract (0 if expired) + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number + */ + block_number?: number; + /** + * Effective bytes for this contract (0 if expired) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntContractStorageStateWithExpiryByBlock = { + /** + * Count of contracts with active_slots > 0 (with expiry applied) + */ + active_contracts?: number; + /** + * Total active storage slots network-wide (with expiry applied) + */ + active_slots?: number; + /** + * The block number + */ + block_number?: number; + /** + * Total effective bytes network-wide (with expiry applied) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntCustodyProbe = { + /** + * Array of blob submitter names for this slot (Unknown if not found) + */ + blob_submitters?: Array; + /** + * Classification of client (individual, corporate, internal, unclassified) + */ + classification?: string; + /** + * Array of column indices probed + */ + column_indices?: Array; + /** + * Error message if probe failed + */ + error?: string; + /** + * Autonomous system number of the client + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client + */ + meta_client_geo_city?: string; + /** + * Continent code of the client + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client + */ + meta_client_geo_country?: string; + /** + * Country code of the client + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client + */ + meta_client_implementation?: string; + /** + * Operating system of the client + */ + meta_client_os?: string; + /** + * Version of the client + */ + meta_client_version?: string; + /** + * Autonomous system number of the probed peer + */ + meta_peer_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the probed peer + */ + meta_peer_geo_autonomous_system_organization?: string | null; + /** + * City of the probed peer + */ + meta_peer_geo_city?: string; + /** + * Continent code of the probed peer + */ + meta_peer_geo_continent_code?: string; + /** + * Country of the probed peer + */ + meta_peer_geo_country?: string; + /** + * Country code of the probed peer + */ + meta_peer_geo_country_code?: string; + /** + * Latitude of the probed peer + */ + meta_peer_geo_latitude?: number | null; + /** + * Longitude of the probed peer + */ + meta_peer_geo_longitude?: number | null; + /** + * Implementation of the probed peer + */ + meta_peer_implementation?: string; + /** + * Platform of the probed peer + */ + meta_peer_platform?: string; + /** + * Version of the probed peer + */ + meta_peer_version?: string; + /** + * Node ID extracted from client name + */ + node_id?: string; + /** + * Unique key associated with the identifier of the peer + */ + peer_id_unique_key?: number; + /** + * Earliest event time for this probe batch + */ + probe_date_time?: number; + /** + * Response time in milliseconds + */ + response_time_ms?: number; + /** + * Result of the probe (success, failure, missing) + */ + result?: string; + /** + * Slot number + */ + slot?: number; + /** + * Start date time of the slot + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Username extracted from client name + */ + username?: string; +}; + +export type IntCustodyProbeOrderBySlot = { + /** + * Array of blob submitter names for this slot (Unknown if not found) + */ + blob_submitters?: Array; + /** + * Classification of client (individual, corporate, internal, unclassified) + */ + classification?: string; + /** + * Array of column indices probed + */ + column_indices?: Array; + /** + * Error message if probe failed + */ + error?: string; + /** + * Autonomous system number of the client + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client + */ + meta_client_geo_city?: string; + /** + * Continent code of the client + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client + */ + meta_client_geo_country?: string; + /** + * Country code of the client + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client + */ + meta_client_implementation?: string; + /** + * Operating system of the client + */ + meta_client_os?: string; + /** + * Version of the client + */ + meta_client_version?: string; + /** + * Autonomous system number of the probed peer + */ + meta_peer_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the probed peer + */ + meta_peer_geo_autonomous_system_organization?: string | null; + /** + * City of the probed peer + */ + meta_peer_geo_city?: string; + /** + * Continent code of the probed peer + */ + meta_peer_geo_continent_code?: string; + /** + * Country of the probed peer + */ + meta_peer_geo_country?: string; + /** + * Country code of the probed peer + */ + meta_peer_geo_country_code?: string; + /** + * Latitude of the probed peer + */ + meta_peer_geo_latitude?: number | null; + /** + * Longitude of the probed peer + */ + meta_peer_geo_longitude?: number | null; + /** + * Implementation of the probed peer + */ + meta_peer_implementation?: string; + /** + * Platform of the probed peer + */ + meta_peer_platform?: string; + /** + * Version of the probed peer + */ + meta_peer_version?: string; + /** + * Node ID extracted from client name + */ + node_id?: string; + /** + * Unique key associated with the identifier of the peer + */ + peer_id_unique_key?: number; + /** + * Earliest event time for this probe batch + */ + probe_date_time?: number; + /** + * Response time in milliseconds + */ + response_time_ms?: number; + /** + * Result of the probe (success, failure, missing) + */ + result?: string; + /** + * Slot number + */ + slot?: number; + /** + * Start date time of the slot + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Username extracted from client name + */ + username?: string; +}; + +export type IntEngineGetBlobs = { + /** + * Root of the parent beacon block (hex encoded with 0x prefix) + */ + block_parent_root?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) + */ + block_root?: string; + /** + * How long the engine_getBlobs call took in milliseconds + */ + duration_ms?: number; + /** + * Epoch number derived from the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Error message when the call fails + */ + error_message?: string | null; + /** + * When the sentry received the event + */ + event_date_time?: number; + /** + * Autonomous system number of the client that generated the event + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client that generated the event + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client that generated the event + */ + meta_client_geo_city?: string; + /** + * Continent code of the client that generated the event + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client that generated the event + */ + meta_client_geo_country?: string; + /** + * Country code of the client that generated the event + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client that generated the event + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client that generated the event + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client that generated the event + */ + meta_client_implementation?: string; + /** + * Name of the client that generated the event + */ + meta_client_name?: string; + /** + * Version of the client that generated the event + */ + meta_client_version?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) + */ + meta_execution_implementation?: string; + /** + * Full execution client version string from web3_clientVersion RPC + */ + meta_execution_version?: string; + /** + * Version of the engine_getBlobs method + */ + method_version?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Validator index of the block proposer + */ + proposer_index?: number; + /** + * Number of blobs requested (length of versioned_hashes array) + */ + requested_count?: number; + /** + * When the engine_getBlobs call was initiated + */ + requested_date_time?: number; + /** + * Indexes of the returned blobs + */ + returned_blob_indexes?: Array; + /** + * Number of blobs actually returned + */ + returned_count?: number; + /** + * Slot number of the beacon block containing the blobs + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Source of the engine event + */ + source?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Versioned hashes of the requested blobs + */ + versioned_hashes?: Array; +}; + +export type IntEngineNewPayload = { + /** + * Number of blobs in the block + */ + blob_count?: number; + /** + * Execution block hash (hex encoded with 0x prefix) + */ + block_hash?: string; + /** + * Execution block number + */ + block_number?: number; + /** + * Root of the beacon block (hex encoded with 0x prefix) + */ + block_root?: string; + /** + * The total bytes of the beacon block payload + */ + block_total_bytes?: number | null; + /** + * The total bytes of the beacon block payload when compressed using snappy + */ + block_total_bytes_compressed?: number | null; + /** + * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) + */ + block_version?: string; + /** + * How long the engine_newPayload call took in milliseconds + */ + duration_ms?: number; + /** + * Epoch number derived from the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * When the sentry received the event + */ + event_date_time?: number; + /** + * Gas limit of the block + */ + gas_limit?: number; + /** + * Total gas used by all transactions in the block + */ + gas_used?: number; + /** + * Latest valid hash when status is INVALID (hex encoded with 0x prefix) + */ + latest_valid_hash?: string | null; + /** + * Autonomous system number of the client that generated the event + */ + meta_client_geo_autonomous_system_number?: number | null; + /** + * Autonomous system organization of the client that generated the event + */ + meta_client_geo_autonomous_system_organization?: string | null; + /** + * City of the client that generated the event + */ + meta_client_geo_city?: string; + /** + * Continent code of the client that generated the event + */ + meta_client_geo_continent_code?: string; + /** + * Country of the client that generated the event + */ + meta_client_geo_country?: string; + /** + * Country code of the client that generated the event + */ + meta_client_geo_country_code?: string; + /** + * Latitude of the client that generated the event + */ + meta_client_geo_latitude?: number | null; + /** + * Longitude of the client that generated the event + */ + meta_client_geo_longitude?: number | null; + /** + * Implementation of the client that generated the event + */ + meta_client_implementation?: string; + /** + * Name of the client that generated the event + */ + meta_client_name?: string; + /** + * Version of the client that generated the event + */ + meta_client_version?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) + */ + meta_execution_implementation?: string; + /** + * Full execution client version string from web3_clientVersion RPC + */ + meta_execution_version?: string; + /** + * Version of the engine_newPayload method (e.g., V3, V4) + */ + method_version?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) + */ + parent_block_root?: string; + /** + * Parent execution block hash (hex encoded with 0x prefix) + */ + parent_hash?: string; + /** + * Validator index of the block proposer + */ + proposer_index?: number; + /** + * When the engine_newPayload call was initiated + */ + requested_date_time?: number; + /** + * Slot number of the beacon block containing the payload + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) + */ + status?: string; + /** + * Number of transactions in the block + */ + tx_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * Error message when validation fails + */ + validation_error?: string | null; +}; + +export type IntEngineNewPayloadFastestExecutionByNodeClass = { + /** + * Execution block hash (hex encoded with 0x prefix) + */ + block_hash?: string; + /** + * Duration of the fastest engine_newPayload call in milliseconds + */ + duration_ms?: number; + /** + * Epoch number derived from the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * Name of the client that generated the event + */ + meta_client_name?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) + */ + meta_execution_implementation?: string; + /** + * Full execution client version string from web3_clientVersion RPC + */ + meta_execution_version?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + */ + node_class?: string; + /** + * Slot number of the beacon block containing the payload + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntExecutionBlockByDate = { + /** + * The block timestamp + */ + block_date_time?: number; + /** + * The block number + */ + block_number?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntExecutionStateSizeByBlock = { + /** + * Cumulative total bytes used by account data + */ + account_bytes?: number; + /** + * Cumulative total bytes used by account trie nodes + */ + account_trienode_bytes?: number; + /** + * Cumulative number of trie nodes in the account trie + */ + account_trienodes?: number; + /** + * Cumulative total number of accounts in the state + */ + accounts?: number; + /** + * Block number at which the cumulative state size is measured + */ + block_number?: number; + /** + * Cumulative total bytes used by contract code + */ + contract_code_bytes?: number; + /** + * Cumulative total number of contract codes stored + */ + contract_codes?: number; + /** + * Cumulative total bytes used by storage data + */ + storage_bytes?: number; + /** + * Cumulative total bytes used by storage trie nodes + */ + storage_trienode_bytes?: number; + /** + * Cumulative number of trie nodes in the storage trie + */ + storage_trienodes?: number; + /** + * Cumulative total number of storage slots in the state + */ + storages?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntRocketpoolMegapool = { + /** + * Execution block number the megapool was deployed in + */ + created_block_number?: number; + /** + * Wall clock time the megapool was deployed (decoded from the deposit event) + */ + created_date_time?: number; + /** + * The Rocket Pool megapool contract address, lowercase 0x-prefixed + */ + megapool_address?: string; + /** + * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed + */ + node_operator?: string; + /** + * Execution transaction hash that deployed the megapool + */ + transaction_hash?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntRocketpoolMinipool = { + /** + * Execution block number the event was emitted in + */ + event_block_number?: number; + /** + * Wall clock time the event occurred, decoded from the event payload + */ + event_date_time?: number; + /** + * Minipool lifecycle event name (created or destroyed) + */ + event_name?: string; + /** + * Log index of the event within the block + */ + log_index?: number; + /** + * The Rocket Pool minipool contract address, lowercase 0x-prefixed + */ + minipool_address?: string; + /** + * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed + */ + node_operator?: string; + /** + * Execution transaction hash that emitted the event + */ + transaction_hash?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntRocketpoolNodeEvent = { + /** + * Execution block number the event was emitted in + */ + event_block_number?: number; + /** + * Wall clock time of the block the event was emitted in + */ + event_date_time?: number; + /** + * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed + */ + event_name?: string; + /** + * Log index of the event within the block + */ + log_index?: number; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed + */ + node_address?: string; + /** + * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 + */ + rpl_amount_wei?: string; + /** + * Smoothing pool membership state for smoothing_pool_state_changed events, otherwise false + */ + smoothing_state?: boolean; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntRocketpoolNodeTimezone = { + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed + */ + node_address?: string; + /** + * Execution block number the timezone was set in + */ + set_block_number?: number; + /** + * Wall clock time of the block the timezone was set in + */ + set_date_time?: number; + /** + * The self-reported timezone location string (e.g. Europe/London) + */ + timezone?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSelfdestructDiffs = { + /** + * Contract address that was selfdestructed + */ + address?: string; + /** + * Block where SELFDESTRUCT occurred + */ + block_number?: number; + /** + * Value before clearing (last known value) + */ + from_value?: string; + /** + * Internal index of the SELFDESTRUCT trace + */ + internal_index?: number; + /** + * Storage slot key being cleared + */ + slot?: string; + /** + * Value after clearing (always 0x00...00) + */ + to_value?: string; + /** + * Transaction hash of the SELFDESTRUCT + */ + transaction_hash?: string; + /** + * Transaction index within the block + */ + transaction_index?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotDiff = { + /** + * The contract address + */ + address?: string; + /** + * The block number + */ + block_number?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) + */ + effective_bytes_from?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) + */ + effective_bytes_to?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotDiffByAddressSlot = { + /** + * The contract address + */ + address?: string; + /** + * The block number + */ + block_number?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) + */ + effective_bytes_from?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) + */ + effective_bytes_to?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotExpiry1m = { + /** + * The contract address + */ + address?: string; + /** + * The block number where this slot expiry is recorded + */ + block_number?: number; + /** + * Number of effective bytes that were set (0-32) + */ + effective_bytes?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotExpiry6m = { + /** + * The contract address + */ + address?: string; + /** + * The block number where this slot expiry is recorded + */ + block_number?: number; + /** + * Number of effective bytes that were set (0-32) + */ + effective_bytes?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotExpiry12m = { + /** + * The contract address + */ + address?: string; + /** + * The block number where this slot expiry is recorded + */ + block_number?: number; + /** + * Number of effective bytes that were set (0-32) + */ + effective_bytes?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotExpiry18m = { + /** + * The contract address + */ + address?: string; + /** + * The block number where this slot expiry is recorded + */ + block_number?: number; + /** + * Number of effective bytes that were set (0-32) + */ + effective_bytes?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotExpiry24m = { + /** + * The contract address + */ + address?: string; + /** + * The block number where this slot expiry is recorded + */ + block_number?: number; + /** + * Number of effective bytes that were set (0-32) + */ + effective_bytes?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotLifecycle = { + /** + * The contract address + */ + address?: string; + /** + * Block where the slot transitioned from 0 to non-zero effective bytes + */ + birth_block?: number; + /** + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) + */ + death_block?: number | null; + /** + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) + */ + effective_bytes_birth?: number; + /** + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) + */ + effective_bytes_death?: number | null; + /** + * Maximum effective bytes observed during this lifecycle + */ + effective_bytes_peak?: number; + /** + * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) + */ + interval_count?: number; + /** + * Maximum touch-to-touch interval in blocks + */ + interval_max?: number; + /** + * Sum of all touch-to-touch intervals in blocks (for computing mean) + */ + interval_sum?: number; + /** + * Most recent block where this slot was touched in this lifecycle + */ + last_touch_block?: number; + /** + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) + */ + lifecycle_number?: number; + /** + * Number of blocks between birth and death (NULL if still alive) + */ + lifespan_blocks?: number | null; + /** + * The storage slot key + */ + slot_key?: string; + /** + * Total number of times this slot was touched during this lifecycle + */ + touch_count?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotLifecycleBoundary = { + /** + * The contract address + */ + address?: string; + /** + * Block where the slot transitioned from 0 to non-zero effective bytes + */ + birth_block?: number; + /** + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) + */ + death_block?: number | null; + /** + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) + */ + effective_bytes_birth?: number; + /** + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) + */ + effective_bytes_death?: number | null; + /** + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) + */ + lifecycle_number?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotNextTouch = { + /** + * The contract address + */ + address?: string; + /** + * The block number where this slot was touched + */ + block_number?: number; + /** + * The next block number where this slot was touched (NULL if no subsequent touch) + */ + next_touch_block?: number | null; + /** + * The storage slot key + */ + slot_key?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotReactivation1m = { + /** + * The contract address + */ + address?: string; + /** + * The block number where this slot was reactivated + */ + block_number?: number; + /** + * Number of effective bytes being reactivated (0-32) + */ + effective_bytes?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * The original touch block that expired (for matching with expiry records) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotReactivation6m = { + /** + * The contract address + */ + address?: string; + /** + * The block number where this slot was reactivated + */ + block_number?: number; + /** + * Number of effective bytes being reactivated (0-32) + */ + effective_bytes?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * The original touch block that expired (for matching with expiry records) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotReactivation12m = { + /** + * The contract address + */ + address?: string; + /** + * The block number where this slot was reactivated + */ + block_number?: number; + /** + * Number of effective bytes being reactivated (0-32) + */ + effective_bytes?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * The original touch block that expired (for matching with expiry records) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotReactivation18m = { + /** + * The contract address + */ + address?: string; + /** + * The block number where this slot was reactivated + */ + block_number?: number; + /** + * Number of effective bytes being reactivated (0-32) + */ + effective_bytes?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * The original touch block that expired (for matching with expiry records) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotReactivation24m = { + /** + * The contract address + */ + address?: string; + /** + * The block number where this slot was reactivated + */ + block_number?: number; + /** + * Number of effective bytes being reactivated (0-32) + */ + effective_bytes?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * The original touch block that expired (for matching with expiry records) + */ + touch_block?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotRead = { + /** + * The contract address + */ + address?: string; + /** + * The block number + */ + block_number?: number; + /** + * The storage slot key + */ + slot_key?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotState = { + /** + * Cumulative count of active storage slots for this address at this block + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number + */ + block_number?: number; + /** + * Change in effective bytes for this block + */ + bytes_delta?: number; + /** + * Cumulative sum of effective bytes for this address at this block + */ + effective_bytes?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) + */ + slots_delta?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotStateByAddress = { + /** + * Cumulative count of active storage slots for this address at this block + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number + */ + block_number?: number; + /** + * Change in effective bytes for this block + */ + bytes_delta?: number; + /** + * Cumulative sum of effective bytes for this address at this block + */ + effective_bytes?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) + */ + slots_delta?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotStateByBlock = { + /** + * Cumulative count of active storage slots at this block + */ + active_slots?: number; + /** + * The block number + */ + block_number?: number; + /** + * Change in effective bytes for this block + */ + bytes_delta?: number; + /** + * Cumulative sum of effective bytes across all active slots at this block + */ + effective_bytes?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) + */ + slots_delta?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotStateWithExpiry = { + /** + * Cumulative count of active storage slots for this address at this block (with expiry applied) + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number + */ + block_number?: number; + /** + * Cumulative net bytes adjustment up to this block + */ + cumulative_net_bytes?: number; + /** + * Cumulative net slot adjustment up to this block + */ + cumulative_net_slots?: number; + /** + * Cumulative sum of effective bytes for this address at this block (with expiry applied) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) + */ + net_bytes_delta?: number; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) + */ + net_slots_delta?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotStateWithExpiryByAddress = { + /** + * Cumulative count of active storage slots for this address at this block (with expiry applied) + */ + active_slots?: number; + /** + * The contract address + */ + address?: string; + /** + * The block number + */ + block_number?: number; + /** + * Cumulative net bytes adjustment up to this block + */ + cumulative_net_bytes?: number; + /** + * Cumulative net slot adjustment up to this block + */ + cumulative_net_slots?: number; + /** + * Cumulative sum of effective bytes for this address at this block (with expiry applied) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) + */ + net_bytes_delta?: number; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) + */ + net_slots_delta?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntStorageSlotStateWithExpiryByBlock = { + /** + * Cumulative count of active storage slots at this block (with expiry applied) + */ + active_slots?: number; + /** + * The block number + */ + block_number?: number; + /** + * Cumulative net bytes adjustment up to this block + */ + cumulative_net_bytes?: number; + /** + * Cumulative net slot adjustment up to this block + */ + cumulative_net_slots?: number; + /** + * Cumulative sum of effective bytes at this block (with expiry applied) + */ + effective_bytes?: number; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy?: string; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) + */ + net_bytes_delta?: number; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) + */ + net_slots_delta?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntTokenContractStorageStateByBlock = { + /** + * Cumulative active storage slots owned by contracts of this standard at this block + */ + active_slots?: number; + /** + * The block number + */ + block_number?: number; + /** + * Change in active slots owned by contracts of this standard at this block + */ + slots_delta?: number; + /** + * Token standard: erc20 or erc721 + */ + token_standard?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntTransactionCallFrame = { + /** + * The block number containing this transaction + */ + block_number?: number; + /** + * Sequential frame ID within the transaction (0 = root) + */ + call_frame_id?: number; + /** + * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) + */ + call_type?: string; + /** + * Call depth (0 = root transaction execution) + */ + depth?: number; + /** + * Number of opcodes that resulted in errors + */ + error_count?: number; + /** + * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. + */ + function_selector?: string | null; + /** + * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. + */ + gas?: number; + /** + * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. + */ + gas_cumulative?: number; + /** + * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). + */ + gas_refund?: number | null; + /** + * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. + */ + intrinsic_gas?: number | null; + /** + * Number of opcodes executed in this frame + */ + opcode_count?: number; + /** + * Parent frame ID (NULL for root frame) + */ + parent_call_frame_id?: number | null; + /** + * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. + */ + receipt_gas_used?: number | null; + /** + * Contract address being called (hex encoded with 0x prefix) + */ + target_address?: string | null; + /** + * The transaction hash (hex encoded with 0x prefix) + */ + transaction_hash?: string; + /** + * Position of the transaction within the block + */ + transaction_index?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntTransactionCallFrameOpcodeGas = { + /** + * The block number containing the transaction + */ + block_number?: number; + /** + * Sequential frame ID within transaction (0 = root) + */ + call_frame_id?: number; + /** + * Number of cold storage/account accesses (EIP-2929). + */ + cold_access_count?: number; + /** + * Number of times this opcode was executed in this frame + */ + count?: number; + /** + * Number of times this opcode resulted in an error in this frame + */ + error_count?: number; + /** + * Gas consumed by this opcode in this frame. sum(gas) = frame gas + */ + gas?: number; + /** + * For CALL opcodes: includes all descendant frame gas. For others: same as gas + */ + gas_cumulative?: number; + /** + * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. + */ + memory_expansion_gas?: number; + /** + * SUM(words_after²). + */ + memory_words_sq_sum_after?: number; + /** + * SUM(words_before²). + */ + memory_words_sq_sum_before?: number; + /** + * SUM(ceil(memory_bytes/32)) after each opcode executes. + */ + memory_words_sum_after?: number; + /** + * SUM(ceil(memory_bytes/32)) before each opcode executes. + */ + memory_words_sum_before?: number; + /** + * The name of the network + */ + meta_network_name?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) + */ + opcode?: string; + /** + * The transaction hash (hex encoded with 0x prefix) + */ + transaction_hash?: string; + /** + * The index of the transaction within the block + */ + transaction_index?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntTransactionCallFrameOpcodeResourceGas = { + /** + * The block number containing the transaction + */ + block_number?: number; + /** + * Sequential frame ID within transaction (0 = root) + */ + call_frame_id?: number; + /** + * Number of times this opcode was executed in this frame + */ + count?: number; + /** + * Total gas consumed by this opcode in this frame + */ + gas?: number; + /** + * Gas attributed to cold address/storage access (EIP-2929) + */ + gas_address_access?: number; + /** + * Gas attributed to block size (always 0 at opcode level) + */ + gas_block_size?: number; + /** + * Gas attributed to bloom filter topic indexing + */ + gas_bloom_topics?: number; + /** + * Gas attributed to pure computation + */ + gas_compute?: number; + /** + * Gas attributed to history/log data storage + */ + gas_history?: number; + /** + * Gas attributed to memory expansion + */ + gas_memory?: number; + /** + * Gas attributed to state growth (new storage slots, contract creation) + */ + gas_state_growth?: number; + /** + * The name of the network + */ + meta_network_name?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) + */ + opcode?: string; + /** + * The transaction hash (hex encoded with 0x prefix) + */ + transaction_hash?: string; + /** + * The index of the transaction within the block + */ + transaction_index?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntTransactionOpcodeGas = { + /** + * The block number containing the transaction + */ + block_number?: number; + /** + * Number of times this opcode was executed in the transaction + */ + count?: number; + /** + * Number of times this opcode resulted in an error + */ + error_count?: number; + /** + * Gas consumed by this opcode. sum(gas) = transaction executed gas + */ + gas?: number; + /** + * For CALL opcodes: includes all descendant frame gas. For others: same as gas + */ + gas_cumulative?: number; + /** + * The name of the network + */ + meta_network_name?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) + */ + opcode?: string; + /** + * The transaction hash (hex encoded with 0x prefix) + */ + transaction_hash?: string; + /** + * The index of the transaction within the block + */ + transaction_index?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntTransactionReceiptSize = { + /** + * The block number containing the transaction + */ + block_number?: number; + /** + * Number of logs emitted by this transaction + */ + log_count?: number; + /** + * Total raw bytes of log data fields (before RLP encoding) + */ + log_data_bytes?: number; + /** + * Total number of topics across all logs + */ + log_topic_count?: number; + /** + * The name of the network + */ + meta_network_name?: string; + /** + * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) + */ + receipt_bytes?: number; + /** + * The transaction hash (hex encoded with 0x prefix) + */ + transaction_hash?: string; + /** + * The index of the transaction within the block + */ + transaction_index?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +export type IntTransactionResourceGas = { + /** + * The block number containing the transaction + */ + block_number?: number; + /** + * Total cold address/storage access gas + */ + gas_address_access?: number; + /** + * Total block size gas (from intrinsic calldata) + */ + gas_block_size?: number; + /** + * Total bloom filter topic gas + */ + gas_bloom_topics?: number; + /** + * Total compute gas (EVM execution + intrinsic compute) + */ + gas_compute?: number; + /** + * Total history/log data gas + */ + gas_history?: number; + /** + * Total memory expansion gas + */ + gas_memory?: number; + /** + * Gas refund from SSTORE operations + */ + gas_refund?: number; + /** + * Total state growth gas + */ + gas_state_growth?: number; + /** + * The name of the network + */ + meta_network_name?: string; + /** + * The transaction hash (hex encoded with 0x prefix) + */ + transaction_hash?: string; + /** + * The index of the transaction within the block + */ + transaction_index?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + +/** + * Response for listing admin_cbt_incremental records + */ +export type ListAdminCbtIncrementalResponse = { + /** + * The list of admin_cbt_incremental. + */ + admin_cbt_incremental?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing admin_cbt_scheduled records + */ +export type ListAdminCbtScheduledResponse = { + /** + * The list of admin_cbt_scheduled. + */ + admin_cbt_scheduled?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing dim_block_blob_submitter records + */ +export type ListDimBlockBlobSubmitterResponse = { + /** + * The list of dim_block_blob_submitter. + */ + dim_block_blob_submitter?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing dim_contract_owner records + */ +export type ListDimContractOwnerResponse = { + /** + * The list of dim_contract_owner. + */ + dim_contract_owner?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing dim_function_signature records + */ +export type ListDimFunctionSignatureResponse = { + /** + * The list of dim_function_signature. + */ + dim_function_signature?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing dim_node records + */ +export type ListDimNodeResponse = { + /** + * The list of dim_node. + */ + dim_node?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing dim_rocketpool_node records + */ +export type ListDimRocketpoolNodeResponse = { + /** + * The list of dim_rocketpool_node. + */ + dim_rocketpool_node?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing dim_token_contract records + */ +export type ListDimTokenContractResponse = { + /** + * The list of dim_token_contract. + */ + dim_token_contract?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing dim_validator_pubkey records + */ +export type ListDimValidatorPubkeyResponse = { + /** + * The list of dim_validator_pubkey. + */ + dim_validator_pubkey?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing dim_validator_status records + */ +export type ListDimValidatorStatusResponse = { + /** + * The list of dim_validator_status. + */ + dim_validator_status?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_correctness_by_validator_canonical records + */ +export type ListFctAttestationCorrectnessByValidatorCanonicalResponse = { + /** + * The list of fct_attestation_correctness_by_validator_canonical. + */ + fct_attestation_correctness_by_validator_canonical?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_correctness_by_validator_head records + */ +export type ListFctAttestationCorrectnessByValidatorHeadResponse = { + /** + * The list of fct_attestation_correctness_by_validator_head. + */ + fct_attestation_correctness_by_validator_head?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_correctness_by_validator records + */ +export type ListFctAttestationCorrectnessByValidatorResponse = { + /** + * The list of fct_attestation_correctness_by_validator. + */ + fct_attestation_correctness_by_validator?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_correctness_canonical records + */ +export type ListFctAttestationCorrectnessCanonicalResponse = { + /** + * The list of fct_attestation_correctness_canonical. + */ + fct_attestation_correctness_canonical?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_correctness_head records + */ +export type ListFctAttestationCorrectnessHeadResponse = { + /** + * The list of fct_attestation_correctness_head. + */ + fct_attestation_correctness_head?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_correctness records + */ +export type ListFctAttestationCorrectnessResponse = { + /** + * The list of fct_attestation_correctness. + */ + fct_attestation_correctness?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_first_seen_by_validator records + */ +export type ListFctAttestationFirstSeenByValidatorResponse = { + /** + * The list of fct_attestation_first_seen_by_validator. + */ + fct_attestation_first_seen_by_validator?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_first_seen_chunked_50ms records + */ +export type ListFctAttestationFirstSeenChunked50MsResponse = { + /** + * The list of fct_attestation_first_seen_chunked_50ms. + */ + fct_attestation_first_seen_chunked_50ms?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_inclusion_delay_daily records + */ +export type ListFctAttestationInclusionDelayDailyResponse = { + /** + * The list of fct_attestation_inclusion_delay_daily. + */ + fct_attestation_inclusion_delay_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_inclusion_delay_hourly records + */ +export type ListFctAttestationInclusionDelayHourlyResponse = { + /** + * The list of fct_attestation_inclusion_delay_hourly. + */ + fct_attestation_inclusion_delay_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_liveness_by_entity_head records + */ +export type ListFctAttestationLivenessByEntityHeadResponse = { + /** + * The list of fct_attestation_liveness_by_entity_head. + */ + fct_attestation_liveness_by_entity_head?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_liveness_by_entity records + */ +export type ListFctAttestationLivenessByEntityResponse = { + /** + * The list of fct_attestation_liveness_by_entity. + */ + fct_attestation_liveness_by_entity?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_observation_by_node records + */ +export type ListFctAttestationObservationByNodeResponse = { + /** + * The list of fct_attestation_observation_by_node. + */ + fct_attestation_observation_by_node?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_participation_rate_daily records + */ +export type ListFctAttestationParticipationRateDailyResponse = { + /** + * The list of fct_attestation_participation_rate_daily. + */ + fct_attestation_participation_rate_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_participation_rate_hourly records + */ +export type ListFctAttestationParticipationRateHourlyResponse = { + /** + * The list of fct_attestation_participation_rate_hourly. + */ + fct_attestation_participation_rate_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_vote_correctness_by_validator_daily records + */ +export type ListFctAttestationVoteCorrectnessByValidatorDailyResponse = { + /** + * The list of fct_attestation_vote_correctness_by_validator_daily. + */ + fct_attestation_vote_correctness_by_validator_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_vote_correctness_by_validator_hourly records + */ +export type ListFctAttestationVoteCorrectnessByValidatorHourlyResponse = { + /** + * The list of fct_attestation_vote_correctness_by_validator_hourly. + */ + fct_attestation_vote_correctness_by_validator_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_attestation_vote_correctness_by_validator records + */ +export type ListFctAttestationVoteCorrectnessByValidatorResponse = { + /** + * The list of fct_attestation_vote_correctness_by_validator. + */ + fct_attestation_vote_correctness_by_validator?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_blob_count_daily records + */ +export type ListFctBlobCountDailyResponse = { + /** + * The list of fct_blob_count_daily. + */ + fct_blob_count_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_blob_count_hourly records + */ +export type ListFctBlobCountHourlyResponse = { + /** + * The list of fct_blob_count_hourly. + */ + fct_blob_count_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_blob_count_head records + */ +export type ListFctBlockBlobCountHeadResponse = { + /** + * The list of fct_block_blob_count_head. + */ + fct_block_blob_count_head?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_blob_count records + */ +export type ListFctBlockBlobCountResponse = { + /** + * The list of fct_block_blob_count. + */ + fct_block_blob_count?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_blob_first_seen_by_node records + */ +export type ListFctBlockBlobFirstSeenByNodeResponse = { + /** + * The list of fct_block_blob_first_seen_by_node. + */ + fct_block_blob_first_seen_by_node?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_blob_head records + */ +export type ListFctBlockBlobHeadResponse = { + /** + * The list of fct_block_blob_head. + */ + fct_block_blob_head?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_data_column_sidecar_first_seen_by_node records + */ +export type ListFctBlockDataColumnSidecarFirstSeenByNodeResponse = { + /** + * The list of fct_block_data_column_sidecar_first_seen_by_node. + */ + fct_block_data_column_sidecar_first_seen_by_node?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_data_column_sidecar_first_seen records + */ +export type ListFctBlockDataColumnSidecarFirstSeenResponse = { + /** + * The list of fct_block_data_column_sidecar_first_seen. + */ + fct_block_data_column_sidecar_first_seen?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_first_seen_by_node records + */ +export type ListFctBlockFirstSeenByNodeResponse = { + /** + * The list of fct_block_first_seen_by_node. + */ + fct_block_first_seen_by_node?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_head records + */ +export type ListFctBlockHeadResponse = { + /** + * The list of fct_block_head. + */ + fct_block_head?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_mev_head records + */ +export type ListFctBlockMevHeadResponse = { + /** + * The list of fct_block_mev_head. + */ + fct_block_mev_head?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_mev records + */ +export type ListFctBlockMevResponse = { + /** + * The list of fct_block_mev. + */ + fct_block_mev?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_payload_available_by_node records + */ +export type ListFctBlockPayloadAvailableByNodeResponse = { + /** + * The list of fct_block_payload_available_by_node. + */ + fct_block_payload_available_by_node?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_payload_bid records + */ +export type ListFctBlockPayloadBidResponse = { + /** + * The list of fct_block_payload_bid. + */ + fct_block_payload_bid?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_payload_first_seen_by_node records + */ +export type ListFctBlockPayloadFirstSeenByNodeResponse = { + /** + * The list of fct_block_payload_first_seen_by_node. + */ + fct_block_payload_first_seen_by_node?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_payload_ptc_vote_head records + */ +export type ListFctBlockPayloadPtcVoteHeadResponse = { + /** + * The list of fct_block_payload_ptc_vote_head. + */ + fct_block_payload_ptc_vote_head?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_payload_ptc_vote records + */ +export type ListFctBlockPayloadPtcVoteResponse = { + /** + * The list of fct_block_payload_ptc_vote. + */ + fct_block_payload_ptc_vote?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_proposal_status_daily records + */ +export type ListFctBlockProposalStatusDailyResponse = { + /** + * The list of fct_block_proposal_status_daily. + */ + fct_block_proposal_status_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_proposal_status_hourly records + */ +export type ListFctBlockProposalStatusHourlyResponse = { + /** + * The list of fct_block_proposal_status_hourly. + */ + fct_block_proposal_status_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_proposer_by_validator records + */ +export type ListFctBlockProposerByValidatorResponse = { + /** + * The list of fct_block_proposer_by_validator. + */ + fct_block_proposer_by_validator?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_proposer_entity records + */ +export type ListFctBlockProposerEntityResponse = { + /** + * The list of fct_block_proposer_entity. + */ + fct_block_proposer_entity?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_proposer_head records + */ +export type ListFctBlockProposerHeadResponse = { + /** + * The list of fct_block_proposer_head. + */ + fct_block_proposer_head?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block_proposer records + */ +export type ListFctBlockProposerResponse = { + /** + * The list of fct_block_proposer. + */ + fct_block_proposer?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_block records + */ +export type ListFctBlockResponse = { + /** + * The list of fct_block. + */ + fct_block?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_contract_storage_state_by_address_daily records + */ +export type ListFctContractStorageStateByAddressDailyResponse = { + /** + * The list of fct_contract_storage_state_by_address_daily. + */ + fct_contract_storage_state_by_address_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_contract_storage_state_by_address_hourly records + */ +export type ListFctContractStorageStateByAddressHourlyResponse = { + /** + * The list of fct_contract_storage_state_by_address_hourly. + */ + fct_contract_storage_state_by_address_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_contract_storage_state_by_block_daily records + */ +export type ListFctContractStorageStateByBlockDailyResponse = { + /** + * The list of fct_contract_storage_state_by_block_daily. + */ + fct_contract_storage_state_by_block_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_contract_storage_state_by_block_hourly records + */ +export type ListFctContractStorageStateByBlockHourlyResponse = { + /** + * The list of fct_contract_storage_state_by_block_hourly. + */ + fct_contract_storage_state_by_block_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_contract_storage_state_with_expiry_by_address_daily records + */ +export type ListFctContractStorageStateWithExpiryByAddressDailyResponse = { + /** + * The list of fct_contract_storage_state_with_expiry_by_address_daily. + */ + fct_contract_storage_state_with_expiry_by_address_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_contract_storage_state_with_expiry_by_address_hourly records + */ +export type ListFctContractStorageStateWithExpiryByAddressHourlyResponse = { + /** + * The list of fct_contract_storage_state_with_expiry_by_address_hourly. + */ + fct_contract_storage_state_with_expiry_by_address_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_contract_storage_state_with_expiry_by_block_daily records + */ +export type ListFctContractStorageStateWithExpiryByBlockDailyResponse = { + /** + * The list of fct_contract_storage_state_with_expiry_by_block_daily. + */ + fct_contract_storage_state_with_expiry_by_block_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_contract_storage_state_with_expiry_by_block_hourly records + */ +export type ListFctContractStorageStateWithExpiryByBlockHourlyResponse = { + /** + * The list of fct_contract_storage_state_with_expiry_by_block_hourly. + */ + fct_contract_storage_state_with_expiry_by_block_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_data_column_availability_by_epoch records + */ +export type ListFctDataColumnAvailabilityByEpochResponse = { + /** + * The list of fct_data_column_availability_by_epoch. + */ + fct_data_column_availability_by_epoch?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_data_column_availability_by_slot_blob records + */ +export type ListFctDataColumnAvailabilityBySlotBlobResponse = { + /** + * The list of fct_data_column_availability_by_slot_blob. + */ + fct_data_column_availability_by_slot_blob?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_data_column_availability_by_slot records + */ +export type ListFctDataColumnAvailabilityBySlotResponse = { + /** + * The list of fct_data_column_availability_by_slot. + */ + fct_data_column_availability_by_slot?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_data_column_availability_daily records + */ +export type ListFctDataColumnAvailabilityDailyResponse = { + /** + * The list of fct_data_column_availability_daily. + */ + fct_data_column_availability_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_data_column_availability_hourly records + */ +export type ListFctDataColumnAvailabilityHourlyResponse = { + /** + * The list of fct_data_column_availability_hourly. + */ + fct_data_column_availability_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_engine_get_blobs_by_el_client_hourly records + */ +export type ListFctEngineGetBlobsByElClientHourlyResponse = { + /** + * The list of fct_engine_get_blobs_by_el_client_hourly. + */ + fct_engine_get_blobs_by_el_client_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_engine_get_blobs_by_el_client records + */ +export type ListFctEngineGetBlobsByElClientResponse = { + /** + * The list of fct_engine_get_blobs_by_el_client. + */ + fct_engine_get_blobs_by_el_client?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_engine_get_blobs_by_slot records + */ +export type ListFctEngineGetBlobsBySlotResponse = { + /** + * The list of fct_engine_get_blobs_by_slot. + */ + fct_engine_get_blobs_by_slot?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_engine_get_blobs_duration_chunked_50ms records + */ +export type ListFctEngineGetBlobsDurationChunked50MsResponse = { + /** + * The list of fct_engine_get_blobs_duration_chunked_50ms. + */ + fct_engine_get_blobs_duration_chunked_50ms?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_engine_new_payload_by_el_client_hourly records + */ +export type ListFctEngineNewPayloadByElClientHourlyResponse = { + /** + * The list of fct_engine_new_payload_by_el_client_hourly. + */ + fct_engine_new_payload_by_el_client_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_engine_new_payload_by_el_client records + */ +export type ListFctEngineNewPayloadByElClientResponse = { + /** + * The list of fct_engine_new_payload_by_el_client. + */ + fct_engine_new_payload_by_el_client?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_engine_new_payload_by_slot records + */ +export type ListFctEngineNewPayloadBySlotResponse = { + /** + * The list of fct_engine_new_payload_by_slot. + */ + fct_engine_new_payload_by_slot?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_engine_new_payload_duration_chunked_50ms records + */ +export type ListFctEngineNewPayloadDurationChunked50MsResponse = { + /** + * The list of fct_engine_new_payload_duration_chunked_50ms. + */ + fct_engine_new_payload_duration_chunked_50ms?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_engine_new_payload_winrate_daily records + */ +export type ListFctEngineNewPayloadWinrateDailyResponse = { + /** + * The list of fct_engine_new_payload_winrate_daily. + */ + fct_engine_new_payload_winrate_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_engine_new_payload_winrate_hourly records + */ +export type ListFctEngineNewPayloadWinrateHourlyResponse = { + /** + * The list of fct_engine_new_payload_winrate_hourly. + */ + fct_engine_new_payload_winrate_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_gas_limit_daily records + */ +export type ListFctExecutionGasLimitDailyResponse = { + /** + * The list of fct_execution_gas_limit_daily. + */ + fct_execution_gas_limit_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_gas_limit_hourly records + */ +export type ListFctExecutionGasLimitHourlyResponse = { + /** + * The list of fct_execution_gas_limit_hourly. + */ + fct_execution_gas_limit_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_gas_limit_signalling_daily records + */ +export type ListFctExecutionGasLimitSignallingDailyResponse = { + /** + * The list of fct_execution_gas_limit_signalling_daily. + */ + fct_execution_gas_limit_signalling_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_gas_limit_signalling_hourly records + */ +export type ListFctExecutionGasLimitSignallingHourlyResponse = { + /** + * The list of fct_execution_gas_limit_signalling_hourly. + */ + fct_execution_gas_limit_signalling_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_gas_used_daily records + */ +export type ListFctExecutionGasUsedDailyResponse = { + /** + * The list of fct_execution_gas_used_daily. + */ + fct_execution_gas_used_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_gas_used_hourly records + */ +export type ListFctExecutionGasUsedHourlyResponse = { + /** + * The list of fct_execution_gas_used_hourly. + */ + fct_execution_gas_used_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_receipt_size_daily records + */ +export type ListFctExecutionReceiptSizeDailyResponse = { + /** + * The list of fct_execution_receipt_size_daily. + */ + fct_execution_receipt_size_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_receipt_size_hourly records + */ +export type ListFctExecutionReceiptSizeHourlyResponse = { + /** + * The list of fct_execution_receipt_size_hourly. + */ + fct_execution_receipt_size_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_state_size_daily records + */ +export type ListFctExecutionStateSizeDailyResponse = { + /** + * The list of fct_execution_state_size_daily. + */ + fct_execution_state_size_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_state_size_hourly records + */ +export type ListFctExecutionStateSizeHourlyResponse = { + /** + * The list of fct_execution_state_size_hourly. + */ + fct_execution_state_size_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_tps_daily records + */ +export type ListFctExecutionTpsDailyResponse = { + /** + * The list of fct_execution_tps_daily. + */ + fct_execution_tps_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_tps_hourly records + */ +export type ListFctExecutionTpsHourlyResponse = { + /** + * The list of fct_execution_tps_hourly. + */ + fct_execution_tps_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_transactions_daily records + */ +export type ListFctExecutionTransactionsDailyResponse = { + /** + * The list of fct_execution_transactions_daily. + */ + fct_execution_transactions_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_execution_transactions_hourly records + */ +export type ListFctExecutionTransactionsHourlyResponse = { + /** + * The list of fct_execution_transactions_hourly. + */ + fct_execution_transactions_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_head_first_seen_by_node records + */ +export type ListFctHeadFirstSeenByNodeResponse = { + /** + * The list of fct_head_first_seen_by_node. + */ + fct_head_first_seen_by_node?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_head_vote_correctness_rate_daily records + */ +export type ListFctHeadVoteCorrectnessRateDailyResponse = { + /** + * The list of fct_head_vote_correctness_rate_daily. + */ + fct_head_vote_correctness_rate_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_head_vote_correctness_rate_hourly records + */ +export type ListFctHeadVoteCorrectnessRateHourlyResponse = { + /** + * The list of fct_head_vote_correctness_rate_hourly. + */ + fct_head_vote_correctness_rate_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_mev_bid_count_by_builder records + */ +export type ListFctMevBidCountByBuilderResponse = { + /** + * The list of fct_mev_bid_count_by_builder. + */ + fct_mev_bid_count_by_builder?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_mev_bid_count_by_relay records + */ +export type ListFctMevBidCountByRelayResponse = { + /** + * The list of fct_mev_bid_count_by_relay. + */ + fct_mev_bid_count_by_relay?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_mev_bid_highest_value_by_builder_chunked_50ms records + */ +export type ListFctMevBidHighestValueByBuilderChunked50MsResponse = { + /** + * The list of fct_mev_bid_highest_value_by_builder_chunked_50ms. + */ + fct_mev_bid_highest_value_by_builder_chunked_50ms?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_missed_slot_rate_daily records + */ +export type ListFctMissedSlotRateDailyResponse = { + /** + * The list of fct_missed_slot_rate_daily. + */ + fct_missed_slot_rate_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_missed_slot_rate_hourly records + */ +export type ListFctMissedSlotRateHourlyResponse = { + /** + * The list of fct_missed_slot_rate_hourly. + */ + fct_missed_slot_rate_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_node_active_last_24h records + */ +export type ListFctNodeActiveLast24hResponse = { + /** + * The list of fct_node_active_last_24h. + */ + fct_node_active_last_24h?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_node_cpu_utilization_by_process records + */ +export type ListFctNodeCpuUtilizationByProcessResponse = { + /** + * The list of fct_node_cpu_utilization_by_process. + */ + fct_node_cpu_utilization_by_process?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_node_disk_io_by_process records + */ +export type ListFctNodeDiskIoByProcessResponse = { + /** + * The list of fct_node_disk_io_by_process. + */ + fct_node_disk_io_by_process?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_node_memory_usage_by_process records + */ +export type ListFctNodeMemoryUsageByProcessResponse = { + /** + * The list of fct_node_memory_usage_by_process. + */ + fct_node_memory_usage_by_process?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_node_network_io_by_process records + */ +export type ListFctNodeNetworkIoByProcessResponse = { + /** + * The list of fct_node_network_io_by_process. + */ + fct_node_network_io_by_process?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_opcode_gas_by_opcode_daily records + */ +export type ListFctOpcodeGasByOpcodeDailyResponse = { + /** + * The list of fct_opcode_gas_by_opcode_daily. + */ + fct_opcode_gas_by_opcode_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_opcode_gas_by_opcode_hourly records + */ +export type ListFctOpcodeGasByOpcodeHourlyResponse = { + /** + * The list of fct_opcode_gas_by_opcode_hourly. + */ + fct_opcode_gas_by_opcode_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_opcode_ops_daily records + */ +export type ListFctOpcodeOpsDailyResponse = { + /** + * The list of fct_opcode_ops_daily. + */ + fct_opcode_ops_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_opcode_ops_hourly records + */ +export type ListFctOpcodeOpsHourlyResponse = { + /** + * The list of fct_opcode_ops_hourly. + */ + fct_opcode_ops_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_payload_bid_highest_value_by_builder_chunked_50ms records + */ +export type ListFctPayloadBidHighestValueByBuilderChunked50MsResponse = { + /** + * The list of fct_payload_bid_highest_value_by_builder_chunked_50ms. + */ + fct_payload_bid_highest_value_by_builder_chunked_50ms?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_prepared_block records + */ +export type ListFctPreparedBlockResponse = { + /** + * The list of fct_prepared_block. + */ + fct_prepared_block?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_proposer_reward_daily records + */ +export type ListFctProposerRewardDailyResponse = { + /** + * The list of fct_proposer_reward_daily. + */ + fct_proposer_reward_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_proposer_reward_hourly records + */ +export type ListFctProposerRewardHourlyResponse = { + /** + * The list of fct_proposer_reward_hourly. + */ + fct_proposer_reward_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_reorg_daily records + */ +export type ListFctReorgDailyResponse = { + /** + * The list of fct_reorg_daily. + */ + fct_reorg_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_reorg_hourly records + */ +export type ListFctReorgHourlyResponse = { + /** + * The list of fct_reorg_hourly. + */ + fct_reorg_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_rocketpool_validator records + */ +export type ListFctRocketpoolValidatorResponse = { + /** + * The list of fct_rocketpool_validator. + */ + fct_rocketpool_validator?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_storage_slot_state_by_address_daily records + */ +export type ListFctStorageSlotStateByAddressDailyResponse = { + /** + * The list of fct_storage_slot_state_by_address_daily. + */ + fct_storage_slot_state_by_address_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_storage_slot_state_by_address_hourly records + */ +export type ListFctStorageSlotStateByAddressHourlyResponse = { + /** + * The list of fct_storage_slot_state_by_address_hourly. + */ + fct_storage_slot_state_by_address_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_storage_slot_state_by_block_daily records + */ +export type ListFctStorageSlotStateByBlockDailyResponse = { + /** + * The list of fct_storage_slot_state_by_block_daily. + */ + fct_storage_slot_state_by_block_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_storage_slot_state_by_block_hourly records + */ +export type ListFctStorageSlotStateByBlockHourlyResponse = { + /** + * The list of fct_storage_slot_state_by_block_hourly. + */ + fct_storage_slot_state_by_block_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_storage_slot_state_with_expiry_by_address_daily records + */ +export type ListFctStorageSlotStateWithExpiryByAddressDailyResponse = { + /** + * The list of fct_storage_slot_state_with_expiry_by_address_daily. + */ + fct_storage_slot_state_with_expiry_by_address_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_storage_slot_state_with_expiry_by_address_hourly records + */ +export type ListFctStorageSlotStateWithExpiryByAddressHourlyResponse = { + /** + * The list of fct_storage_slot_state_with_expiry_by_address_hourly. + */ + fct_storage_slot_state_with_expiry_by_address_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_storage_slot_state_with_expiry_by_block_daily records + */ +export type ListFctStorageSlotStateWithExpiryByBlockDailyResponse = { + /** + * The list of fct_storage_slot_state_with_expiry_by_block_daily. + */ + fct_storage_slot_state_with_expiry_by_block_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_storage_slot_state_with_expiry_by_block_hourly records + */ +export type ListFctStorageSlotStateWithExpiryByBlockHourlyResponse = { + /** + * The list of fct_storage_slot_state_with_expiry_by_block_hourly. + */ + fct_storage_slot_state_with_expiry_by_block_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_storage_slot_top_100_by_bytes records + */ +export type ListFctStorageSlotTop100ByBytesResponse = { + /** + * The list of fct_storage_slot_top_100_by_bytes. + */ + fct_storage_slot_top_100_by_bytes?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_storage_slot_top_100_by_slots records + */ +export type ListFctStorageSlotTop100BySlotsResponse = { + /** + * The list of fct_storage_slot_top_100_by_slots. + */ + fct_storage_slot_top_100_by_slots?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_sync_committee_participation_by_validator_daily records + */ +export type ListFctSyncCommitteeParticipationByValidatorDailyResponse = { + /** + * The list of fct_sync_committee_participation_by_validator_daily. + */ + fct_sync_committee_participation_by_validator_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_sync_committee_participation_by_validator_hourly records + */ +export type ListFctSyncCommitteeParticipationByValidatorHourlyResponse = { + /** + * The list of fct_sync_committee_participation_by_validator_hourly. + */ + fct_sync_committee_participation_by_validator_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_sync_committee_participation_by_validator records + */ +export type ListFctSyncCommitteeParticipationByValidatorResponse = { + /** + * The list of fct_sync_committee_participation_by_validator. + */ + fct_sync_committee_participation_by_validator?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_token_contract_storage_state_by_block_daily records + */ +export type ListFctTokenContractStorageStateByBlockDailyResponse = { + /** + * The list of fct_token_contract_storage_state_by_block_daily. + */ + fct_token_contract_storage_state_by_block_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_validator_balance_daily records + */ +export type ListFctValidatorBalanceDailyResponse = { + /** + * The list of fct_validator_balance_daily. + */ + fct_validator_balance_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_validator_balance_hourly records + */ +export type ListFctValidatorBalanceHourlyResponse = { + /** + * The list of fct_validator_balance_hourly. + */ + fct_validator_balance_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_validator_balance records + */ +export type ListFctValidatorBalanceResponse = { + /** + * The list of fct_validator_balance. + */ + fct_validator_balance?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing fct_validator_count_by_entity_by_status_daily records + */ +export type ListFctValidatorCountByEntityByStatusDailyResponse = { + /** + * The list of fct_validator_count_by_entity_by_status_daily. + */ + fct_validator_count_by_entity_by_status_daily?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_attestation_attested_canonical records + */ +export type ListIntAttestationAttestedCanonicalResponse = { + /** + * The list of int_attestation_attested_canonical. + */ + int_attestation_attested_canonical?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_attestation_attested_head records + */ +export type ListIntAttestationAttestedHeadResponse = { + /** + * The list of int_attestation_attested_head. + */ + int_attestation_attested_head?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_attestation_attested records + */ +export type ListIntAttestationAttestedResponse = { + /** + * The list of int_attestation_attested. + */ + int_attestation_attested?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_attestation_first_seen_aggregate records + */ +export type ListIntAttestationFirstSeenAggregateResponse = { + /** + * The list of int_attestation_first_seen_aggregate. + */ + int_attestation_first_seen_aggregate?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_attestation_first_seen records + */ +export type ListIntAttestationFirstSeenResponse = { + /** + * The list of int_attestation_first_seen. + */ + int_attestation_first_seen?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_beacon_committee_head records + */ +export type ListIntBeaconCommitteeHeadResponse = { + /** + * The list of int_beacon_committee_head. + */ + int_beacon_committee_head?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_beacon_committee records + */ +export type ListIntBeaconCommitteeResponse = { + /** + * The list of int_beacon_committee. + */ + int_beacon_committee?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_block_blob_count_canonical records + */ +export type ListIntBlockBlobCountCanonicalResponse = { + /** + * The list of int_block_blob_count_canonical. + */ + int_block_blob_count_canonical?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_block_canonical records + */ +export type ListIntBlockCanonicalResponse = { + /** + * The list of int_block_canonical. + */ + int_block_canonical?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_block_mev_canonical records + */ +export type ListIntBlockMevCanonicalResponse = { + /** + * The list of int_block_mev_canonical. + */ + int_block_mev_canonical?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_block_opcode_gas records + */ +export type ListIntBlockOpcodeGasResponse = { + /** + * The list of int_block_opcode_gas. + */ + int_block_opcode_gas?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_block_payload_ptc_vote_canonical records + */ +export type ListIntBlockPayloadPtcVoteCanonicalResponse = { + /** + * The list of int_block_payload_ptc_vote_canonical. + */ + int_block_payload_ptc_vote_canonical?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_block_proposer_canonical records + */ +export type ListIntBlockProposerCanonicalResponse = { + /** + * The list of int_block_proposer_canonical. + */ + int_block_proposer_canonical?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_block_receipt_size records + */ +export type ListIntBlockReceiptSizeResponse = { + /** + * The list of int_block_receipt_size. + */ + int_block_receipt_size?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_block_resource_gas records + */ +export type ListIntBlockResourceGasResponse = { + /** + * The list of int_block_resource_gas. + */ + int_block_resource_gas?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_creation records + */ +export type ListIntContractCreationResponse = { + /** + * The list of int_contract_creation. + */ + int_contract_creation?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_selfdestruct records + */ +export type ListIntContractSelfdestructResponse = { + /** + * The list of int_contract_selfdestruct. + */ + int_contract_selfdestruct?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_expiry_1m records + */ +export type ListIntContractStorageExpiry1mResponse = { + /** + * The list of int_contract_storage_expiry_1m. + */ + int_contract_storage_expiry_1m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_expiry_6m records + */ +export type ListIntContractStorageExpiry6mResponse = { + /** + * The list of int_contract_storage_expiry_6m. + */ + int_contract_storage_expiry_6m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_expiry_12m records + */ +export type ListIntContractStorageExpiry12mResponse = { + /** + * The list of int_contract_storage_expiry_12m. + */ + int_contract_storage_expiry_12m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_expiry_18m records + */ +export type ListIntContractStorageExpiry18mResponse = { + /** + * The list of int_contract_storage_expiry_18m. + */ + int_contract_storage_expiry_18m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_expiry_24m records + */ +export type ListIntContractStorageExpiry24mResponse = { + /** + * The list of int_contract_storage_expiry_24m. + */ + int_contract_storage_expiry_24m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_next_touch records + */ +export type ListIntContractStorageNextTouchResponse = { + /** + * The list of int_contract_storage_next_touch. + */ + int_contract_storage_next_touch?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_reactivation_1m records + */ +export type ListIntContractStorageReactivation1mResponse = { + /** + * The list of int_contract_storage_reactivation_1m. + */ + int_contract_storage_reactivation_1m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_reactivation_6m records + */ +export type ListIntContractStorageReactivation6mResponse = { + /** + * The list of int_contract_storage_reactivation_6m. + */ + int_contract_storage_reactivation_6m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_reactivation_12m records + */ +export type ListIntContractStorageReactivation12mResponse = { + /** + * The list of int_contract_storage_reactivation_12m. + */ + int_contract_storage_reactivation_12m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_reactivation_18m records + */ +export type ListIntContractStorageReactivation18mResponse = { + /** + * The list of int_contract_storage_reactivation_18m. + */ + int_contract_storage_reactivation_18m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_reactivation_24m records + */ +export type ListIntContractStorageReactivation24mResponse = { + /** + * The list of int_contract_storage_reactivation_24m. + */ + int_contract_storage_reactivation_24m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_state_by_address records + */ +export type ListIntContractStorageStateByAddressResponse = { + /** + * The list of int_contract_storage_state_by_address. + */ + int_contract_storage_state_by_address?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_state_by_block records + */ +export type ListIntContractStorageStateByBlockResponse = { + /** + * The list of int_contract_storage_state_by_block. + */ + int_contract_storage_state_by_block?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_state records + */ +export type ListIntContractStorageStateResponse = { + /** + * The list of int_contract_storage_state. + */ + int_contract_storage_state?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_state_with_expiry_by_address records + */ +export type ListIntContractStorageStateWithExpiryByAddressResponse = { + /** + * The list of int_contract_storage_state_with_expiry_by_address. + */ + int_contract_storage_state_with_expiry_by_address?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_state_with_expiry_by_block records + */ +export type ListIntContractStorageStateWithExpiryByBlockResponse = { + /** + * The list of int_contract_storage_state_with_expiry_by_block. + */ + int_contract_storage_state_with_expiry_by_block?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_contract_storage_state_with_expiry records + */ +export type ListIntContractStorageStateWithExpiryResponse = { + /** + * The list of int_contract_storage_state_with_expiry. + */ + int_contract_storage_state_with_expiry?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_custody_probe_order_by_slot records + */ +export type ListIntCustodyProbeOrderBySlotResponse = { + /** + * The list of int_custody_probe_order_by_slot. + */ + int_custody_probe_order_by_slot?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_custody_probe records + */ +export type ListIntCustodyProbeResponse = { + /** + * The list of int_custody_probe. + */ + int_custody_probe?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_engine_get_blobs records + */ +export type ListIntEngineGetBlobsResponse = { + /** + * The list of int_engine_get_blobs. + */ + int_engine_get_blobs?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_engine_new_payload_fastest_execution_by_node_class records + */ +export type ListIntEngineNewPayloadFastestExecutionByNodeClassResponse = { + /** + * The list of int_engine_new_payload_fastest_execution_by_node_class. + */ + int_engine_new_payload_fastest_execution_by_node_class?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_engine_new_payload records + */ +export type ListIntEngineNewPayloadResponse = { + /** + * The list of int_engine_new_payload. + */ + int_engine_new_payload?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_execution_block_by_date records + */ +export type ListIntExecutionBlockByDateResponse = { + /** + * The list of int_execution_block_by_date. + */ + int_execution_block_by_date?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_execution_state_size_by_block records + */ +export type ListIntExecutionStateSizeByBlockResponse = { + /** + * The list of int_execution_state_size_by_block. + */ + int_execution_state_size_by_block?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_rocketpool_megapool records + */ +export type ListIntRocketpoolMegapoolResponse = { + /** + * The list of int_rocketpool_megapool. + */ + int_rocketpool_megapool?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_rocketpool_minipool records + */ +export type ListIntRocketpoolMinipoolResponse = { + /** + * The list of int_rocketpool_minipool. + */ + int_rocketpool_minipool?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_rocketpool_node_event records + */ +export type ListIntRocketpoolNodeEventResponse = { + /** + * The list of int_rocketpool_node_event. + */ + int_rocketpool_node_event?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_rocketpool_node_timezone records + */ +export type ListIntRocketpoolNodeTimezoneResponse = { + /** + * The list of int_rocketpool_node_timezone. + */ + int_rocketpool_node_timezone?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_selfdestruct_diffs records + */ +export type ListIntStorageSelfdestructDiffsResponse = { + /** + * The list of int_storage_selfdestruct_diffs. + */ + int_storage_selfdestruct_diffs?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_diff_by_address_slot records + */ +export type ListIntStorageSlotDiffByAddressSlotResponse = { + /** + * The list of int_storage_slot_diff_by_address_slot. + */ + int_storage_slot_diff_by_address_slot?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_diff records + */ +export type ListIntStorageSlotDiffResponse = { + /** + * The list of int_storage_slot_diff. + */ + int_storage_slot_diff?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_expiry_1m records + */ +export type ListIntStorageSlotExpiry1mResponse = { + /** + * The list of int_storage_slot_expiry_1m. + */ + int_storage_slot_expiry_1m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_expiry_6m records + */ +export type ListIntStorageSlotExpiry6mResponse = { + /** + * The list of int_storage_slot_expiry_6m. + */ + int_storage_slot_expiry_6m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_expiry_12m records + */ +export type ListIntStorageSlotExpiry12mResponse = { + /** + * The list of int_storage_slot_expiry_12m. + */ + int_storage_slot_expiry_12m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_expiry_18m records + */ +export type ListIntStorageSlotExpiry18mResponse = { + /** + * The list of int_storage_slot_expiry_18m. + */ + int_storage_slot_expiry_18m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_expiry_24m records + */ +export type ListIntStorageSlotExpiry24mResponse = { + /** + * The list of int_storage_slot_expiry_24m. + */ + int_storage_slot_expiry_24m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_lifecycle_boundary records + */ +export type ListIntStorageSlotLifecycleBoundaryResponse = { + /** + * The list of int_storage_slot_lifecycle_boundary. + */ + int_storage_slot_lifecycle_boundary?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_lifecycle records + */ +export type ListIntStorageSlotLifecycleResponse = { + /** + * The list of int_storage_slot_lifecycle. + */ + int_storage_slot_lifecycle?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_next_touch records + */ +export type ListIntStorageSlotNextTouchResponse = { + /** + * The list of int_storage_slot_next_touch. + */ + int_storage_slot_next_touch?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_reactivation_1m records + */ +export type ListIntStorageSlotReactivation1mResponse = { + /** + * The list of int_storage_slot_reactivation_1m. + */ + int_storage_slot_reactivation_1m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_reactivation_6m records + */ +export type ListIntStorageSlotReactivation6mResponse = { + /** + * The list of int_storage_slot_reactivation_6m. + */ + int_storage_slot_reactivation_6m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_reactivation_12m records + */ +export type ListIntStorageSlotReactivation12mResponse = { + /** + * The list of int_storage_slot_reactivation_12m. + */ + int_storage_slot_reactivation_12m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_reactivation_18m records + */ +export type ListIntStorageSlotReactivation18mResponse = { + /** + * The list of int_storage_slot_reactivation_18m. + */ + int_storage_slot_reactivation_18m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_reactivation_24m records + */ +export type ListIntStorageSlotReactivation24mResponse = { + /** + * The list of int_storage_slot_reactivation_24m. + */ + int_storage_slot_reactivation_24m?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_read records + */ +export type ListIntStorageSlotReadResponse = { + /** + * The list of int_storage_slot_read. + */ + int_storage_slot_read?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_state_by_address records + */ +export type ListIntStorageSlotStateByAddressResponse = { + /** + * The list of int_storage_slot_state_by_address. + */ + int_storage_slot_state_by_address?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_state_by_block records + */ +export type ListIntStorageSlotStateByBlockResponse = { + /** + * The list of int_storage_slot_state_by_block. + */ + int_storage_slot_state_by_block?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_state records + */ +export type ListIntStorageSlotStateResponse = { + /** + * The list of int_storage_slot_state. + */ + int_storage_slot_state?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_state_with_expiry_by_address records + */ +export type ListIntStorageSlotStateWithExpiryByAddressResponse = { + /** + * The list of int_storage_slot_state_with_expiry_by_address. + */ + int_storage_slot_state_with_expiry_by_address?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_state_with_expiry_by_block records + */ +export type ListIntStorageSlotStateWithExpiryByBlockResponse = { + /** + * The list of int_storage_slot_state_with_expiry_by_block. + */ + int_storage_slot_state_with_expiry_by_block?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_storage_slot_state_with_expiry records + */ +export type ListIntStorageSlotStateWithExpiryResponse = { + /** + * The list of int_storage_slot_state_with_expiry. + */ + int_storage_slot_state_with_expiry?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_token_contract_storage_state_by_block records + */ +export type ListIntTokenContractStorageStateByBlockResponse = { + /** + * The list of int_token_contract_storage_state_by_block. + */ + int_token_contract_storage_state_by_block?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_transaction_call_frame_opcode_gas records + */ +export type ListIntTransactionCallFrameOpcodeGasResponse = { + /** + * The list of int_transaction_call_frame_opcode_gas. + */ + int_transaction_call_frame_opcode_gas?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_transaction_call_frame_opcode_resource_gas records + */ +export type ListIntTransactionCallFrameOpcodeResourceGasResponse = { + /** + * The list of int_transaction_call_frame_opcode_resource_gas. + */ + int_transaction_call_frame_opcode_resource_gas?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_transaction_call_frame records + */ +export type ListIntTransactionCallFrameResponse = { + /** + * The list of int_transaction_call_frame. + */ + int_transaction_call_frame?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_transaction_opcode_gas records + */ +export type ListIntTransactionOpcodeGasResponse = { + /** + * The list of int_transaction_opcode_gas. + */ + int_transaction_opcode_gas?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_transaction_receipt_size records + */ +export type ListIntTransactionReceiptSizeResponse = { + /** + * The list of int_transaction_receipt_size. + */ + int_transaction_receipt_size?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * Response for listing int_transaction_resource_gas records + */ +export type ListIntTransactionResourceGasResponse = { + /** + * The list of int_transaction_resource_gas. + */ + int_transaction_resource_gas?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + +/** + * The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). + */ +export type Status = { + /** + * The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code]. + */ + code?: number; + /** + * A list of messages that carry the error details. There is a common set of message types for APIs to use. + */ + details?: Array; + /** + * A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client. + */ + message?: string; +}; + +export type AdminCbtIncrementalServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The database name (filter: eq) + */ + database_eq?: string; + /** + * The database name (filter: ne) + */ + database_ne?: string; + /** + * The database name (filter: contains) + */ + database_contains?: string; + /** + * The database name (filter: starts_with) + */ + database_starts_with?: string; + /** + * The database name (filter: ends_with) + */ + database_ends_with?: string; + /** + * The database name (filter: like) + */ + database_like?: string; + /** + * The database name (filter: not_like) + */ + database_not_like?: string; + /** + * The database name (filter: in_values) (comma-separated list) + */ + database_in_values?: string; + /** + * The database name (filter: not_in_values) (comma-separated list) + */ + database_not_in_values?: string; + /** + * The starting position of the processed interval (filter: eq) + */ + position_eq?: number; + /** + * The starting position of the processed interval (filter: ne) + */ + position_ne?: number; + /** + * The starting position of the processed interval (filter: lt) + */ + position_lt?: number; + /** + * The starting position of the processed interval (filter: lte) + */ + position_lte?: number; + /** + * The starting position of the processed interval (filter: gt) + */ + position_gt?: number; + /** + * The starting position of the processed interval (filter: gte) + */ + position_gte?: number; + /** + * The starting position of the processed interval (filter: between_min) + */ + position_between_min?: number; + /** + * The starting position of the processed interval (filter: between_max_value) + */ + position_between_max_value?: number; + /** + * The starting position of the processed interval (filter: in_values) (comma-separated list) + */ + position_in_values?: string; + /** + * The starting position of the processed interval (filter: not_in_values) (comma-separated list) + */ + position_not_in_values?: string; + /** + * The size of the interval processed (filter: eq) + */ + interval_eq?: number; + /** + * The size of the interval processed (filter: ne) + */ + interval_ne?: number; + /** + * The size of the interval processed (filter: lt) + */ + interval_lt?: number; + /** + * The size of the interval processed (filter: lte) + */ + interval_lte?: number; + /** + * The size of the interval processed (filter: gt) + */ + interval_gt?: number; + /** + * The size of the interval processed (filter: gte) + */ + interval_gte?: number; + /** + * The size of the interval processed (filter: between_min) + */ + interval_between_min?: number; + /** + * The size of the interval processed (filter: between_max_value) + */ + interval_between_max_value?: number; + /** + * The size of the interval processed (filter: in_values) (comma-separated list) + */ + interval_in_values?: string; + /** + * The size of the interval processed (filter: not_in_values) (comma-separated list) + */ + interval_not_in_values?: string; + /** + * updated_date_time (filter: eq) + */ + updated_date_time_eq?: number; + /** + * updated_date_time (filter: ne) + */ + updated_date_time_ne?: number; + /** + * updated_date_time (filter: lt) + */ + updated_date_time_lt?: number; + /** + * updated_date_time (filter: lte) + */ + updated_date_time_lte?: number; + /** + * updated_date_time (filter: gt) + */ + updated_date_time_gt?: number; + /** + * updated_date_time (filter: gte) + */ + updated_date_time_gte?: number; + /** + * updated_date_time (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * updated_date_time (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * updated_date_time (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * updated_date_time (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The table name (filter: eq) + */ + table_eq?: string; + /** + * The table name (filter: ne) + */ + table_ne?: string; + /** + * The table name (filter: contains) + */ + table_contains?: string; + /** + * The table name (filter: starts_with) + */ + table_starts_with?: string; + /** + * The table name (filter: ends_with) + */ + table_ends_with?: string; + /** + * The table name (filter: like) + */ + table_like?: string; + /** + * The table name (filter: not_like) + */ + table_not_like?: string; + /** + * The table name (filter: in_values) (comma-separated list) + */ + table_in_values?: string; + /** + * The table name (filter: not_in_values) (comma-separated list) + */ + table_not_in_values?: string; + /** + * The maximum number of admin_cbt_incremental to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListAdminCbtIncremental` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/admin_cbt_incremental'; +}; + +export type AdminCbtIncrementalServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type AdminCbtIncrementalServiceListError = + AdminCbtIncrementalServiceListErrors[keyof AdminCbtIncrementalServiceListErrors]; + +export type AdminCbtIncrementalServiceListResponses = { + /** + * OK + */ + 200: ListAdminCbtIncrementalResponse; +}; + +export type AdminCbtIncrementalServiceListResponse = + AdminCbtIncrementalServiceListResponses[keyof AdminCbtIncrementalServiceListResponses]; + +export type AdminCbtIncrementalServiceGetData = { + body?: never; + path: { + /** + * The database name + */ + database: string; + }; + query?: never; + url: '/api/v1/admin_cbt_incremental/{database}'; +}; + +export type AdminCbtIncrementalServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type AdminCbtIncrementalServiceGetError = + AdminCbtIncrementalServiceGetErrors[keyof AdminCbtIncrementalServiceGetErrors]; + +export type AdminCbtIncrementalServiceGetResponses = { + /** + * OK + */ + 200: GetAdminCbtIncrementalResponse; +}; + +export type AdminCbtIncrementalServiceGetResponse = + AdminCbtIncrementalServiceGetResponses[keyof AdminCbtIncrementalServiceGetResponses]; + +export type AdminCbtScheduledServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The database name (filter: eq) + */ + database_eq?: string; + /** + * The database name (filter: ne) + */ + database_ne?: string; + /** + * The database name (filter: contains) + */ + database_contains?: string; + /** + * The database name (filter: starts_with) + */ + database_starts_with?: string; + /** + * The database name (filter: ends_with) + */ + database_ends_with?: string; + /** + * The database name (filter: like) + */ + database_like?: string; + /** + * The database name (filter: not_like) + */ + database_not_like?: string; + /** + * The database name (filter: in_values) (comma-separated list) + */ + database_in_values?: string; + /** + * The database name (filter: not_in_values) (comma-separated list) + */ + database_not_in_values?: string; + /** + * updated_date_time (filter: eq) + */ + updated_date_time_eq?: number; + /** + * updated_date_time (filter: ne) + */ + updated_date_time_ne?: number; + /** + * updated_date_time (filter: lt) + */ + updated_date_time_lt?: number; + /** + * updated_date_time (filter: lte) + */ + updated_date_time_lte?: number; + /** + * updated_date_time (filter: gt) + */ + updated_date_time_gt?: number; + /** + * updated_date_time (filter: gte) + */ + updated_date_time_gte?: number; + /** + * updated_date_time (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * updated_date_time (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * updated_date_time (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * updated_date_time (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The table name (filter: eq) + */ + table_eq?: string; + /** + * The table name (filter: ne) + */ + table_ne?: string; + /** + * The table name (filter: contains) + */ + table_contains?: string; + /** + * The table name (filter: starts_with) + */ + table_starts_with?: string; + /** + * The table name (filter: ends_with) + */ + table_ends_with?: string; + /** + * The table name (filter: like) + */ + table_like?: string; + /** + * The table name (filter: not_like) + */ + table_not_like?: string; + /** + * The table name (filter: in_values) (comma-separated list) + */ + table_in_values?: string; + /** + * The table name (filter: not_in_values) (comma-separated list) + */ + table_not_in_values?: string; + /** + * The start time of the scheduled job (filter: eq) + */ + start_date_time_eq?: number; + /** + * The start time of the scheduled job (filter: ne) + */ + start_date_time_ne?: number; + /** + * The start time of the scheduled job (filter: lt) + */ + start_date_time_lt?: number; + /** + * The start time of the scheduled job (filter: lte) + */ + start_date_time_lte?: number; + /** + * The start time of the scheduled job (filter: gt) + */ + start_date_time_gt?: number; + /** + * The start time of the scheduled job (filter: gte) + */ + start_date_time_gte?: number; + /** + * The start time of the scheduled job (filter: between_min) + */ + start_date_time_between_min?: number; + /** + * The start time of the scheduled job (filter: between_max_value) + */ + start_date_time_between_max_value?: number; + /** + * The start time of the scheduled job (filter: in_values) (comma-separated list) + */ + start_date_time_in_values?: string; + /** + * The start time of the scheduled job (filter: not_in_values) (comma-separated list) + */ + start_date_time_not_in_values?: string; + /** + * The maximum number of admin_cbt_scheduled to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListAdminCbtScheduled` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/admin_cbt_scheduled'; +}; + +export type AdminCbtScheduledServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type AdminCbtScheduledServiceListError = + AdminCbtScheduledServiceListErrors[keyof AdminCbtScheduledServiceListErrors]; + +export type AdminCbtScheduledServiceListResponses = { + /** + * OK + */ + 200: ListAdminCbtScheduledResponse; +}; + +export type AdminCbtScheduledServiceListResponse = + AdminCbtScheduledServiceListResponses[keyof AdminCbtScheduledServiceListResponses]; + +export type AdminCbtScheduledServiceGetData = { + body?: never; + path: { + /** + * The database name + */ + database: string; + }; + query?: never; + url: '/api/v1/admin_cbt_scheduled/{database}'; +}; + +export type AdminCbtScheduledServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type AdminCbtScheduledServiceGetError = + AdminCbtScheduledServiceGetErrors[keyof AdminCbtScheduledServiceGetErrors]; + +export type AdminCbtScheduledServiceGetResponses = { + /** + * OK + */ + 200: GetAdminCbtScheduledResponse; +}; + +export type AdminCbtScheduledServiceGetResponse = + AdminCbtScheduledServiceGetResponses[keyof AdminCbtScheduledServiceGetResponses]; + +export type DimBlockBlobSubmitterServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The transaction index (filter: eq) + */ + transaction_index_eq?: number; + /** + * The transaction index (filter: ne) + */ + transaction_index_ne?: number; + /** + * The transaction index (filter: lt) + */ + transaction_index_lt?: number; + /** + * The transaction index (filter: lte) + */ + transaction_index_lte?: number; + /** + * The transaction index (filter: gt) + */ + transaction_index_gt?: number; + /** + * The transaction index (filter: gte) + */ + transaction_index_gte?: number; + /** + * The transaction index (filter: between_min) + */ + transaction_index_between_min?: number; + /** + * The transaction index (filter: between_max_value) + */ + transaction_index_between_max_value?: number; + /** + * The transaction index (filter: in_values) (comma-separated list) + */ + transaction_index_in_values?: string; + /** + * The transaction index (filter: not_in_values) (comma-separated list) + */ + transaction_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The transaction hash (filter: eq) + */ + transaction_hash_eq?: string; + /** + * The transaction hash (filter: ne) + */ + transaction_hash_ne?: string; + /** + * The transaction hash (filter: contains) + */ + transaction_hash_contains?: string; + /** + * The transaction hash (filter: starts_with) + */ + transaction_hash_starts_with?: string; + /** + * The transaction hash (filter: ends_with) + */ + transaction_hash_ends_with?: string; + /** + * The transaction hash (filter: like) + */ + transaction_hash_like?: string; + /** + * The transaction hash (filter: not_like) + */ + transaction_hash_not_like?: string; + /** + * The transaction hash (filter: in_values) (comma-separated list) + */ + transaction_hash_in_values?: string; + /** + * The transaction hash (filter: not_in_values) (comma-separated list) + */ + transaction_hash_not_in_values?: string; + /** + * The blob submitter address (filter: eq) + */ + address_eq?: string; + /** + * The blob submitter address (filter: ne) + */ + address_ne?: string; + /** + * The blob submitter address (filter: contains) + */ + address_contains?: string; + /** + * The blob submitter address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The blob submitter address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The blob submitter address (filter: like) + */ + address_like?: string; + /** + * The blob submitter address (filter: not_like) + */ + address_not_like?: string; + /** + * The blob submitter address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The blob submitter address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The versioned hashes of the blob submitter (filter: has) + */ + versioned_hashes_has?: string; + /** + * The versioned hashes of the blob submitter (filter: has_all_values) + */ + versioned_hashes_has_all_values?: Array; + /** + * The versioned hashes of the blob submitter (filter: has_any_values) + */ + versioned_hashes_has_any_values?: Array; + /** + * The versioned hashes of the blob submitter (filter: length_eq) + */ + versioned_hashes_length_eq?: number; + /** + * The versioned hashes of the blob submitter (filter: length_gt) + */ + versioned_hashes_length_gt?: number; + /** + * The versioned hashes of the blob submitter (filter: length_gte) + */ + versioned_hashes_length_gte?: number; + /** + * The versioned hashes of the blob submitter (filter: length_lt) + */ + versioned_hashes_length_lt?: number; + /** + * The versioned hashes of the blob submitter (filter: length_lte) + */ + versioned_hashes_length_lte?: number; + /** + * The name of the blob submitter (filter: eq) + */ + name_eq?: string; + /** + * The name of the blob submitter (filter: ne) + */ + name_ne?: string; + /** + * The name of the blob submitter (filter: contains) + */ + name_contains?: string; + /** + * The name of the blob submitter (filter: starts_with) + */ + name_starts_with?: string; + /** + * The name of the blob submitter (filter: ends_with) + */ + name_ends_with?: string; + /** + * The name of the blob submitter (filter: like) + */ + name_like?: string; + /** + * The name of the blob submitter (filter: not_like) + */ + name_not_like?: string; + /** + * The name of the blob submitter (filter: in_values) (comma-separated list) + */ + name_in_values?: string; + /** + * The name of the blob submitter (filter: not_in_values) (comma-separated list) + */ + name_not_in_values?: string; + /** + * The maximum number of dim_block_blob_submitter to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListDimBlockBlobSubmitter` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/dim_block_blob_submitter'; +}; + +export type DimBlockBlobSubmitterServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimBlockBlobSubmitterServiceListError = + DimBlockBlobSubmitterServiceListErrors[keyof DimBlockBlobSubmitterServiceListErrors]; + +export type DimBlockBlobSubmitterServiceListResponses = { + /** + * OK + */ + 200: ListDimBlockBlobSubmitterResponse; +}; + +export type DimBlockBlobSubmitterServiceListResponse = + DimBlockBlobSubmitterServiceListResponses[keyof DimBlockBlobSubmitterServiceListResponses]; + +export type DimBlockBlobSubmitterServiceGetData = { + body?: never; + path: { + /** + * The block number + */ + block_number: number; + }; + query?: never; + url: '/api/v1/dim_block_blob_submitter/{block_number}'; +}; + +export type DimBlockBlobSubmitterServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimBlockBlobSubmitterServiceGetError = + DimBlockBlobSubmitterServiceGetErrors[keyof DimBlockBlobSubmitterServiceGetErrors]; + +export type DimBlockBlobSubmitterServiceGetResponses = { + /** + * OK + */ + 200: GetDimBlockBlobSubmitterResponse; +}; + +export type DimBlockBlobSubmitterServiceGetResponse = + DimBlockBlobSubmitterServiceGetResponses[keyof DimBlockBlobSubmitterServiceGetResponses]; + +export type DimContractOwnerServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The contract address (filter: eq) + */ + contract_address_eq?: string; + /** + * The contract address (filter: ne) + */ + contract_address_ne?: string; + /** + * The contract address (filter: contains) + */ + contract_address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + contract_address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + contract_address_ends_with?: string; + /** + * The contract address (filter: like) + */ + contract_address_like?: string; + /** + * The contract address (filter: not_like) + */ + contract_address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + contract_address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + contract_address_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Owner key identifier (filter: eq) + */ + owner_key_eq?: string; + /** + * Owner key identifier (filter: ne) + */ + owner_key_ne?: string; + /** + * Owner key identifier (filter: contains) + */ + owner_key_contains?: string; + /** + * Owner key identifier (filter: starts_with) + */ + owner_key_starts_with?: string; + /** + * Owner key identifier (filter: ends_with) + */ + owner_key_ends_with?: string; + /** + * Owner key identifier (filter: like) + */ + owner_key_like?: string; + /** + * Owner key identifier (filter: not_like) + */ + owner_key_not_like?: string; + /** + * Owner key identifier (filter: in_values) (comma-separated list) + */ + owner_key_in_values?: string; + /** + * Owner key identifier (filter: not_in_values) (comma-separated list) + */ + owner_key_not_in_values?: string; + /** + * Account owner of the contract (filter: eq) + */ + account_owner_eq?: string; + /** + * Account owner of the contract (filter: ne) + */ + account_owner_ne?: string; + /** + * Account owner of the contract (filter: contains) + */ + account_owner_contains?: string; + /** + * Account owner of the contract (filter: starts_with) + */ + account_owner_starts_with?: string; + /** + * Account owner of the contract (filter: ends_with) + */ + account_owner_ends_with?: string; + /** + * Account owner of the contract (filter: like) + */ + account_owner_like?: string; + /** + * Account owner of the contract (filter: not_like) + */ + account_owner_not_like?: string; + /** + * Account owner of the contract (filter: in_values) (comma-separated list) + */ + account_owner_in_values?: string; + /** + * Account owner of the contract (filter: not_in_values) (comma-separated list) + */ + account_owner_not_in_values?: string; + /** + * Name of the contract (filter: eq) + */ + contract_name_eq?: string; + /** + * Name of the contract (filter: ne) + */ + contract_name_ne?: string; + /** + * Name of the contract (filter: contains) + */ + contract_name_contains?: string; + /** + * Name of the contract (filter: starts_with) + */ + contract_name_starts_with?: string; + /** + * Name of the contract (filter: ends_with) + */ + contract_name_ends_with?: string; + /** + * Name of the contract (filter: like) + */ + contract_name_like?: string; + /** + * Name of the contract (filter: not_like) + */ + contract_name_not_like?: string; + /** + * Name of the contract (filter: in_values) (comma-separated list) + */ + contract_name_in_values?: string; + /** + * Name of the contract (filter: not_in_values) (comma-separated list) + */ + contract_name_not_in_values?: string; + /** + * Factory contract or deployer address (filter: eq) + */ + factory_contract_eq?: string; + /** + * Factory contract or deployer address (filter: ne) + */ + factory_contract_ne?: string; + /** + * Factory contract or deployer address (filter: contains) + */ + factory_contract_contains?: string; + /** + * Factory contract or deployer address (filter: starts_with) + */ + factory_contract_starts_with?: string; + /** + * Factory contract or deployer address (filter: ends_with) + */ + factory_contract_ends_with?: string; + /** + * Factory contract or deployer address (filter: like) + */ + factory_contract_like?: string; + /** + * Factory contract or deployer address (filter: not_like) + */ + factory_contract_not_like?: string; + /** + * Factory contract or deployer address (filter: in_values) (comma-separated list) + */ + factory_contract_in_values?: string; + /** + * Factory contract or deployer address (filter: not_in_values) (comma-separated list) + */ + factory_contract_not_in_values?: string; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: has) + */ + labels_has?: string; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: has_all_values) + */ + labels_has_all_values?: Array; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: has_any_values) + */ + labels_has_any_values?: Array; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_eq) + */ + labels_length_eq?: number; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_gt) + */ + labels_length_gt?: number; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_gte) + */ + labels_length_gte?: number; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_lt) + */ + labels_length_lt?: number; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_lte) + */ + labels_length_lte?: number; + /** + * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: has) + */ + sources_has?: string; + /** + * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: has_all_values) + */ + sources_has_all_values?: Array; + /** + * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: has_any_values) + */ + sources_has_any_values?: Array; + /** + * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: length_eq) + */ + sources_length_eq?: number; + /** + * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: length_gt) + */ + sources_length_gt?: number; + /** + * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: length_gte) + */ + sources_length_gte?: number; + /** + * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: length_lt) + */ + sources_length_lt?: number; + /** + * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: length_lte) + */ + sources_length_lte?: number; + /** + * The maximum number of dim_contract_owner to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListDimContractOwner` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/dim_contract_owner'; +}; + +export type DimContractOwnerServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimContractOwnerServiceListError = + DimContractOwnerServiceListErrors[keyof DimContractOwnerServiceListErrors]; + +export type DimContractOwnerServiceListResponses = { + /** + * OK + */ + 200: ListDimContractOwnerResponse; +}; + +export type DimContractOwnerServiceListResponse = + DimContractOwnerServiceListResponses[keyof DimContractOwnerServiceListResponses]; + +export type DimContractOwnerServiceGetData = { + body?: never; + path: { + /** + * The contract address + */ + contract_address: string; + }; + query?: never; + url: '/api/v1/dim_contract_owner/{contract_address}'; +}; + +export type DimContractOwnerServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimContractOwnerServiceGetError = DimContractOwnerServiceGetErrors[keyof DimContractOwnerServiceGetErrors]; + +export type DimContractOwnerServiceGetResponses = { + /** + * OK + */ + 200: GetDimContractOwnerResponse; +}; + +export type DimContractOwnerServiceGetResponse = + DimContractOwnerServiceGetResponses[keyof DimContractOwnerServiceGetResponses]; + +export type DimFunctionSignatureServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: eq) + */ + selector_eq?: string; + /** + * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: ne) + */ + selector_ne?: string; + /** + * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: contains) + */ + selector_contains?: string; + /** + * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: starts_with) + */ + selector_starts_with?: string; + /** + * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: ends_with) + */ + selector_ends_with?: string; + /** + * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: like) + */ + selector_like?: string; + /** + * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: not_like) + */ + selector_not_like?: string; + /** + * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + selector_in_values?: string; + /** + * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + selector_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Function signature name (e.g., transfer(address,uint256)) (filter: eq) + */ + name_eq?: string; + /** + * Function signature name (e.g., transfer(address,uint256)) (filter: ne) + */ + name_ne?: string; + /** + * Function signature name (e.g., transfer(address,uint256)) (filter: contains) + */ + name_contains?: string; + /** + * Function signature name (e.g., transfer(address,uint256)) (filter: starts_with) + */ + name_starts_with?: string; + /** + * Function signature name (e.g., transfer(address,uint256)) (filter: ends_with) + */ + name_ends_with?: string; + /** + * Function signature name (e.g., transfer(address,uint256)) (filter: like) + */ + name_like?: string; + /** + * Function signature name (e.g., transfer(address,uint256)) (filter: not_like) + */ + name_not_like?: string; + /** + * Function signature name (e.g., transfer(address,uint256)) (filter: in_values) (comma-separated list) + */ + name_in_values?: string; + /** + * Function signature name (e.g., transfer(address,uint256)) (filter: not_in_values) (comma-separated list) + */ + name_not_in_values?: string; + /** + * Whether this signature comes from a verified contract source (filter: eq) + */ + has_verified_contract_eq?: boolean; + /** + * Whether this signature comes from a verified contract source (filter: ne) + */ + has_verified_contract_ne?: boolean; + /** + * The maximum number of dim_function_signature to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListDimFunctionSignature` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/dim_function_signature'; +}; + +export type DimFunctionSignatureServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimFunctionSignatureServiceListError = + DimFunctionSignatureServiceListErrors[keyof DimFunctionSignatureServiceListErrors]; + +export type DimFunctionSignatureServiceListResponses = { + /** + * OK + */ + 200: ListDimFunctionSignatureResponse; +}; + +export type DimFunctionSignatureServiceListResponse = + DimFunctionSignatureServiceListResponses[keyof DimFunctionSignatureServiceListResponses]; + +export type DimFunctionSignatureServiceGetData = { + body?: never; + path: { + /** + * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) + */ + selector: string; + }; + query?: never; + url: '/api/v1/dim_function_signature/{selector}'; +}; + +export type DimFunctionSignatureServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimFunctionSignatureServiceGetError = + DimFunctionSignatureServiceGetErrors[keyof DimFunctionSignatureServiceGetErrors]; + +export type DimFunctionSignatureServiceGetResponses = { + /** + * OK + */ + 200: GetDimFunctionSignatureResponse; +}; + +export type DimFunctionSignatureServiceGetResponse = + DimFunctionSignatureServiceGetResponses[keyof DimFunctionSignatureServiceGetResponses]; + +export type DimNodeServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The index of the validator (filter: eq) + */ + validator_index_eq?: number; + /** + * The index of the validator (filter: ne) + */ + validator_index_ne?: number; + /** + * The index of the validator (filter: lt) + */ + validator_index_lt?: number; + /** + * The index of the validator (filter: lte) + */ + validator_index_lte?: number; + /** + * The index of the validator (filter: gt) + */ + validator_index_gt?: number; + /** + * The index of the validator (filter: gte) + */ + validator_index_gte?: number; + /** + * The index of the validator (filter: between_min) + */ + validator_index_between_min?: number; + /** + * The index of the validator (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * The index of the validator (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * The index of the validator (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The name of the node (filter: eq) + */ + name_eq?: string; + /** + * The name of the node (filter: ne) + */ + name_ne?: string; + /** + * The name of the node (filter: contains) + */ + name_contains?: string; + /** + * The name of the node (filter: starts_with) + */ + name_starts_with?: string; + /** + * The name of the node (filter: ends_with) + */ + name_ends_with?: string; + /** + * The name of the node (filter: like) + */ + name_like?: string; + /** + * The name of the node (filter: not_like) + */ + name_not_like?: string; + /** + * The name of the node (filter: in_values) (comma-separated list) + */ + name_in_values?: string; + /** + * The name of the node (filter: not_in_values) (comma-separated list) + */ + name_not_in_values?: string; + /** + * Groups the node belongs to (filter: has) + */ + groups_has?: string; + /** + * Groups the node belongs to (filter: has_all_values) + */ + groups_has_all_values?: Array; + /** + * Groups the node belongs to (filter: has_any_values) + */ + groups_has_any_values?: Array; + /** + * Groups the node belongs to (filter: length_eq) + */ + groups_length_eq?: number; + /** + * Groups the node belongs to (filter: length_gt) + */ + groups_length_gt?: number; + /** + * Groups the node belongs to (filter: length_gte) + */ + groups_length_gte?: number; + /** + * Groups the node belongs to (filter: length_lt) + */ + groups_length_lt?: number; + /** + * Groups the node belongs to (filter: length_lte) + */ + groups_length_lte?: number; + /** + * Tags associated with the node (filter: has) + */ + tags_has?: string; + /** + * Tags associated with the node (filter: has_all_values) + */ + tags_has_all_values?: Array; + /** + * Tags associated with the node (filter: has_any_values) + */ + tags_has_any_values?: Array; + /** + * Tags associated with the node (filter: length_eq) + */ + tags_length_eq?: number; + /** + * Tags associated with the node (filter: length_gt) + */ + tags_length_gt?: number; + /** + * Tags associated with the node (filter: length_gte) + */ + tags_length_gte?: number; + /** + * Tags associated with the node (filter: length_lt) + */ + tags_length_lt?: number; + /** + * Tags associated with the node (filter: length_lte) + */ + tags_length_lte?: number; + /** + * Additional attributes of the node (filter: key_value_key) + */ + attributes_key_value_key?: string; + /** + * Additional attributes of the node (filter: key_value_value_filter_eq) + */ + attributes_key_value_value_filter_eq?: string; + /** + * Additional attributes of the node (filter: key_value_value_filter_ne) + */ + attributes_key_value_value_filter_ne?: string; + /** + * Additional attributes of the node (filter: key_value_value_filter_contains) + */ + attributes_key_value_value_filter_contains?: string; + /** + * Additional attributes of the node (filter: key_value_value_filter_starts_with) + */ + attributes_key_value_value_filter_starts_with?: string; + /** + * Additional attributes of the node (filter: key_value_value_filter_ends_with) + */ + attributes_key_value_value_filter_ends_with?: string; + /** + * Additional attributes of the node (filter: key_value_value_filter_like) + */ + attributes_key_value_value_filter_like?: string; + /** + * Additional attributes of the node (filter: key_value_value_filter_not_like) + */ + attributes_key_value_value_filter_not_like?: string; + /** + * Additional attributes of the node (filter: key_value_value_filter_in_values) (comma-separated list) + */ + attributes_key_value_value_filter_in_values?: string; + /** + * Additional attributes of the node (filter: key_value_value_filter_not_in_values) (comma-separated list) + */ + attributes_key_value_value_filter_not_in_values?: string; + /** + * Additional attributes of the node (filter: has_key) + */ + attributes_has_key?: string; + /** + * Additional attributes of the node (filter: not_has_key) + */ + attributes_not_has_key?: string; + /** + * The source entity of the node (filter: eq) + */ + source_eq?: string; + /** + * The source entity of the node (filter: ne) + */ + source_ne?: string; + /** + * The source entity of the node (filter: contains) + */ + source_contains?: string; + /** + * The source entity of the node (filter: starts_with) + */ + source_starts_with?: string; + /** + * The source entity of the node (filter: ends_with) + */ + source_ends_with?: string; + /** + * The source entity of the node (filter: like) + */ + source_like?: string; + /** + * The source entity of the node (filter: not_like) + */ + source_not_like?: string; + /** + * The source entity of the node (filter: in_values) (comma-separated list) + */ + source_in_values?: string; + /** + * The source entity of the node (filter: not_in_values) (comma-separated list) + */ + source_not_in_values?: string; + /** + * The maximum number of dim_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListDimNode` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/dim_node'; +}; + +export type DimNodeServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimNodeServiceListError = DimNodeServiceListErrors[keyof DimNodeServiceListErrors]; + +export type DimNodeServiceListResponses = { + /** + * OK + */ + 200: ListDimNodeResponse; +}; + +export type DimNodeServiceListResponse = DimNodeServiceListResponses[keyof DimNodeServiceListResponses]; + +export type DimNodeServiceGetData = { + body?: never; + path: { + /** + * The index of the validator + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/dim_node/{validator_index}'; +}; + +export type DimNodeServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimNodeServiceGetError = DimNodeServiceGetErrors[keyof DimNodeServiceGetErrors]; + +export type DimNodeServiceGetResponses = { + /** + * OK + */ + 200: GetDimNodeResponse; +}; + +export type DimNodeServiceGetResponse = DimNodeServiceGetResponses[keyof DimNodeServiceGetResponses]; + +export type DimRocketpoolNodeServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: eq) + */ + node_operator_eq?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ne) + */ + node_operator_ne?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: contains) + */ + node_operator_contains?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: starts_with) + */ + node_operator_starts_with?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ends_with) + */ + node_operator_ends_with?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: like) + */ + node_operator_like?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_like) + */ + node_operator_not_like?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: in_values) (comma-separated list) + */ + node_operator_in_values?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) + */ + node_operator_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: eq) + */ + timezone_eq?: string; + /** + * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: ne) + */ + timezone_ne?: string; + /** + * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: contains) + */ + timezone_contains?: string; + /** + * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: starts_with) + */ + timezone_starts_with?: string; + /** + * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: ends_with) + */ + timezone_ends_with?: string; + /** + * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: like) + */ + timezone_like?: string; + /** + * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: not_like) + */ + timezone_not_like?: string; + /** + * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: in_values) (comma-separated list) + */ + timezone_in_values?: string; + /** + * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: not_in_values) (comma-separated list) + */ + timezone_not_in_values?: string; + /** + * Wall clock time the node registered with Rocket Pool (filter: eq) + */ + registered_date_time_eq?: number; + /** + * Wall clock time the node registered with Rocket Pool (filter: ne) + */ + registered_date_time_ne?: number; + /** + * Wall clock time the node registered with Rocket Pool (filter: lt) + */ + registered_date_time_lt?: number; + /** + * Wall clock time the node registered with Rocket Pool (filter: lte) + */ + registered_date_time_lte?: number; + /** + * Wall clock time the node registered with Rocket Pool (filter: gt) + */ + registered_date_time_gt?: number; + /** + * Wall clock time the node registered with Rocket Pool (filter: gte) + */ + registered_date_time_gte?: number; + /** + * Wall clock time the node registered with Rocket Pool (filter: between_min) + */ + registered_date_time_between_min?: number; + /** + * Wall clock time the node registered with Rocket Pool (filter: between_max_value) + */ + registered_date_time_between_max_value?: number; + /** + * Wall clock time the node registered with Rocket Pool (filter: in_values) (comma-separated list) + */ + registered_date_time_in_values?: string; + /** + * Wall clock time the node registered with Rocket Pool (filter: not_in_values) (comma-separated list) + */ + registered_date_time_not_in_values?: string; + /** + * Total number of minipools ever created by this node operator (filter: eq) + */ + minipool_count_eq?: number; + /** + * Total number of minipools ever created by this node operator (filter: ne) + */ + minipool_count_ne?: number; + /** + * Total number of minipools ever created by this node operator (filter: lt) + */ + minipool_count_lt?: number; + /** + * Total number of minipools ever created by this node operator (filter: lte) + */ + minipool_count_lte?: number; + /** + * Total number of minipools ever created by this node operator (filter: gt) + */ + minipool_count_gt?: number; + /** + * Total number of minipools ever created by this node operator (filter: gte) + */ + minipool_count_gte?: number; + /** + * Total number of minipools ever created by this node operator (filter: between_min) + */ + minipool_count_between_min?: number; + /** + * Total number of minipools ever created by this node operator (filter: between_max_value) + */ + minipool_count_between_max_value?: number; + /** + * Total number of minipools ever created by this node operator (filter: in_values) (comma-separated list) + */ + minipool_count_in_values?: string; + /** + * Total number of minipools ever created by this node operator (filter: not_in_values) (comma-separated list) + */ + minipool_count_not_in_values?: string; + /** + * Number of minipools created minus destroyed for this node operator (filter: eq) + */ + active_minipool_count_eq?: number; + /** + * Number of minipools created minus destroyed for this node operator (filter: ne) + */ + active_minipool_count_ne?: number; + /** + * Number of minipools created minus destroyed for this node operator (filter: lt) + */ + active_minipool_count_lt?: number; + /** + * Number of minipools created minus destroyed for this node operator (filter: lte) + */ + active_minipool_count_lte?: number; + /** + * Number of minipools created minus destroyed for this node operator (filter: gt) + */ + active_minipool_count_gt?: number; + /** + * Number of minipools created minus destroyed for this node operator (filter: gte) + */ + active_minipool_count_gte?: number; + /** + * Number of minipools created minus destroyed for this node operator (filter: between_min) + */ + active_minipool_count_between_min?: number; + /** + * Number of minipools created minus destroyed for this node operator (filter: between_max_value) + */ + active_minipool_count_between_max_value?: number; + /** + * Number of minipools created minus destroyed for this node operator (filter: in_values) (comma-separated list) + */ + active_minipool_count_in_values?: string; + /** + * Number of minipools created minus destroyed for this node operator (filter: not_in_values) (comma-separated list) + */ + active_minipool_count_not_in_values?: string; + /** + * Number of Saturn megapool validators for this node operator (filter: eq) + */ + megapool_validator_count_eq?: number; + /** + * Number of Saturn megapool validators for this node operator (filter: ne) + */ + megapool_validator_count_ne?: number; + /** + * Number of Saturn megapool validators for this node operator (filter: lt) + */ + megapool_validator_count_lt?: number; + /** + * Number of Saturn megapool validators for this node operator (filter: lte) + */ + megapool_validator_count_lte?: number; + /** + * Number of Saturn megapool validators for this node operator (filter: gt) + */ + megapool_validator_count_gt?: number; + /** + * Number of Saturn megapool validators for this node operator (filter: gte) + */ + megapool_validator_count_gte?: number; + /** + * Number of Saturn megapool validators for this node operator (filter: between_min) + */ + megapool_validator_count_between_min?: number; + /** + * Number of Saturn megapool validators for this node operator (filter: between_max_value) + */ + megapool_validator_count_between_max_value?: number; + /** + * Number of Saturn megapool validators for this node operator (filter: in_values) (comma-separated list) + */ + megapool_validator_count_in_values?: string; + /** + * Number of Saturn megapool validators for this node operator (filter: not_in_values) (comma-separated list) + */ + megapool_validator_count_not_in_values?: string; + /** + * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: eq) + */ + validator_count_eq?: number; + /** + * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: ne) + */ + validator_count_ne?: number; + /** + * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: lt) + */ + validator_count_lt?: number; + /** + * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: lte) + */ + validator_count_lte?: number; + /** + * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: gt) + */ + validator_count_gt?: number; + /** + * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: gte) + */ + validator_count_gte?: number; + /** + * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: between_min) + */ + validator_count_between_min?: number; + /** + * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: between_max_value) + */ + validator_count_between_max_value?: number; + /** + * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: in_values) (comma-separated list) + */ + validator_count_in_values?: string; + /** + * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: not_in_values) (comma-separated list) + */ + validator_count_not_in_values?: string; + /** + * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: eq) + */ + rpl_staked_wei_eq?: string; + /** + * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: ne) + */ + rpl_staked_wei_ne?: string; + /** + * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: contains) + */ + rpl_staked_wei_contains?: string; + /** + * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: starts_with) + */ + rpl_staked_wei_starts_with?: string; + /** + * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: ends_with) + */ + rpl_staked_wei_ends_with?: string; + /** + * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: like) + */ + rpl_staked_wei_like?: string; + /** + * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: not_like) + */ + rpl_staked_wei_not_like?: string; + /** + * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: in_values) (comma-separated list) + */ + rpl_staked_wei_in_values?: string; + /** + * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: not_in_values) (comma-separated list) + */ + rpl_staked_wei_not_in_values?: string; + /** + * Whether the node operator is currently registered for the smoothing pool (filter: eq) + */ + in_smoothing_pool_eq?: boolean; + /** + * Whether the node operator is currently registered for the smoothing pool (filter: ne) + */ + in_smoothing_pool_ne?: boolean; + /** + * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: eq) + */ + first_seen_date_time_eq?: number; + /** + * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: ne) + */ + first_seen_date_time_ne?: number; + /** + * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: lt) + */ + first_seen_date_time_lt?: number; + /** + * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: lte) + */ + first_seen_date_time_lte?: number; + /** + * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: gt) + */ + first_seen_date_time_gt?: number; + /** + * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: gte) + */ + first_seen_date_time_gte?: number; + /** + * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: between_min) + */ + first_seen_date_time_between_min?: number; + /** + * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: between_max_value) + */ + first_seen_date_time_between_max_value?: number; + /** + * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: in_values) (comma-separated list) + */ + first_seen_date_time_in_values?: string; + /** + * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: not_in_values) (comma-separated list) + */ + first_seen_date_time_not_in_values?: string; + /** + * Wall clock time of the node operators latest observed minipool or megapool activity (filter: eq) + */ + last_activity_date_time_eq?: number; + /** + * Wall clock time of the node operators latest observed minipool or megapool activity (filter: ne) + */ + last_activity_date_time_ne?: number; + /** + * Wall clock time of the node operators latest observed minipool or megapool activity (filter: lt) + */ + last_activity_date_time_lt?: number; + /** + * Wall clock time of the node operators latest observed minipool or megapool activity (filter: lte) + */ + last_activity_date_time_lte?: number; + /** + * Wall clock time of the node operators latest observed minipool or megapool activity (filter: gt) + */ + last_activity_date_time_gt?: number; + /** + * Wall clock time of the node operators latest observed minipool or megapool activity (filter: gte) + */ + last_activity_date_time_gte?: number; + /** + * Wall clock time of the node operators latest observed minipool or megapool activity (filter: between_min) + */ + last_activity_date_time_between_min?: number; + /** + * Wall clock time of the node operators latest observed minipool or megapool activity (filter: between_max_value) + */ + last_activity_date_time_between_max_value?: number; + /** + * Wall clock time of the node operators latest observed minipool or megapool activity (filter: in_values) (comma-separated list) + */ + last_activity_date_time_in_values?: string; + /** + * Wall clock time of the node operators latest observed minipool or megapool activity (filter: not_in_values) (comma-separated list) + */ + last_activity_date_time_not_in_values?: string; + /** + * The maximum number of dim_rocketpool_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListDimRocketpoolNode` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/dim_rocketpool_node'; +}; + +export type DimRocketpoolNodeServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimRocketpoolNodeServiceListError = + DimRocketpoolNodeServiceListErrors[keyof DimRocketpoolNodeServiceListErrors]; + +export type DimRocketpoolNodeServiceListResponses = { + /** + * OK + */ + 200: ListDimRocketpoolNodeResponse; +}; + +export type DimRocketpoolNodeServiceListResponse = + DimRocketpoolNodeServiceListResponses[keyof DimRocketpoolNodeServiceListResponses]; + +export type DimRocketpoolNodeServiceGetData = { + body?: never; + path: { + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed + */ + node_operator: string; + }; + query?: never; + url: '/api/v1/dim_rocketpool_node/{node_operator}'; +}; + +export type DimRocketpoolNodeServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimRocketpoolNodeServiceGetError = + DimRocketpoolNodeServiceGetErrors[keyof DimRocketpoolNodeServiceGetErrors]; + +export type DimRocketpoolNodeServiceGetResponses = { + /** + * OK + */ + 200: GetDimRocketpoolNodeResponse; +}; + +export type DimRocketpoolNodeServiceGetResponse = + DimRocketpoolNodeServiceGetResponses[keyof DimRocketpoolNodeServiceGetResponses]; + +export type DimTokenContractServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The token contract address (filter: eq) + */ + contract_address_eq?: string; + /** + * The token contract address (filter: ne) + */ + contract_address_ne?: string; + /** + * The token contract address (filter: contains) + */ + contract_address_contains?: string; + /** + * The token contract address (filter: starts_with) + */ + contract_address_starts_with?: string; + /** + * The token contract address (filter: ends_with) + */ + contract_address_ends_with?: string; + /** + * The token contract address (filter: like) + */ + contract_address_like?: string; + /** + * The token contract address (filter: not_like) + */ + contract_address_not_like?: string; + /** + * The token contract address (filter: in_values) (comma-separated list) + */ + contract_address_in_values?: string; + /** + * The token contract address (filter: not_in_values) (comma-separated list) + */ + contract_address_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: eq) + */ + token_standard_eq?: string; + /** + * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: ne) + */ + token_standard_ne?: string; + /** + * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: contains) + */ + token_standard_contains?: string; + /** + * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: starts_with) + */ + token_standard_starts_with?: string; + /** + * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: ends_with) + */ + token_standard_ends_with?: string; + /** + * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: like) + */ + token_standard_like?: string; + /** + * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: not_like) + */ + token_standard_not_like?: string; + /** + * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: in_values) (comma-separated list) + */ + token_standard_in_values?: string; + /** + * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: not_in_values) (comma-separated list) + */ + token_standard_not_in_values?: string; + /** + * The maximum number of dim_token_contract to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListDimTokenContract` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/dim_token_contract'; +}; + +export type DimTokenContractServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimTokenContractServiceListError = + DimTokenContractServiceListErrors[keyof DimTokenContractServiceListErrors]; + +export type DimTokenContractServiceListResponses = { + /** + * OK + */ + 200: ListDimTokenContractResponse; +}; + +export type DimTokenContractServiceListResponse = + DimTokenContractServiceListResponses[keyof DimTokenContractServiceListResponses]; + +export type DimTokenContractServiceGetData = { + body?: never; + path: { + /** + * The token contract address + */ + contract_address: string; + }; + query?: never; + url: '/api/v1/dim_token_contract/{contract_address}'; +}; + +export type DimTokenContractServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimTokenContractServiceGetError = DimTokenContractServiceGetErrors[keyof DimTokenContractServiceGetErrors]; + +export type DimTokenContractServiceGetResponses = { + /** + * OK + */ + 200: GetDimTokenContractResponse; +}; + +export type DimTokenContractServiceGetResponse = + DimTokenContractServiceGetResponses[keyof DimTokenContractServiceGetResponses]; + +export type DimValidatorPubkeyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The public key of the validator (filter: eq) + */ + pubkey_eq?: string; + /** + * The public key of the validator (filter: ne) + */ + pubkey_ne?: string; + /** + * The public key of the validator (filter: contains) + */ + pubkey_contains?: string; + /** + * The public key of the validator (filter: starts_with) + */ + pubkey_starts_with?: string; + /** + * The public key of the validator (filter: ends_with) + */ + pubkey_ends_with?: string; + /** + * The public key of the validator (filter: like) + */ + pubkey_like?: string; + /** + * The public key of the validator (filter: not_like) + */ + pubkey_not_like?: string; + /** + * The public key of the validator (filter: in_values) (comma-separated list) + */ + pubkey_in_values?: string; + /** + * The public key of the validator (filter: not_in_values) (comma-separated list) + */ + pubkey_not_in_values?: string; + /** + * The index of the validator (filter: eq) + */ + validator_index_eq?: number; + /** + * The index of the validator (filter: ne) + */ + validator_index_ne?: number; + /** + * The index of the validator (filter: lt) + */ + validator_index_lt?: number; + /** + * The index of the validator (filter: lte) + */ + validator_index_lte?: number; + /** + * The index of the validator (filter: gt) + */ + validator_index_gt?: number; + /** + * The index of the validator (filter: gte) + */ + validator_index_gte?: number; + /** + * The index of the validator (filter: between_min) + */ + validator_index_between_min?: number; + /** + * The index of the validator (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * The index of the validator (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * The index of the validator (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The maximum number of dim_validator_pubkey to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListDimValidatorPubkey` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/dim_validator_pubkey'; +}; + +export type DimValidatorPubkeyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimValidatorPubkeyServiceListError = + DimValidatorPubkeyServiceListErrors[keyof DimValidatorPubkeyServiceListErrors]; + +export type DimValidatorPubkeyServiceListResponses = { + /** + * OK + */ + 200: ListDimValidatorPubkeyResponse; +}; + +export type DimValidatorPubkeyServiceListResponse = + DimValidatorPubkeyServiceListResponses[keyof DimValidatorPubkeyServiceListResponses]; + +export type DimValidatorPubkeyServiceGetData = { + body?: never; + path: { + /** + * The public key of the validator + */ + pubkey: string; + }; + query?: never; + url: '/api/v1/dim_validator_pubkey/{pubkey}'; +}; + +export type DimValidatorPubkeyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimValidatorPubkeyServiceGetError = + DimValidatorPubkeyServiceGetErrors[keyof DimValidatorPubkeyServiceGetErrors]; + +export type DimValidatorPubkeyServiceGetResponses = { + /** + * OK + */ + 200: GetDimValidatorPubkeyResponse; +}; + +export type DimValidatorPubkeyServiceGetResponse = + DimValidatorPubkeyServiceGetResponses[keyof DimValidatorPubkeyServiceGetResponses]; + +export type DimValidatorStatusServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The index of the validator (filter: eq) + */ + validator_index_eq?: number; + /** + * The index of the validator (filter: ne) + */ + validator_index_ne?: number; + /** + * The index of the validator (filter: lt) + */ + validator_index_lt?: number; + /** + * The index of the validator (filter: lte) + */ + validator_index_lte?: number; + /** + * The index of the validator (filter: gt) + */ + validator_index_gt?: number; + /** + * The index of the validator (filter: gte) + */ + validator_index_gte?: number; + /** + * The index of the validator (filter: between_min) + */ + validator_index_between_min?: number; + /** + * The index of the validator (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * The index of the validator (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * The index of the validator (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: eq) + */ + status_eq?: string; + /** + * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: ne) + */ + status_ne?: string; + /** + * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: contains) + */ + status_contains?: string; + /** + * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: starts_with) + */ + status_starts_with?: string; + /** + * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: ends_with) + */ + status_ends_with?: string; + /** + * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: like) + */ + status_like?: string; + /** + * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: not_like) + */ + status_not_like?: string; + /** + * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: eq) + */ + version_eq?: number; + /** + * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: ne) + */ + version_ne?: number; + /** + * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: lt) + */ + version_lt?: number; + /** + * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: lte) + */ + version_lte?: number; + /** + * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: gt) + */ + version_gt?: number; + /** + * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: gte) + */ + version_gte?: number; + /** + * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: between_min) + */ + version_between_min?: number; + /** + * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: between_max_value) + */ + version_between_max_value?: number; + /** + * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: in_values) (comma-separated list) + */ + version_in_values?: string; + /** + * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: not_in_values) (comma-separated list) + */ + version_not_in_values?: string; + /** + * The public key of the validator (filter: eq) + */ + pubkey_eq?: string; + /** + * The public key of the validator (filter: ne) + */ + pubkey_ne?: string; + /** + * The public key of the validator (filter: contains) + */ + pubkey_contains?: string; + /** + * The public key of the validator (filter: starts_with) + */ + pubkey_starts_with?: string; + /** + * The public key of the validator (filter: ends_with) + */ + pubkey_ends_with?: string; + /** + * The public key of the validator (filter: like) + */ + pubkey_like?: string; + /** + * The public key of the validator (filter: not_like) + */ + pubkey_not_like?: string; + /** + * The public key of the validator (filter: in_values) (comma-separated list) + */ + pubkey_in_values?: string; + /** + * The public key of the validator (filter: not_in_values) (comma-separated list) + */ + pubkey_not_in_values?: string; + /** + * First epoch this status was observed (filter: eq) + */ + epoch_eq?: number; + /** + * First epoch this status was observed (filter: ne) + */ + epoch_ne?: number; + /** + * First epoch this status was observed (filter: lt) + */ + epoch_lt?: number; + /** + * First epoch this status was observed (filter: lte) + */ + epoch_lte?: number; + /** + * First epoch this status was observed (filter: gt) + */ + epoch_gt?: number; + /** + * First epoch this status was observed (filter: gte) + */ + epoch_gte?: number; + /** + * First epoch this status was observed (filter: between_min) + */ + epoch_between_min?: number; + /** + * First epoch this status was observed (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * First epoch this status was observed (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * First epoch this status was observed (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * Wall clock time of the first observed epoch (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * Wall clock time of the first observed epoch (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * Wall clock time of the first observed epoch (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * Wall clock time of the first observed epoch (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * Wall clock time of the first observed epoch (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * Wall clock time of the first observed epoch (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * Wall clock time of the first observed epoch (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * Wall clock time of the first observed epoch (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * Wall clock time of the first observed epoch (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * Wall clock time of the first observed epoch (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Epoch when activation is/was scheduled (filter: eq) + */ + activation_epoch_eq?: number; + /** + * Epoch when activation is/was scheduled (filter: ne) + */ + activation_epoch_ne?: number; + /** + * Epoch when activation is/was scheduled (filter: lt) + */ + activation_epoch_lt?: number; + /** + * Epoch when activation is/was scheduled (filter: lte) + */ + activation_epoch_lte?: number; + /** + * Epoch when activation is/was scheduled (filter: gt) + */ + activation_epoch_gt?: number; + /** + * Epoch when activation is/was scheduled (filter: gte) + */ + activation_epoch_gte?: number; + /** + * Epoch when activation is/was scheduled (filter: between_min) + */ + activation_epoch_between_min?: number; + /** + * Epoch when activation is/was scheduled (filter: between_max_value) + */ + activation_epoch_between_max_value?: number; + /** + * Epoch when activation is/was scheduled (filter: in_values) (comma-separated list) + */ + activation_epoch_in_values?: string; + /** + * Epoch when activation is/was scheduled (filter: not_in_values) (comma-separated list) + */ + activation_epoch_not_in_values?: string; + /** + * Epoch when validator became eligible for activation (filter: eq) + */ + activation_eligibility_epoch_eq?: number; + /** + * Epoch when validator became eligible for activation (filter: ne) + */ + activation_eligibility_epoch_ne?: number; + /** + * Epoch when validator became eligible for activation (filter: lt) + */ + activation_eligibility_epoch_lt?: number; + /** + * Epoch when validator became eligible for activation (filter: lte) + */ + activation_eligibility_epoch_lte?: number; + /** + * Epoch when validator became eligible for activation (filter: gt) + */ + activation_eligibility_epoch_gt?: number; + /** + * Epoch when validator became eligible for activation (filter: gte) + */ + activation_eligibility_epoch_gte?: number; + /** + * Epoch when validator became eligible for activation (filter: between_min) + */ + activation_eligibility_epoch_between_min?: number; + /** + * Epoch when validator became eligible for activation (filter: between_max_value) + */ + activation_eligibility_epoch_between_max_value?: number; + /** + * Epoch when validator became eligible for activation (filter: in_values) (comma-separated list) + */ + activation_eligibility_epoch_in_values?: string; + /** + * Epoch when validator became eligible for activation (filter: not_in_values) (comma-separated list) + */ + activation_eligibility_epoch_not_in_values?: string; + /** + * Epoch when exit is/was scheduled (filter: eq) + */ + exit_epoch_eq?: number; + /** + * Epoch when exit is/was scheduled (filter: ne) + */ + exit_epoch_ne?: number; + /** + * Epoch when exit is/was scheduled (filter: lt) + */ + exit_epoch_lt?: number; + /** + * Epoch when exit is/was scheduled (filter: lte) + */ + exit_epoch_lte?: number; + /** + * Epoch when exit is/was scheduled (filter: gt) + */ + exit_epoch_gt?: number; + /** + * Epoch when exit is/was scheduled (filter: gte) + */ + exit_epoch_gte?: number; + /** + * Epoch when exit is/was scheduled (filter: between_min) + */ + exit_epoch_between_min?: number; + /** + * Epoch when exit is/was scheduled (filter: between_max_value) + */ + exit_epoch_between_max_value?: number; + /** + * Epoch when exit is/was scheduled (filter: in_values) (comma-separated list) + */ + exit_epoch_in_values?: string; + /** + * Epoch when exit is/was scheduled (filter: not_in_values) (comma-separated list) + */ + exit_epoch_not_in_values?: string; + /** + * Epoch when withdrawal becomes possible (filter: eq) + */ + withdrawable_epoch_eq?: number; + /** + * Epoch when withdrawal becomes possible (filter: ne) + */ + withdrawable_epoch_ne?: number; + /** + * Epoch when withdrawal becomes possible (filter: lt) + */ + withdrawable_epoch_lt?: number; + /** + * Epoch when withdrawal becomes possible (filter: lte) + */ + withdrawable_epoch_lte?: number; + /** + * Epoch when withdrawal becomes possible (filter: gt) + */ + withdrawable_epoch_gt?: number; + /** + * Epoch when withdrawal becomes possible (filter: gte) + */ + withdrawable_epoch_gte?: number; + /** + * Epoch when withdrawal becomes possible (filter: between_min) + */ + withdrawable_epoch_between_min?: number; + /** + * Epoch when withdrawal becomes possible (filter: between_max_value) + */ + withdrawable_epoch_between_max_value?: number; + /** + * Epoch when withdrawal becomes possible (filter: in_values) (comma-separated list) + */ + withdrawable_epoch_in_values?: string; + /** + * Epoch when withdrawal becomes possible (filter: not_in_values) (comma-separated list) + */ + withdrawable_epoch_not_in_values?: string; + /** + * Whether the validator was slashed at this transition (filter: eq) + */ + slashed_eq?: boolean; + /** + * Whether the validator was slashed at this transition (filter: ne) + */ + slashed_ne?: boolean; + /** + * The maximum number of dim_validator_status to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListDimValidatorStatus` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/dim_validator_status'; +}; + +export type DimValidatorStatusServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimValidatorStatusServiceListError = + DimValidatorStatusServiceListErrors[keyof DimValidatorStatusServiceListErrors]; + +export type DimValidatorStatusServiceListResponses = { + /** + * OK + */ + 200: ListDimValidatorStatusResponse; +}; + +export type DimValidatorStatusServiceListResponse = + DimValidatorStatusServiceListResponses[keyof DimValidatorStatusServiceListResponses]; + +export type DimValidatorStatusServiceGetData = { + body?: never; + path: { + /** + * The index of the validator + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/dim_validator_status/{validator_index}'; +}; + +export type DimValidatorStatusServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type DimValidatorStatusServiceGetError = + DimValidatorStatusServiceGetErrors[keyof DimValidatorStatusServiceGetErrors]; + +export type DimValidatorStatusServiceGetResponses = { + /** + * OK + */ + 200: GetDimValidatorStatusResponse; +}; + +export type DimValidatorStatusServiceGetResponse = + DimValidatorStatusServiceGetResponses[keyof DimValidatorStatusServiceGetResponses]; + +export type FctAttestationCorrectnessServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The maximum number of scheduled votes for the block (filter: eq) + */ + votes_max_eq?: number; + /** + * The maximum number of scheduled votes for the block (filter: ne) + */ + votes_max_ne?: number; + /** + * The maximum number of scheduled votes for the block (filter: lt) + */ + votes_max_lt?: number; + /** + * The maximum number of scheduled votes for the block (filter: lte) + */ + votes_max_lte?: number; + /** + * The maximum number of scheduled votes for the block (filter: gt) + */ + votes_max_gt?: number; + /** + * The maximum number of scheduled votes for the block (filter: gte) + */ + votes_max_gte?: number; + /** + * The maximum number of scheduled votes for the block (filter: between_min) + */ + votes_max_between_min?: number; + /** + * The maximum number of scheduled votes for the block (filter: between_max_value) + */ + votes_max_between_max_value?: number; + /** + * The maximum number of scheduled votes for the block (filter: in_values) (comma-separated list) + */ + votes_max_in_values?: string; + /** + * The maximum number of scheduled votes for the block (filter: not_in_values) (comma-separated list) + */ + votes_max_not_in_values?: string; + /** + * The number of votes for the block proposed in the current slot (filter: eq) + */ + votes_head_eq?: number; + /** + * The number of votes for the block proposed in the current slot (filter: ne) + */ + votes_head_ne?: number; + /** + * The number of votes for the block proposed in the current slot (filter: lt) + */ + votes_head_lt?: number; + /** + * The number of votes for the block proposed in the current slot (filter: lte) + */ + votes_head_lte?: number; + /** + * The number of votes for the block proposed in the current slot (filter: gt) + */ + votes_head_gt?: number; + /** + * The number of votes for the block proposed in the current slot (filter: gte) + */ + votes_head_gte?: number; + /** + * The number of votes for the block proposed in the current slot (filter: between_min) + */ + votes_head_between_min?: number; + /** + * The number of votes for the block proposed in the current slot (filter: between_max_value) + */ + votes_head_between_max_value?: number; + /** + * The number of votes for the block proposed in the current slot (filter: in_values) (comma-separated list) + */ + votes_head_in_values?: string; + /** + * The number of votes for the block proposed in the current slot (filter: not_in_values) (comma-separated list) + */ + votes_head_not_in_values?: string; + /** + * The number of votes for any blocks proposed in previous slots (filter: eq) + */ + votes_other_eq?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: ne) + */ + votes_other_ne?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: lt) + */ + votes_other_lt?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: lte) + */ + votes_other_lte?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: gt) + */ + votes_other_gt?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: gte) + */ + votes_other_gte?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: between_min) + */ + votes_other_between_min?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: between_max_value) + */ + votes_other_between_max_value?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: in_values) (comma-separated list) + */ + votes_other_in_values?: string; + /** + * The number of votes for any blocks proposed in previous slots (filter: not_in_values) (comma-separated list) + */ + votes_other_not_in_values?: string; + /** + * The maximum number of fct_attestation_correctness to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationCorrectness` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_correctness'; +}; + +export type FctAttestationCorrectnessServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationCorrectnessServiceListError = + FctAttestationCorrectnessServiceListErrors[keyof FctAttestationCorrectnessServiceListErrors]; + +export type FctAttestationCorrectnessServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationCorrectnessResponse; +}; + +export type FctAttestationCorrectnessServiceListResponse = + FctAttestationCorrectnessServiceListResponses[keyof FctAttestationCorrectnessServiceListResponses]; + +export type FctAttestationCorrectnessServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_correctness/{slot_start_date_time}'; +}; + +export type FctAttestationCorrectnessServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationCorrectnessServiceGetError = + FctAttestationCorrectnessServiceGetErrors[keyof FctAttestationCorrectnessServiceGetErrors]; + +export type FctAttestationCorrectnessServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationCorrectnessResponse; +}; + +export type FctAttestationCorrectnessServiceGetResponse = + FctAttestationCorrectnessServiceGetResponses[keyof FctAttestationCorrectnessServiceGetResponses]; + +export type FctAttestationCorrectnessByValidatorServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The index of the validator attesting (filter: eq) + */ + attesting_validator_index_eq?: number; + /** + * The index of the validator attesting (filter: ne) + */ + attesting_validator_index_ne?: number; + /** + * The index of the validator attesting (filter: lt) + */ + attesting_validator_index_lt?: number; + /** + * The index of the validator attesting (filter: lte) + */ + attesting_validator_index_lte?: number; + /** + * The index of the validator attesting (filter: gt) + */ + attesting_validator_index_gt?: number; + /** + * The index of the validator attesting (filter: gte) + */ + attesting_validator_index_gte?: number; + /** + * The index of the validator attesting (filter: between_min) + */ + attesting_validator_index_between_min?: number; + /** + * The index of the validator attesting (filter: between_max_value) + */ + attesting_validator_index_between_max_value?: number; + /** + * The index of the validator attesting (filter: in_values) (comma-separated list) + */ + attesting_validator_index_in_values?: string; + /** + * The index of the validator attesting (filter: not_in_values) (comma-separated list) + */ + attesting_validator_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: eq) + */ + slot_distance_eq?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: ne) + */ + slot_distance_ne?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: lt) + */ + slot_distance_lt?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: lte) + */ + slot_distance_lte?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: gt) + */ + slot_distance_gt?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: gte) + */ + slot_distance_gte?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: between_min) + */ + slot_distance_between_min?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: between_max_value) + */ + slot_distance_between_max_value?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: in_values) (comma-separated list) + */ + slot_distance_in_values?: string; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: not_in_values) (comma-separated list) + */ + slot_distance_not_in_values?: string; + /** + * The distance from the slot when the attestation was propagated, sourced from head. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. Null when only the canonical source is present (filter: eq) + */ + propagation_distance_eq?: number; + /** + * The distance from the slot when the attestation was propagated, sourced from head. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. Null when only the canonical source is present (filter: ne) + */ + propagation_distance_ne?: number; + /** + * The distance from the slot when the attestation was propagated, sourced from head. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. Null when only the canonical source is present (filter: lt) + */ + propagation_distance_lt?: number; + /** + * The distance from the slot when the attestation was propagated, sourced from head. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. Null when only the canonical source is present (filter: lte) + */ + propagation_distance_lte?: number; + /** + * The distance from the slot when the attestation was propagated, sourced from head. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. Null when only the canonical source is present (filter: gt) + */ + propagation_distance_gt?: number; + /** + * The distance from the slot when the attestation was propagated, sourced from head. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. Null when only the canonical source is present (filter: gte) + */ + propagation_distance_gte?: number; + /** + * The distance from the slot when the attestation was propagated, sourced from head. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. Null when only the canonical source is present (filter: between_min) + */ + propagation_distance_between_min?: number; + /** + * The distance from the slot when the attestation was propagated, sourced from head. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. Null when only the canonical source is present (filter: between_max_value) + */ + propagation_distance_between_max_value?: number; + /** + * The distance from the slot when the attestation was propagated, sourced from head. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. Null when only the canonical source is present (filter: in_values) (comma-separated list) + */ + propagation_distance_in_values?: string; + /** + * The distance from the slot when the attestation was propagated, sourced from head. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. Null when only the canonical source is present (filter: not_in_values) (comma-separated list) + */ + propagation_distance_not_in_values?: string; + /** + * The distance from the slot when the attestation was included in a block, sourced from canonical. Null when only the head source is present (filter: eq) + */ + inclusion_distance_eq?: number; + /** + * The distance from the slot when the attestation was included in a block, sourced from canonical. Null when only the head source is present (filter: ne) + */ + inclusion_distance_ne?: number; + /** + * The distance from the slot when the attestation was included in a block, sourced from canonical. Null when only the head source is present (filter: lt) + */ + inclusion_distance_lt?: number; + /** + * The distance from the slot when the attestation was included in a block, sourced from canonical. Null when only the head source is present (filter: lte) + */ + inclusion_distance_lte?: number; + /** + * The distance from the slot when the attestation was included in a block, sourced from canonical. Null when only the head source is present (filter: gt) + */ + inclusion_distance_gt?: number; + /** + * The distance from the slot when the attestation was included in a block, sourced from canonical. Null when only the head source is present (filter: gte) + */ + inclusion_distance_gte?: number; + /** + * The distance from the slot when the attestation was included in a block, sourced from canonical. Null when only the head source is present (filter: between_min) + */ + inclusion_distance_between_min?: number; + /** + * The distance from the slot when the attestation was included in a block, sourced from canonical. Null when only the head source is present (filter: between_max_value) + */ + inclusion_distance_between_max_value?: number; + /** + * The distance from the slot when the attestation was included in a block, sourced from canonical. Null when only the head source is present (filter: in_values) (comma-separated list) + */ + inclusion_distance_in_values?: string; + /** + * The distance from the slot when the attestation was included in a block, sourced from canonical. Null when only the head source is present (filter: not_in_values) (comma-separated list) + */ + inclusion_distance_not_in_values?: string; + /** + * Sourced from canonical: "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available). Null when only the head source is present (not yet finalized) (filter: eq) + */ + status_eq?: string; + /** + * Sourced from canonical: "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available). Null when only the head source is present (not yet finalized) (filter: ne) + */ + status_ne?: string; + /** + * Sourced from canonical: "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available). Null when only the head source is present (not yet finalized) (filter: contains) + */ + status_contains?: string; + /** + * Sourced from canonical: "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available). Null when only the head source is present (not yet finalized) (filter: starts_with) + */ + status_starts_with?: string; + /** + * Sourced from canonical: "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available). Null when only the head source is present (not yet finalized) (filter: ends_with) + */ + status_ends_with?: string; + /** + * Sourced from canonical: "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available). Null when only the head source is present (not yet finalized) (filter: like) + */ + status_like?: string; + /** + * Sourced from canonical: "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available). Null when only the head source is present (not yet finalized) (filter: not_like) + */ + status_not_like?: string; + /** + * Sourced from canonical: "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available). Null when only the head source is present (not yet finalized) (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Sourced from canonical: "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available). Null when only the head source is present (not yet finalized) (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * The maximum number of fct_attestation_correctness_by_validator to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationCorrectnessByValidator` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_correctness_by_validator'; +}; + +export type FctAttestationCorrectnessByValidatorServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationCorrectnessByValidatorServiceListError = + FctAttestationCorrectnessByValidatorServiceListErrors[keyof FctAttestationCorrectnessByValidatorServiceListErrors]; + +export type FctAttestationCorrectnessByValidatorServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationCorrectnessByValidatorResponse; +}; + +export type FctAttestationCorrectnessByValidatorServiceListResponse = + FctAttestationCorrectnessByValidatorServiceListResponses[keyof FctAttestationCorrectnessByValidatorServiceListResponses]; + +export type FctAttestationCorrectnessByValidatorServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_correctness_by_validator/{slot_start_date_time}'; +}; + +export type FctAttestationCorrectnessByValidatorServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationCorrectnessByValidatorServiceGetError = + FctAttestationCorrectnessByValidatorServiceGetErrors[keyof FctAttestationCorrectnessByValidatorServiceGetErrors]; + +export type FctAttestationCorrectnessByValidatorServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationCorrectnessByValidatorResponse; +}; + +export type FctAttestationCorrectnessByValidatorServiceGetResponse = + FctAttestationCorrectnessByValidatorServiceGetResponses[keyof FctAttestationCorrectnessByValidatorServiceGetResponses]; + +export type FctAttestationCorrectnessByValidatorCanonicalServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The index of the validator attesting (filter: eq) + */ + attesting_validator_index_eq?: number; + /** + * The index of the validator attesting (filter: ne) + */ + attesting_validator_index_ne?: number; + /** + * The index of the validator attesting (filter: lt) + */ + attesting_validator_index_lt?: number; + /** + * The index of the validator attesting (filter: lte) + */ + attesting_validator_index_lte?: number; + /** + * The index of the validator attesting (filter: gt) + */ + attesting_validator_index_gt?: number; + /** + * The index of the validator attesting (filter: gte) + */ + attesting_validator_index_gte?: number; + /** + * The index of the validator attesting (filter: between_min) + */ + attesting_validator_index_between_min?: number; + /** + * The index of the validator attesting (filter: between_max_value) + */ + attesting_validator_index_between_max_value?: number; + /** + * The index of the validator attesting (filter: in_values) (comma-separated list) + */ + attesting_validator_index_in_values?: string; + /** + * The index of the validator attesting (filter: not_in_values) (comma-separated list) + */ + attesting_validator_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The beacon block root hash that was attested (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash that was attested (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash that was attested (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash that was attested (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash that was attested (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash that was attested (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash that was attested (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash that was attested (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash that was attested (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: eq) + */ + slot_distance_eq?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: ne) + */ + slot_distance_ne?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: lt) + */ + slot_distance_lt?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: lte) + */ + slot_distance_lte?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: gt) + */ + slot_distance_gt?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: gte) + */ + slot_distance_gte?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: between_min) + */ + slot_distance_between_min?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: between_max_value) + */ + slot_distance_between_max_value?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: in_values) (comma-separated list) + */ + slot_distance_in_values?: string; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: not_in_values) (comma-separated list) + */ + slot_distance_not_in_values?: string; + /** + * The distance from the slot when the attestation was included in a block (filter: eq) + */ + inclusion_distance_eq?: number; + /** + * The distance from the slot when the attestation was included in a block (filter: ne) + */ + inclusion_distance_ne?: number; + /** + * The distance from the slot when the attestation was included in a block (filter: lt) + */ + inclusion_distance_lt?: number; + /** + * The distance from the slot when the attestation was included in a block (filter: lte) + */ + inclusion_distance_lte?: number; + /** + * The distance from the slot when the attestation was included in a block (filter: gt) + */ + inclusion_distance_gt?: number; + /** + * The distance from the slot when the attestation was included in a block (filter: gte) + */ + inclusion_distance_gte?: number; + /** + * The distance from the slot when the attestation was included in a block (filter: between_min) + */ + inclusion_distance_between_min?: number; + /** + * The distance from the slot when the attestation was included in a block (filter: between_max_value) + */ + inclusion_distance_between_max_value?: number; + /** + * The distance from the slot when the attestation was included in a block (filter: in_values) (comma-separated list) + */ + inclusion_distance_in_values?: string; + /** + * The distance from the slot when the attestation was included in a block (filter: not_in_values) (comma-separated list) + */ + inclusion_distance_not_in_values?: string; + /** + * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: eq) + */ + status_eq?: string; + /** + * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: ne) + */ + status_ne?: string; + /** + * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: contains) + */ + status_contains?: string; + /** + * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: starts_with) + */ + status_starts_with?: string; + /** + * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: ends_with) + */ + status_ends_with?: string; + /** + * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: like) + */ + status_like?: string; + /** + * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: not_like) + */ + status_not_like?: string; + /** + * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * The maximum number of fct_attestation_correctness_by_validator_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationCorrectnessByValidatorCanonical` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_correctness_by_validator_canonical'; +}; + +export type FctAttestationCorrectnessByValidatorCanonicalServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationCorrectnessByValidatorCanonicalServiceListError = + FctAttestationCorrectnessByValidatorCanonicalServiceListErrors[keyof FctAttestationCorrectnessByValidatorCanonicalServiceListErrors]; + +export type FctAttestationCorrectnessByValidatorCanonicalServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationCorrectnessByValidatorCanonicalResponse; +}; + +export type FctAttestationCorrectnessByValidatorCanonicalServiceListResponse = + FctAttestationCorrectnessByValidatorCanonicalServiceListResponses[keyof FctAttestationCorrectnessByValidatorCanonicalServiceListResponses]; + +export type FctAttestationCorrectnessByValidatorCanonicalServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_correctness_by_validator_canonical/{slot_start_date_time}'; +}; + +export type FctAttestationCorrectnessByValidatorCanonicalServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationCorrectnessByValidatorCanonicalServiceGetError = + FctAttestationCorrectnessByValidatorCanonicalServiceGetErrors[keyof FctAttestationCorrectnessByValidatorCanonicalServiceGetErrors]; + +export type FctAttestationCorrectnessByValidatorCanonicalServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationCorrectnessByValidatorCanonicalResponse; +}; + +export type FctAttestationCorrectnessByValidatorCanonicalServiceGetResponse = + FctAttestationCorrectnessByValidatorCanonicalServiceGetResponses[keyof FctAttestationCorrectnessByValidatorCanonicalServiceGetResponses]; + +export type FctAttestationCorrectnessByValidatorHeadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The index of the validator attesting (filter: eq) + */ + attesting_validator_index_eq?: number; + /** + * The index of the validator attesting (filter: ne) + */ + attesting_validator_index_ne?: number; + /** + * The index of the validator attesting (filter: lt) + */ + attesting_validator_index_lt?: number; + /** + * The index of the validator attesting (filter: lte) + */ + attesting_validator_index_lte?: number; + /** + * The index of the validator attesting (filter: gt) + */ + attesting_validator_index_gt?: number; + /** + * The index of the validator attesting (filter: gte) + */ + attesting_validator_index_gte?: number; + /** + * The index of the validator attesting (filter: between_min) + */ + attesting_validator_index_between_min?: number; + /** + * The index of the validator attesting (filter: between_max_value) + */ + attesting_validator_index_between_max_value?: number; + /** + * The index of the validator attesting (filter: in_values) (comma-separated list) + */ + attesting_validator_index_in_values?: string; + /** + * The index of the validator attesting (filter: not_in_values) (comma-separated list) + */ + attesting_validator_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: eq) + */ + slot_distance_eq?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: ne) + */ + slot_distance_ne?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: lt) + */ + slot_distance_lt?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: lte) + */ + slot_distance_lte?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: gt) + */ + slot_distance_gt?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: gte) + */ + slot_distance_gte?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: between_min) + */ + slot_distance_between_min?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: between_max_value) + */ + slot_distance_between_max_value?: number; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: in_values) (comma-separated list) + */ + slot_distance_in_values?: string; + /** + * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: not_in_values) (comma-separated list) + */ + slot_distance_not_in_values?: string; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: eq) + */ + propagation_distance_eq?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: ne) + */ + propagation_distance_ne?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: lt) + */ + propagation_distance_lt?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: lte) + */ + propagation_distance_lte?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: gt) + */ + propagation_distance_gt?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: gte) + */ + propagation_distance_gte?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: between_min) + */ + propagation_distance_between_min?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: between_max_value) + */ + propagation_distance_between_max_value?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: in_values) (comma-separated list) + */ + propagation_distance_in_values?: string; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: not_in_values) (comma-separated list) + */ + propagation_distance_not_in_values?: string; + /** + * The maximum number of fct_attestation_correctness_by_validator_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationCorrectnessByValidatorHead` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_correctness_by_validator_head'; +}; + +export type FctAttestationCorrectnessByValidatorHeadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationCorrectnessByValidatorHeadServiceListError = + FctAttestationCorrectnessByValidatorHeadServiceListErrors[keyof FctAttestationCorrectnessByValidatorHeadServiceListErrors]; + +export type FctAttestationCorrectnessByValidatorHeadServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationCorrectnessByValidatorHeadResponse; +}; + +export type FctAttestationCorrectnessByValidatorHeadServiceListResponse = + FctAttestationCorrectnessByValidatorHeadServiceListResponses[keyof FctAttestationCorrectnessByValidatorHeadServiceListResponses]; + +export type FctAttestationCorrectnessByValidatorHeadServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_correctness_by_validator_head/{slot_start_date_time}'; +}; + +export type FctAttestationCorrectnessByValidatorHeadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationCorrectnessByValidatorHeadServiceGetError = + FctAttestationCorrectnessByValidatorHeadServiceGetErrors[keyof FctAttestationCorrectnessByValidatorHeadServiceGetErrors]; + +export type FctAttestationCorrectnessByValidatorHeadServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationCorrectnessByValidatorHeadResponse; +}; + +export type FctAttestationCorrectnessByValidatorHeadServiceGetResponse = + FctAttestationCorrectnessByValidatorHeadServiceGetResponses[keyof FctAttestationCorrectnessByValidatorHeadServiceGetResponses]; + +export type FctAttestationCorrectnessCanonicalServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The maximum number of scheduled votes for the block (filter: eq) + */ + votes_max_eq?: number; + /** + * The maximum number of scheduled votes for the block (filter: ne) + */ + votes_max_ne?: number; + /** + * The maximum number of scheduled votes for the block (filter: lt) + */ + votes_max_lt?: number; + /** + * The maximum number of scheduled votes for the block (filter: lte) + */ + votes_max_lte?: number; + /** + * The maximum number of scheduled votes for the block (filter: gt) + */ + votes_max_gt?: number; + /** + * The maximum number of scheduled votes for the block (filter: gte) + */ + votes_max_gte?: number; + /** + * The maximum number of scheduled votes for the block (filter: between_min) + */ + votes_max_between_min?: number; + /** + * The maximum number of scheduled votes for the block (filter: between_max_value) + */ + votes_max_between_max_value?: number; + /** + * The maximum number of scheduled votes for the block (filter: in_values) (comma-separated list) + */ + votes_max_in_values?: string; + /** + * The maximum number of scheduled votes for the block (filter: not_in_values) (comma-separated list) + */ + votes_max_not_in_values?: string; + /** + * The number of votes for the block proposed in the current slot (filter: eq) + */ + votes_head_eq?: number; + /** + * The number of votes for the block proposed in the current slot (filter: ne) + */ + votes_head_ne?: number; + /** + * The number of votes for the block proposed in the current slot (filter: lt) + */ + votes_head_lt?: number; + /** + * The number of votes for the block proposed in the current slot (filter: lte) + */ + votes_head_lte?: number; + /** + * The number of votes for the block proposed in the current slot (filter: gt) + */ + votes_head_gt?: number; + /** + * The number of votes for the block proposed in the current slot (filter: gte) + */ + votes_head_gte?: number; + /** + * The number of votes for the block proposed in the current slot (filter: between_min) + */ + votes_head_between_min?: number; + /** + * The number of votes for the block proposed in the current slot (filter: between_max_value) + */ + votes_head_between_max_value?: number; + /** + * The number of votes for the block proposed in the current slot (filter: in_values) (comma-separated list) + */ + votes_head_in_values?: string; + /** + * The number of votes for the block proposed in the current slot (filter: not_in_values) (comma-separated list) + */ + votes_head_not_in_values?: string; + /** + * The number of votes for any blocks proposed in previous slots (filter: eq) + */ + votes_other_eq?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: ne) + */ + votes_other_ne?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: lt) + */ + votes_other_lt?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: lte) + */ + votes_other_lte?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: gt) + */ + votes_other_gt?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: gte) + */ + votes_other_gte?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: between_min) + */ + votes_other_between_min?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: between_max_value) + */ + votes_other_between_max_value?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: in_values) (comma-separated list) + */ + votes_other_in_values?: string; + /** + * The number of votes for any blocks proposed in previous slots (filter: not_in_values) (comma-separated list) + */ + votes_other_not_in_values?: string; + /** + * The maximum number of fct_attestation_correctness_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationCorrectnessCanonical` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_correctness_canonical'; +}; + +export type FctAttestationCorrectnessCanonicalServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationCorrectnessCanonicalServiceListError = + FctAttestationCorrectnessCanonicalServiceListErrors[keyof FctAttestationCorrectnessCanonicalServiceListErrors]; + +export type FctAttestationCorrectnessCanonicalServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationCorrectnessCanonicalResponse; +}; + +export type FctAttestationCorrectnessCanonicalServiceListResponse = + FctAttestationCorrectnessCanonicalServiceListResponses[keyof FctAttestationCorrectnessCanonicalServiceListResponses]; + +export type FctAttestationCorrectnessCanonicalServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_correctness_canonical/{slot_start_date_time}'; +}; + +export type FctAttestationCorrectnessCanonicalServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationCorrectnessCanonicalServiceGetError = + FctAttestationCorrectnessCanonicalServiceGetErrors[keyof FctAttestationCorrectnessCanonicalServiceGetErrors]; + +export type FctAttestationCorrectnessCanonicalServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationCorrectnessCanonicalResponse; +}; + +export type FctAttestationCorrectnessCanonicalServiceGetResponse = + FctAttestationCorrectnessCanonicalServiceGetResponses[keyof FctAttestationCorrectnessCanonicalServiceGetResponses]; + +export type FctAttestationCorrectnessHeadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The maximum number of scheduled votes for the block (filter: eq) + */ + votes_max_eq?: number; + /** + * The maximum number of scheduled votes for the block (filter: ne) + */ + votes_max_ne?: number; + /** + * The maximum number of scheduled votes for the block (filter: lt) + */ + votes_max_lt?: number; + /** + * The maximum number of scheduled votes for the block (filter: lte) + */ + votes_max_lte?: number; + /** + * The maximum number of scheduled votes for the block (filter: gt) + */ + votes_max_gt?: number; + /** + * The maximum number of scheduled votes for the block (filter: gte) + */ + votes_max_gte?: number; + /** + * The maximum number of scheduled votes for the block (filter: between_min) + */ + votes_max_between_min?: number; + /** + * The maximum number of scheduled votes for the block (filter: between_max_value) + */ + votes_max_between_max_value?: number; + /** + * The maximum number of scheduled votes for the block (filter: in_values) (comma-separated list) + */ + votes_max_in_values?: string; + /** + * The maximum number of scheduled votes for the block (filter: not_in_values) (comma-separated list) + */ + votes_max_not_in_values?: string; + /** + * The number of votes for the block proposed in the current slot (filter: eq) + */ + votes_head_eq?: number; + /** + * The number of votes for the block proposed in the current slot (filter: ne) + */ + votes_head_ne?: number; + /** + * The number of votes for the block proposed in the current slot (filter: lt) + */ + votes_head_lt?: number; + /** + * The number of votes for the block proposed in the current slot (filter: lte) + */ + votes_head_lte?: number; + /** + * The number of votes for the block proposed in the current slot (filter: gt) + */ + votes_head_gt?: number; + /** + * The number of votes for the block proposed in the current slot (filter: gte) + */ + votes_head_gte?: number; + /** + * The number of votes for the block proposed in the current slot (filter: between_min) + */ + votes_head_between_min?: number; + /** + * The number of votes for the block proposed in the current slot (filter: between_max_value) + */ + votes_head_between_max_value?: number; + /** + * The number of votes for the block proposed in the current slot (filter: in_values) (comma-separated list) + */ + votes_head_in_values?: string; + /** + * The number of votes for the block proposed in the current slot (filter: not_in_values) (comma-separated list) + */ + votes_head_not_in_values?: string; + /** + * The number of votes for any blocks proposed in previous slots (filter: eq) + */ + votes_other_eq?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: ne) + */ + votes_other_ne?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: lt) + */ + votes_other_lt?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: lte) + */ + votes_other_lte?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: gt) + */ + votes_other_gt?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: gte) + */ + votes_other_gte?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: between_min) + */ + votes_other_between_min?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: between_max_value) + */ + votes_other_between_max_value?: number; + /** + * The number of votes for any blocks proposed in previous slots (filter: in_values) (comma-separated list) + */ + votes_other_in_values?: string; + /** + * The number of votes for any blocks proposed in previous slots (filter: not_in_values) (comma-separated list) + */ + votes_other_not_in_values?: string; + /** + * The maximum number of fct_attestation_correctness_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationCorrectnessHead` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_correctness_head'; +}; + +export type FctAttestationCorrectnessHeadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationCorrectnessHeadServiceListError = + FctAttestationCorrectnessHeadServiceListErrors[keyof FctAttestationCorrectnessHeadServiceListErrors]; + +export type FctAttestationCorrectnessHeadServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationCorrectnessHeadResponse; +}; + +export type FctAttestationCorrectnessHeadServiceListResponse = + FctAttestationCorrectnessHeadServiceListResponses[keyof FctAttestationCorrectnessHeadServiceListResponses]; + +export type FctAttestationCorrectnessHeadServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_correctness_head/{slot_start_date_time}'; +}; + +export type FctAttestationCorrectnessHeadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationCorrectnessHeadServiceGetError = + FctAttestationCorrectnessHeadServiceGetErrors[keyof FctAttestationCorrectnessHeadServiceGetErrors]; + +export type FctAttestationCorrectnessHeadServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationCorrectnessHeadResponse; +}; + +export type FctAttestationCorrectnessHeadServiceGetResponse = + FctAttestationCorrectnessHeadServiceGetResponses[keyof FctAttestationCorrectnessHeadServiceGetResponses]; + +export type FctAttestationFirstSeenByValidatorServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The validator index (filter: eq) + */ + validator_index_eq?: number; + /** + * The validator index (filter: ne) + */ + validator_index_ne?: number; + /** + * The validator index (filter: lt) + */ + validator_index_lt?: number; + /** + * The validator index (filter: lte) + */ + validator_index_lte?: number; + /** + * The validator index (filter: gt) + */ + validator_index_gt?: number; + /** + * The validator index (filter: gte) + */ + validator_index_gte?: number; + /** + * The validator index (filter: between_min) + */ + validator_index_between_min?: number; + /** + * The validator index (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * The validator index (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * The validator index (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * Head vote (beacon block root) for this attestation (filter: eq) + */ + block_root_eq?: string; + /** + * Head vote (beacon block root) for this attestation (filter: ne) + */ + block_root_ne?: string; + /** + * Head vote (beacon block root) for this attestation (filter: contains) + */ + block_root_contains?: string; + /** + * Head vote (beacon block root) for this attestation (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * Head vote (beacon block root) for this attestation (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * Head vote (beacon block root) for this attestation (filter: like) + */ + block_root_like?: string; + /** + * Head vote (beacon block root) for this attestation (filter: not_like) + */ + block_root_not_like?: string; + /** + * Head vote (beacon block root) for this attestation (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * Head vote (beacon block root) for this attestation (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Source checkpoint epoch for this attestation (filter: eq) + */ + source_epoch_eq?: number; + /** + * Source checkpoint epoch for this attestation (filter: ne) + */ + source_epoch_ne?: number; + /** + * Source checkpoint epoch for this attestation (filter: lt) + */ + source_epoch_lt?: number; + /** + * Source checkpoint epoch for this attestation (filter: lte) + */ + source_epoch_lte?: number; + /** + * Source checkpoint epoch for this attestation (filter: gt) + */ + source_epoch_gt?: number; + /** + * Source checkpoint epoch for this attestation (filter: gte) + */ + source_epoch_gte?: number; + /** + * Source checkpoint epoch for this attestation (filter: between_min) + */ + source_epoch_between_min?: number; + /** + * Source checkpoint epoch for this attestation (filter: between_max_value) + */ + source_epoch_between_max_value?: number; + /** + * Source checkpoint epoch for this attestation (filter: in_values) (comma-separated list) + */ + source_epoch_in_values?: string; + /** + * Source checkpoint epoch for this attestation (filter: not_in_values) (comma-separated list) + */ + source_epoch_not_in_values?: string; + /** + * Source checkpoint root for this attestation (filter: eq) + */ + source_root_eq?: string; + /** + * Source checkpoint root for this attestation (filter: ne) + */ + source_root_ne?: string; + /** + * Source checkpoint root for this attestation (filter: contains) + */ + source_root_contains?: string; + /** + * Source checkpoint root for this attestation (filter: starts_with) + */ + source_root_starts_with?: string; + /** + * Source checkpoint root for this attestation (filter: ends_with) + */ + source_root_ends_with?: string; + /** + * Source checkpoint root for this attestation (filter: like) + */ + source_root_like?: string; + /** + * Source checkpoint root for this attestation (filter: not_like) + */ + source_root_not_like?: string; + /** + * Source checkpoint root for this attestation (filter: in_values) (comma-separated list) + */ + source_root_in_values?: string; + /** + * Source checkpoint root for this attestation (filter: not_in_values) (comma-separated list) + */ + source_root_not_in_values?: string; + /** + * Target checkpoint epoch for this attestation (filter: eq) + */ + target_epoch_eq?: number; + /** + * Target checkpoint epoch for this attestation (filter: ne) + */ + target_epoch_ne?: number; + /** + * Target checkpoint epoch for this attestation (filter: lt) + */ + target_epoch_lt?: number; + /** + * Target checkpoint epoch for this attestation (filter: lte) + */ + target_epoch_lte?: number; + /** + * Target checkpoint epoch for this attestation (filter: gt) + */ + target_epoch_gt?: number; + /** + * Target checkpoint epoch for this attestation (filter: gte) + */ + target_epoch_gte?: number; + /** + * Target checkpoint epoch for this attestation (filter: between_min) + */ + target_epoch_between_min?: number; + /** + * Target checkpoint epoch for this attestation (filter: between_max_value) + */ + target_epoch_between_max_value?: number; + /** + * Target checkpoint epoch for this attestation (filter: in_values) (comma-separated list) + */ + target_epoch_in_values?: string; + /** + * Target checkpoint epoch for this attestation (filter: not_in_values) (comma-separated list) + */ + target_epoch_not_in_values?: string; + /** + * Target checkpoint root for this attestation (filter: eq) + */ + target_root_eq?: string; + /** + * Target checkpoint root for this attestation (filter: ne) + */ + target_root_ne?: string; + /** + * Target checkpoint root for this attestation (filter: contains) + */ + target_root_contains?: string; + /** + * Target checkpoint root for this attestation (filter: starts_with) + */ + target_root_starts_with?: string; + /** + * Target checkpoint root for this attestation (filter: ends_with) + */ + target_root_ends_with?: string; + /** + * Target checkpoint root for this attestation (filter: like) + */ + target_root_like?: string; + /** + * Target checkpoint root for this attestation (filter: not_like) + */ + target_root_not_like?: string; + /** + * Target checkpoint root for this attestation (filter: in_values) (comma-separated list) + */ + target_root_in_values?: string; + /** + * Target checkpoint root for this attestation (filter: not_in_values) (comma-separated list) + */ + target_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot the validator was attesting for (filter: eq) + */ + slot_eq?: number; + /** + * The slot the validator was attesting for (filter: ne) + */ + slot_ne?: number; + /** + * The slot the validator was attesting for (filter: lt) + */ + slot_lt?: number; + /** + * The slot the validator was attesting for (filter: lte) + */ + slot_lte?: number; + /** + * The slot the validator was attesting for (filter: gt) + */ + slot_gt?: number; + /** + * The slot the validator was attesting for (filter: gte) + */ + slot_gte?: number; + /** + * The slot the validator was attesting for (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot the validator was attesting for (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot the validator was attesting for (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot the validator was attesting for (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The committee the validator was assigned to for this slot (filter: eq) + */ + committee_index_eq?: string; + /** + * The committee the validator was assigned to for this slot (filter: ne) + */ + committee_index_ne?: string; + /** + * The committee the validator was assigned to for this slot (filter: contains) + */ + committee_index_contains?: string; + /** + * The committee the validator was assigned to for this slot (filter: starts_with) + */ + committee_index_starts_with?: string; + /** + * The committee the validator was assigned to for this slot (filter: ends_with) + */ + committee_index_ends_with?: string; + /** + * The committee the validator was assigned to for this slot (filter: like) + */ + committee_index_like?: string; + /** + * The committee the validator was assigned to for this slot (filter: not_like) + */ + committee_index_not_like?: string; + /** + * The committee the validator was assigned to for this slot (filter: in_values) (comma-separated list) + */ + committee_index_in_values?: string; + /** + * The committee the validator was assigned to for this slot (filter: not_in_values) (comma-separated list) + */ + committee_index_not_in_values?: string; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: eq) + */ + raw_seen_slot_start_diff_eq?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: ne) + */ + raw_seen_slot_start_diff_ne?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: lt) + */ + raw_seen_slot_start_diff_lt?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: lte) + */ + raw_seen_slot_start_diff_lte?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: gt) + */ + raw_seen_slot_start_diff_gt?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: gte) + */ + raw_seen_slot_start_diff_gte?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: between_min) + */ + raw_seen_slot_start_diff_between_min?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: between_max_value) + */ + raw_seen_slot_start_diff_between_max_value?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: in_values) (comma-separated list) + */ + raw_seen_slot_start_diff_in_values?: string; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: not_in_values) (comma-separated list) + */ + raw_seen_slot_start_diff_not_in_values?: string; + /** + * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: eq) + */ + raw_source_eq?: string; + /** + * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: ne) + */ + raw_source_ne?: string; + /** + * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: contains) + */ + raw_source_contains?: string; + /** + * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: starts_with) + */ + raw_source_starts_with?: string; + /** + * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: ends_with) + */ + raw_source_ends_with?: string; + /** + * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: like) + */ + raw_source_like?: string; + /** + * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: not_like) + */ + raw_source_not_like?: string; + /** + * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: in_values) (comma-separated list) + */ + raw_source_in_values?: string; + /** + * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: not_in_values) (comma-separated list) + */ + raw_source_not_in_values?: string; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: eq) + */ + agg_seen_slot_start_diff_eq?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: ne) + */ + agg_seen_slot_start_diff_ne?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: lt) + */ + agg_seen_slot_start_diff_lt?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: lte) + */ + agg_seen_slot_start_diff_lte?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: gt) + */ + agg_seen_slot_start_diff_gt?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: gte) + */ + agg_seen_slot_start_diff_gte?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: between_min) + */ + agg_seen_slot_start_diff_between_min?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: between_max_value) + */ + agg_seen_slot_start_diff_between_max_value?: number; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: in_values) (comma-separated list) + */ + agg_seen_slot_start_diff_in_values?: string; + /** + * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: not_in_values) (comma-separated list) + */ + agg_seen_slot_start_diff_not_in_values?: string; + /** + * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: eq) + */ + agg_source_eq?: string; + /** + * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: ne) + */ + agg_source_ne?: string; + /** + * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: contains) + */ + agg_source_contains?: string; + /** + * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: starts_with) + */ + agg_source_starts_with?: string; + /** + * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: ends_with) + */ + agg_source_ends_with?: string; + /** + * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: like) + */ + agg_source_like?: string; + /** + * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: not_like) + */ + agg_source_not_like?: string; + /** + * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: in_values) (comma-separated list) + */ + agg_source_in_values?: string; + /** + * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: not_in_values) (comma-separated list) + */ + agg_source_not_in_values?: string; + /** + * The maximum number of fct_attestation_first_seen_by_validator to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationFirstSeenByValidator` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_first_seen_by_validator'; +}; + +export type FctAttestationFirstSeenByValidatorServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationFirstSeenByValidatorServiceListError = + FctAttestationFirstSeenByValidatorServiceListErrors[keyof FctAttestationFirstSeenByValidatorServiceListErrors]; + +export type FctAttestationFirstSeenByValidatorServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationFirstSeenByValidatorResponse; +}; + +export type FctAttestationFirstSeenByValidatorServiceListResponse = + FctAttestationFirstSeenByValidatorServiceListResponses[keyof FctAttestationFirstSeenByValidatorServiceListResponses]; + +export type FctAttestationFirstSeenByValidatorServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_first_seen_by_validator/{slot_start_date_time}'; +}; + +export type FctAttestationFirstSeenByValidatorServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationFirstSeenByValidatorServiceGetError = + FctAttestationFirstSeenByValidatorServiceGetErrors[keyof FctAttestationFirstSeenByValidatorServiceGetErrors]; + +export type FctAttestationFirstSeenByValidatorServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationFirstSeenByValidatorResponse; +}; + +export type FctAttestationFirstSeenByValidatorServiceGetResponse = + FctAttestationFirstSeenByValidatorServiceGetResponses[keyof FctAttestationFirstSeenByValidatorServiceGetResponses]; + +export type FctAttestationFirstSeenChunked50MsServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash that was attested, null means the attestation was missed (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: eq) + */ + chunk_slot_start_diff_eq?: number; + /** + * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: ne) + */ + chunk_slot_start_diff_ne?: number; + /** + * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: lt) + */ + chunk_slot_start_diff_lt?: number; + /** + * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: lte) + */ + chunk_slot_start_diff_lte?: number; + /** + * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: gt) + */ + chunk_slot_start_diff_gt?: number; + /** + * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: gte) + */ + chunk_slot_start_diff_gte?: number; + /** + * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: between_min) + */ + chunk_slot_start_diff_between_min?: number; + /** + * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: between_max_value) + */ + chunk_slot_start_diff_between_max_value?: number; + /** + * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: in_values) (comma-separated list) + */ + chunk_slot_start_diff_in_values?: string; + /** + * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: not_in_values) (comma-separated list) + */ + chunk_slot_start_diff_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The number of attestations in this chunk (filter: eq) + */ + attestation_count_eq?: number; + /** + * The number of attestations in this chunk (filter: ne) + */ + attestation_count_ne?: number; + /** + * The number of attestations in this chunk (filter: lt) + */ + attestation_count_lt?: number; + /** + * The number of attestations in this chunk (filter: lte) + */ + attestation_count_lte?: number; + /** + * The number of attestations in this chunk (filter: gt) + */ + attestation_count_gt?: number; + /** + * The number of attestations in this chunk (filter: gte) + */ + attestation_count_gte?: number; + /** + * The number of attestations in this chunk (filter: between_min) + */ + attestation_count_between_min?: number; + /** + * The number of attestations in this chunk (filter: between_max_value) + */ + attestation_count_between_max_value?: number; + /** + * The number of attestations in this chunk (filter: in_values) (comma-separated list) + */ + attestation_count_in_values?: string; + /** + * The number of attestations in this chunk (filter: not_in_values) (comma-separated list) + */ + attestation_count_not_in_values?: string; + /** + * The maximum number of fct_attestation_first_seen_chunked_50ms to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationFirstSeenChunked50ms` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_first_seen_chunked_50ms'; +}; + +export type FctAttestationFirstSeenChunked50MsServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationFirstSeenChunked50MsServiceListError = + FctAttestationFirstSeenChunked50MsServiceListErrors[keyof FctAttestationFirstSeenChunked50MsServiceListErrors]; + +export type FctAttestationFirstSeenChunked50MsServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationFirstSeenChunked50MsResponse; +}; + +export type FctAttestationFirstSeenChunked50MsServiceListResponse = + FctAttestationFirstSeenChunked50MsServiceListResponses[keyof FctAttestationFirstSeenChunked50MsServiceListResponses]; + +export type FctAttestationFirstSeenChunked50MsServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_first_seen_chunked_50ms/{slot_start_date_time}'; +}; + +export type FctAttestationFirstSeenChunked50MsServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationFirstSeenChunked50MsServiceGetError = + FctAttestationFirstSeenChunked50MsServiceGetErrors[keyof FctAttestationFirstSeenChunked50MsServiceGetErrors]; + +export type FctAttestationFirstSeenChunked50MsServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationFirstSeenChunked50MsResponse; +}; + +export type FctAttestationFirstSeenChunked50MsServiceGetResponse = + FctAttestationFirstSeenChunked50MsServiceGetResponses[keyof FctAttestationFirstSeenChunked50MsServiceGetResponses]; + +export type FctAttestationInclusionDelayDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of slots in this day (filter: eq) + */ + slot_count_eq?: number; + /** + * Number of slots in this day (filter: ne) + */ + slot_count_ne?: number; + /** + * Number of slots in this day (filter: lt) + */ + slot_count_lt?: number; + /** + * Number of slots in this day (filter: lte) + */ + slot_count_lte?: number; + /** + * Number of slots in this day (filter: gt) + */ + slot_count_gt?: number; + /** + * Number of slots in this day (filter: gte) + */ + slot_count_gte?: number; + /** + * Number of slots in this day (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Number of slots in this day (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Number of slots in this day (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Number of slots in this day (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * Filter avg_inclusion_delay using value + */ + avg_inclusion_delay_value?: number; + /** + * Filter min_inclusion_delay using value + */ + min_inclusion_delay_value?: number; + /** + * Filter max_inclusion_delay using value + */ + max_inclusion_delay_value?: number; + /** + * Filter p05_inclusion_delay using value + */ + p05_inclusion_delay_value?: number; + /** + * Filter p50_inclusion_delay using value + */ + p50_inclusion_delay_value?: number; + /** + * Filter p95_inclusion_delay using value + */ + p95_inclusion_delay_value?: number; + /** + * Filter stddev_inclusion_delay using value + */ + stddev_inclusion_delay_value?: number; + /** + * Filter upper_band_inclusion_delay using value + */ + upper_band_inclusion_delay_value?: number; + /** + * Filter lower_band_inclusion_delay using value + */ + lower_band_inclusion_delay_value?: number; + /** + * Filter moving_avg_inclusion_delay using value + */ + moving_avg_inclusion_delay_value?: number; + /** + * The maximum number of fct_attestation_inclusion_delay_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationInclusionDelayDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_inclusion_delay_daily'; +}; + +export type FctAttestationInclusionDelayDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationInclusionDelayDailyServiceListError = + FctAttestationInclusionDelayDailyServiceListErrors[keyof FctAttestationInclusionDelayDailyServiceListErrors]; + +export type FctAttestationInclusionDelayDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationInclusionDelayDailyResponse; +}; + +export type FctAttestationInclusionDelayDailyServiceListResponse = + FctAttestationInclusionDelayDailyServiceListResponses[keyof FctAttestationInclusionDelayDailyServiceListResponses]; + +export type FctAttestationInclusionDelayDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_attestation_inclusion_delay_daily/{day_start_date}'; +}; + +export type FctAttestationInclusionDelayDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationInclusionDelayDailyServiceGetError = + FctAttestationInclusionDelayDailyServiceGetErrors[keyof FctAttestationInclusionDelayDailyServiceGetErrors]; + +export type FctAttestationInclusionDelayDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationInclusionDelayDailyResponse; +}; + +export type FctAttestationInclusionDelayDailyServiceGetResponse = + FctAttestationInclusionDelayDailyServiceGetResponses[keyof FctAttestationInclusionDelayDailyServiceGetResponses]; + +export type FctAttestationInclusionDelayHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of slots in this hour (filter: eq) + */ + slot_count_eq?: number; + /** + * Number of slots in this hour (filter: ne) + */ + slot_count_ne?: number; + /** + * Number of slots in this hour (filter: lt) + */ + slot_count_lt?: number; + /** + * Number of slots in this hour (filter: lte) + */ + slot_count_lte?: number; + /** + * Number of slots in this hour (filter: gt) + */ + slot_count_gt?: number; + /** + * Number of slots in this hour (filter: gte) + */ + slot_count_gte?: number; + /** + * Number of slots in this hour (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Number of slots in this hour (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Number of slots in this hour (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Number of slots in this hour (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * Filter avg_inclusion_delay using value + */ + avg_inclusion_delay_value?: number; + /** + * Filter min_inclusion_delay using value + */ + min_inclusion_delay_value?: number; + /** + * Filter max_inclusion_delay using value + */ + max_inclusion_delay_value?: number; + /** + * Filter p05_inclusion_delay using value + */ + p05_inclusion_delay_value?: number; + /** + * Filter p50_inclusion_delay using value + */ + p50_inclusion_delay_value?: number; + /** + * Filter p95_inclusion_delay using value + */ + p95_inclusion_delay_value?: number; + /** + * Filter stddev_inclusion_delay using value + */ + stddev_inclusion_delay_value?: number; + /** + * Filter upper_band_inclusion_delay using value + */ + upper_band_inclusion_delay_value?: number; + /** + * Filter lower_band_inclusion_delay using value + */ + lower_band_inclusion_delay_value?: number; + /** + * Filter moving_avg_inclusion_delay using value + */ + moving_avg_inclusion_delay_value?: number; + /** + * The maximum number of fct_attestation_inclusion_delay_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationInclusionDelayHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_inclusion_delay_hourly'; +}; + +export type FctAttestationInclusionDelayHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationInclusionDelayHourlyServiceListError = + FctAttestationInclusionDelayHourlyServiceListErrors[keyof FctAttestationInclusionDelayHourlyServiceListErrors]; + +export type FctAttestationInclusionDelayHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationInclusionDelayHourlyResponse; +}; + +export type FctAttestationInclusionDelayHourlyServiceListResponse = + FctAttestationInclusionDelayHourlyServiceListResponses[keyof FctAttestationInclusionDelayHourlyServiceListResponses]; + +export type FctAttestationInclusionDelayHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_inclusion_delay_hourly/{hour_start_date_time}'; +}; + +export type FctAttestationInclusionDelayHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationInclusionDelayHourlyServiceGetError = + FctAttestationInclusionDelayHourlyServiceGetErrors[keyof FctAttestationInclusionDelayHourlyServiceGetErrors]; + +export type FctAttestationInclusionDelayHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationInclusionDelayHourlyResponse; +}; + +export type FctAttestationInclusionDelayHourlyServiceGetResponse = + FctAttestationInclusionDelayHourlyServiceGetResponses[keyof FctAttestationInclusionDelayHourlyServiceGetResponses]; + +export type FctAttestationLivenessByEntityServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: eq) + */ + entity_eq?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: ne) + */ + entity_ne?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: contains) + */ + entity_contains?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: starts_with) + */ + entity_starts_with?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: ends_with) + */ + entity_ends_with?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: like) + */ + entity_like?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: not_like) + */ + entity_not_like?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: in_values) (comma-separated list) + */ + entity_in_values?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: not_in_values) (comma-separated list) + */ + entity_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Number of attestations for this entity (filter: eq) + */ + attestation_count_eq?: number; + /** + * Number of attestations for this entity (filter: ne) + */ + attestation_count_ne?: number; + /** + * Number of attestations for this entity (filter: lt) + */ + attestation_count_lt?: number; + /** + * Number of attestations for this entity (filter: lte) + */ + attestation_count_lte?: number; + /** + * Number of attestations for this entity (filter: gt) + */ + attestation_count_gt?: number; + /** + * Number of attestations for this entity (filter: gte) + */ + attestation_count_gte?: number; + /** + * Number of attestations for this entity (filter: between_min) + */ + attestation_count_between_min?: number; + /** + * Number of attestations for this entity (filter: between_max_value) + */ + attestation_count_between_max_value?: number; + /** + * Number of attestations for this entity (filter: in_values) (comma-separated list) + */ + attestation_count_in_values?: string; + /** + * Number of attestations for this entity (filter: not_in_values) (comma-separated list) + */ + attestation_count_not_in_values?: string; + /** + * Number of missed attestations for this entity (filter: eq) + */ + missed_count_eq?: number; + /** + * Number of missed attestations for this entity (filter: ne) + */ + missed_count_ne?: number; + /** + * Number of missed attestations for this entity (filter: lt) + */ + missed_count_lt?: number; + /** + * Number of missed attestations for this entity (filter: lte) + */ + missed_count_lte?: number; + /** + * Number of missed attestations for this entity (filter: gt) + */ + missed_count_gt?: number; + /** + * Number of missed attestations for this entity (filter: gte) + */ + missed_count_gte?: number; + /** + * Number of missed attestations for this entity (filter: between_min) + */ + missed_count_between_min?: number; + /** + * Number of missed attestations for this entity (filter: between_max_value) + */ + missed_count_between_max_value?: number; + /** + * Number of missed attestations for this entity (filter: in_values) (comma-separated list) + */ + missed_count_in_values?: string; + /** + * Number of missed attestations for this entity (filter: not_in_values) (comma-separated list) + */ + missed_count_not_in_values?: string; + /** + * The maximum number of fct_attestation_liveness_by_entity to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationLivenessByEntity` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_liveness_by_entity'; +}; + +export type FctAttestationLivenessByEntityServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationLivenessByEntityServiceListError = + FctAttestationLivenessByEntityServiceListErrors[keyof FctAttestationLivenessByEntityServiceListErrors]; + +export type FctAttestationLivenessByEntityServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationLivenessByEntityResponse; +}; + +export type FctAttestationLivenessByEntityServiceListResponse = + FctAttestationLivenessByEntityServiceListResponses[keyof FctAttestationLivenessByEntityServiceListResponses]; + +export type FctAttestationLivenessByEntityServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_liveness_by_entity/{slot_start_date_time}'; +}; + +export type FctAttestationLivenessByEntityServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationLivenessByEntityServiceGetError = + FctAttestationLivenessByEntityServiceGetErrors[keyof FctAttestationLivenessByEntityServiceGetErrors]; + +export type FctAttestationLivenessByEntityServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationLivenessByEntityResponse; +}; + +export type FctAttestationLivenessByEntityServiceGetResponse = + FctAttestationLivenessByEntityServiceGetResponses[keyof FctAttestationLivenessByEntityServiceGetResponses]; + +export type FctAttestationLivenessByEntityHeadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: eq) + */ + entity_eq?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: ne) + */ + entity_ne?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: contains) + */ + entity_contains?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: starts_with) + */ + entity_starts_with?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: ends_with) + */ + entity_ends_with?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: like) + */ + entity_like?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: not_like) + */ + entity_not_like?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: in_values) (comma-separated list) + */ + entity_in_values?: string; + /** + * The entity (staking provider) associated with the validators, unknown if not mapped (filter: not_in_values) (comma-separated list) + */ + entity_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Number of attestations for this entity (filter: eq) + */ + attestation_count_eq?: number; + /** + * Number of attestations for this entity (filter: ne) + */ + attestation_count_ne?: number; + /** + * Number of attestations for this entity (filter: lt) + */ + attestation_count_lt?: number; + /** + * Number of attestations for this entity (filter: lte) + */ + attestation_count_lte?: number; + /** + * Number of attestations for this entity (filter: gt) + */ + attestation_count_gt?: number; + /** + * Number of attestations for this entity (filter: gte) + */ + attestation_count_gte?: number; + /** + * Number of attestations for this entity (filter: between_min) + */ + attestation_count_between_min?: number; + /** + * Number of attestations for this entity (filter: between_max_value) + */ + attestation_count_between_max_value?: number; + /** + * Number of attestations for this entity (filter: in_values) (comma-separated list) + */ + attestation_count_in_values?: string; + /** + * Number of attestations for this entity (filter: not_in_values) (comma-separated list) + */ + attestation_count_not_in_values?: string; + /** + * Number of missed attestations for this entity (filter: eq) + */ + missed_count_eq?: number; + /** + * Number of missed attestations for this entity (filter: ne) + */ + missed_count_ne?: number; + /** + * Number of missed attestations for this entity (filter: lt) + */ + missed_count_lt?: number; + /** + * Number of missed attestations for this entity (filter: lte) + */ + missed_count_lte?: number; + /** + * Number of missed attestations for this entity (filter: gt) + */ + missed_count_gt?: number; + /** + * Number of missed attestations for this entity (filter: gte) + */ + missed_count_gte?: number; + /** + * Number of missed attestations for this entity (filter: between_min) + */ + missed_count_between_min?: number; + /** + * Number of missed attestations for this entity (filter: between_max_value) + */ + missed_count_between_max_value?: number; + /** + * Number of missed attestations for this entity (filter: in_values) (comma-separated list) + */ + missed_count_in_values?: string; + /** + * Number of missed attestations for this entity (filter: not_in_values) (comma-separated list) + */ + missed_count_not_in_values?: string; + /** + * The maximum number of fct_attestation_liveness_by_entity_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationLivenessByEntityHead` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_liveness_by_entity_head'; +}; + +export type FctAttestationLivenessByEntityHeadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationLivenessByEntityHeadServiceListError = + FctAttestationLivenessByEntityHeadServiceListErrors[keyof FctAttestationLivenessByEntityHeadServiceListErrors]; + +export type FctAttestationLivenessByEntityHeadServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationLivenessByEntityHeadResponse; +}; + +export type FctAttestationLivenessByEntityHeadServiceListResponse = + FctAttestationLivenessByEntityHeadServiceListResponses[keyof FctAttestationLivenessByEntityHeadServiceListResponses]; + +export type FctAttestationLivenessByEntityHeadServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_liveness_by_entity_head/{slot_start_date_time}'; +}; + +export type FctAttestationLivenessByEntityHeadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationLivenessByEntityHeadServiceGetError = + FctAttestationLivenessByEntityHeadServiceGetErrors[keyof FctAttestationLivenessByEntityHeadServiceGetErrors]; + +export type FctAttestationLivenessByEntityHeadServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationLivenessByEntityHeadResponse; +}; + +export type FctAttestationLivenessByEntityHeadServiceGetResponse = + FctAttestationLivenessByEntityHeadServiceGetResponses[keyof FctAttestationLivenessByEntityHeadServiceGetResponses]; + +export type FctAttestationObservationByNodeServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Name of the client (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Number of attestations observed by this node in this slot (filter: eq) + */ + attestation_count_eq?: number; + /** + * Number of attestations observed by this node in this slot (filter: ne) + */ + attestation_count_ne?: number; + /** + * Number of attestations observed by this node in this slot (filter: lt) + */ + attestation_count_lt?: number; + /** + * Number of attestations observed by this node in this slot (filter: lte) + */ + attestation_count_lte?: number; + /** + * Number of attestations observed by this node in this slot (filter: gt) + */ + attestation_count_gt?: number; + /** + * Number of attestations observed by this node in this slot (filter: gte) + */ + attestation_count_gte?: number; + /** + * Number of attestations observed by this node in this slot (filter: between_min) + */ + attestation_count_between_min?: number; + /** + * Number of attestations observed by this node in this slot (filter: between_max_value) + */ + attestation_count_between_max_value?: number; + /** + * Number of attestations observed by this node in this slot (filter: in_values) (comma-separated list) + */ + attestation_count_in_values?: string; + /** + * Number of attestations observed by this node in this slot (filter: not_in_values) (comma-separated list) + */ + attestation_count_not_in_values?: string; + /** + * Average time from slot start to see attestations (milliseconds, rounded) (filter: eq) + */ + avg_seen_slot_start_diff_eq?: number; + /** + * Average time from slot start to see attestations (milliseconds, rounded) (filter: ne) + */ + avg_seen_slot_start_diff_ne?: number; + /** + * Average time from slot start to see attestations (milliseconds, rounded) (filter: lt) + */ + avg_seen_slot_start_diff_lt?: number; + /** + * Average time from slot start to see attestations (milliseconds, rounded) (filter: lte) + */ + avg_seen_slot_start_diff_lte?: number; + /** + * Average time from slot start to see attestations (milliseconds, rounded) (filter: gt) + */ + avg_seen_slot_start_diff_gt?: number; + /** + * Average time from slot start to see attestations (milliseconds, rounded) (filter: gte) + */ + avg_seen_slot_start_diff_gte?: number; + /** + * Average time from slot start to see attestations (milliseconds, rounded) (filter: between_min) + */ + avg_seen_slot_start_diff_between_min?: number; + /** + * Average time from slot start to see attestations (milliseconds, rounded) (filter: between_max_value) + */ + avg_seen_slot_start_diff_between_max_value?: number; + /** + * Average time from slot start to see attestations (milliseconds, rounded) (filter: in_values) (comma-separated list) + */ + avg_seen_slot_start_diff_in_values?: string; + /** + * Average time from slot start to see attestations (milliseconds, rounded) (filter: not_in_values) (comma-separated list) + */ + avg_seen_slot_start_diff_not_in_values?: string; + /** + * Median time from slot start to see attestations (milliseconds, rounded) (filter: eq) + */ + median_seen_slot_start_diff_eq?: number; + /** + * Median time from slot start to see attestations (milliseconds, rounded) (filter: ne) + */ + median_seen_slot_start_diff_ne?: number; + /** + * Median time from slot start to see attestations (milliseconds, rounded) (filter: lt) + */ + median_seen_slot_start_diff_lt?: number; + /** + * Median time from slot start to see attestations (milliseconds, rounded) (filter: lte) + */ + median_seen_slot_start_diff_lte?: number; + /** + * Median time from slot start to see attestations (milliseconds, rounded) (filter: gt) + */ + median_seen_slot_start_diff_gt?: number; + /** + * Median time from slot start to see attestations (milliseconds, rounded) (filter: gte) + */ + median_seen_slot_start_diff_gte?: number; + /** + * Median time from slot start to see attestations (milliseconds, rounded) (filter: between_min) + */ + median_seen_slot_start_diff_between_min?: number; + /** + * Median time from slot start to see attestations (milliseconds, rounded) (filter: between_max_value) + */ + median_seen_slot_start_diff_between_max_value?: number; + /** + * Median time from slot start to see attestations (milliseconds, rounded) (filter: in_values) (comma-separated list) + */ + median_seen_slot_start_diff_in_values?: string; + /** + * Median time from slot start to see attestations (milliseconds, rounded) (filter: not_in_values) (comma-separated list) + */ + median_seen_slot_start_diff_not_in_values?: string; + /** + * Minimum time from slot start to see an attestation (milliseconds) (filter: eq) + */ + min_seen_slot_start_diff_eq?: number; + /** + * Minimum time from slot start to see an attestation (milliseconds) (filter: ne) + */ + min_seen_slot_start_diff_ne?: number; + /** + * Minimum time from slot start to see an attestation (milliseconds) (filter: lt) + */ + min_seen_slot_start_diff_lt?: number; + /** + * Minimum time from slot start to see an attestation (milliseconds) (filter: lte) + */ + min_seen_slot_start_diff_lte?: number; + /** + * Minimum time from slot start to see an attestation (milliseconds) (filter: gt) + */ + min_seen_slot_start_diff_gt?: number; + /** + * Minimum time from slot start to see an attestation (milliseconds) (filter: gte) + */ + min_seen_slot_start_diff_gte?: number; + /** + * Minimum time from slot start to see an attestation (milliseconds) (filter: between_min) + */ + min_seen_slot_start_diff_between_min?: number; + /** + * Minimum time from slot start to see an attestation (milliseconds) (filter: between_max_value) + */ + min_seen_slot_start_diff_between_max_value?: number; + /** + * Minimum time from slot start to see an attestation (milliseconds) (filter: in_values) (comma-separated list) + */ + min_seen_slot_start_diff_in_values?: string; + /** + * Minimum time from slot start to see an attestation (milliseconds) (filter: not_in_values) (comma-separated list) + */ + min_seen_slot_start_diff_not_in_values?: string; + /** + * Maximum time from slot start to see an attestation (milliseconds) (filter: eq) + */ + max_seen_slot_start_diff_eq?: number; + /** + * Maximum time from slot start to see an attestation (milliseconds) (filter: ne) + */ + max_seen_slot_start_diff_ne?: number; + /** + * Maximum time from slot start to see an attestation (milliseconds) (filter: lt) + */ + max_seen_slot_start_diff_lt?: number; + /** + * Maximum time from slot start to see an attestation (milliseconds) (filter: lte) + */ + max_seen_slot_start_diff_lte?: number; + /** + * Maximum time from slot start to see an attestation (milliseconds) (filter: gt) + */ + max_seen_slot_start_diff_gt?: number; + /** + * Maximum time from slot start to see an attestation (milliseconds) (filter: gte) + */ + max_seen_slot_start_diff_gte?: number; + /** + * Maximum time from slot start to see an attestation (milliseconds) (filter: between_min) + */ + max_seen_slot_start_diff_between_min?: number; + /** + * Maximum time from slot start to see an attestation (milliseconds) (filter: between_max_value) + */ + max_seen_slot_start_diff_between_max_value?: number; + /** + * Maximum time from slot start to see an attestation (milliseconds) (filter: in_values) (comma-separated list) + */ + max_seen_slot_start_diff_in_values?: string; + /** + * Maximum time from slot start to see an attestation (milliseconds) (filter: not_in_values) (comma-separated list) + */ + max_seen_slot_start_diff_not_in_values?: string; + /** + * Representative beacon block root (from most common attestation target) (filter: eq) + */ + block_root_eq?: string; + /** + * Representative beacon block root (from most common attestation target) (filter: ne) + */ + block_root_ne?: string; + /** + * Representative beacon block root (from most common attestation target) (filter: contains) + */ + block_root_contains?: string; + /** + * Representative beacon block root (from most common attestation target) (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * Representative beacon block root (from most common attestation target) (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * Representative beacon block root (from most common attestation target) (filter: like) + */ + block_root_like?: string; + /** + * Representative beacon block root (from most common attestation target) (filter: not_like) + */ + block_root_not_like?: string; + /** + * Representative beacon block root (from most common attestation target) (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * Representative beacon block root (from most common attestation target) (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Username of the node (filter: eq) + */ + username_eq?: string; + /** + * Username of the node (filter: ne) + */ + username_ne?: string; + /** + * Username of the node (filter: contains) + */ + username_contains?: string; + /** + * Username of the node (filter: starts_with) + */ + username_starts_with?: string; + /** + * Username of the node (filter: ends_with) + */ + username_ends_with?: string; + /** + * Username of the node (filter: like) + */ + username_like?: string; + /** + * Username of the node (filter: not_like) + */ + username_not_like?: string; + /** + * Username of the node (filter: in_values) (comma-separated list) + */ + username_in_values?: string; + /** + * Username of the node (filter: not_in_values) (comma-separated list) + */ + username_not_in_values?: string; + /** + * ID of the node (filter: eq) + */ + node_id_eq?: string; + /** + * ID of the node (filter: ne) + */ + node_id_ne?: string; + /** + * ID of the node (filter: contains) + */ + node_id_contains?: string; + /** + * ID of the node (filter: starts_with) + */ + node_id_starts_with?: string; + /** + * ID of the node (filter: ends_with) + */ + node_id_ends_with?: string; + /** + * ID of the node (filter: like) + */ + node_id_like?: string; + /** + * ID of the node (filter: not_like) + */ + node_id_not_like?: string; + /** + * ID of the node (filter: in_values) (comma-separated list) + */ + node_id_in_values?: string; + /** + * ID of the node (filter: not_in_values) (comma-separated list) + */ + node_id_not_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) + */ + classification_eq?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) + */ + classification_ne?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) + */ + classification_contains?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) + */ + classification_starts_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) + */ + classification_ends_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) + */ + classification_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) + */ + classification_not_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) + */ + classification_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) + */ + classification_not_in_values?: string; + /** + * Version of the client (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * City of the client (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Autonomous system number of the client (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * Ethereum consensus client version (filter: eq) + */ + meta_consensus_version_eq?: string; + /** + * Ethereum consensus client version (filter: ne) + */ + meta_consensus_version_ne?: string; + /** + * Ethereum consensus client version (filter: contains) + */ + meta_consensus_version_contains?: string; + /** + * Ethereum consensus client version (filter: starts_with) + */ + meta_consensus_version_starts_with?: string; + /** + * Ethereum consensus client version (filter: ends_with) + */ + meta_consensus_version_ends_with?: string; + /** + * Ethereum consensus client version (filter: like) + */ + meta_consensus_version_like?: string; + /** + * Ethereum consensus client version (filter: not_like) + */ + meta_consensus_version_not_like?: string; + /** + * Ethereum consensus client version (filter: in_values) (comma-separated list) + */ + meta_consensus_version_in_values?: string; + /** + * Ethereum consensus client version (filter: not_in_values) (comma-separated list) + */ + meta_consensus_version_not_in_values?: string; + /** + * Ethereum consensus client implementation (filter: eq) + */ + meta_consensus_implementation_eq?: string; + /** + * Ethereum consensus client implementation (filter: ne) + */ + meta_consensus_implementation_ne?: string; + /** + * Ethereum consensus client implementation (filter: contains) + */ + meta_consensus_implementation_contains?: string; + /** + * Ethereum consensus client implementation (filter: starts_with) + */ + meta_consensus_implementation_starts_with?: string; + /** + * Ethereum consensus client implementation (filter: ends_with) + */ + meta_consensus_implementation_ends_with?: string; + /** + * Ethereum consensus client implementation (filter: like) + */ + meta_consensus_implementation_like?: string; + /** + * Ethereum consensus client implementation (filter: not_like) + */ + meta_consensus_implementation_not_like?: string; + /** + * Ethereum consensus client implementation (filter: in_values) (comma-separated list) + */ + meta_consensus_implementation_in_values?: string; + /** + * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) + */ + meta_consensus_implementation_not_in_values?: string; + /** + * The maximum number of fct_attestation_observation_by_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationObservationByNode` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_observation_by_node'; +}; + +export type FctAttestationObservationByNodeServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationObservationByNodeServiceListError = + FctAttestationObservationByNodeServiceListErrors[keyof FctAttestationObservationByNodeServiceListErrors]; + +export type FctAttestationObservationByNodeServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationObservationByNodeResponse; +}; + +export type FctAttestationObservationByNodeServiceListResponse = + FctAttestationObservationByNodeServiceListResponses[keyof FctAttestationObservationByNodeServiceListResponses]; + +export type FctAttestationObservationByNodeServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_observation_by_node/{slot_start_date_time}'; +}; + +export type FctAttestationObservationByNodeServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationObservationByNodeServiceGetError = + FctAttestationObservationByNodeServiceGetErrors[keyof FctAttestationObservationByNodeServiceGetErrors]; + +export type FctAttestationObservationByNodeServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationObservationByNodeResponse; +}; + +export type FctAttestationObservationByNodeServiceGetResponse = + FctAttestationObservationByNodeServiceGetResponses[keyof FctAttestationObservationByNodeServiceGetResponses]; + +export type FctAttestationParticipationRateDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of slots in this day (filter: eq) + */ + slot_count_eq?: number; + /** + * Number of slots in this day (filter: ne) + */ + slot_count_ne?: number; + /** + * Number of slots in this day (filter: lt) + */ + slot_count_lt?: number; + /** + * Number of slots in this day (filter: lte) + */ + slot_count_lte?: number; + /** + * Number of slots in this day (filter: gt) + */ + slot_count_gt?: number; + /** + * Number of slots in this day (filter: gte) + */ + slot_count_gte?: number; + /** + * Number of slots in this day (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Number of slots in this day (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Number of slots in this day (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Number of slots in this day (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * Filter avg_participation_rate using value + */ + avg_participation_rate_value?: number; + /** + * Filter min_participation_rate using value + */ + min_participation_rate_value?: number; + /** + * Filter max_participation_rate using value + */ + max_participation_rate_value?: number; + /** + * Filter p05_participation_rate using value + */ + p05_participation_rate_value?: number; + /** + * Filter p50_participation_rate using value + */ + p50_participation_rate_value?: number; + /** + * Filter p95_participation_rate using value + */ + p95_participation_rate_value?: number; + /** + * Filter stddev_participation_rate using value + */ + stddev_participation_rate_value?: number; + /** + * Filter upper_band_participation_rate using value + */ + upper_band_participation_rate_value?: number; + /** + * Filter lower_band_participation_rate using value + */ + lower_band_participation_rate_value?: number; + /** + * Filter moving_avg_participation_rate using value + */ + moving_avg_participation_rate_value?: number; + /** + * The maximum number of fct_attestation_participation_rate_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationParticipationRateDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_participation_rate_daily'; +}; + +export type FctAttestationParticipationRateDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationParticipationRateDailyServiceListError = + FctAttestationParticipationRateDailyServiceListErrors[keyof FctAttestationParticipationRateDailyServiceListErrors]; + +export type FctAttestationParticipationRateDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationParticipationRateDailyResponse; +}; + +export type FctAttestationParticipationRateDailyServiceListResponse = + FctAttestationParticipationRateDailyServiceListResponses[keyof FctAttestationParticipationRateDailyServiceListResponses]; + +export type FctAttestationParticipationRateDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_attestation_participation_rate_daily/{day_start_date}'; +}; + +export type FctAttestationParticipationRateDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationParticipationRateDailyServiceGetError = + FctAttestationParticipationRateDailyServiceGetErrors[keyof FctAttestationParticipationRateDailyServiceGetErrors]; + +export type FctAttestationParticipationRateDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationParticipationRateDailyResponse; +}; + +export type FctAttestationParticipationRateDailyServiceGetResponse = + FctAttestationParticipationRateDailyServiceGetResponses[keyof FctAttestationParticipationRateDailyServiceGetResponses]; + +export type FctAttestationParticipationRateHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of slots in this hour (filter: eq) + */ + slot_count_eq?: number; + /** + * Number of slots in this hour (filter: ne) + */ + slot_count_ne?: number; + /** + * Number of slots in this hour (filter: lt) + */ + slot_count_lt?: number; + /** + * Number of slots in this hour (filter: lte) + */ + slot_count_lte?: number; + /** + * Number of slots in this hour (filter: gt) + */ + slot_count_gt?: number; + /** + * Number of slots in this hour (filter: gte) + */ + slot_count_gte?: number; + /** + * Number of slots in this hour (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Number of slots in this hour (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Number of slots in this hour (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Number of slots in this hour (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * Filter avg_participation_rate using value + */ + avg_participation_rate_value?: number; + /** + * Filter min_participation_rate using value + */ + min_participation_rate_value?: number; + /** + * Filter max_participation_rate using value + */ + max_participation_rate_value?: number; + /** + * Filter p05_participation_rate using value + */ + p05_participation_rate_value?: number; + /** + * Filter p50_participation_rate using value + */ + p50_participation_rate_value?: number; + /** + * Filter p95_participation_rate using value + */ + p95_participation_rate_value?: number; + /** + * Filter stddev_participation_rate using value + */ + stddev_participation_rate_value?: number; + /** + * Filter upper_band_participation_rate using value + */ + upper_band_participation_rate_value?: number; + /** + * Filter lower_band_participation_rate using value + */ + lower_band_participation_rate_value?: number; + /** + * Filter moving_avg_participation_rate using value + */ + moving_avg_participation_rate_value?: number; + /** + * The maximum number of fct_attestation_participation_rate_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationParticipationRateHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_participation_rate_hourly'; +}; + +export type FctAttestationParticipationRateHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationParticipationRateHourlyServiceListError = + FctAttestationParticipationRateHourlyServiceListErrors[keyof FctAttestationParticipationRateHourlyServiceListErrors]; + +export type FctAttestationParticipationRateHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationParticipationRateHourlyResponse; +}; + +export type FctAttestationParticipationRateHourlyServiceListResponse = + FctAttestationParticipationRateHourlyServiceListResponses[keyof FctAttestationParticipationRateHourlyServiceListResponses]; + +export type FctAttestationParticipationRateHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_attestation_participation_rate_hourly/{hour_start_date_time}'; +}; + +export type FctAttestationParticipationRateHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationParticipationRateHourlyServiceGetError = + FctAttestationParticipationRateHourlyServiceGetErrors[keyof FctAttestationParticipationRateHourlyServiceGetErrors]; + +export type FctAttestationParticipationRateHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationParticipationRateHourlyResponse; +}; + +export type FctAttestationParticipationRateHourlyServiceGetResponse = + FctAttestationParticipationRateHourlyServiceGetResponses[keyof FctAttestationParticipationRateHourlyServiceGetResponses]; + +export type FctAttestationVoteCorrectnessByValidatorServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The index of the validator (filter: eq) + */ + validator_index_eq?: number; + /** + * The index of the validator (filter: ne) + */ + validator_index_ne?: number; + /** + * The index of the validator (filter: lt) + */ + validator_index_lt?: number; + /** + * The index of the validator (filter: lte) + */ + validator_index_lte?: number; + /** + * The index of the validator (filter: gt) + */ + validator_index_gt?: number; + /** + * The index of the validator (filter: gte) + */ + validator_index_gte?: number; + /** + * The index of the validator (filter: between_min) + */ + validator_index_between_min?: number; + /** + * The index of the validator (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * The index of the validator (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * The index of the validator (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * The start time of the slot (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The start time of the slot (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The start time of the slot (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The start time of the slot (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The start time of the slot (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The start time of the slot (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The start time of the slot (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The start time of the slot (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The start time of the slot (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The start time of the slot (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Whether the validator attested in this slot (filter: eq) + */ + attested_eq?: boolean; + /** + * Whether the validator attested in this slot (filter: ne) + */ + attested_ne?: boolean; + /** + * Whether the head vote was correct. NULL if not attested (filter: eq) + */ + head_correct_eq?: boolean; + /** + * Whether the head vote was correct. NULL if not attested (filter: ne) + */ + head_correct_ne?: boolean; + /** + * Whether the target vote was correct. NULL if not attested (filter: eq) + */ + target_correct_eq?: boolean; + /** + * Whether the target vote was correct. NULL if not attested (filter: ne) + */ + target_correct_ne?: boolean; + /** + * Whether the source vote was correct. NULL if not attested (filter: eq) + */ + source_correct_eq?: boolean; + /** + * Whether the source vote was correct. NULL if not attested (filter: ne) + */ + source_correct_ne?: boolean; + /** + * Inclusion distance for the attestation. NULL if not attested (filter: eq) + */ + inclusion_distance_eq?: number; + /** + * Inclusion distance for the attestation. NULL if not attested (filter: ne) + */ + inclusion_distance_ne?: number; + /** + * Inclusion distance for the attestation. NULL if not attested (filter: lt) + */ + inclusion_distance_lt?: number; + /** + * Inclusion distance for the attestation. NULL if not attested (filter: lte) + */ + inclusion_distance_lte?: number; + /** + * Inclusion distance for the attestation. NULL if not attested (filter: gt) + */ + inclusion_distance_gt?: number; + /** + * Inclusion distance for the attestation. NULL if not attested (filter: gte) + */ + inclusion_distance_gte?: number; + /** + * Inclusion distance for the attestation. NULL if not attested (filter: between_min) + */ + inclusion_distance_between_min?: number; + /** + * Inclusion distance for the attestation. NULL if not attested (filter: between_max_value) + */ + inclusion_distance_between_max_value?: number; + /** + * Inclusion distance for the attestation. NULL if not attested (filter: in_values) (comma-separated list) + */ + inclusion_distance_in_values?: string; + /** + * Inclusion distance for the attestation. NULL if not attested (filter: not_in_values) (comma-separated list) + */ + inclusion_distance_not_in_values?: string; + /** + * The maximum number of fct_attestation_vote_correctness_by_validator to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationVoteCorrectnessByValidator` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_vote_correctness_by_validator'; +}; + +export type FctAttestationVoteCorrectnessByValidatorServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationVoteCorrectnessByValidatorServiceListError = + FctAttestationVoteCorrectnessByValidatorServiceListErrors[keyof FctAttestationVoteCorrectnessByValidatorServiceListErrors]; + +export type FctAttestationVoteCorrectnessByValidatorServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationVoteCorrectnessByValidatorResponse; +}; + +export type FctAttestationVoteCorrectnessByValidatorServiceListResponse = + FctAttestationVoteCorrectnessByValidatorServiceListResponses[keyof FctAttestationVoteCorrectnessByValidatorServiceListResponses]; + +export type FctAttestationVoteCorrectnessByValidatorServiceGetData = { + body?: never; + path: { + /** + * The index of the validator + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/fct_attestation_vote_correctness_by_validator/{validator_index}'; +}; + +export type FctAttestationVoteCorrectnessByValidatorServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationVoteCorrectnessByValidatorServiceGetError = + FctAttestationVoteCorrectnessByValidatorServiceGetErrors[keyof FctAttestationVoteCorrectnessByValidatorServiceGetErrors]; + +export type FctAttestationVoteCorrectnessByValidatorServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationVoteCorrectnessByValidatorResponse; +}; + +export type FctAttestationVoteCorrectnessByValidatorServiceGetResponse = + FctAttestationVoteCorrectnessByValidatorServiceGetResponses[keyof FctAttestationVoteCorrectnessByValidatorServiceGetResponses]; + +export type FctAttestationVoteCorrectnessByValidatorDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The index of the validator (filter: eq) + */ + validator_index_eq?: number; + /** + * The index of the validator (filter: ne) + */ + validator_index_ne?: number; + /** + * The index of the validator (filter: lt) + */ + validator_index_lt?: number; + /** + * The index of the validator (filter: lte) + */ + validator_index_lte?: number; + /** + * The index of the validator (filter: gt) + */ + validator_index_gt?: number; + /** + * The index of the validator (filter: gte) + */ + validator_index_gte?: number; + /** + * The index of the validator (filter: between_min) + */ + validator_index_between_min?: number; + /** + * The index of the validator (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * The index of the validator (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * The index of the validator (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * The start of the day for this aggregation (filter: eq) + */ + day_start_date_eq?: string; + /** + * The start of the day for this aggregation (filter: ne) + */ + day_start_date_ne?: string; + /** + * The start of the day for this aggregation (filter: contains) + */ + day_start_date_contains?: string; + /** + * The start of the day for this aggregation (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * The start of the day for this aggregation (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * The start of the day for this aggregation (filter: like) + */ + day_start_date_like?: string; + /** + * The start of the day for this aggregation (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * The start of the day for this aggregation (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * The start of the day for this aggregation (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total attestation duties for the validator in this day (filter: eq) + */ + total_duties_eq?: number; + /** + * Total attestation duties for the validator in this day (filter: ne) + */ + total_duties_ne?: number; + /** + * Total attestation duties for the validator in this day (filter: lt) + */ + total_duties_lt?: number; + /** + * Total attestation duties for the validator in this day (filter: lte) + */ + total_duties_lte?: number; + /** + * Total attestation duties for the validator in this day (filter: gt) + */ + total_duties_gt?: number; + /** + * Total attestation duties for the validator in this day (filter: gte) + */ + total_duties_gte?: number; + /** + * Total attestation duties for the validator in this day (filter: between_min) + */ + total_duties_between_min?: number; + /** + * Total attestation duties for the validator in this day (filter: between_max_value) + */ + total_duties_between_max_value?: number; + /** + * Total attestation duties for the validator in this day (filter: in_values) (comma-separated list) + */ + total_duties_in_values?: string; + /** + * Total attestation duties for the validator in this day (filter: not_in_values) (comma-separated list) + */ + total_duties_not_in_values?: string; + /** + * Number of attestations made (filter: eq) + */ + attested_count_eq?: number; + /** + * Number of attestations made (filter: ne) + */ + attested_count_ne?: number; + /** + * Number of attestations made (filter: lt) + */ + attested_count_lt?: number; + /** + * Number of attestations made (filter: lte) + */ + attested_count_lte?: number; + /** + * Number of attestations made (filter: gt) + */ + attested_count_gt?: number; + /** + * Number of attestations made (filter: gte) + */ + attested_count_gte?: number; + /** + * Number of attestations made (filter: between_min) + */ + attested_count_between_min?: number; + /** + * Number of attestations made (filter: between_max_value) + */ + attested_count_between_max_value?: number; + /** + * Number of attestations made (filter: in_values) (comma-separated list) + */ + attested_count_in_values?: string; + /** + * Number of attestations made (filter: not_in_values) (comma-separated list) + */ + attested_count_not_in_values?: string; + /** + * Number of attestations missed (filter: eq) + */ + missed_count_eq?: number; + /** + * Number of attestations missed (filter: ne) + */ + missed_count_ne?: number; + /** + * Number of attestations missed (filter: lt) + */ + missed_count_lt?: number; + /** + * Number of attestations missed (filter: lte) + */ + missed_count_lte?: number; + /** + * Number of attestations missed (filter: gt) + */ + missed_count_gt?: number; + /** + * Number of attestations missed (filter: gte) + */ + missed_count_gte?: number; + /** + * Number of attestations missed (filter: between_min) + */ + missed_count_between_min?: number; + /** + * Number of attestations missed (filter: between_max_value) + */ + missed_count_between_max_value?: number; + /** + * Number of attestations missed (filter: in_values) (comma-separated list) + */ + missed_count_in_values?: string; + /** + * Number of attestations missed (filter: not_in_values) (comma-separated list) + */ + missed_count_not_in_values?: string; + /** + * Number of head votes that were correct (filter: eq) + */ + head_correct_count_eq?: number; + /** + * Number of head votes that were correct (filter: ne) + */ + head_correct_count_ne?: number; + /** + * Number of head votes that were correct (filter: lt) + */ + head_correct_count_lt?: number; + /** + * Number of head votes that were correct (filter: lte) + */ + head_correct_count_lte?: number; + /** + * Number of head votes that were correct (filter: gt) + */ + head_correct_count_gt?: number; + /** + * Number of head votes that were correct (filter: gte) + */ + head_correct_count_gte?: number; + /** + * Number of head votes that were correct (filter: between_min) + */ + head_correct_count_between_min?: number; + /** + * Number of head votes that were correct (filter: between_max_value) + */ + head_correct_count_between_max_value?: number; + /** + * Number of head votes that were correct (filter: in_values) (comma-separated list) + */ + head_correct_count_in_values?: string; + /** + * Number of head votes that were correct (filter: not_in_values) (comma-separated list) + */ + head_correct_count_not_in_values?: string; + /** + * Number of target votes that were correct (filter: eq) + */ + target_correct_count_eq?: number; + /** + * Number of target votes that were correct (filter: ne) + */ + target_correct_count_ne?: number; + /** + * Number of target votes that were correct (filter: lt) + */ + target_correct_count_lt?: number; + /** + * Number of target votes that were correct (filter: lte) + */ + target_correct_count_lte?: number; + /** + * Number of target votes that were correct (filter: gt) + */ + target_correct_count_gt?: number; + /** + * Number of target votes that were correct (filter: gte) + */ + target_correct_count_gte?: number; + /** + * Number of target votes that were correct (filter: between_min) + */ + target_correct_count_between_min?: number; + /** + * Number of target votes that were correct (filter: between_max_value) + */ + target_correct_count_between_max_value?: number; + /** + * Number of target votes that were correct (filter: in_values) (comma-separated list) + */ + target_correct_count_in_values?: string; + /** + * Number of target votes that were correct (filter: not_in_values) (comma-separated list) + */ + target_correct_count_not_in_values?: string; + /** + * Number of source votes that were correct (filter: eq) + */ + source_correct_count_eq?: number; + /** + * Number of source votes that were correct (filter: ne) + */ + source_correct_count_ne?: number; + /** + * Number of source votes that were correct (filter: lt) + */ + source_correct_count_lt?: number; + /** + * Number of source votes that were correct (filter: lte) + */ + source_correct_count_lte?: number; + /** + * Number of source votes that were correct (filter: gt) + */ + source_correct_count_gt?: number; + /** + * Number of source votes that were correct (filter: gte) + */ + source_correct_count_gte?: number; + /** + * Number of source votes that were correct (filter: between_min) + */ + source_correct_count_between_min?: number; + /** + * Number of source votes that were correct (filter: between_max_value) + */ + source_correct_count_between_max_value?: number; + /** + * Number of source votes that were correct (filter: in_values) (comma-separated list) + */ + source_correct_count_in_values?: string; + /** + * Number of source votes that were correct (filter: not_in_values) (comma-separated list) + */ + source_correct_count_not_in_values?: string; + /** + * Filter avg_inclusion_distance using value + */ + avg_inclusion_distance_value?: number; + /** + * The maximum number of fct_attestation_vote_correctness_by_validator_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationVoteCorrectnessByValidatorDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_vote_correctness_by_validator_daily'; +}; + +export type FctAttestationVoteCorrectnessByValidatorDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationVoteCorrectnessByValidatorDailyServiceListError = + FctAttestationVoteCorrectnessByValidatorDailyServiceListErrors[keyof FctAttestationVoteCorrectnessByValidatorDailyServiceListErrors]; + +export type FctAttestationVoteCorrectnessByValidatorDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationVoteCorrectnessByValidatorDailyResponse; +}; + +export type FctAttestationVoteCorrectnessByValidatorDailyServiceListResponse = + FctAttestationVoteCorrectnessByValidatorDailyServiceListResponses[keyof FctAttestationVoteCorrectnessByValidatorDailyServiceListResponses]; + +export type FctAttestationVoteCorrectnessByValidatorDailyServiceGetData = { + body?: never; + path: { + /** + * The index of the validator + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/fct_attestation_vote_correctness_by_validator_daily/{validator_index}'; +}; + +export type FctAttestationVoteCorrectnessByValidatorDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationVoteCorrectnessByValidatorDailyServiceGetError = + FctAttestationVoteCorrectnessByValidatorDailyServiceGetErrors[keyof FctAttestationVoteCorrectnessByValidatorDailyServiceGetErrors]; + +export type FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationVoteCorrectnessByValidatorDailyResponse; +}; + +export type FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse = + FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponses[keyof FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponses]; + +export type FctAttestationVoteCorrectnessByValidatorHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The index of the validator (filter: eq) + */ + validator_index_eq?: number; + /** + * The index of the validator (filter: ne) + */ + validator_index_ne?: number; + /** + * The index of the validator (filter: lt) + */ + validator_index_lt?: number; + /** + * The index of the validator (filter: lte) + */ + validator_index_lte?: number; + /** + * The index of the validator (filter: gt) + */ + validator_index_gt?: number; + /** + * The index of the validator (filter: gte) + */ + validator_index_gte?: number; + /** + * The index of the validator (filter: between_min) + */ + validator_index_between_min?: number; + /** + * The index of the validator (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * The index of the validator (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * The index of the validator (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * The start of the hour for this aggregation (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * The start of the hour for this aggregation (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * The start of the hour for this aggregation (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * The start of the hour for this aggregation (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * The start of the hour for this aggregation (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * The start of the hour for this aggregation (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * The start of the hour for this aggregation (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * The start of the hour for this aggregation (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * The start of the hour for this aggregation (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * The start of the hour for this aggregation (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total attestation duties for the validator in this hour (filter: eq) + */ + total_duties_eq?: number; + /** + * Total attestation duties for the validator in this hour (filter: ne) + */ + total_duties_ne?: number; + /** + * Total attestation duties for the validator in this hour (filter: lt) + */ + total_duties_lt?: number; + /** + * Total attestation duties for the validator in this hour (filter: lte) + */ + total_duties_lte?: number; + /** + * Total attestation duties for the validator in this hour (filter: gt) + */ + total_duties_gt?: number; + /** + * Total attestation duties for the validator in this hour (filter: gte) + */ + total_duties_gte?: number; + /** + * Total attestation duties for the validator in this hour (filter: between_min) + */ + total_duties_between_min?: number; + /** + * Total attestation duties for the validator in this hour (filter: between_max_value) + */ + total_duties_between_max_value?: number; + /** + * Total attestation duties for the validator in this hour (filter: in_values) (comma-separated list) + */ + total_duties_in_values?: string; + /** + * Total attestation duties for the validator in this hour (filter: not_in_values) (comma-separated list) + */ + total_duties_not_in_values?: string; + /** + * Number of attestations made (filter: eq) + */ + attested_count_eq?: number; + /** + * Number of attestations made (filter: ne) + */ + attested_count_ne?: number; + /** + * Number of attestations made (filter: lt) + */ + attested_count_lt?: number; + /** + * Number of attestations made (filter: lte) + */ + attested_count_lte?: number; + /** + * Number of attestations made (filter: gt) + */ + attested_count_gt?: number; + /** + * Number of attestations made (filter: gte) + */ + attested_count_gte?: number; + /** + * Number of attestations made (filter: between_min) + */ + attested_count_between_min?: number; + /** + * Number of attestations made (filter: between_max_value) + */ + attested_count_between_max_value?: number; + /** + * Number of attestations made (filter: in_values) (comma-separated list) + */ + attested_count_in_values?: string; + /** + * Number of attestations made (filter: not_in_values) (comma-separated list) + */ + attested_count_not_in_values?: string; + /** + * Number of attestations missed (filter: eq) + */ + missed_count_eq?: number; + /** + * Number of attestations missed (filter: ne) + */ + missed_count_ne?: number; + /** + * Number of attestations missed (filter: lt) + */ + missed_count_lt?: number; + /** + * Number of attestations missed (filter: lte) + */ + missed_count_lte?: number; + /** + * Number of attestations missed (filter: gt) + */ + missed_count_gt?: number; + /** + * Number of attestations missed (filter: gte) + */ + missed_count_gte?: number; + /** + * Number of attestations missed (filter: between_min) + */ + missed_count_between_min?: number; + /** + * Number of attestations missed (filter: between_max_value) + */ + missed_count_between_max_value?: number; + /** + * Number of attestations missed (filter: in_values) (comma-separated list) + */ + missed_count_in_values?: string; + /** + * Number of attestations missed (filter: not_in_values) (comma-separated list) + */ + missed_count_not_in_values?: string; + /** + * Number of head votes that were correct (filter: eq) + */ + head_correct_count_eq?: number; + /** + * Number of head votes that were correct (filter: ne) + */ + head_correct_count_ne?: number; + /** + * Number of head votes that were correct (filter: lt) + */ + head_correct_count_lt?: number; + /** + * Number of head votes that were correct (filter: lte) + */ + head_correct_count_lte?: number; + /** + * Number of head votes that were correct (filter: gt) + */ + head_correct_count_gt?: number; + /** + * Number of head votes that were correct (filter: gte) + */ + head_correct_count_gte?: number; + /** + * Number of head votes that were correct (filter: between_min) + */ + head_correct_count_between_min?: number; + /** + * Number of head votes that were correct (filter: between_max_value) + */ + head_correct_count_between_max_value?: number; + /** + * Number of head votes that were correct (filter: in_values) (comma-separated list) + */ + head_correct_count_in_values?: string; + /** + * Number of head votes that were correct (filter: not_in_values) (comma-separated list) + */ + head_correct_count_not_in_values?: string; + /** + * Number of target votes that were correct (filter: eq) + */ + target_correct_count_eq?: number; + /** + * Number of target votes that were correct (filter: ne) + */ + target_correct_count_ne?: number; + /** + * Number of target votes that were correct (filter: lt) + */ + target_correct_count_lt?: number; + /** + * Number of target votes that were correct (filter: lte) + */ + target_correct_count_lte?: number; + /** + * Number of target votes that were correct (filter: gt) + */ + target_correct_count_gt?: number; + /** + * Number of target votes that were correct (filter: gte) + */ + target_correct_count_gte?: number; + /** + * Number of target votes that were correct (filter: between_min) + */ + target_correct_count_between_min?: number; + /** + * Number of target votes that were correct (filter: between_max_value) + */ + target_correct_count_between_max_value?: number; + /** + * Number of target votes that were correct (filter: in_values) (comma-separated list) + */ + target_correct_count_in_values?: string; + /** + * Number of target votes that were correct (filter: not_in_values) (comma-separated list) + */ + target_correct_count_not_in_values?: string; + /** + * Number of source votes that were correct (filter: eq) + */ + source_correct_count_eq?: number; + /** + * Number of source votes that were correct (filter: ne) + */ + source_correct_count_ne?: number; + /** + * Number of source votes that were correct (filter: lt) + */ + source_correct_count_lt?: number; + /** + * Number of source votes that were correct (filter: lte) + */ + source_correct_count_lte?: number; + /** + * Number of source votes that were correct (filter: gt) + */ + source_correct_count_gt?: number; + /** + * Number of source votes that were correct (filter: gte) + */ + source_correct_count_gte?: number; + /** + * Number of source votes that were correct (filter: between_min) + */ + source_correct_count_between_min?: number; + /** + * Number of source votes that were correct (filter: between_max_value) + */ + source_correct_count_between_max_value?: number; + /** + * Number of source votes that were correct (filter: in_values) (comma-separated list) + */ + source_correct_count_in_values?: string; + /** + * Number of source votes that were correct (filter: not_in_values) (comma-separated list) + */ + source_correct_count_not_in_values?: string; + /** + * Filter avg_inclusion_distance using value + */ + avg_inclusion_distance_value?: number; + /** + * The maximum number of fct_attestation_vote_correctness_by_validator_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctAttestationVoteCorrectnessByValidatorHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_attestation_vote_correctness_by_validator_hourly'; +}; + +export type FctAttestationVoteCorrectnessByValidatorHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationVoteCorrectnessByValidatorHourlyServiceListError = + FctAttestationVoteCorrectnessByValidatorHourlyServiceListErrors[keyof FctAttestationVoteCorrectnessByValidatorHourlyServiceListErrors]; + +export type FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctAttestationVoteCorrectnessByValidatorHourlyResponse; +}; + +export type FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse = + FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponses[keyof FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponses]; + +export type FctAttestationVoteCorrectnessByValidatorHourlyServiceGetData = { + body?: never; + path: { + /** + * The index of the validator + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/fct_attestation_vote_correctness_by_validator_hourly/{validator_index}'; +}; + +export type FctAttestationVoteCorrectnessByValidatorHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctAttestationVoteCorrectnessByValidatorHourlyServiceGetError = + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetErrors[keyof FctAttestationVoteCorrectnessByValidatorHourlyServiceGetErrors]; + +export type FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctAttestationVoteCorrectnessByValidatorHourlyResponse; +}; + +export type FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse = + FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponses[keyof FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponses]; + +export type FctBlobCountDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of slots with blobs in this day (filter: eq) + */ + block_count_eq?: number; + /** + * Number of slots with blobs in this day (filter: ne) + */ + block_count_ne?: number; + /** + * Number of slots with blobs in this day (filter: lt) + */ + block_count_lt?: number; + /** + * Number of slots with blobs in this day (filter: lte) + */ + block_count_lte?: number; + /** + * Number of slots with blobs in this day (filter: gt) + */ + block_count_gt?: number; + /** + * Number of slots with blobs in this day (filter: gte) + */ + block_count_gte?: number; + /** + * Number of slots with blobs in this day (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of slots with blobs in this day (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of slots with blobs in this day (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of slots with blobs in this day (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total blobs in this day (filter: eq) + */ + total_blobs_eq?: number; + /** + * Total blobs in this day (filter: ne) + */ + total_blobs_ne?: number; + /** + * Total blobs in this day (filter: lt) + */ + total_blobs_lt?: number; + /** + * Total blobs in this day (filter: lte) + */ + total_blobs_lte?: number; + /** + * Total blobs in this day (filter: gt) + */ + total_blobs_gt?: number; + /** + * Total blobs in this day (filter: gte) + */ + total_blobs_gte?: number; + /** + * Total blobs in this day (filter: between_min) + */ + total_blobs_between_min?: number; + /** + * Total blobs in this day (filter: between_max_value) + */ + total_blobs_between_max_value?: number; + /** + * Total blobs in this day (filter: in_values) (comma-separated list) + */ + total_blobs_in_values?: string; + /** + * Total blobs in this day (filter: not_in_values) (comma-separated list) + */ + total_blobs_not_in_values?: string; + /** + * Filter avg_blob_count using value + */ + avg_blob_count_value?: number; + /** + * Minimum blob count in a slot (filter: eq) + */ + min_blob_count_eq?: number; + /** + * Minimum blob count in a slot (filter: ne) + */ + min_blob_count_ne?: number; + /** + * Minimum blob count in a slot (filter: lt) + */ + min_blob_count_lt?: number; + /** + * Minimum blob count in a slot (filter: lte) + */ + min_blob_count_lte?: number; + /** + * Minimum blob count in a slot (filter: gt) + */ + min_blob_count_gt?: number; + /** + * Minimum blob count in a slot (filter: gte) + */ + min_blob_count_gte?: number; + /** + * Minimum blob count in a slot (filter: between_min) + */ + min_blob_count_between_min?: number; + /** + * Minimum blob count in a slot (filter: between_max_value) + */ + min_blob_count_between_max_value?: number; + /** + * Minimum blob count in a slot (filter: in_values) (comma-separated list) + */ + min_blob_count_in_values?: string; + /** + * Minimum blob count in a slot (filter: not_in_values) (comma-separated list) + */ + min_blob_count_not_in_values?: string; + /** + * Maximum blob count in a slot (filter: eq) + */ + max_blob_count_eq?: number; + /** + * Maximum blob count in a slot (filter: ne) + */ + max_blob_count_ne?: number; + /** + * Maximum blob count in a slot (filter: lt) + */ + max_blob_count_lt?: number; + /** + * Maximum blob count in a slot (filter: lte) + */ + max_blob_count_lte?: number; + /** + * Maximum blob count in a slot (filter: gt) + */ + max_blob_count_gt?: number; + /** + * Maximum blob count in a slot (filter: gte) + */ + max_blob_count_gte?: number; + /** + * Maximum blob count in a slot (filter: between_min) + */ + max_blob_count_between_min?: number; + /** + * Maximum blob count in a slot (filter: between_max_value) + */ + max_blob_count_between_max_value?: number; + /** + * Maximum blob count in a slot (filter: in_values) (comma-separated list) + */ + max_blob_count_in_values?: string; + /** + * Maximum blob count in a slot (filter: not_in_values) (comma-separated list) + */ + max_blob_count_not_in_values?: string; + /** + * Filter p05_blob_count using value + */ + p05_blob_count_value?: number; + /** + * Filter p50_blob_count using value + */ + p50_blob_count_value?: number; + /** + * Filter p95_blob_count using value + */ + p95_blob_count_value?: number; + /** + * Filter stddev_blob_count using value + */ + stddev_blob_count_value?: number; + /** + * Filter upper_band_blob_count using value + */ + upper_band_blob_count_value?: number; + /** + * Filter lower_band_blob_count using value + */ + lower_band_blob_count_value?: number; + /** + * Filter moving_avg_blob_count using value + */ + moving_avg_blob_count_value?: number; + /** + * The maximum number of fct_blob_count_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlobCountDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_blob_count_daily'; +}; + +export type FctBlobCountDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlobCountDailyServiceListError = + FctBlobCountDailyServiceListErrors[keyof FctBlobCountDailyServiceListErrors]; + +export type FctBlobCountDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctBlobCountDailyResponse; +}; + +export type FctBlobCountDailyServiceListResponse = + FctBlobCountDailyServiceListResponses[keyof FctBlobCountDailyServiceListResponses]; + +export type FctBlobCountDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_blob_count_daily/{day_start_date}'; +}; + +export type FctBlobCountDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlobCountDailyServiceGetError = + FctBlobCountDailyServiceGetErrors[keyof FctBlobCountDailyServiceGetErrors]; + +export type FctBlobCountDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlobCountDailyResponse; +}; + +export type FctBlobCountDailyServiceGetResponse = + FctBlobCountDailyServiceGetResponses[keyof FctBlobCountDailyServiceGetResponses]; + +export type FctBlobCountHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of slots with blobs in this hour (filter: eq) + */ + block_count_eq?: number; + /** + * Number of slots with blobs in this hour (filter: ne) + */ + block_count_ne?: number; + /** + * Number of slots with blobs in this hour (filter: lt) + */ + block_count_lt?: number; + /** + * Number of slots with blobs in this hour (filter: lte) + */ + block_count_lte?: number; + /** + * Number of slots with blobs in this hour (filter: gt) + */ + block_count_gt?: number; + /** + * Number of slots with blobs in this hour (filter: gte) + */ + block_count_gte?: number; + /** + * Number of slots with blobs in this hour (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of slots with blobs in this hour (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of slots with blobs in this hour (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of slots with blobs in this hour (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total blobs in this hour (filter: eq) + */ + total_blobs_eq?: number; + /** + * Total blobs in this hour (filter: ne) + */ + total_blobs_ne?: number; + /** + * Total blobs in this hour (filter: lt) + */ + total_blobs_lt?: number; + /** + * Total blobs in this hour (filter: lte) + */ + total_blobs_lte?: number; + /** + * Total blobs in this hour (filter: gt) + */ + total_blobs_gt?: number; + /** + * Total blobs in this hour (filter: gte) + */ + total_blobs_gte?: number; + /** + * Total blobs in this hour (filter: between_min) + */ + total_blobs_between_min?: number; + /** + * Total blobs in this hour (filter: between_max_value) + */ + total_blobs_between_max_value?: number; + /** + * Total blobs in this hour (filter: in_values) (comma-separated list) + */ + total_blobs_in_values?: string; + /** + * Total blobs in this hour (filter: not_in_values) (comma-separated list) + */ + total_blobs_not_in_values?: string; + /** + * Filter avg_blob_count using value + */ + avg_blob_count_value?: number; + /** + * Minimum blob count in a slot (filter: eq) + */ + min_blob_count_eq?: number; + /** + * Minimum blob count in a slot (filter: ne) + */ + min_blob_count_ne?: number; + /** + * Minimum blob count in a slot (filter: lt) + */ + min_blob_count_lt?: number; + /** + * Minimum blob count in a slot (filter: lte) + */ + min_blob_count_lte?: number; + /** + * Minimum blob count in a slot (filter: gt) + */ + min_blob_count_gt?: number; + /** + * Minimum blob count in a slot (filter: gte) + */ + min_blob_count_gte?: number; + /** + * Minimum blob count in a slot (filter: between_min) + */ + min_blob_count_between_min?: number; + /** + * Minimum blob count in a slot (filter: between_max_value) + */ + min_blob_count_between_max_value?: number; + /** + * Minimum blob count in a slot (filter: in_values) (comma-separated list) + */ + min_blob_count_in_values?: string; + /** + * Minimum blob count in a slot (filter: not_in_values) (comma-separated list) + */ + min_blob_count_not_in_values?: string; + /** + * Maximum blob count in a slot (filter: eq) + */ + max_blob_count_eq?: number; + /** + * Maximum blob count in a slot (filter: ne) + */ + max_blob_count_ne?: number; + /** + * Maximum blob count in a slot (filter: lt) + */ + max_blob_count_lt?: number; + /** + * Maximum blob count in a slot (filter: lte) + */ + max_blob_count_lte?: number; + /** + * Maximum blob count in a slot (filter: gt) + */ + max_blob_count_gt?: number; + /** + * Maximum blob count in a slot (filter: gte) + */ + max_blob_count_gte?: number; + /** + * Maximum blob count in a slot (filter: between_min) + */ + max_blob_count_between_min?: number; + /** + * Maximum blob count in a slot (filter: between_max_value) + */ + max_blob_count_between_max_value?: number; + /** + * Maximum blob count in a slot (filter: in_values) (comma-separated list) + */ + max_blob_count_in_values?: string; + /** + * Maximum blob count in a slot (filter: not_in_values) (comma-separated list) + */ + max_blob_count_not_in_values?: string; + /** + * Filter p05_blob_count using value + */ + p05_blob_count_value?: number; + /** + * Filter p50_blob_count using value + */ + p50_blob_count_value?: number; + /** + * Filter p95_blob_count using value + */ + p95_blob_count_value?: number; + /** + * Filter stddev_blob_count using value + */ + stddev_blob_count_value?: number; + /** + * Filter upper_band_blob_count using value + */ + upper_band_blob_count_value?: number; + /** + * Filter lower_band_blob_count using value + */ + lower_band_blob_count_value?: number; + /** + * Filter moving_avg_blob_count using value + */ + moving_avg_blob_count_value?: number; + /** + * The maximum number of fct_blob_count_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlobCountHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_blob_count_hourly'; +}; + +export type FctBlobCountHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlobCountHourlyServiceListError = + FctBlobCountHourlyServiceListErrors[keyof FctBlobCountHourlyServiceListErrors]; + +export type FctBlobCountHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctBlobCountHourlyResponse; +}; + +export type FctBlobCountHourlyServiceListResponse = + FctBlobCountHourlyServiceListResponses[keyof FctBlobCountHourlyServiceListResponses]; + +export type FctBlobCountHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_blob_count_hourly/{hour_start_date_time}'; +}; + +export type FctBlobCountHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlobCountHourlyServiceGetError = + FctBlobCountHourlyServiceGetErrors[keyof FctBlobCountHourlyServiceGetErrors]; + +export type FctBlobCountHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlobCountHourlyResponse; +}; + +export type FctBlobCountHourlyServiceGetResponse = + FctBlobCountHourlyServiceGetResponses[keyof FctBlobCountHourlyServiceGetResponses]; + +export type FctBlockServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the reorg slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the reorg slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the reorg slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the reorg slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the reorg slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the reorg slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the reorg slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the reorg slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the reorg slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the reorg slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The root hash of the beacon block (filter: eq) + */ + block_root_eq?: string; + /** + * The root hash of the beacon block (filter: ne) + */ + block_root_ne?: string; + /** + * The root hash of the beacon block (filter: contains) + */ + block_root_contains?: string; + /** + * The root hash of the beacon block (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The root hash of the beacon block (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The root hash of the beacon block (filter: like) + */ + block_root_like?: string; + /** + * The root hash of the beacon block (filter: not_like) + */ + block_root_not_like?: string; + /** + * The root hash of the beacon block (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The root hash of the beacon block (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number from beacon block payload (filter: eq) + */ + slot_eq?: number; + /** + * The slot number from beacon block payload (filter: ne) + */ + slot_ne?: number; + /** + * The slot number from beacon block payload (filter: lt) + */ + slot_lt?: number; + /** + * The slot number from beacon block payload (filter: lte) + */ + slot_lte?: number; + /** + * The slot number from beacon block payload (filter: gt) + */ + slot_gt?: number; + /** + * The slot number from beacon block payload (filter: gte) + */ + slot_gte?: number; + /** + * The slot number from beacon block payload (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number from beacon block payload (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number from beacon block payload (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number from beacon block payload (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number from beacon block payload (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number from beacon block payload (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number from beacon block payload (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number from beacon block payload (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number from beacon block payload (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number from beacon block payload (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number from beacon block payload (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number from beacon block payload (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number from beacon block payload (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number from beacon block payload (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The version of the beacon block (filter: eq) + */ + block_version_eq?: string; + /** + * The version of the beacon block (filter: ne) + */ + block_version_ne?: string; + /** + * The version of the beacon block (filter: contains) + */ + block_version_contains?: string; + /** + * The version of the beacon block (filter: starts_with) + */ + block_version_starts_with?: string; + /** + * The version of the beacon block (filter: ends_with) + */ + block_version_ends_with?: string; + /** + * The version of the beacon block (filter: like) + */ + block_version_like?: string; + /** + * The version of the beacon block (filter: not_like) + */ + block_version_not_like?: string; + /** + * The version of the beacon block (filter: in_values) (comma-separated list) + */ + block_version_in_values?: string; + /** + * The version of the beacon block (filter: not_in_values) (comma-separated list) + */ + block_version_not_in_values?: string; + /** + * The total bytes of the beacon block payload (filter: eq) + */ + block_total_bytes_eq?: number; + /** + * The total bytes of the beacon block payload (filter: ne) + */ + block_total_bytes_ne?: number; + /** + * The total bytes of the beacon block payload (filter: lt) + */ + block_total_bytes_lt?: number; + /** + * The total bytes of the beacon block payload (filter: lte) + */ + block_total_bytes_lte?: number; + /** + * The total bytes of the beacon block payload (filter: gt) + */ + block_total_bytes_gt?: number; + /** + * The total bytes of the beacon block payload (filter: gte) + */ + block_total_bytes_gte?: number; + /** + * The total bytes of the beacon block payload (filter: between_min) + */ + block_total_bytes_between_min?: number; + /** + * The total bytes of the beacon block payload (filter: between_max_value) + */ + block_total_bytes_between_max_value?: number; + /** + * The total bytes of the beacon block payload (filter: in_values) (comma-separated list) + */ + block_total_bytes_in_values?: string; + /** + * The total bytes of the beacon block payload (filter: not_in_values) (comma-separated list) + */ + block_total_bytes_not_in_values?: string; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: eq) + */ + block_total_bytes_compressed_eq?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: ne) + */ + block_total_bytes_compressed_ne?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: lt) + */ + block_total_bytes_compressed_lt?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: lte) + */ + block_total_bytes_compressed_lte?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: gt) + */ + block_total_bytes_compressed_gt?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: gte) + */ + block_total_bytes_compressed_gte?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: between_min) + */ + block_total_bytes_compressed_between_min?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: between_max_value) + */ + block_total_bytes_compressed_between_max_value?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: in_values) (comma-separated list) + */ + block_total_bytes_compressed_in_values?: string; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: not_in_values) (comma-separated list) + */ + block_total_bytes_compressed_not_in_values?: string; + /** + * The root hash of the parent beacon block (filter: eq) + */ + parent_root_eq?: string; + /** + * The root hash of the parent beacon block (filter: ne) + */ + parent_root_ne?: string; + /** + * The root hash of the parent beacon block (filter: contains) + */ + parent_root_contains?: string; + /** + * The root hash of the parent beacon block (filter: starts_with) + */ + parent_root_starts_with?: string; + /** + * The root hash of the parent beacon block (filter: ends_with) + */ + parent_root_ends_with?: string; + /** + * The root hash of the parent beacon block (filter: like) + */ + parent_root_like?: string; + /** + * The root hash of the parent beacon block (filter: not_like) + */ + parent_root_not_like?: string; + /** + * The root hash of the parent beacon block (filter: in_values) (comma-separated list) + */ + parent_root_in_values?: string; + /** + * The root hash of the parent beacon block (filter: not_in_values) (comma-separated list) + */ + parent_root_not_in_values?: string; + /** + * The root hash of the beacon state at this block (filter: eq) + */ + state_root_eq?: string; + /** + * The root hash of the beacon state at this block (filter: ne) + */ + state_root_ne?: string; + /** + * The root hash of the beacon state at this block (filter: contains) + */ + state_root_contains?: string; + /** + * The root hash of the beacon state at this block (filter: starts_with) + */ + state_root_starts_with?: string; + /** + * The root hash of the beacon state at this block (filter: ends_with) + */ + state_root_ends_with?: string; + /** + * The root hash of the beacon state at this block (filter: like) + */ + state_root_like?: string; + /** + * The root hash of the beacon state at this block (filter: not_like) + */ + state_root_not_like?: string; + /** + * The root hash of the beacon state at this block (filter: in_values) (comma-separated list) + */ + state_root_in_values?: string; + /** + * The root hash of the beacon state at this block (filter: not_in_values) (comma-separated list) + */ + state_root_not_in_values?: string; + /** + * The index of the validator that proposed the beacon block (filter: eq) + */ + proposer_index_eq?: number; + /** + * The index of the validator that proposed the beacon block (filter: ne) + */ + proposer_index_ne?: number; + /** + * The index of the validator that proposed the beacon block (filter: lt) + */ + proposer_index_lt?: number; + /** + * The index of the validator that proposed the beacon block (filter: lte) + */ + proposer_index_lte?: number; + /** + * The index of the validator that proposed the beacon block (filter: gt) + */ + proposer_index_gt?: number; + /** + * The index of the validator that proposed the beacon block (filter: gte) + */ + proposer_index_gte?: number; + /** + * The index of the validator that proposed the beacon block (filter: between_min) + */ + proposer_index_between_min?: number; + /** + * The index of the validator that proposed the beacon block (filter: between_max_value) + */ + proposer_index_between_max_value?: number; + /** + * The index of the validator that proposed the beacon block (filter: in_values) (comma-separated list) + */ + proposer_index_in_values?: string; + /** + * The index of the validator that proposed the beacon block (filter: not_in_values) (comma-separated list) + */ + proposer_index_not_in_values?: string; + /** + * The block hash of the associated execution block (filter: eq) + */ + eth1_data_block_hash_eq?: string; + /** + * The block hash of the associated execution block (filter: ne) + */ + eth1_data_block_hash_ne?: string; + /** + * The block hash of the associated execution block (filter: contains) + */ + eth1_data_block_hash_contains?: string; + /** + * The block hash of the associated execution block (filter: starts_with) + */ + eth1_data_block_hash_starts_with?: string; + /** + * The block hash of the associated execution block (filter: ends_with) + */ + eth1_data_block_hash_ends_with?: string; + /** + * The block hash of the associated execution block (filter: like) + */ + eth1_data_block_hash_like?: string; + /** + * The block hash of the associated execution block (filter: not_like) + */ + eth1_data_block_hash_not_like?: string; + /** + * The block hash of the associated execution block (filter: in_values) (comma-separated list) + */ + eth1_data_block_hash_in_values?: string; + /** + * The block hash of the associated execution block (filter: not_in_values) (comma-separated list) + */ + eth1_data_block_hash_not_in_values?: string; + /** + * The root of the deposit tree in the associated execution block (filter: eq) + */ + eth1_data_deposit_root_eq?: string; + /** + * The root of the deposit tree in the associated execution block (filter: ne) + */ + eth1_data_deposit_root_ne?: string; + /** + * The root of the deposit tree in the associated execution block (filter: contains) + */ + eth1_data_deposit_root_contains?: string; + /** + * The root of the deposit tree in the associated execution block (filter: starts_with) + */ + eth1_data_deposit_root_starts_with?: string; + /** + * The root of the deposit tree in the associated execution block (filter: ends_with) + */ + eth1_data_deposit_root_ends_with?: string; + /** + * The root of the deposit tree in the associated execution block (filter: like) + */ + eth1_data_deposit_root_like?: string; + /** + * The root of the deposit tree in the associated execution block (filter: not_like) + */ + eth1_data_deposit_root_not_like?: string; + /** + * The root of the deposit tree in the associated execution block (filter: in_values) (comma-separated list) + */ + eth1_data_deposit_root_in_values?: string; + /** + * The root of the deposit tree in the associated execution block (filter: not_in_values) (comma-separated list) + */ + eth1_data_deposit_root_not_in_values?: string; + /** + * The block hash of the execution payload (filter: eq) + */ + execution_payload_block_hash_eq?: string; + /** + * The block hash of the execution payload (filter: ne) + */ + execution_payload_block_hash_ne?: string; + /** + * The block hash of the execution payload (filter: contains) + */ + execution_payload_block_hash_contains?: string; + /** + * The block hash of the execution payload (filter: starts_with) + */ + execution_payload_block_hash_starts_with?: string; + /** + * The block hash of the execution payload (filter: ends_with) + */ + execution_payload_block_hash_ends_with?: string; + /** + * The block hash of the execution payload (filter: like) + */ + execution_payload_block_hash_like?: string; + /** + * The block hash of the execution payload (filter: not_like) + */ + execution_payload_block_hash_not_like?: string; + /** + * The block hash of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_block_hash_in_values?: string; + /** + * The block hash of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_block_hash_not_in_values?: string; + /** + * The block number of the execution payload (filter: eq) + */ + execution_payload_block_number_eq?: number; + /** + * The block number of the execution payload (filter: ne) + */ + execution_payload_block_number_ne?: number; + /** + * The block number of the execution payload (filter: lt) + */ + execution_payload_block_number_lt?: number; + /** + * The block number of the execution payload (filter: lte) + */ + execution_payload_block_number_lte?: number; + /** + * The block number of the execution payload (filter: gt) + */ + execution_payload_block_number_gt?: number; + /** + * The block number of the execution payload (filter: gte) + */ + execution_payload_block_number_gte?: number; + /** + * The block number of the execution payload (filter: between_min) + */ + execution_payload_block_number_between_min?: number; + /** + * The block number of the execution payload (filter: between_max_value) + */ + execution_payload_block_number_between_max_value?: number; + /** + * The block number of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_block_number_in_values?: string; + /** + * The block number of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_block_number_not_in_values?: string; + /** + * The recipient of the fee for this execution payload (filter: eq) + */ + execution_payload_fee_recipient_eq?: string; + /** + * The recipient of the fee for this execution payload (filter: ne) + */ + execution_payload_fee_recipient_ne?: string; + /** + * The recipient of the fee for this execution payload (filter: contains) + */ + execution_payload_fee_recipient_contains?: string; + /** + * The recipient of the fee for this execution payload (filter: starts_with) + */ + execution_payload_fee_recipient_starts_with?: string; + /** + * The recipient of the fee for this execution payload (filter: ends_with) + */ + execution_payload_fee_recipient_ends_with?: string; + /** + * The recipient of the fee for this execution payload (filter: like) + */ + execution_payload_fee_recipient_like?: string; + /** + * The recipient of the fee for this execution payload (filter: not_like) + */ + execution_payload_fee_recipient_not_like?: string; + /** + * The recipient of the fee for this execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_fee_recipient_in_values?: string; + /** + * The recipient of the fee for this execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_fee_recipient_not_in_values?: string; + /** + * Base fee per gas for execution payload (filter: eq) + */ + execution_payload_base_fee_per_gas_eq?: string; + /** + * Base fee per gas for execution payload (filter: ne) + */ + execution_payload_base_fee_per_gas_ne?: string; + /** + * Base fee per gas for execution payload (filter: contains) + */ + execution_payload_base_fee_per_gas_contains?: string; + /** + * Base fee per gas for execution payload (filter: starts_with) + */ + execution_payload_base_fee_per_gas_starts_with?: string; + /** + * Base fee per gas for execution payload (filter: ends_with) + */ + execution_payload_base_fee_per_gas_ends_with?: string; + /** + * Base fee per gas for execution payload (filter: like) + */ + execution_payload_base_fee_per_gas_like?: string; + /** + * Base fee per gas for execution payload (filter: not_like) + */ + execution_payload_base_fee_per_gas_not_like?: string; + /** + * Base fee per gas for execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_base_fee_per_gas_in_values?: string; + /** + * Base fee per gas for execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_base_fee_per_gas_not_in_values?: string; + /** + * Gas used for blobs in execution payload (filter: eq) + */ + execution_payload_blob_gas_used_eq?: number; + /** + * Gas used for blobs in execution payload (filter: ne) + */ + execution_payload_blob_gas_used_ne?: number; + /** + * Gas used for blobs in execution payload (filter: lt) + */ + execution_payload_blob_gas_used_lt?: number; + /** + * Gas used for blobs in execution payload (filter: lte) + */ + execution_payload_blob_gas_used_lte?: number; + /** + * Gas used for blobs in execution payload (filter: gt) + */ + execution_payload_blob_gas_used_gt?: number; + /** + * Gas used for blobs in execution payload (filter: gte) + */ + execution_payload_blob_gas_used_gte?: number; + /** + * Gas used for blobs in execution payload (filter: between_min) + */ + execution_payload_blob_gas_used_between_min?: number; + /** + * Gas used for blobs in execution payload (filter: between_max_value) + */ + execution_payload_blob_gas_used_between_max_value?: number; + /** + * Gas used for blobs in execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_blob_gas_used_in_values?: string; + /** + * Gas used for blobs in execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_blob_gas_used_not_in_values?: string; + /** + * Excess gas used for blobs in execution payload (filter: eq) + */ + execution_payload_excess_blob_gas_eq?: number; + /** + * Excess gas used for blobs in execution payload (filter: ne) + */ + execution_payload_excess_blob_gas_ne?: number; + /** + * Excess gas used for blobs in execution payload (filter: lt) + */ + execution_payload_excess_blob_gas_lt?: number; + /** + * Excess gas used for blobs in execution payload (filter: lte) + */ + execution_payload_excess_blob_gas_lte?: number; + /** + * Excess gas used for blobs in execution payload (filter: gt) + */ + execution_payload_excess_blob_gas_gt?: number; + /** + * Excess gas used for blobs in execution payload (filter: gte) + */ + execution_payload_excess_blob_gas_gte?: number; + /** + * Excess gas used for blobs in execution payload (filter: between_min) + */ + execution_payload_excess_blob_gas_between_min?: number; + /** + * Excess gas used for blobs in execution payload (filter: between_max_value) + */ + execution_payload_excess_blob_gas_between_max_value?: number; + /** + * Excess gas used for blobs in execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_excess_blob_gas_in_values?: string; + /** + * Excess gas used for blobs in execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_excess_blob_gas_not_in_values?: string; + /** + * Gas limit for execution payload (filter: eq) + */ + execution_payload_gas_limit_eq?: number; + /** + * Gas limit for execution payload (filter: ne) + */ + execution_payload_gas_limit_ne?: number; + /** + * Gas limit for execution payload (filter: lt) + */ + execution_payload_gas_limit_lt?: number; + /** + * Gas limit for execution payload (filter: lte) + */ + execution_payload_gas_limit_lte?: number; + /** + * Gas limit for execution payload (filter: gt) + */ + execution_payload_gas_limit_gt?: number; + /** + * Gas limit for execution payload (filter: gte) + */ + execution_payload_gas_limit_gte?: number; + /** + * Gas limit for execution payload (filter: between_min) + */ + execution_payload_gas_limit_between_min?: number; + /** + * Gas limit for execution payload (filter: between_max_value) + */ + execution_payload_gas_limit_between_max_value?: number; + /** + * Gas limit for execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_gas_limit_in_values?: string; + /** + * Gas limit for execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_gas_limit_not_in_values?: string; + /** + * Gas used for execution payload (filter: eq) + */ + execution_payload_gas_used_eq?: number; + /** + * Gas used for execution payload (filter: ne) + */ + execution_payload_gas_used_ne?: number; + /** + * Gas used for execution payload (filter: lt) + */ + execution_payload_gas_used_lt?: number; + /** + * Gas used for execution payload (filter: lte) + */ + execution_payload_gas_used_lte?: number; + /** + * Gas used for execution payload (filter: gt) + */ + execution_payload_gas_used_gt?: number; + /** + * Gas used for execution payload (filter: gte) + */ + execution_payload_gas_used_gte?: number; + /** + * Gas used for execution payload (filter: between_min) + */ + execution_payload_gas_used_between_min?: number; + /** + * Gas used for execution payload (filter: between_max_value) + */ + execution_payload_gas_used_between_max_value?: number; + /** + * Gas used for execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_gas_used_in_values?: string; + /** + * Gas used for execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_gas_used_not_in_values?: string; + /** + * The state root of the execution payload (filter: eq) + */ + execution_payload_state_root_eq?: string; + /** + * The state root of the execution payload (filter: ne) + */ + execution_payload_state_root_ne?: string; + /** + * The state root of the execution payload (filter: contains) + */ + execution_payload_state_root_contains?: string; + /** + * The state root of the execution payload (filter: starts_with) + */ + execution_payload_state_root_starts_with?: string; + /** + * The state root of the execution payload (filter: ends_with) + */ + execution_payload_state_root_ends_with?: string; + /** + * The state root of the execution payload (filter: like) + */ + execution_payload_state_root_like?: string; + /** + * The state root of the execution payload (filter: not_like) + */ + execution_payload_state_root_not_like?: string; + /** + * The state root of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_state_root_in_values?: string; + /** + * The state root of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_state_root_not_in_values?: string; + /** + * The parent hash of the execution payload (filter: eq) + */ + execution_payload_parent_hash_eq?: string; + /** + * The parent hash of the execution payload (filter: ne) + */ + execution_payload_parent_hash_ne?: string; + /** + * The parent hash of the execution payload (filter: contains) + */ + execution_payload_parent_hash_contains?: string; + /** + * The parent hash of the execution payload (filter: starts_with) + */ + execution_payload_parent_hash_starts_with?: string; + /** + * The parent hash of the execution payload (filter: ends_with) + */ + execution_payload_parent_hash_ends_with?: string; + /** + * The parent hash of the execution payload (filter: like) + */ + execution_payload_parent_hash_like?: string; + /** + * The parent hash of the execution payload (filter: not_like) + */ + execution_payload_parent_hash_not_like?: string; + /** + * The parent hash of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_parent_hash_in_values?: string; + /** + * The parent hash of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_parent_hash_not_in_values?: string; + /** + * The transaction count of the execution payload (filter: eq) + */ + execution_payload_transactions_count_eq?: number; + /** + * The transaction count of the execution payload (filter: ne) + */ + execution_payload_transactions_count_ne?: number; + /** + * The transaction count of the execution payload (filter: lt) + */ + execution_payload_transactions_count_lt?: number; + /** + * The transaction count of the execution payload (filter: lte) + */ + execution_payload_transactions_count_lte?: number; + /** + * The transaction count of the execution payload (filter: gt) + */ + execution_payload_transactions_count_gt?: number; + /** + * The transaction count of the execution payload (filter: gte) + */ + execution_payload_transactions_count_gte?: number; + /** + * The transaction count of the execution payload (filter: between_min) + */ + execution_payload_transactions_count_between_min?: number; + /** + * The transaction count of the execution payload (filter: between_max_value) + */ + execution_payload_transactions_count_between_max_value?: number; + /** + * The transaction count of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_transactions_count_in_values?: string; + /** + * The transaction count of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_transactions_count_not_in_values?: string; + /** + * The transaction total bytes of the execution payload (filter: eq) + */ + execution_payload_transactions_total_bytes_eq?: number; + /** + * The transaction total bytes of the execution payload (filter: ne) + */ + execution_payload_transactions_total_bytes_ne?: number; + /** + * The transaction total bytes of the execution payload (filter: lt) + */ + execution_payload_transactions_total_bytes_lt?: number; + /** + * The transaction total bytes of the execution payload (filter: lte) + */ + execution_payload_transactions_total_bytes_lte?: number; + /** + * The transaction total bytes of the execution payload (filter: gt) + */ + execution_payload_transactions_total_bytes_gt?: number; + /** + * The transaction total bytes of the execution payload (filter: gte) + */ + execution_payload_transactions_total_bytes_gte?: number; + /** + * The transaction total bytes of the execution payload (filter: between_min) + */ + execution_payload_transactions_total_bytes_between_min?: number; + /** + * The transaction total bytes of the execution payload (filter: between_max_value) + */ + execution_payload_transactions_total_bytes_between_max_value?: number; + /** + * The transaction total bytes of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_in_values?: string; + /** + * The transaction total bytes of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_not_in_values?: string; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: eq) + */ + execution_payload_transactions_total_bytes_compressed_eq?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: ne) + */ + execution_payload_transactions_total_bytes_compressed_ne?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: lt) + */ + execution_payload_transactions_total_bytes_compressed_lt?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: lte) + */ + execution_payload_transactions_total_bytes_compressed_lte?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: gt) + */ + execution_payload_transactions_total_bytes_compressed_gt?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: gte) + */ + execution_payload_transactions_total_bytes_compressed_gte?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: between_min) + */ + execution_payload_transactions_total_bytes_compressed_between_min?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: between_max_value) + */ + execution_payload_transactions_total_bytes_compressed_between_max_value?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_compressed_in_values?: string; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: not_in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_compressed_not_in_values?: string; + /** + * Can be "canonical" or "orphaned" (filter: eq) + */ + status_eq?: string; + /** + * Can be "canonical" or "orphaned" (filter: ne) + */ + status_ne?: string; + /** + * Can be "canonical" or "orphaned" (filter: contains) + */ + status_contains?: string; + /** + * Can be "canonical" or "orphaned" (filter: starts_with) + */ + status_starts_with?: string; + /** + * Can be "canonical" or "orphaned" (filter: ends_with) + */ + status_ends_with?: string; + /** + * Can be "canonical" or "orphaned" (filter: like) + */ + status_like?: string; + /** + * Can be "canonical" or "orphaned" (filter: not_like) + */ + status_not_like?: string; + /** + * Can be "canonical" or "orphaned" (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Can be "canonical" or "orphaned" (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * The maximum number of fct_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlock` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block'; +}; + +export type FctBlockServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockServiceListError = FctBlockServiceListErrors[keyof FctBlockServiceListErrors]; + +export type FctBlockServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockResponse; +}; + +export type FctBlockServiceListResponse = FctBlockServiceListResponses[keyof FctBlockServiceListResponses]; + +export type FctBlockServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the reorg slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block/{slot_start_date_time}'; +}; + +export type FctBlockServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockServiceGetError = FctBlockServiceGetErrors[keyof FctBlockServiceGetErrors]; + +export type FctBlockServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockResponse; +}; + +export type FctBlockServiceGetResponse = FctBlockServiceGetResponses[keyof FctBlockServiceGetResponses]; + +export type FctBlockBlobCountServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The number of blobs in the block (filter: eq) + */ + blob_count_eq?: number; + /** + * The number of blobs in the block (filter: ne) + */ + blob_count_ne?: number; + /** + * The number of blobs in the block (filter: lt) + */ + blob_count_lt?: number; + /** + * The number of blobs in the block (filter: lte) + */ + blob_count_lte?: number; + /** + * The number of blobs in the block (filter: gt) + */ + blob_count_gt?: number; + /** + * The number of blobs in the block (filter: gte) + */ + blob_count_gte?: number; + /** + * The number of blobs in the block (filter: between_min) + */ + blob_count_between_min?: number; + /** + * The number of blobs in the block (filter: between_max_value) + */ + blob_count_between_max_value?: number; + /** + * The number of blobs in the block (filter: in_values) (comma-separated list) + */ + blob_count_in_values?: string; + /** + * The number of blobs in the block (filter: not_in_values) (comma-separated list) + */ + blob_count_not_in_values?: string; + /** + * Can be "canonical" or "orphaned" (filter: eq) + */ + status_eq?: string; + /** + * Can be "canonical" or "orphaned" (filter: ne) + */ + status_ne?: string; + /** + * Can be "canonical" or "orphaned" (filter: contains) + */ + status_contains?: string; + /** + * Can be "canonical" or "orphaned" (filter: starts_with) + */ + status_starts_with?: string; + /** + * Can be "canonical" or "orphaned" (filter: ends_with) + */ + status_ends_with?: string; + /** + * Can be "canonical" or "orphaned" (filter: like) + */ + status_like?: string; + /** + * Can be "canonical" or "orphaned" (filter: not_like) + */ + status_not_like?: string; + /** + * Can be "canonical" or "orphaned" (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Can be "canonical" or "orphaned" (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * The maximum number of fct_block_blob_count to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockBlobCount` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_blob_count'; +}; + +export type FctBlockBlobCountServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockBlobCountServiceListError = + FctBlockBlobCountServiceListErrors[keyof FctBlockBlobCountServiceListErrors]; + +export type FctBlockBlobCountServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockBlobCountResponse; +}; + +export type FctBlockBlobCountServiceListResponse = + FctBlockBlobCountServiceListResponses[keyof FctBlockBlobCountServiceListResponses]; + +export type FctBlockBlobCountServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_blob_count/{slot_start_date_time}'; +}; + +export type FctBlockBlobCountServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockBlobCountServiceGetError = + FctBlockBlobCountServiceGetErrors[keyof FctBlockBlobCountServiceGetErrors]; + +export type FctBlockBlobCountServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockBlobCountResponse; +}; + +export type FctBlockBlobCountServiceGetResponse = + FctBlockBlobCountServiceGetResponses[keyof FctBlockBlobCountServiceGetResponses]; + +export type FctBlockBlobCountHeadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The number of blobs in the block (filter: eq) + */ + blob_count_eq?: number; + /** + * The number of blobs in the block (filter: ne) + */ + blob_count_ne?: number; + /** + * The number of blobs in the block (filter: lt) + */ + blob_count_lt?: number; + /** + * The number of blobs in the block (filter: lte) + */ + blob_count_lte?: number; + /** + * The number of blobs in the block (filter: gt) + */ + blob_count_gt?: number; + /** + * The number of blobs in the block (filter: gte) + */ + blob_count_gte?: number; + /** + * The number of blobs in the block (filter: between_min) + */ + blob_count_between_min?: number; + /** + * The number of blobs in the block (filter: between_max_value) + */ + blob_count_between_max_value?: number; + /** + * The number of blobs in the block (filter: in_values) (comma-separated list) + */ + blob_count_in_values?: string; + /** + * The number of blobs in the block (filter: not_in_values) (comma-separated list) + */ + blob_count_not_in_values?: string; + /** + * The maximum number of fct_block_blob_count_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockBlobCountHead` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_blob_count_head'; +}; + +export type FctBlockBlobCountHeadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockBlobCountHeadServiceListError = + FctBlockBlobCountHeadServiceListErrors[keyof FctBlockBlobCountHeadServiceListErrors]; + +export type FctBlockBlobCountHeadServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockBlobCountHeadResponse; +}; + +export type FctBlockBlobCountHeadServiceListResponse = + FctBlockBlobCountHeadServiceListResponses[keyof FctBlockBlobCountHeadServiceListResponses]; + +export type FctBlockBlobCountHeadServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_blob_count_head/{slot_start_date_time}'; +}; + +export type FctBlockBlobCountHeadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockBlobCountHeadServiceGetError = + FctBlockBlobCountHeadServiceGetErrors[keyof FctBlockBlobCountHeadServiceGetErrors]; + +export type FctBlockBlobCountHeadServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockBlobCountHeadResponse; +}; + +export type FctBlockBlobCountHeadServiceGetResponse = + FctBlockBlobCountHeadServiceGetResponses[keyof FctBlockBlobCountHeadServiceGetResponses]; + +export type FctBlockBlobFirstSeenByNodeServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The blob index (filter: eq) + */ + blob_index_eq?: number; + /** + * The blob index (filter: ne) + */ + blob_index_ne?: number; + /** + * The blob index (filter: lt) + */ + blob_index_lt?: number; + /** + * The blob index (filter: lte) + */ + blob_index_lte?: number; + /** + * The blob index (filter: gt) + */ + blob_index_gt?: number; + /** + * The blob index (filter: gte) + */ + blob_index_gte?: number; + /** + * The blob index (filter: between_min) + */ + blob_index_between_min?: number; + /** + * The blob index (filter: between_max_value) + */ + blob_index_between_max_value?: number; + /** + * The blob index (filter: in_values) (comma-separated list) + */ + blob_index_in_values?: string; + /** + * The blob index (filter: not_in_values) (comma-separated list) + */ + blob_index_not_in_values?: string; + /** + * Name of the client (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Source of the event (filter: eq) + */ + source_eq?: string; + /** + * Source of the event (filter: ne) + */ + source_ne?: string; + /** + * Source of the event (filter: contains) + */ + source_contains?: string; + /** + * Source of the event (filter: starts_with) + */ + source_starts_with?: string; + /** + * Source of the event (filter: ends_with) + */ + source_ends_with?: string; + /** + * Source of the event (filter: like) + */ + source_like?: string; + /** + * Source of the event (filter: not_like) + */ + source_not_like?: string; + /** + * Source of the event (filter: in_values) (comma-separated list) + */ + source_in_values?: string; + /** + * Source of the event (filter: not_in_values) (comma-separated list) + */ + source_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The time from slot start for the client to see the block (filter: eq) + */ + seen_slot_start_diff_eq?: number; + /** + * The time from slot start for the client to see the block (filter: ne) + */ + seen_slot_start_diff_ne?: number; + /** + * The time from slot start for the client to see the block (filter: lt) + */ + seen_slot_start_diff_lt?: number; + /** + * The time from slot start for the client to see the block (filter: lte) + */ + seen_slot_start_diff_lte?: number; + /** + * The time from slot start for the client to see the block (filter: gt) + */ + seen_slot_start_diff_gt?: number; + /** + * The time from slot start for the client to see the block (filter: gte) + */ + seen_slot_start_diff_gte?: number; + /** + * The time from slot start for the client to see the block (filter: between_min) + */ + seen_slot_start_diff_between_min?: number; + /** + * The time from slot start for the client to see the block (filter: between_max_value) + */ + seen_slot_start_diff_between_max_value?: number; + /** + * The time from slot start for the client to see the block (filter: in_values) (comma-separated list) + */ + seen_slot_start_diff_in_values?: string; + /** + * The time from slot start for the client to see the block (filter: not_in_values) (comma-separated list) + */ + seen_slot_start_diff_not_in_values?: string; + /** + * Username of the node (filter: eq) + */ + username_eq?: string; + /** + * Username of the node (filter: ne) + */ + username_ne?: string; + /** + * Username of the node (filter: contains) + */ + username_contains?: string; + /** + * Username of the node (filter: starts_with) + */ + username_starts_with?: string; + /** + * Username of the node (filter: ends_with) + */ + username_ends_with?: string; + /** + * Username of the node (filter: like) + */ + username_like?: string; + /** + * Username of the node (filter: not_like) + */ + username_not_like?: string; + /** + * Username of the node (filter: in_values) (comma-separated list) + */ + username_in_values?: string; + /** + * Username of the node (filter: not_in_values) (comma-separated list) + */ + username_not_in_values?: string; + /** + * ID of the node (filter: eq) + */ + node_id_eq?: string; + /** + * ID of the node (filter: ne) + */ + node_id_ne?: string; + /** + * ID of the node (filter: contains) + */ + node_id_contains?: string; + /** + * ID of the node (filter: starts_with) + */ + node_id_starts_with?: string; + /** + * ID of the node (filter: ends_with) + */ + node_id_ends_with?: string; + /** + * ID of the node (filter: like) + */ + node_id_like?: string; + /** + * ID of the node (filter: not_like) + */ + node_id_not_like?: string; + /** + * ID of the node (filter: in_values) (comma-separated list) + */ + node_id_in_values?: string; + /** + * ID of the node (filter: not_in_values) (comma-separated list) + */ + node_id_not_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) + */ + classification_eq?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) + */ + classification_ne?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) + */ + classification_contains?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) + */ + classification_starts_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) + */ + classification_ends_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) + */ + classification_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) + */ + classification_not_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) + */ + classification_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) + */ + classification_not_in_values?: string; + /** + * Version of the client (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * City of the client (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Autonomous system number of the client (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * Ethereum consensus client version (filter: eq) + */ + meta_consensus_version_eq?: string; + /** + * Ethereum consensus client version (filter: ne) + */ + meta_consensus_version_ne?: string; + /** + * Ethereum consensus client version (filter: contains) + */ + meta_consensus_version_contains?: string; + /** + * Ethereum consensus client version (filter: starts_with) + */ + meta_consensus_version_starts_with?: string; + /** + * Ethereum consensus client version (filter: ends_with) + */ + meta_consensus_version_ends_with?: string; + /** + * Ethereum consensus client version (filter: like) + */ + meta_consensus_version_like?: string; + /** + * Ethereum consensus client version (filter: not_like) + */ + meta_consensus_version_not_like?: string; + /** + * Ethereum consensus client version (filter: in_values) (comma-separated list) + */ + meta_consensus_version_in_values?: string; + /** + * Ethereum consensus client version (filter: not_in_values) (comma-separated list) + */ + meta_consensus_version_not_in_values?: string; + /** + * Ethereum consensus client implementation (filter: eq) + */ + meta_consensus_implementation_eq?: string; + /** + * Ethereum consensus client implementation (filter: ne) + */ + meta_consensus_implementation_ne?: string; + /** + * Ethereum consensus client implementation (filter: contains) + */ + meta_consensus_implementation_contains?: string; + /** + * Ethereum consensus client implementation (filter: starts_with) + */ + meta_consensus_implementation_starts_with?: string; + /** + * Ethereum consensus client implementation (filter: ends_with) + */ + meta_consensus_implementation_ends_with?: string; + /** + * Ethereum consensus client implementation (filter: like) + */ + meta_consensus_implementation_like?: string; + /** + * Ethereum consensus client implementation (filter: not_like) + */ + meta_consensus_implementation_not_like?: string; + /** + * Ethereum consensus client implementation (filter: in_values) (comma-separated list) + */ + meta_consensus_implementation_in_values?: string; + /** + * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) + */ + meta_consensus_implementation_not_in_values?: string; + /** + * The maximum number of fct_block_blob_first_seen_by_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockBlobFirstSeenByNode` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_blob_first_seen_by_node'; +}; + +export type FctBlockBlobFirstSeenByNodeServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockBlobFirstSeenByNodeServiceListError = + FctBlockBlobFirstSeenByNodeServiceListErrors[keyof FctBlockBlobFirstSeenByNodeServiceListErrors]; + +export type FctBlockBlobFirstSeenByNodeServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockBlobFirstSeenByNodeResponse; +}; + +export type FctBlockBlobFirstSeenByNodeServiceListResponse = + FctBlockBlobFirstSeenByNodeServiceListResponses[keyof FctBlockBlobFirstSeenByNodeServiceListResponses]; + +export type FctBlockBlobFirstSeenByNodeServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_blob_first_seen_by_node/{slot_start_date_time}'; +}; + +export type FctBlockBlobFirstSeenByNodeServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockBlobFirstSeenByNodeServiceGetError = + FctBlockBlobFirstSeenByNodeServiceGetErrors[keyof FctBlockBlobFirstSeenByNodeServiceGetErrors]; + +export type FctBlockBlobFirstSeenByNodeServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockBlobFirstSeenByNodeResponse; +}; + +export type FctBlockBlobFirstSeenByNodeServiceGetResponse = + FctBlockBlobFirstSeenByNodeServiceGetResponses[keyof FctBlockBlobFirstSeenByNodeServiceGetResponses]; + +export type FctBlockBlobHeadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root hash containing the blob (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash containing the blob (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash containing the blob (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash containing the blob (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash containing the blob (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash containing the blob (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash containing the blob (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash containing the blob (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash containing the blob (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The index of the blob within the block (filter: eq) + */ + blob_index_eq?: number; + /** + * The index of the blob within the block (filter: ne) + */ + blob_index_ne?: number; + /** + * The index of the blob within the block (filter: lt) + */ + blob_index_lt?: number; + /** + * The index of the blob within the block (filter: lte) + */ + blob_index_lte?: number; + /** + * The index of the blob within the block (filter: gt) + */ + blob_index_gt?: number; + /** + * The index of the blob within the block (filter: gte) + */ + blob_index_gte?: number; + /** + * The index of the blob within the block (filter: between_min) + */ + blob_index_between_min?: number; + /** + * The index of the blob within the block (filter: between_max_value) + */ + blob_index_between_max_value?: number; + /** + * The index of the blob within the block (filter: in_values) (comma-separated list) + */ + blob_index_in_values?: string; + /** + * The index of the blob within the block (filter: not_in_values) (comma-separated list) + */ + blob_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: eq) + */ + versioned_hash_eq?: string; + /** + * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: ne) + */ + versioned_hash_ne?: string; + /** + * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: contains) + */ + versioned_hash_contains?: string; + /** + * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: starts_with) + */ + versioned_hash_starts_with?: string; + /** + * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: ends_with) + */ + versioned_hash_ends_with?: string; + /** + * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: like) + */ + versioned_hash_like?: string; + /** + * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: not_like) + */ + versioned_hash_not_like?: string; + /** + * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: in_values) (comma-separated list) + */ + versioned_hash_in_values?: string; + /** + * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: not_in_values) (comma-separated list) + */ + versioned_hash_not_in_values?: string; + /** + * The KZG commitment of the blob (filter: eq) + */ + kzg_commitment_eq?: string; + /** + * The KZG commitment of the blob (filter: ne) + */ + kzg_commitment_ne?: string; + /** + * The KZG commitment of the blob (filter: contains) + */ + kzg_commitment_contains?: string; + /** + * The KZG commitment of the blob (filter: starts_with) + */ + kzg_commitment_starts_with?: string; + /** + * The KZG commitment of the blob (filter: ends_with) + */ + kzg_commitment_ends_with?: string; + /** + * The KZG commitment of the blob (filter: like) + */ + kzg_commitment_like?: string; + /** + * The KZG commitment of the blob (filter: not_like) + */ + kzg_commitment_not_like?: string; + /** + * The KZG commitment of the blob (filter: in_values) (comma-separated list) + */ + kzg_commitment_in_values?: string; + /** + * The KZG commitment of the blob (filter: not_in_values) (comma-separated list) + */ + kzg_commitment_not_in_values?: string; + /** + * The maximum number of fct_block_blob_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockBlobHead` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_blob_head'; +}; + +export type FctBlockBlobHeadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockBlobHeadServiceListError = + FctBlockBlobHeadServiceListErrors[keyof FctBlockBlobHeadServiceListErrors]; + +export type FctBlockBlobHeadServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockBlobHeadResponse; +}; + +export type FctBlockBlobHeadServiceListResponse = + FctBlockBlobHeadServiceListResponses[keyof FctBlockBlobHeadServiceListResponses]; + +export type FctBlockBlobHeadServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_blob_head/{slot_start_date_time}'; +}; + +export type FctBlockBlobHeadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockBlobHeadServiceGetError = FctBlockBlobHeadServiceGetErrors[keyof FctBlockBlobHeadServiceGetErrors]; + +export type FctBlockBlobHeadServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockBlobHeadResponse; +}; + +export type FctBlockBlobHeadServiceGetResponse = + FctBlockBlobHeadServiceGetResponses[keyof FctBlockBlobHeadServiceGetResponses]; + +export type FctBlockDataColumnSidecarFirstSeenServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The data column index (filter: eq) + */ + column_index_eq?: number; + /** + * The data column index (filter: ne) + */ + column_index_ne?: number; + /** + * The data column index (filter: lt) + */ + column_index_lt?: number; + /** + * The data column index (filter: lte) + */ + column_index_lte?: number; + /** + * The data column index (filter: gt) + */ + column_index_gt?: number; + /** + * The data column index (filter: gte) + */ + column_index_gte?: number; + /** + * The data column index (filter: between_min) + */ + column_index_between_min?: number; + /** + * The data column index (filter: between_max_value) + */ + column_index_between_max_value?: number; + /** + * The data column index (filter: in_values) (comma-separated list) + */ + column_index_in_values?: string; + /** + * The data column index (filter: not_in_values) (comma-separated list) + */ + column_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Source of the event (filter: eq) + */ + source_eq?: string; + /** + * Source of the event (filter: ne) + */ + source_ne?: string; + /** + * Source of the event (filter: contains) + */ + source_contains?: string; + /** + * Source of the event (filter: starts_with) + */ + source_starts_with?: string; + /** + * Source of the event (filter: ends_with) + */ + source_ends_with?: string; + /** + * Source of the event (filter: like) + */ + source_like?: string; + /** + * Source of the event (filter: not_like) + */ + source_not_like?: string; + /** + * Source of the event (filter: in_values) (comma-separated list) + */ + source_in_values?: string; + /** + * Source of the event (filter: not_in_values) (comma-separated list) + */ + source_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The time from slot start until the data column was first seen by any node (filter: eq) + */ + seen_slot_start_diff_eq?: number; + /** + * The time from slot start until the data column was first seen by any node (filter: ne) + */ + seen_slot_start_diff_ne?: number; + /** + * The time from slot start until the data column was first seen by any node (filter: lt) + */ + seen_slot_start_diff_lt?: number; + /** + * The time from slot start until the data column was first seen by any node (filter: lte) + */ + seen_slot_start_diff_lte?: number; + /** + * The time from slot start until the data column was first seen by any node (filter: gt) + */ + seen_slot_start_diff_gt?: number; + /** + * The time from slot start until the data column was first seen by any node (filter: gte) + */ + seen_slot_start_diff_gte?: number; + /** + * The time from slot start until the data column was first seen by any node (filter: between_min) + */ + seen_slot_start_diff_between_min?: number; + /** + * The time from slot start until the data column was first seen by any node (filter: between_max_value) + */ + seen_slot_start_diff_between_max_value?: number; + /** + * The time from slot start until the data column was first seen by any node (filter: in_values) (comma-separated list) + */ + seen_slot_start_diff_in_values?: string; + /** + * The time from slot start until the data column was first seen by any node (filter: not_in_values) (comma-separated list) + */ + seen_slot_start_diff_not_in_values?: string; + /** + * The number of rows (blobs) in the data column sidecar (filter: eq) + */ + row_count_eq?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: ne) + */ + row_count_ne?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: lt) + */ + row_count_lt?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: lte) + */ + row_count_lte?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: gt) + */ + row_count_gt?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: gte) + */ + row_count_gte?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: between_min) + */ + row_count_between_min?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: between_max_value) + */ + row_count_between_max_value?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: in_values) (comma-separated list) + */ + row_count_in_values?: string; + /** + * The number of rows (blobs) in the data column sidecar (filter: not_in_values) (comma-separated list) + */ + row_count_not_in_values?: string; + /** + * Username of the node that first saw the data column (filter: eq) + */ + username_eq?: string; + /** + * Username of the node that first saw the data column (filter: ne) + */ + username_ne?: string; + /** + * Username of the node that first saw the data column (filter: contains) + */ + username_contains?: string; + /** + * Username of the node that first saw the data column (filter: starts_with) + */ + username_starts_with?: string; + /** + * Username of the node that first saw the data column (filter: ends_with) + */ + username_ends_with?: string; + /** + * Username of the node that first saw the data column (filter: like) + */ + username_like?: string; + /** + * Username of the node that first saw the data column (filter: not_like) + */ + username_not_like?: string; + /** + * Username of the node that first saw the data column (filter: in_values) (comma-separated list) + */ + username_in_values?: string; + /** + * Username of the node that first saw the data column (filter: not_in_values) (comma-separated list) + */ + username_not_in_values?: string; + /** + * ID of the node that first saw the data column (filter: eq) + */ + node_id_eq?: string; + /** + * ID of the node that first saw the data column (filter: ne) + */ + node_id_ne?: string; + /** + * ID of the node that first saw the data column (filter: contains) + */ + node_id_contains?: string; + /** + * ID of the node that first saw the data column (filter: starts_with) + */ + node_id_starts_with?: string; + /** + * ID of the node that first saw the data column (filter: ends_with) + */ + node_id_ends_with?: string; + /** + * ID of the node that first saw the data column (filter: like) + */ + node_id_like?: string; + /** + * ID of the node that first saw the data column (filter: not_like) + */ + node_id_not_like?: string; + /** + * ID of the node that first saw the data column (filter: in_values) (comma-separated list) + */ + node_id_in_values?: string; + /** + * ID of the node that first saw the data column (filter: not_in_values) (comma-separated list) + */ + node_id_not_in_values?: string; + /** + * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) + */ + classification_eq?: string; + /** + * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) + */ + classification_ne?: string; + /** + * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) + */ + classification_contains?: string; + /** + * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) + */ + classification_starts_with?: string; + /** + * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) + */ + classification_ends_with?: string; + /** + * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) + */ + classification_like?: string; + /** + * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) + */ + classification_not_like?: string; + /** + * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) + */ + classification_in_values?: string; + /** + * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) + */ + classification_not_in_values?: string; + /** + * Name of the client that first saw the data column (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client that first saw the data column (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client that first saw the data column (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client that first saw the data column (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client that first saw the data column (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client that first saw the data column (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client that first saw the data column (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client that first saw the data column (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client that first saw the data column (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Version of the client that first saw the data column (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client that first saw the data column (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client that first saw the data column (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client that first saw the data column (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client that first saw the data column (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client that first saw the data column (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client that first saw the data column (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client that first saw the data column (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client that first saw the data column (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client that first saw the data column (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client that first saw the data column (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client that first saw the data column (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client that first saw the data column (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client that first saw the data column (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client that first saw the data column (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client that first saw the data column (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client that first saw the data column (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client that first saw the data column (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * City of the client that first saw the data column (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client that first saw the data column (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client that first saw the data column (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client that first saw the data column (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client that first saw the data column (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client that first saw the data column (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client that first saw the data column (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client that first saw the data column (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client that first saw the data column (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client that first saw the data column (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client that first saw the data column (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client that first saw the data column (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client that first saw the data column (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client that first saw the data column (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client that first saw the data column (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client that first saw the data column (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client that first saw the data column (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client that first saw the data column (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client that first saw the data column (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client that first saw the data column (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client that first saw the data column (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client that first saw the data column (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client that first saw the data column (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client that first saw the data column (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client that first saw the data column (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client that first saw the data column (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client that first saw the data column (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client that first saw the data column (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client that first saw the data column (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client that first saw the data column (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client that first saw the data column (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client that first saw the data column (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client that first saw the data column (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client that first saw the data column (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client that first saw the data column (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client that first saw the data column (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Autonomous system number of the client that first saw the data column (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client that first saw the data column (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client that first saw the data column (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client that first saw the data column (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client that first saw the data column (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client that first saw the data column (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client that first saw the data column (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client that first saw the data column (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client that first saw the data column (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client that first saw the data column (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client that first saw the data column (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client that first saw the data column (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client that first saw the data column (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client that first saw the data column (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client that first saw the data column (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client that first saw the data column (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client that first saw the data column (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client that first saw the data column (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client that first saw the data column (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * Ethereum consensus client version of the client that first saw the data column (filter: eq) + */ + meta_consensus_version_eq?: string; + /** + * Ethereum consensus client version of the client that first saw the data column (filter: ne) + */ + meta_consensus_version_ne?: string; + /** + * Ethereum consensus client version of the client that first saw the data column (filter: contains) + */ + meta_consensus_version_contains?: string; + /** + * Ethereum consensus client version of the client that first saw the data column (filter: starts_with) + */ + meta_consensus_version_starts_with?: string; + /** + * Ethereum consensus client version of the client that first saw the data column (filter: ends_with) + */ + meta_consensus_version_ends_with?: string; + /** + * Ethereum consensus client version of the client that first saw the data column (filter: like) + */ + meta_consensus_version_like?: string; + /** + * Ethereum consensus client version of the client that first saw the data column (filter: not_like) + */ + meta_consensus_version_not_like?: string; + /** + * Ethereum consensus client version of the client that first saw the data column (filter: in_values) (comma-separated list) + */ + meta_consensus_version_in_values?: string; + /** + * Ethereum consensus client version of the client that first saw the data column (filter: not_in_values) (comma-separated list) + */ + meta_consensus_version_not_in_values?: string; + /** + * Ethereum consensus client implementation of the client that first saw the data column (filter: eq) + */ + meta_consensus_implementation_eq?: string; + /** + * Ethereum consensus client implementation of the client that first saw the data column (filter: ne) + */ + meta_consensus_implementation_ne?: string; + /** + * Ethereum consensus client implementation of the client that first saw the data column (filter: contains) + */ + meta_consensus_implementation_contains?: string; + /** + * Ethereum consensus client implementation of the client that first saw the data column (filter: starts_with) + */ + meta_consensus_implementation_starts_with?: string; + /** + * Ethereum consensus client implementation of the client that first saw the data column (filter: ends_with) + */ + meta_consensus_implementation_ends_with?: string; + /** + * Ethereum consensus client implementation of the client that first saw the data column (filter: like) + */ + meta_consensus_implementation_like?: string; + /** + * Ethereum consensus client implementation of the client that first saw the data column (filter: not_like) + */ + meta_consensus_implementation_not_like?: string; + /** + * Ethereum consensus client implementation of the client that first saw the data column (filter: in_values) (comma-separated list) + */ + meta_consensus_implementation_in_values?: string; + /** + * Ethereum consensus client implementation of the client that first saw the data column (filter: not_in_values) (comma-separated list) + */ + meta_consensus_implementation_not_in_values?: string; + /** + * The maximum number of fct_block_data_column_sidecar_first_seen to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockDataColumnSidecarFirstSeen` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_data_column_sidecar_first_seen'; +}; + +export type FctBlockDataColumnSidecarFirstSeenServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockDataColumnSidecarFirstSeenServiceListError = + FctBlockDataColumnSidecarFirstSeenServiceListErrors[keyof FctBlockDataColumnSidecarFirstSeenServiceListErrors]; + +export type FctBlockDataColumnSidecarFirstSeenServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockDataColumnSidecarFirstSeenResponse; +}; + +export type FctBlockDataColumnSidecarFirstSeenServiceListResponse = + FctBlockDataColumnSidecarFirstSeenServiceListResponses[keyof FctBlockDataColumnSidecarFirstSeenServiceListResponses]; + +export type FctBlockDataColumnSidecarFirstSeenServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_data_column_sidecar_first_seen/{slot_start_date_time}'; +}; + +export type FctBlockDataColumnSidecarFirstSeenServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockDataColumnSidecarFirstSeenServiceGetError = + FctBlockDataColumnSidecarFirstSeenServiceGetErrors[keyof FctBlockDataColumnSidecarFirstSeenServiceGetErrors]; + +export type FctBlockDataColumnSidecarFirstSeenServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockDataColumnSidecarFirstSeenResponse; +}; + +export type FctBlockDataColumnSidecarFirstSeenServiceGetResponse = + FctBlockDataColumnSidecarFirstSeenServiceGetResponses[keyof FctBlockDataColumnSidecarFirstSeenServiceGetResponses]; + +export type FctBlockDataColumnSidecarFirstSeenByNodeServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The data column index (filter: eq) + */ + column_index_eq?: number; + /** + * The data column index (filter: ne) + */ + column_index_ne?: number; + /** + * The data column index (filter: lt) + */ + column_index_lt?: number; + /** + * The data column index (filter: lte) + */ + column_index_lte?: number; + /** + * The data column index (filter: gt) + */ + column_index_gt?: number; + /** + * The data column index (filter: gte) + */ + column_index_gte?: number; + /** + * The data column index (filter: between_min) + */ + column_index_between_min?: number; + /** + * The data column index (filter: between_max_value) + */ + column_index_between_max_value?: number; + /** + * The data column index (filter: in_values) (comma-separated list) + */ + column_index_in_values?: string; + /** + * The data column index (filter: not_in_values) (comma-separated list) + */ + column_index_not_in_values?: string; + /** + * Name of the client (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Source of the event (filter: eq) + */ + source_eq?: string; + /** + * Source of the event (filter: ne) + */ + source_ne?: string; + /** + * Source of the event (filter: contains) + */ + source_contains?: string; + /** + * Source of the event (filter: starts_with) + */ + source_starts_with?: string; + /** + * Source of the event (filter: ends_with) + */ + source_ends_with?: string; + /** + * Source of the event (filter: like) + */ + source_like?: string; + /** + * Source of the event (filter: not_like) + */ + source_not_like?: string; + /** + * Source of the event (filter: in_values) (comma-separated list) + */ + source_in_values?: string; + /** + * Source of the event (filter: not_in_values) (comma-separated list) + */ + source_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The time from slot start for the client to see the data column (filter: eq) + */ + seen_slot_start_diff_eq?: number; + /** + * The time from slot start for the client to see the data column (filter: ne) + */ + seen_slot_start_diff_ne?: number; + /** + * The time from slot start for the client to see the data column (filter: lt) + */ + seen_slot_start_diff_lt?: number; + /** + * The time from slot start for the client to see the data column (filter: lte) + */ + seen_slot_start_diff_lte?: number; + /** + * The time from slot start for the client to see the data column (filter: gt) + */ + seen_slot_start_diff_gt?: number; + /** + * The time from slot start for the client to see the data column (filter: gte) + */ + seen_slot_start_diff_gte?: number; + /** + * The time from slot start for the client to see the data column (filter: between_min) + */ + seen_slot_start_diff_between_min?: number; + /** + * The time from slot start for the client to see the data column (filter: between_max_value) + */ + seen_slot_start_diff_between_max_value?: number; + /** + * The time from slot start for the client to see the data column (filter: in_values) (comma-separated list) + */ + seen_slot_start_diff_in_values?: string; + /** + * The time from slot start for the client to see the data column (filter: not_in_values) (comma-separated list) + */ + seen_slot_start_diff_not_in_values?: string; + /** + * The number of rows (blobs) in the data column sidecar (filter: eq) + */ + row_count_eq?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: ne) + */ + row_count_ne?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: lt) + */ + row_count_lt?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: lte) + */ + row_count_lte?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: gt) + */ + row_count_gt?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: gte) + */ + row_count_gte?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: between_min) + */ + row_count_between_min?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: between_max_value) + */ + row_count_between_max_value?: number; + /** + * The number of rows (blobs) in the data column sidecar (filter: in_values) (comma-separated list) + */ + row_count_in_values?: string; + /** + * The number of rows (blobs) in the data column sidecar (filter: not_in_values) (comma-separated list) + */ + row_count_not_in_values?: string; + /** + * Username of the node (filter: eq) + */ + username_eq?: string; + /** + * Username of the node (filter: ne) + */ + username_ne?: string; + /** + * Username of the node (filter: contains) + */ + username_contains?: string; + /** + * Username of the node (filter: starts_with) + */ + username_starts_with?: string; + /** + * Username of the node (filter: ends_with) + */ + username_ends_with?: string; + /** + * Username of the node (filter: like) + */ + username_like?: string; + /** + * Username of the node (filter: not_like) + */ + username_not_like?: string; + /** + * Username of the node (filter: in_values) (comma-separated list) + */ + username_in_values?: string; + /** + * Username of the node (filter: not_in_values) (comma-separated list) + */ + username_not_in_values?: string; + /** + * ID of the node (filter: eq) + */ + node_id_eq?: string; + /** + * ID of the node (filter: ne) + */ + node_id_ne?: string; + /** + * ID of the node (filter: contains) + */ + node_id_contains?: string; + /** + * ID of the node (filter: starts_with) + */ + node_id_starts_with?: string; + /** + * ID of the node (filter: ends_with) + */ + node_id_ends_with?: string; + /** + * ID of the node (filter: like) + */ + node_id_like?: string; + /** + * ID of the node (filter: not_like) + */ + node_id_not_like?: string; + /** + * ID of the node (filter: in_values) (comma-separated list) + */ + node_id_in_values?: string; + /** + * ID of the node (filter: not_in_values) (comma-separated list) + */ + node_id_not_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) + */ + classification_eq?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) + */ + classification_ne?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) + */ + classification_contains?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) + */ + classification_starts_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) + */ + classification_ends_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) + */ + classification_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) + */ + classification_not_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) + */ + classification_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) + */ + classification_not_in_values?: string; + /** + * Version of the client (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * City of the client (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Autonomous system number of the client (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * Ethereum consensus client version (filter: eq) + */ + meta_consensus_version_eq?: string; + /** + * Ethereum consensus client version (filter: ne) + */ + meta_consensus_version_ne?: string; + /** + * Ethereum consensus client version (filter: contains) + */ + meta_consensus_version_contains?: string; + /** + * Ethereum consensus client version (filter: starts_with) + */ + meta_consensus_version_starts_with?: string; + /** + * Ethereum consensus client version (filter: ends_with) + */ + meta_consensus_version_ends_with?: string; + /** + * Ethereum consensus client version (filter: like) + */ + meta_consensus_version_like?: string; + /** + * Ethereum consensus client version (filter: not_like) + */ + meta_consensus_version_not_like?: string; + /** + * Ethereum consensus client version (filter: in_values) (comma-separated list) + */ + meta_consensus_version_in_values?: string; + /** + * Ethereum consensus client version (filter: not_in_values) (comma-separated list) + */ + meta_consensus_version_not_in_values?: string; + /** + * Ethereum consensus client implementation (filter: eq) + */ + meta_consensus_implementation_eq?: string; + /** + * Ethereum consensus client implementation (filter: ne) + */ + meta_consensus_implementation_ne?: string; + /** + * Ethereum consensus client implementation (filter: contains) + */ + meta_consensus_implementation_contains?: string; + /** + * Ethereum consensus client implementation (filter: starts_with) + */ + meta_consensus_implementation_starts_with?: string; + /** + * Ethereum consensus client implementation (filter: ends_with) + */ + meta_consensus_implementation_ends_with?: string; + /** + * Ethereum consensus client implementation (filter: like) + */ + meta_consensus_implementation_like?: string; + /** + * Ethereum consensus client implementation (filter: not_like) + */ + meta_consensus_implementation_not_like?: string; + /** + * Ethereum consensus client implementation (filter: in_values) (comma-separated list) + */ + meta_consensus_implementation_in_values?: string; + /** + * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) + */ + meta_consensus_implementation_not_in_values?: string; + /** + * The maximum number of fct_block_data_column_sidecar_first_seen_by_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockDataColumnSidecarFirstSeenByNode` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_data_column_sidecar_first_seen_by_node'; +}; + +export type FctBlockDataColumnSidecarFirstSeenByNodeServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockDataColumnSidecarFirstSeenByNodeServiceListError = + FctBlockDataColumnSidecarFirstSeenByNodeServiceListErrors[keyof FctBlockDataColumnSidecarFirstSeenByNodeServiceListErrors]; + +export type FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockDataColumnSidecarFirstSeenByNodeResponse; +}; + +export type FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse = + FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponses[keyof FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponses]; + +export type FctBlockDataColumnSidecarFirstSeenByNodeServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_data_column_sidecar_first_seen_by_node/{slot_start_date_time}'; +}; + +export type FctBlockDataColumnSidecarFirstSeenByNodeServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockDataColumnSidecarFirstSeenByNodeServiceGetError = + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetErrors[keyof FctBlockDataColumnSidecarFirstSeenByNodeServiceGetErrors]; + +export type FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockDataColumnSidecarFirstSeenByNodeResponse; +}; + +export type FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse = + FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponses[keyof FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponses]; + +export type FctBlockFirstSeenByNodeServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Name of the client (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Source of the event (filter: eq) + */ + source_eq?: string; + /** + * Source of the event (filter: ne) + */ + source_ne?: string; + /** + * Source of the event (filter: contains) + */ + source_contains?: string; + /** + * Source of the event (filter: starts_with) + */ + source_starts_with?: string; + /** + * Source of the event (filter: ends_with) + */ + source_ends_with?: string; + /** + * Source of the event (filter: like) + */ + source_like?: string; + /** + * Source of the event (filter: not_like) + */ + source_not_like?: string; + /** + * Source of the event (filter: in_values) (comma-separated list) + */ + source_in_values?: string; + /** + * Source of the event (filter: not_in_values) (comma-separated list) + */ + source_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The time from slot start for the client to see the block (filter: eq) + */ + seen_slot_start_diff_eq?: number; + /** + * The time from slot start for the client to see the block (filter: ne) + */ + seen_slot_start_diff_ne?: number; + /** + * The time from slot start for the client to see the block (filter: lt) + */ + seen_slot_start_diff_lt?: number; + /** + * The time from slot start for the client to see the block (filter: lte) + */ + seen_slot_start_diff_lte?: number; + /** + * The time from slot start for the client to see the block (filter: gt) + */ + seen_slot_start_diff_gt?: number; + /** + * The time from slot start for the client to see the block (filter: gte) + */ + seen_slot_start_diff_gte?: number; + /** + * The time from slot start for the client to see the block (filter: between_min) + */ + seen_slot_start_diff_between_min?: number; + /** + * The time from slot start for the client to see the block (filter: between_max_value) + */ + seen_slot_start_diff_between_max_value?: number; + /** + * The time from slot start for the client to see the block (filter: in_values) (comma-separated list) + */ + seen_slot_start_diff_in_values?: string; + /** + * The time from slot start for the client to see the block (filter: not_in_values) (comma-separated list) + */ + seen_slot_start_diff_not_in_values?: string; + /** + * Username of the node (filter: eq) + */ + username_eq?: string; + /** + * Username of the node (filter: ne) + */ + username_ne?: string; + /** + * Username of the node (filter: contains) + */ + username_contains?: string; + /** + * Username of the node (filter: starts_with) + */ + username_starts_with?: string; + /** + * Username of the node (filter: ends_with) + */ + username_ends_with?: string; + /** + * Username of the node (filter: like) + */ + username_like?: string; + /** + * Username of the node (filter: not_like) + */ + username_not_like?: string; + /** + * Username of the node (filter: in_values) (comma-separated list) + */ + username_in_values?: string; + /** + * Username of the node (filter: not_in_values) (comma-separated list) + */ + username_not_in_values?: string; + /** + * ID of the node (filter: eq) + */ + node_id_eq?: string; + /** + * ID of the node (filter: ne) + */ + node_id_ne?: string; + /** + * ID of the node (filter: contains) + */ + node_id_contains?: string; + /** + * ID of the node (filter: starts_with) + */ + node_id_starts_with?: string; + /** + * ID of the node (filter: ends_with) + */ + node_id_ends_with?: string; + /** + * ID of the node (filter: like) + */ + node_id_like?: string; + /** + * ID of the node (filter: not_like) + */ + node_id_not_like?: string; + /** + * ID of the node (filter: in_values) (comma-separated list) + */ + node_id_in_values?: string; + /** + * ID of the node (filter: not_in_values) (comma-separated list) + */ + node_id_not_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) + */ + classification_eq?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) + */ + classification_ne?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) + */ + classification_contains?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) + */ + classification_starts_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) + */ + classification_ends_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) + */ + classification_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) + */ + classification_not_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) + */ + classification_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) + */ + classification_not_in_values?: string; + /** + * Version of the client (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * City of the client (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Autonomous system number of the client (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * Ethereum consensus client version (filter: eq) + */ + meta_consensus_version_eq?: string; + /** + * Ethereum consensus client version (filter: ne) + */ + meta_consensus_version_ne?: string; + /** + * Ethereum consensus client version (filter: contains) + */ + meta_consensus_version_contains?: string; + /** + * Ethereum consensus client version (filter: starts_with) + */ + meta_consensus_version_starts_with?: string; + /** + * Ethereum consensus client version (filter: ends_with) + */ + meta_consensus_version_ends_with?: string; + /** + * Ethereum consensus client version (filter: like) + */ + meta_consensus_version_like?: string; + /** + * Ethereum consensus client version (filter: not_like) + */ + meta_consensus_version_not_like?: string; + /** + * Ethereum consensus client version (filter: in_values) (comma-separated list) + */ + meta_consensus_version_in_values?: string; + /** + * Ethereum consensus client version (filter: not_in_values) (comma-separated list) + */ + meta_consensus_version_not_in_values?: string; + /** + * Ethereum consensus client implementation (filter: eq) + */ + meta_consensus_implementation_eq?: string; + /** + * Ethereum consensus client implementation (filter: ne) + */ + meta_consensus_implementation_ne?: string; + /** + * Ethereum consensus client implementation (filter: contains) + */ + meta_consensus_implementation_contains?: string; + /** + * Ethereum consensus client implementation (filter: starts_with) + */ + meta_consensus_implementation_starts_with?: string; + /** + * Ethereum consensus client implementation (filter: ends_with) + */ + meta_consensus_implementation_ends_with?: string; + /** + * Ethereum consensus client implementation (filter: like) + */ + meta_consensus_implementation_like?: string; + /** + * Ethereum consensus client implementation (filter: not_like) + */ + meta_consensus_implementation_not_like?: string; + /** + * Ethereum consensus client implementation (filter: in_values) (comma-separated list) + */ + meta_consensus_implementation_in_values?: string; + /** + * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) + */ + meta_consensus_implementation_not_in_values?: string; + /** + * The maximum number of fct_block_first_seen_by_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockFirstSeenByNode` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_first_seen_by_node'; +}; + +export type FctBlockFirstSeenByNodeServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockFirstSeenByNodeServiceListError = + FctBlockFirstSeenByNodeServiceListErrors[keyof FctBlockFirstSeenByNodeServiceListErrors]; + +export type FctBlockFirstSeenByNodeServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockFirstSeenByNodeResponse; +}; + +export type FctBlockFirstSeenByNodeServiceListResponse = + FctBlockFirstSeenByNodeServiceListResponses[keyof FctBlockFirstSeenByNodeServiceListResponses]; + +export type FctBlockFirstSeenByNodeServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_first_seen_by_node/{slot_start_date_time}'; +}; + +export type FctBlockFirstSeenByNodeServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockFirstSeenByNodeServiceGetError = + FctBlockFirstSeenByNodeServiceGetErrors[keyof FctBlockFirstSeenByNodeServiceGetErrors]; + +export type FctBlockFirstSeenByNodeServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockFirstSeenByNodeResponse; +}; + +export type FctBlockFirstSeenByNodeServiceGetResponse = + FctBlockFirstSeenByNodeServiceGetResponses[keyof FctBlockFirstSeenByNodeServiceGetResponses]; + +export type FctBlockHeadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the reorg slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the reorg slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the reorg slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the reorg slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the reorg slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the reorg slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the reorg slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the reorg slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the reorg slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the reorg slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The root hash of the beacon block (filter: eq) + */ + block_root_eq?: string; + /** + * The root hash of the beacon block (filter: ne) + */ + block_root_ne?: string; + /** + * The root hash of the beacon block (filter: contains) + */ + block_root_contains?: string; + /** + * The root hash of the beacon block (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The root hash of the beacon block (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The root hash of the beacon block (filter: like) + */ + block_root_like?: string; + /** + * The root hash of the beacon block (filter: not_like) + */ + block_root_not_like?: string; + /** + * The root hash of the beacon block (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The root hash of the beacon block (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number from beacon block payload (filter: eq) + */ + slot_eq?: number; + /** + * The slot number from beacon block payload (filter: ne) + */ + slot_ne?: number; + /** + * The slot number from beacon block payload (filter: lt) + */ + slot_lt?: number; + /** + * The slot number from beacon block payload (filter: lte) + */ + slot_lte?: number; + /** + * The slot number from beacon block payload (filter: gt) + */ + slot_gt?: number; + /** + * The slot number from beacon block payload (filter: gte) + */ + slot_gte?: number; + /** + * The slot number from beacon block payload (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number from beacon block payload (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number from beacon block payload (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number from beacon block payload (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number from beacon block payload (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number from beacon block payload (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number from beacon block payload (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number from beacon block payload (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number from beacon block payload (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number from beacon block payload (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number from beacon block payload (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number from beacon block payload (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number from beacon block payload (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number from beacon block payload (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The version of the beacon block (filter: eq) + */ + block_version_eq?: string; + /** + * The version of the beacon block (filter: ne) + */ + block_version_ne?: string; + /** + * The version of the beacon block (filter: contains) + */ + block_version_contains?: string; + /** + * The version of the beacon block (filter: starts_with) + */ + block_version_starts_with?: string; + /** + * The version of the beacon block (filter: ends_with) + */ + block_version_ends_with?: string; + /** + * The version of the beacon block (filter: like) + */ + block_version_like?: string; + /** + * The version of the beacon block (filter: not_like) + */ + block_version_not_like?: string; + /** + * The version of the beacon block (filter: in_values) (comma-separated list) + */ + block_version_in_values?: string; + /** + * The version of the beacon block (filter: not_in_values) (comma-separated list) + */ + block_version_not_in_values?: string; + /** + * The total bytes of the beacon block payload (filter: eq) + */ + block_total_bytes_eq?: number; + /** + * The total bytes of the beacon block payload (filter: ne) + */ + block_total_bytes_ne?: number; + /** + * The total bytes of the beacon block payload (filter: lt) + */ + block_total_bytes_lt?: number; + /** + * The total bytes of the beacon block payload (filter: lte) + */ + block_total_bytes_lte?: number; + /** + * The total bytes of the beacon block payload (filter: gt) + */ + block_total_bytes_gt?: number; + /** + * The total bytes of the beacon block payload (filter: gte) + */ + block_total_bytes_gte?: number; + /** + * The total bytes of the beacon block payload (filter: between_min) + */ + block_total_bytes_between_min?: number; + /** + * The total bytes of the beacon block payload (filter: between_max_value) + */ + block_total_bytes_between_max_value?: number; + /** + * The total bytes of the beacon block payload (filter: in_values) (comma-separated list) + */ + block_total_bytes_in_values?: string; + /** + * The total bytes of the beacon block payload (filter: not_in_values) (comma-separated list) + */ + block_total_bytes_not_in_values?: string; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: eq) + */ + block_total_bytes_compressed_eq?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: ne) + */ + block_total_bytes_compressed_ne?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: lt) + */ + block_total_bytes_compressed_lt?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: lte) + */ + block_total_bytes_compressed_lte?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: gt) + */ + block_total_bytes_compressed_gt?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: gte) + */ + block_total_bytes_compressed_gte?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: between_min) + */ + block_total_bytes_compressed_between_min?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: between_max_value) + */ + block_total_bytes_compressed_between_max_value?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: in_values) (comma-separated list) + */ + block_total_bytes_compressed_in_values?: string; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: not_in_values) (comma-separated list) + */ + block_total_bytes_compressed_not_in_values?: string; + /** + * The root hash of the parent beacon block (filter: eq) + */ + parent_root_eq?: string; + /** + * The root hash of the parent beacon block (filter: ne) + */ + parent_root_ne?: string; + /** + * The root hash of the parent beacon block (filter: contains) + */ + parent_root_contains?: string; + /** + * The root hash of the parent beacon block (filter: starts_with) + */ + parent_root_starts_with?: string; + /** + * The root hash of the parent beacon block (filter: ends_with) + */ + parent_root_ends_with?: string; + /** + * The root hash of the parent beacon block (filter: like) + */ + parent_root_like?: string; + /** + * The root hash of the parent beacon block (filter: not_like) + */ + parent_root_not_like?: string; + /** + * The root hash of the parent beacon block (filter: in_values) (comma-separated list) + */ + parent_root_in_values?: string; + /** + * The root hash of the parent beacon block (filter: not_in_values) (comma-separated list) + */ + parent_root_not_in_values?: string; + /** + * The root hash of the beacon state at this block (filter: eq) + */ + state_root_eq?: string; + /** + * The root hash of the beacon state at this block (filter: ne) + */ + state_root_ne?: string; + /** + * The root hash of the beacon state at this block (filter: contains) + */ + state_root_contains?: string; + /** + * The root hash of the beacon state at this block (filter: starts_with) + */ + state_root_starts_with?: string; + /** + * The root hash of the beacon state at this block (filter: ends_with) + */ + state_root_ends_with?: string; + /** + * The root hash of the beacon state at this block (filter: like) + */ + state_root_like?: string; + /** + * The root hash of the beacon state at this block (filter: not_like) + */ + state_root_not_like?: string; + /** + * The root hash of the beacon state at this block (filter: in_values) (comma-separated list) + */ + state_root_in_values?: string; + /** + * The root hash of the beacon state at this block (filter: not_in_values) (comma-separated list) + */ + state_root_not_in_values?: string; + /** + * The index of the validator that proposed the beacon block (filter: eq) + */ + proposer_index_eq?: number; + /** + * The index of the validator that proposed the beacon block (filter: ne) + */ + proposer_index_ne?: number; + /** + * The index of the validator that proposed the beacon block (filter: lt) + */ + proposer_index_lt?: number; + /** + * The index of the validator that proposed the beacon block (filter: lte) + */ + proposer_index_lte?: number; + /** + * The index of the validator that proposed the beacon block (filter: gt) + */ + proposer_index_gt?: number; + /** + * The index of the validator that proposed the beacon block (filter: gte) + */ + proposer_index_gte?: number; + /** + * The index of the validator that proposed the beacon block (filter: between_min) + */ + proposer_index_between_min?: number; + /** + * The index of the validator that proposed the beacon block (filter: between_max_value) + */ + proposer_index_between_max_value?: number; + /** + * The index of the validator that proposed the beacon block (filter: in_values) (comma-separated list) + */ + proposer_index_in_values?: string; + /** + * The index of the validator that proposed the beacon block (filter: not_in_values) (comma-separated list) + */ + proposer_index_not_in_values?: string; + /** + * The block hash of the associated execution block (filter: eq) + */ + eth1_data_block_hash_eq?: string; + /** + * The block hash of the associated execution block (filter: ne) + */ + eth1_data_block_hash_ne?: string; + /** + * The block hash of the associated execution block (filter: contains) + */ + eth1_data_block_hash_contains?: string; + /** + * The block hash of the associated execution block (filter: starts_with) + */ + eth1_data_block_hash_starts_with?: string; + /** + * The block hash of the associated execution block (filter: ends_with) + */ + eth1_data_block_hash_ends_with?: string; + /** + * The block hash of the associated execution block (filter: like) + */ + eth1_data_block_hash_like?: string; + /** + * The block hash of the associated execution block (filter: not_like) + */ + eth1_data_block_hash_not_like?: string; + /** + * The block hash of the associated execution block (filter: in_values) (comma-separated list) + */ + eth1_data_block_hash_in_values?: string; + /** + * The block hash of the associated execution block (filter: not_in_values) (comma-separated list) + */ + eth1_data_block_hash_not_in_values?: string; + /** + * The root of the deposit tree in the associated execution block (filter: eq) + */ + eth1_data_deposit_root_eq?: string; + /** + * The root of the deposit tree in the associated execution block (filter: ne) + */ + eth1_data_deposit_root_ne?: string; + /** + * The root of the deposit tree in the associated execution block (filter: contains) + */ + eth1_data_deposit_root_contains?: string; + /** + * The root of the deposit tree in the associated execution block (filter: starts_with) + */ + eth1_data_deposit_root_starts_with?: string; + /** + * The root of the deposit tree in the associated execution block (filter: ends_with) + */ + eth1_data_deposit_root_ends_with?: string; + /** + * The root of the deposit tree in the associated execution block (filter: like) + */ + eth1_data_deposit_root_like?: string; + /** + * The root of the deposit tree in the associated execution block (filter: not_like) + */ + eth1_data_deposit_root_not_like?: string; + /** + * The root of the deposit tree in the associated execution block (filter: in_values) (comma-separated list) + */ + eth1_data_deposit_root_in_values?: string; + /** + * The root of the deposit tree in the associated execution block (filter: not_in_values) (comma-separated list) + */ + eth1_data_deposit_root_not_in_values?: string; + /** + * The block hash of the execution payload (filter: eq) + */ + execution_payload_block_hash_eq?: string; + /** + * The block hash of the execution payload (filter: ne) + */ + execution_payload_block_hash_ne?: string; + /** + * The block hash of the execution payload (filter: contains) + */ + execution_payload_block_hash_contains?: string; + /** + * The block hash of the execution payload (filter: starts_with) + */ + execution_payload_block_hash_starts_with?: string; + /** + * The block hash of the execution payload (filter: ends_with) + */ + execution_payload_block_hash_ends_with?: string; + /** + * The block hash of the execution payload (filter: like) + */ + execution_payload_block_hash_like?: string; + /** + * The block hash of the execution payload (filter: not_like) + */ + execution_payload_block_hash_not_like?: string; + /** + * The block hash of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_block_hash_in_values?: string; + /** + * The block hash of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_block_hash_not_in_values?: string; + /** + * The block number of the execution payload (filter: eq) + */ + execution_payload_block_number_eq?: number; + /** + * The block number of the execution payload (filter: ne) + */ + execution_payload_block_number_ne?: number; + /** + * The block number of the execution payload (filter: lt) + */ + execution_payload_block_number_lt?: number; + /** + * The block number of the execution payload (filter: lte) + */ + execution_payload_block_number_lte?: number; + /** + * The block number of the execution payload (filter: gt) + */ + execution_payload_block_number_gt?: number; + /** + * The block number of the execution payload (filter: gte) + */ + execution_payload_block_number_gte?: number; + /** + * The block number of the execution payload (filter: between_min) + */ + execution_payload_block_number_between_min?: number; + /** + * The block number of the execution payload (filter: between_max_value) + */ + execution_payload_block_number_between_max_value?: number; + /** + * The block number of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_block_number_in_values?: string; + /** + * The block number of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_block_number_not_in_values?: string; + /** + * The recipient of the fee for this execution payload (filter: eq) + */ + execution_payload_fee_recipient_eq?: string; + /** + * The recipient of the fee for this execution payload (filter: ne) + */ + execution_payload_fee_recipient_ne?: string; + /** + * The recipient of the fee for this execution payload (filter: contains) + */ + execution_payload_fee_recipient_contains?: string; + /** + * The recipient of the fee for this execution payload (filter: starts_with) + */ + execution_payload_fee_recipient_starts_with?: string; + /** + * The recipient of the fee for this execution payload (filter: ends_with) + */ + execution_payload_fee_recipient_ends_with?: string; + /** + * The recipient of the fee for this execution payload (filter: like) + */ + execution_payload_fee_recipient_like?: string; + /** + * The recipient of the fee for this execution payload (filter: not_like) + */ + execution_payload_fee_recipient_not_like?: string; + /** + * The recipient of the fee for this execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_fee_recipient_in_values?: string; + /** + * The recipient of the fee for this execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_fee_recipient_not_in_values?: string; + /** + * Base fee per gas for execution payload (filter: eq) + */ + execution_payload_base_fee_per_gas_eq?: string; + /** + * Base fee per gas for execution payload (filter: ne) + */ + execution_payload_base_fee_per_gas_ne?: string; + /** + * Base fee per gas for execution payload (filter: contains) + */ + execution_payload_base_fee_per_gas_contains?: string; + /** + * Base fee per gas for execution payload (filter: starts_with) + */ + execution_payload_base_fee_per_gas_starts_with?: string; + /** + * Base fee per gas for execution payload (filter: ends_with) + */ + execution_payload_base_fee_per_gas_ends_with?: string; + /** + * Base fee per gas for execution payload (filter: like) + */ + execution_payload_base_fee_per_gas_like?: string; + /** + * Base fee per gas for execution payload (filter: not_like) + */ + execution_payload_base_fee_per_gas_not_like?: string; + /** + * Base fee per gas for execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_base_fee_per_gas_in_values?: string; + /** + * Base fee per gas for execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_base_fee_per_gas_not_in_values?: string; + /** + * Gas used for blobs in execution payload (filter: eq) + */ + execution_payload_blob_gas_used_eq?: number; + /** + * Gas used for blobs in execution payload (filter: ne) + */ + execution_payload_blob_gas_used_ne?: number; + /** + * Gas used for blobs in execution payload (filter: lt) + */ + execution_payload_blob_gas_used_lt?: number; + /** + * Gas used for blobs in execution payload (filter: lte) + */ + execution_payload_blob_gas_used_lte?: number; + /** + * Gas used for blobs in execution payload (filter: gt) + */ + execution_payload_blob_gas_used_gt?: number; + /** + * Gas used for blobs in execution payload (filter: gte) + */ + execution_payload_blob_gas_used_gte?: number; + /** + * Gas used for blobs in execution payload (filter: between_min) + */ + execution_payload_blob_gas_used_between_min?: number; + /** + * Gas used for blobs in execution payload (filter: between_max_value) + */ + execution_payload_blob_gas_used_between_max_value?: number; + /** + * Gas used for blobs in execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_blob_gas_used_in_values?: string; + /** + * Gas used for blobs in execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_blob_gas_used_not_in_values?: string; + /** + * Excess gas used for blobs in execution payload (filter: eq) + */ + execution_payload_excess_blob_gas_eq?: number; + /** + * Excess gas used for blobs in execution payload (filter: ne) + */ + execution_payload_excess_blob_gas_ne?: number; + /** + * Excess gas used for blobs in execution payload (filter: lt) + */ + execution_payload_excess_blob_gas_lt?: number; + /** + * Excess gas used for blobs in execution payload (filter: lte) + */ + execution_payload_excess_blob_gas_lte?: number; + /** + * Excess gas used for blobs in execution payload (filter: gt) + */ + execution_payload_excess_blob_gas_gt?: number; + /** + * Excess gas used for blobs in execution payload (filter: gte) + */ + execution_payload_excess_blob_gas_gte?: number; + /** + * Excess gas used for blobs in execution payload (filter: between_min) + */ + execution_payload_excess_blob_gas_between_min?: number; + /** + * Excess gas used for blobs in execution payload (filter: between_max_value) + */ + execution_payload_excess_blob_gas_between_max_value?: number; + /** + * Excess gas used for blobs in execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_excess_blob_gas_in_values?: string; + /** + * Excess gas used for blobs in execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_excess_blob_gas_not_in_values?: string; + /** + * Gas limit for execution payload (filter: eq) + */ + execution_payload_gas_limit_eq?: number; + /** + * Gas limit for execution payload (filter: ne) + */ + execution_payload_gas_limit_ne?: number; + /** + * Gas limit for execution payload (filter: lt) + */ + execution_payload_gas_limit_lt?: number; + /** + * Gas limit for execution payload (filter: lte) + */ + execution_payload_gas_limit_lte?: number; + /** + * Gas limit for execution payload (filter: gt) + */ + execution_payload_gas_limit_gt?: number; + /** + * Gas limit for execution payload (filter: gte) + */ + execution_payload_gas_limit_gte?: number; + /** + * Gas limit for execution payload (filter: between_min) + */ + execution_payload_gas_limit_between_min?: number; + /** + * Gas limit for execution payload (filter: between_max_value) + */ + execution_payload_gas_limit_between_max_value?: number; + /** + * Gas limit for execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_gas_limit_in_values?: string; + /** + * Gas limit for execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_gas_limit_not_in_values?: string; + /** + * Gas used for execution payload (filter: eq) + */ + execution_payload_gas_used_eq?: number; + /** + * Gas used for execution payload (filter: ne) + */ + execution_payload_gas_used_ne?: number; + /** + * Gas used for execution payload (filter: lt) + */ + execution_payload_gas_used_lt?: number; + /** + * Gas used for execution payload (filter: lte) + */ + execution_payload_gas_used_lte?: number; + /** + * Gas used for execution payload (filter: gt) + */ + execution_payload_gas_used_gt?: number; + /** + * Gas used for execution payload (filter: gte) + */ + execution_payload_gas_used_gte?: number; + /** + * Gas used for execution payload (filter: between_min) + */ + execution_payload_gas_used_between_min?: number; + /** + * Gas used for execution payload (filter: between_max_value) + */ + execution_payload_gas_used_between_max_value?: number; + /** + * Gas used for execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_gas_used_in_values?: string; + /** + * Gas used for execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_gas_used_not_in_values?: string; + /** + * The state root of the execution payload (filter: eq) + */ + execution_payload_state_root_eq?: string; + /** + * The state root of the execution payload (filter: ne) + */ + execution_payload_state_root_ne?: string; + /** + * The state root of the execution payload (filter: contains) + */ + execution_payload_state_root_contains?: string; + /** + * The state root of the execution payload (filter: starts_with) + */ + execution_payload_state_root_starts_with?: string; + /** + * The state root of the execution payload (filter: ends_with) + */ + execution_payload_state_root_ends_with?: string; + /** + * The state root of the execution payload (filter: like) + */ + execution_payload_state_root_like?: string; + /** + * The state root of the execution payload (filter: not_like) + */ + execution_payload_state_root_not_like?: string; + /** + * The state root of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_state_root_in_values?: string; + /** + * The state root of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_state_root_not_in_values?: string; + /** + * The parent hash of the execution payload (filter: eq) + */ + execution_payload_parent_hash_eq?: string; + /** + * The parent hash of the execution payload (filter: ne) + */ + execution_payload_parent_hash_ne?: string; + /** + * The parent hash of the execution payload (filter: contains) + */ + execution_payload_parent_hash_contains?: string; + /** + * The parent hash of the execution payload (filter: starts_with) + */ + execution_payload_parent_hash_starts_with?: string; + /** + * The parent hash of the execution payload (filter: ends_with) + */ + execution_payload_parent_hash_ends_with?: string; + /** + * The parent hash of the execution payload (filter: like) + */ + execution_payload_parent_hash_like?: string; + /** + * The parent hash of the execution payload (filter: not_like) + */ + execution_payload_parent_hash_not_like?: string; + /** + * The parent hash of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_parent_hash_in_values?: string; + /** + * The parent hash of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_parent_hash_not_in_values?: string; + /** + * The transaction count of the execution payload (filter: eq) + */ + execution_payload_transactions_count_eq?: number; + /** + * The transaction count of the execution payload (filter: ne) + */ + execution_payload_transactions_count_ne?: number; + /** + * The transaction count of the execution payload (filter: lt) + */ + execution_payload_transactions_count_lt?: number; + /** + * The transaction count of the execution payload (filter: lte) + */ + execution_payload_transactions_count_lte?: number; + /** + * The transaction count of the execution payload (filter: gt) + */ + execution_payload_transactions_count_gt?: number; + /** + * The transaction count of the execution payload (filter: gte) + */ + execution_payload_transactions_count_gte?: number; + /** + * The transaction count of the execution payload (filter: between_min) + */ + execution_payload_transactions_count_between_min?: number; + /** + * The transaction count of the execution payload (filter: between_max_value) + */ + execution_payload_transactions_count_between_max_value?: number; + /** + * The transaction count of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_transactions_count_in_values?: string; + /** + * The transaction count of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_transactions_count_not_in_values?: string; + /** + * The transaction total bytes of the execution payload (filter: eq) + */ + execution_payload_transactions_total_bytes_eq?: number; + /** + * The transaction total bytes of the execution payload (filter: ne) + */ + execution_payload_transactions_total_bytes_ne?: number; + /** + * The transaction total bytes of the execution payload (filter: lt) + */ + execution_payload_transactions_total_bytes_lt?: number; + /** + * The transaction total bytes of the execution payload (filter: lte) + */ + execution_payload_transactions_total_bytes_lte?: number; + /** + * The transaction total bytes of the execution payload (filter: gt) + */ + execution_payload_transactions_total_bytes_gt?: number; + /** + * The transaction total bytes of the execution payload (filter: gte) + */ + execution_payload_transactions_total_bytes_gte?: number; + /** + * The transaction total bytes of the execution payload (filter: between_min) + */ + execution_payload_transactions_total_bytes_between_min?: number; + /** + * The transaction total bytes of the execution payload (filter: between_max_value) + */ + execution_payload_transactions_total_bytes_between_max_value?: number; + /** + * The transaction total bytes of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_in_values?: string; + /** + * The transaction total bytes of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_not_in_values?: string; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: eq) + */ + execution_payload_transactions_total_bytes_compressed_eq?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: ne) + */ + execution_payload_transactions_total_bytes_compressed_ne?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: lt) + */ + execution_payload_transactions_total_bytes_compressed_lt?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: lte) + */ + execution_payload_transactions_total_bytes_compressed_lte?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: gt) + */ + execution_payload_transactions_total_bytes_compressed_gt?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: gte) + */ + execution_payload_transactions_total_bytes_compressed_gte?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: between_min) + */ + execution_payload_transactions_total_bytes_compressed_between_min?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: between_max_value) + */ + execution_payload_transactions_total_bytes_compressed_between_max_value?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_compressed_in_values?: string; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: not_in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_compressed_not_in_values?: string; + /** + * The maximum number of fct_block_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockHead` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_head'; +}; + +export type FctBlockHeadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockHeadServiceListError = FctBlockHeadServiceListErrors[keyof FctBlockHeadServiceListErrors]; + +export type FctBlockHeadServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockHeadResponse; +}; + +export type FctBlockHeadServiceListResponse = FctBlockHeadServiceListResponses[keyof FctBlockHeadServiceListResponses]; + +export type FctBlockHeadServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the reorg slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_head/{slot_start_date_time}'; +}; + +export type FctBlockHeadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockHeadServiceGetError = FctBlockHeadServiceGetErrors[keyof FctBlockHeadServiceGetErrors]; + +export type FctBlockHeadServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockHeadResponse; +}; + +export type FctBlockHeadServiceGetResponse = FctBlockHeadServiceGetResponses[keyof FctBlockHeadServiceGetResponses]; + +export type FctBlockMevServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The start time for the slot that the proposer payload is for (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The start time for the slot that the proposer payload is for (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The start time for the slot that the proposer payload is for (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The start time for the slot that the proposer payload is for (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The start time for the slot that the proposer payload is for (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The start time for the slot that the proposer payload is for (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The start time for the slot that the proposer payload is for (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The start time for the slot that the proposer payload is for (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The start time for the slot that the proposer payload is for (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The start time for the slot that the proposer payload is for (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The root hash of the beacon block (filter: eq) + */ + block_root_eq?: string; + /** + * The root hash of the beacon block (filter: ne) + */ + block_root_ne?: string; + /** + * The root hash of the beacon block (filter: contains) + */ + block_root_contains?: string; + /** + * The root hash of the beacon block (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The root hash of the beacon block (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The root hash of the beacon block (filter: like) + */ + block_root_like?: string; + /** + * The root hash of the beacon block (filter: not_like) + */ + block_root_not_like?: string; + /** + * The root hash of the beacon block (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The root hash of the beacon block (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number within the block proposer payload (filter: eq) + */ + slot_eq?: number; + /** + * Slot number within the block proposer payload (filter: ne) + */ + slot_ne?: number; + /** + * Slot number within the block proposer payload (filter: lt) + */ + slot_lt?: number; + /** + * Slot number within the block proposer payload (filter: lte) + */ + slot_lte?: number; + /** + * Slot number within the block proposer payload (filter: gt) + */ + slot_gt?: number; + /** + * Slot number within the block proposer payload (filter: gte) + */ + slot_gte?: number; + /** + * Slot number within the block proposer payload (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number within the block proposer payload (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number within the block proposer payload (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number within the block proposer payload (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The start time for the epoch that the proposer payload is for (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The start time for the epoch that the proposer payload is for (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: eq) + */ + earliest_bid_date_time_eq?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: ne) + */ + earliest_bid_date_time_ne?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: lt) + */ + earliest_bid_date_time_lt?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: lte) + */ + earliest_bid_date_time_lte?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: gt) + */ + earliest_bid_date_time_gt?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: gte) + */ + earliest_bid_date_time_gte?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: between_min) + */ + earliest_bid_date_time_between_min?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: between_max_value) + */ + earliest_bid_date_time_between_max_value?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: in_values) (comma-separated list) + */ + earliest_bid_date_time_in_values?: string; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: not_in_values) (comma-separated list) + */ + earliest_bid_date_time_not_in_values?: string; + /** + * The relay names that delivered the proposer payload (filter: has) + */ + relay_names_has?: string; + /** + * The relay names that delivered the proposer payload (filter: has_all_values) + */ + relay_names_has_all_values?: Array; + /** + * The relay names that delivered the proposer payload (filter: has_any_values) + */ + relay_names_has_any_values?: Array; + /** + * The relay names that delivered the proposer payload (filter: length_eq) + */ + relay_names_length_eq?: number; + /** + * The relay names that delivered the proposer payload (filter: length_gt) + */ + relay_names_length_gt?: number; + /** + * The relay names that delivered the proposer payload (filter: length_gte) + */ + relay_names_length_gte?: number; + /** + * The relay names that delivered the proposer payload (filter: length_lt) + */ + relay_names_length_lt?: number; + /** + * The relay names that delivered the proposer payload (filter: length_lte) + */ + relay_names_length_lte?: number; + /** + * The parent hash of the proposer payload (filter: eq) + */ + parent_hash_eq?: string; + /** + * The parent hash of the proposer payload (filter: ne) + */ + parent_hash_ne?: string; + /** + * The parent hash of the proposer payload (filter: contains) + */ + parent_hash_contains?: string; + /** + * The parent hash of the proposer payload (filter: starts_with) + */ + parent_hash_starts_with?: string; + /** + * The parent hash of the proposer payload (filter: ends_with) + */ + parent_hash_ends_with?: string; + /** + * The parent hash of the proposer payload (filter: like) + */ + parent_hash_like?: string; + /** + * The parent hash of the proposer payload (filter: not_like) + */ + parent_hash_not_like?: string; + /** + * The parent hash of the proposer payload (filter: in_values) (comma-separated list) + */ + parent_hash_in_values?: string; + /** + * The parent hash of the proposer payload (filter: not_in_values) (comma-separated list) + */ + parent_hash_not_in_values?: string; + /** + * The block number of the proposer payload (filter: eq) + */ + block_number_eq?: number; + /** + * The block number of the proposer payload (filter: ne) + */ + block_number_ne?: number; + /** + * The block number of the proposer payload (filter: lt) + */ + block_number_lt?: number; + /** + * The block number of the proposer payload (filter: lte) + */ + block_number_lte?: number; + /** + * The block number of the proposer payload (filter: gt) + */ + block_number_gt?: number; + /** + * The block number of the proposer payload (filter: gte) + */ + block_number_gte?: number; + /** + * The block number of the proposer payload (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number of the proposer payload (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number of the proposer payload (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number of the proposer payload (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The block hash of the proposer payload (filter: eq) + */ + block_hash_eq?: string; + /** + * The block hash of the proposer payload (filter: ne) + */ + block_hash_ne?: string; + /** + * The block hash of the proposer payload (filter: contains) + */ + block_hash_contains?: string; + /** + * The block hash of the proposer payload (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * The block hash of the proposer payload (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * The block hash of the proposer payload (filter: like) + */ + block_hash_like?: string; + /** + * The block hash of the proposer payload (filter: not_like) + */ + block_hash_not_like?: string; + /** + * The block hash of the proposer payload (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * The block hash of the proposer payload (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * The builder pubkey of the proposer payload (filter: eq) + */ + builder_pubkey_eq?: string; + /** + * The builder pubkey of the proposer payload (filter: ne) + */ + builder_pubkey_ne?: string; + /** + * The builder pubkey of the proposer payload (filter: contains) + */ + builder_pubkey_contains?: string; + /** + * The builder pubkey of the proposer payload (filter: starts_with) + */ + builder_pubkey_starts_with?: string; + /** + * The builder pubkey of the proposer payload (filter: ends_with) + */ + builder_pubkey_ends_with?: string; + /** + * The builder pubkey of the proposer payload (filter: like) + */ + builder_pubkey_like?: string; + /** + * The builder pubkey of the proposer payload (filter: not_like) + */ + builder_pubkey_not_like?: string; + /** + * The builder pubkey of the proposer payload (filter: in_values) (comma-separated list) + */ + builder_pubkey_in_values?: string; + /** + * The builder pubkey of the proposer payload (filter: not_in_values) (comma-separated list) + */ + builder_pubkey_not_in_values?: string; + /** + * The proposer pubkey of the proposer payload (filter: eq) + */ + proposer_pubkey_eq?: string; + /** + * The proposer pubkey of the proposer payload (filter: ne) + */ + proposer_pubkey_ne?: string; + /** + * The proposer pubkey of the proposer payload (filter: contains) + */ + proposer_pubkey_contains?: string; + /** + * The proposer pubkey of the proposer payload (filter: starts_with) + */ + proposer_pubkey_starts_with?: string; + /** + * The proposer pubkey of the proposer payload (filter: ends_with) + */ + proposer_pubkey_ends_with?: string; + /** + * The proposer pubkey of the proposer payload (filter: like) + */ + proposer_pubkey_like?: string; + /** + * The proposer pubkey of the proposer payload (filter: not_like) + */ + proposer_pubkey_not_like?: string; + /** + * The proposer pubkey of the proposer payload (filter: in_values) (comma-separated list) + */ + proposer_pubkey_in_values?: string; + /** + * The proposer pubkey of the proposer payload (filter: not_in_values) (comma-separated list) + */ + proposer_pubkey_not_in_values?: string; + /** + * The proposer fee recipient of the proposer payload (filter: eq) + */ + proposer_fee_recipient_eq?: string; + /** + * The proposer fee recipient of the proposer payload (filter: ne) + */ + proposer_fee_recipient_ne?: string; + /** + * The proposer fee recipient of the proposer payload (filter: contains) + */ + proposer_fee_recipient_contains?: string; + /** + * The proposer fee recipient of the proposer payload (filter: starts_with) + */ + proposer_fee_recipient_starts_with?: string; + /** + * The proposer fee recipient of the proposer payload (filter: ends_with) + */ + proposer_fee_recipient_ends_with?: string; + /** + * The proposer fee recipient of the proposer payload (filter: like) + */ + proposer_fee_recipient_like?: string; + /** + * The proposer fee recipient of the proposer payload (filter: not_like) + */ + proposer_fee_recipient_not_like?: string; + /** + * The proposer fee recipient of the proposer payload (filter: in_values) (comma-separated list) + */ + proposer_fee_recipient_in_values?: string; + /** + * The proposer fee recipient of the proposer payload (filter: not_in_values) (comma-separated list) + */ + proposer_fee_recipient_not_in_values?: string; + /** + * The gas limit of the proposer payload (filter: eq) + */ + gas_limit_eq?: number; + /** + * The gas limit of the proposer payload (filter: ne) + */ + gas_limit_ne?: number; + /** + * The gas limit of the proposer payload (filter: lt) + */ + gas_limit_lt?: number; + /** + * The gas limit of the proposer payload (filter: lte) + */ + gas_limit_lte?: number; + /** + * The gas limit of the proposer payload (filter: gt) + */ + gas_limit_gt?: number; + /** + * The gas limit of the proposer payload (filter: gte) + */ + gas_limit_gte?: number; + /** + * The gas limit of the proposer payload (filter: between_min) + */ + gas_limit_between_min?: number; + /** + * The gas limit of the proposer payload (filter: between_max_value) + */ + gas_limit_between_max_value?: number; + /** + * The gas limit of the proposer payload (filter: in_values) (comma-separated list) + */ + gas_limit_in_values?: string; + /** + * The gas limit of the proposer payload (filter: not_in_values) (comma-separated list) + */ + gas_limit_not_in_values?: string; + /** + * The gas used of the proposer payload (filter: eq) + */ + gas_used_eq?: number; + /** + * The gas used of the proposer payload (filter: ne) + */ + gas_used_ne?: number; + /** + * The gas used of the proposer payload (filter: lt) + */ + gas_used_lt?: number; + /** + * The gas used of the proposer payload (filter: lte) + */ + gas_used_lte?: number; + /** + * The gas used of the proposer payload (filter: gt) + */ + gas_used_gt?: number; + /** + * The gas used of the proposer payload (filter: gte) + */ + gas_used_gte?: number; + /** + * The gas used of the proposer payload (filter: between_min) + */ + gas_used_between_min?: number; + /** + * The gas used of the proposer payload (filter: between_max_value) + */ + gas_used_between_max_value?: number; + /** + * The gas used of the proposer payload (filter: in_values) (comma-separated list) + */ + gas_used_in_values?: string; + /** + * The gas used of the proposer payload (filter: not_in_values) (comma-separated list) + */ + gas_used_not_in_values?: string; + /** + * The transaction value in wei (filter: eq) + */ + value_eq?: string; + /** + * The transaction value in wei (filter: ne) + */ + value_ne?: string; + /** + * The transaction value in wei (filter: contains) + */ + value_contains?: string; + /** + * The transaction value in wei (filter: starts_with) + */ + value_starts_with?: string; + /** + * The transaction value in wei (filter: ends_with) + */ + value_ends_with?: string; + /** + * The transaction value in wei (filter: like) + */ + value_like?: string; + /** + * The transaction value in wei (filter: not_like) + */ + value_not_like?: string; + /** + * The transaction value in wei (filter: in_values) (comma-separated list) + */ + value_in_values?: string; + /** + * The transaction value in wei (filter: not_in_values) (comma-separated list) + */ + value_not_in_values?: string; + /** + * The number of transactions in the proposer payload (filter: eq) + */ + transaction_count_eq?: number; + /** + * The number of transactions in the proposer payload (filter: ne) + */ + transaction_count_ne?: number; + /** + * The number of transactions in the proposer payload (filter: lt) + */ + transaction_count_lt?: number; + /** + * The number of transactions in the proposer payload (filter: lte) + */ + transaction_count_lte?: number; + /** + * The number of transactions in the proposer payload (filter: gt) + */ + transaction_count_gt?: number; + /** + * The number of transactions in the proposer payload (filter: gte) + */ + transaction_count_gte?: number; + /** + * The number of transactions in the proposer payload (filter: between_min) + */ + transaction_count_between_min?: number; + /** + * The number of transactions in the proposer payload (filter: between_max_value) + */ + transaction_count_between_max_value?: number; + /** + * The number of transactions in the proposer payload (filter: in_values) (comma-separated list) + */ + transaction_count_in_values?: string; + /** + * The number of transactions in the proposer payload (filter: not_in_values) (comma-separated list) + */ + transaction_count_not_in_values?: string; + /** + * Can be "canonical" or "orphaned" (filter: eq) + */ + status_eq?: string; + /** + * Can be "canonical" or "orphaned" (filter: ne) + */ + status_ne?: string; + /** + * Can be "canonical" or "orphaned" (filter: contains) + */ + status_contains?: string; + /** + * Can be "canonical" or "orphaned" (filter: starts_with) + */ + status_starts_with?: string; + /** + * Can be "canonical" or "orphaned" (filter: ends_with) + */ + status_ends_with?: string; + /** + * Can be "canonical" or "orphaned" (filter: like) + */ + status_like?: string; + /** + * Can be "canonical" or "orphaned" (filter: not_like) + */ + status_not_like?: string; + /** + * Can be "canonical" or "orphaned" (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Can be "canonical" or "orphaned" (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * The maximum number of fct_block_mev to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockMev` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_mev'; +}; + +export type FctBlockMevServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockMevServiceListError = FctBlockMevServiceListErrors[keyof FctBlockMevServiceListErrors]; + +export type FctBlockMevServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockMevResponse; +}; + +export type FctBlockMevServiceListResponse = FctBlockMevServiceListResponses[keyof FctBlockMevServiceListResponses]; + +export type FctBlockMevServiceGetData = { + body?: never; + path: { + /** + * The start time for the slot that the proposer payload is for + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_mev/{slot_start_date_time}'; +}; + +export type FctBlockMevServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockMevServiceGetError = FctBlockMevServiceGetErrors[keyof FctBlockMevServiceGetErrors]; + +export type FctBlockMevServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockMevResponse; +}; + +export type FctBlockMevServiceGetResponse = FctBlockMevServiceGetResponses[keyof FctBlockMevServiceGetResponses]; + +export type FctBlockMevHeadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The start time for the slot that the proposer payload is for (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The start time for the slot that the proposer payload is for (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The start time for the slot that the proposer payload is for (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The start time for the slot that the proposer payload is for (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The start time for the slot that the proposer payload is for (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The start time for the slot that the proposer payload is for (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The start time for the slot that the proposer payload is for (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The start time for the slot that the proposer payload is for (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The start time for the slot that the proposer payload is for (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The start time for the slot that the proposer payload is for (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The root hash of the beacon block (filter: eq) + */ + block_root_eq?: string; + /** + * The root hash of the beacon block (filter: ne) + */ + block_root_ne?: string; + /** + * The root hash of the beacon block (filter: contains) + */ + block_root_contains?: string; + /** + * The root hash of the beacon block (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The root hash of the beacon block (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The root hash of the beacon block (filter: like) + */ + block_root_like?: string; + /** + * The root hash of the beacon block (filter: not_like) + */ + block_root_not_like?: string; + /** + * The root hash of the beacon block (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The root hash of the beacon block (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number within the block proposer payload (filter: eq) + */ + slot_eq?: number; + /** + * Slot number within the block proposer payload (filter: ne) + */ + slot_ne?: number; + /** + * Slot number within the block proposer payload (filter: lt) + */ + slot_lt?: number; + /** + * Slot number within the block proposer payload (filter: lte) + */ + slot_lte?: number; + /** + * Slot number within the block proposer payload (filter: gt) + */ + slot_gt?: number; + /** + * Slot number within the block proposer payload (filter: gte) + */ + slot_gte?: number; + /** + * Slot number within the block proposer payload (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number within the block proposer payload (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number within the block proposer payload (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number within the block proposer payload (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The start time for the epoch that the proposer payload is for (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The start time for the epoch that the proposer payload is for (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: eq) + */ + earliest_bid_date_time_eq?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: ne) + */ + earliest_bid_date_time_ne?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: lt) + */ + earliest_bid_date_time_lt?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: lte) + */ + earliest_bid_date_time_lte?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: gt) + */ + earliest_bid_date_time_gt?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: gte) + */ + earliest_bid_date_time_gte?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: between_min) + */ + earliest_bid_date_time_between_min?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: between_max_value) + */ + earliest_bid_date_time_between_max_value?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: in_values) (comma-separated list) + */ + earliest_bid_date_time_in_values?: string; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: not_in_values) (comma-separated list) + */ + earliest_bid_date_time_not_in_values?: string; + /** + * The relay names that delivered the proposer payload (filter: has) + */ + relay_names_has?: string; + /** + * The relay names that delivered the proposer payload (filter: has_all_values) + */ + relay_names_has_all_values?: Array; + /** + * The relay names that delivered the proposer payload (filter: has_any_values) + */ + relay_names_has_any_values?: Array; + /** + * The relay names that delivered the proposer payload (filter: length_eq) + */ + relay_names_length_eq?: number; + /** + * The relay names that delivered the proposer payload (filter: length_gt) + */ + relay_names_length_gt?: number; + /** + * The relay names that delivered the proposer payload (filter: length_gte) + */ + relay_names_length_gte?: number; + /** + * The relay names that delivered the proposer payload (filter: length_lt) + */ + relay_names_length_lt?: number; + /** + * The relay names that delivered the proposer payload (filter: length_lte) + */ + relay_names_length_lte?: number; + /** + * The parent hash of the proposer payload (filter: eq) + */ + parent_hash_eq?: string; + /** + * The parent hash of the proposer payload (filter: ne) + */ + parent_hash_ne?: string; + /** + * The parent hash of the proposer payload (filter: contains) + */ + parent_hash_contains?: string; + /** + * The parent hash of the proposer payload (filter: starts_with) + */ + parent_hash_starts_with?: string; + /** + * The parent hash of the proposer payload (filter: ends_with) + */ + parent_hash_ends_with?: string; + /** + * The parent hash of the proposer payload (filter: like) + */ + parent_hash_like?: string; + /** + * The parent hash of the proposer payload (filter: not_like) + */ + parent_hash_not_like?: string; + /** + * The parent hash of the proposer payload (filter: in_values) (comma-separated list) + */ + parent_hash_in_values?: string; + /** + * The parent hash of the proposer payload (filter: not_in_values) (comma-separated list) + */ + parent_hash_not_in_values?: string; + /** + * The block number of the proposer payload (filter: eq) + */ + block_number_eq?: number; + /** + * The block number of the proposer payload (filter: ne) + */ + block_number_ne?: number; + /** + * The block number of the proposer payload (filter: lt) + */ + block_number_lt?: number; + /** + * The block number of the proposer payload (filter: lte) + */ + block_number_lte?: number; + /** + * The block number of the proposer payload (filter: gt) + */ + block_number_gt?: number; + /** + * The block number of the proposer payload (filter: gte) + */ + block_number_gte?: number; + /** + * The block number of the proposer payload (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number of the proposer payload (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number of the proposer payload (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number of the proposer payload (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The block hash of the proposer payload (filter: eq) + */ + block_hash_eq?: string; + /** + * The block hash of the proposer payload (filter: ne) + */ + block_hash_ne?: string; + /** + * The block hash of the proposer payload (filter: contains) + */ + block_hash_contains?: string; + /** + * The block hash of the proposer payload (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * The block hash of the proposer payload (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * The block hash of the proposer payload (filter: like) + */ + block_hash_like?: string; + /** + * The block hash of the proposer payload (filter: not_like) + */ + block_hash_not_like?: string; + /** + * The block hash of the proposer payload (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * The block hash of the proposer payload (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * The builder pubkey of the proposer payload (filter: eq) + */ + builder_pubkey_eq?: string; + /** + * The builder pubkey of the proposer payload (filter: ne) + */ + builder_pubkey_ne?: string; + /** + * The builder pubkey of the proposer payload (filter: contains) + */ + builder_pubkey_contains?: string; + /** + * The builder pubkey of the proposer payload (filter: starts_with) + */ + builder_pubkey_starts_with?: string; + /** + * The builder pubkey of the proposer payload (filter: ends_with) + */ + builder_pubkey_ends_with?: string; + /** + * The builder pubkey of the proposer payload (filter: like) + */ + builder_pubkey_like?: string; + /** + * The builder pubkey of the proposer payload (filter: not_like) + */ + builder_pubkey_not_like?: string; + /** + * The builder pubkey of the proposer payload (filter: in_values) (comma-separated list) + */ + builder_pubkey_in_values?: string; + /** + * The builder pubkey of the proposer payload (filter: not_in_values) (comma-separated list) + */ + builder_pubkey_not_in_values?: string; + /** + * The proposer pubkey of the proposer payload (filter: eq) + */ + proposer_pubkey_eq?: string; + /** + * The proposer pubkey of the proposer payload (filter: ne) + */ + proposer_pubkey_ne?: string; + /** + * The proposer pubkey of the proposer payload (filter: contains) + */ + proposer_pubkey_contains?: string; + /** + * The proposer pubkey of the proposer payload (filter: starts_with) + */ + proposer_pubkey_starts_with?: string; + /** + * The proposer pubkey of the proposer payload (filter: ends_with) + */ + proposer_pubkey_ends_with?: string; + /** + * The proposer pubkey of the proposer payload (filter: like) + */ + proposer_pubkey_like?: string; + /** + * The proposer pubkey of the proposer payload (filter: not_like) + */ + proposer_pubkey_not_like?: string; + /** + * The proposer pubkey of the proposer payload (filter: in_values) (comma-separated list) + */ + proposer_pubkey_in_values?: string; + /** + * The proposer pubkey of the proposer payload (filter: not_in_values) (comma-separated list) + */ + proposer_pubkey_not_in_values?: string; + /** + * The proposer fee recipient of the proposer payload (filter: eq) + */ + proposer_fee_recipient_eq?: string; + /** + * The proposer fee recipient of the proposer payload (filter: ne) + */ + proposer_fee_recipient_ne?: string; + /** + * The proposer fee recipient of the proposer payload (filter: contains) + */ + proposer_fee_recipient_contains?: string; + /** + * The proposer fee recipient of the proposer payload (filter: starts_with) + */ + proposer_fee_recipient_starts_with?: string; + /** + * The proposer fee recipient of the proposer payload (filter: ends_with) + */ + proposer_fee_recipient_ends_with?: string; + /** + * The proposer fee recipient of the proposer payload (filter: like) + */ + proposer_fee_recipient_like?: string; + /** + * The proposer fee recipient of the proposer payload (filter: not_like) + */ + proposer_fee_recipient_not_like?: string; + /** + * The proposer fee recipient of the proposer payload (filter: in_values) (comma-separated list) + */ + proposer_fee_recipient_in_values?: string; + /** + * The proposer fee recipient of the proposer payload (filter: not_in_values) (comma-separated list) + */ + proposer_fee_recipient_not_in_values?: string; + /** + * The gas limit of the proposer payload (filter: eq) + */ + gas_limit_eq?: number; + /** + * The gas limit of the proposer payload (filter: ne) + */ + gas_limit_ne?: number; + /** + * The gas limit of the proposer payload (filter: lt) + */ + gas_limit_lt?: number; + /** + * The gas limit of the proposer payload (filter: lte) + */ + gas_limit_lte?: number; + /** + * The gas limit of the proposer payload (filter: gt) + */ + gas_limit_gt?: number; + /** + * The gas limit of the proposer payload (filter: gte) + */ + gas_limit_gte?: number; + /** + * The gas limit of the proposer payload (filter: between_min) + */ + gas_limit_between_min?: number; + /** + * The gas limit of the proposer payload (filter: between_max_value) + */ + gas_limit_between_max_value?: number; + /** + * The gas limit of the proposer payload (filter: in_values) (comma-separated list) + */ + gas_limit_in_values?: string; + /** + * The gas limit of the proposer payload (filter: not_in_values) (comma-separated list) + */ + gas_limit_not_in_values?: string; + /** + * The gas used of the proposer payload (filter: eq) + */ + gas_used_eq?: number; + /** + * The gas used of the proposer payload (filter: ne) + */ + gas_used_ne?: number; + /** + * The gas used of the proposer payload (filter: lt) + */ + gas_used_lt?: number; + /** + * The gas used of the proposer payload (filter: lte) + */ + gas_used_lte?: number; + /** + * The gas used of the proposer payload (filter: gt) + */ + gas_used_gt?: number; + /** + * The gas used of the proposer payload (filter: gte) + */ + gas_used_gte?: number; + /** + * The gas used of the proposer payload (filter: between_min) + */ + gas_used_between_min?: number; + /** + * The gas used of the proposer payload (filter: between_max_value) + */ + gas_used_between_max_value?: number; + /** + * The gas used of the proposer payload (filter: in_values) (comma-separated list) + */ + gas_used_in_values?: string; + /** + * The gas used of the proposer payload (filter: not_in_values) (comma-separated list) + */ + gas_used_not_in_values?: string; + /** + * The transaction value in wei (filter: eq) + */ + value_eq?: string; + /** + * The transaction value in wei (filter: ne) + */ + value_ne?: string; + /** + * The transaction value in wei (filter: contains) + */ + value_contains?: string; + /** + * The transaction value in wei (filter: starts_with) + */ + value_starts_with?: string; + /** + * The transaction value in wei (filter: ends_with) + */ + value_ends_with?: string; + /** + * The transaction value in wei (filter: like) + */ + value_like?: string; + /** + * The transaction value in wei (filter: not_like) + */ + value_not_like?: string; + /** + * The transaction value in wei (filter: in_values) (comma-separated list) + */ + value_in_values?: string; + /** + * The transaction value in wei (filter: not_in_values) (comma-separated list) + */ + value_not_in_values?: string; + /** + * The number of transactions in the proposer payload (filter: eq) + */ + transaction_count_eq?: number; + /** + * The number of transactions in the proposer payload (filter: ne) + */ + transaction_count_ne?: number; + /** + * The number of transactions in the proposer payload (filter: lt) + */ + transaction_count_lt?: number; + /** + * The number of transactions in the proposer payload (filter: lte) + */ + transaction_count_lte?: number; + /** + * The number of transactions in the proposer payload (filter: gt) + */ + transaction_count_gt?: number; + /** + * The number of transactions in the proposer payload (filter: gte) + */ + transaction_count_gte?: number; + /** + * The number of transactions in the proposer payload (filter: between_min) + */ + transaction_count_between_min?: number; + /** + * The number of transactions in the proposer payload (filter: between_max_value) + */ + transaction_count_between_max_value?: number; + /** + * The number of transactions in the proposer payload (filter: in_values) (comma-separated list) + */ + transaction_count_in_values?: string; + /** + * The number of transactions in the proposer payload (filter: not_in_values) (comma-separated list) + */ + transaction_count_not_in_values?: string; + /** + * The maximum number of fct_block_mev_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockMevHead` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_mev_head'; +}; + +export type FctBlockMevHeadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockMevHeadServiceListError = FctBlockMevHeadServiceListErrors[keyof FctBlockMevHeadServiceListErrors]; + +export type FctBlockMevHeadServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockMevHeadResponse; +}; + +export type FctBlockMevHeadServiceListResponse = + FctBlockMevHeadServiceListResponses[keyof FctBlockMevHeadServiceListResponses]; + +export type FctBlockMevHeadServiceGetData = { + body?: never; + path: { + /** + * The start time for the slot that the proposer payload is for + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_mev_head/{slot_start_date_time}'; +}; + +export type FctBlockMevHeadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockMevHeadServiceGetError = FctBlockMevHeadServiceGetErrors[keyof FctBlockMevHeadServiceGetErrors]; + +export type FctBlockMevHeadServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockMevHeadResponse; +}; + +export type FctBlockMevHeadServiceGetResponse = + FctBlockMevHeadServiceGetResponses[keyof FctBlockMevHeadServiceGetResponses]; + +export type FctBlockPayloadAvailableByNodeServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root whose payload became available (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root whose payload became available (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root whose payload became available (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root whose payload became available (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root whose payload became available (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root whose payload became available (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root whose payload became available (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root whose payload became available (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root whose payload became available (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Name of the client (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The time from slot start for the node to have the payload and its blobs locally verified (filter: eq) + */ + available_slot_start_diff_eq?: number; + /** + * The time from slot start for the node to have the payload and its blobs locally verified (filter: ne) + */ + available_slot_start_diff_ne?: number; + /** + * The time from slot start for the node to have the payload and its blobs locally verified (filter: lt) + */ + available_slot_start_diff_lt?: number; + /** + * The time from slot start for the node to have the payload and its blobs locally verified (filter: lte) + */ + available_slot_start_diff_lte?: number; + /** + * The time from slot start for the node to have the payload and its blobs locally verified (filter: gt) + */ + available_slot_start_diff_gt?: number; + /** + * The time from slot start for the node to have the payload and its blobs locally verified (filter: gte) + */ + available_slot_start_diff_gte?: number; + /** + * The time from slot start for the node to have the payload and its blobs locally verified (filter: between_min) + */ + available_slot_start_diff_between_min?: number; + /** + * The time from slot start for the node to have the payload and its blobs locally verified (filter: between_max_value) + */ + available_slot_start_diff_between_max_value?: number; + /** + * The time from slot start for the node to have the payload and its blobs locally verified (filter: in_values) (comma-separated list) + */ + available_slot_start_diff_in_values?: string; + /** + * The time from slot start for the node to have the payload and its blobs locally verified (filter: not_in_values) (comma-separated list) + */ + available_slot_start_diff_not_in_values?: string; + /** + * Username of the node (filter: eq) + */ + username_eq?: string; + /** + * Username of the node (filter: ne) + */ + username_ne?: string; + /** + * Username of the node (filter: contains) + */ + username_contains?: string; + /** + * Username of the node (filter: starts_with) + */ + username_starts_with?: string; + /** + * Username of the node (filter: ends_with) + */ + username_ends_with?: string; + /** + * Username of the node (filter: like) + */ + username_like?: string; + /** + * Username of the node (filter: not_like) + */ + username_not_like?: string; + /** + * Username of the node (filter: in_values) (comma-separated list) + */ + username_in_values?: string; + /** + * Username of the node (filter: not_in_values) (comma-separated list) + */ + username_not_in_values?: string; + /** + * ID of the node (filter: eq) + */ + node_id_eq?: string; + /** + * ID of the node (filter: ne) + */ + node_id_ne?: string; + /** + * ID of the node (filter: contains) + */ + node_id_contains?: string; + /** + * ID of the node (filter: starts_with) + */ + node_id_starts_with?: string; + /** + * ID of the node (filter: ends_with) + */ + node_id_ends_with?: string; + /** + * ID of the node (filter: like) + */ + node_id_like?: string; + /** + * ID of the node (filter: not_like) + */ + node_id_not_like?: string; + /** + * ID of the node (filter: in_values) (comma-separated list) + */ + node_id_in_values?: string; + /** + * ID of the node (filter: not_in_values) (comma-separated list) + */ + node_id_not_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) + */ + classification_eq?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) + */ + classification_ne?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) + */ + classification_contains?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) + */ + classification_starts_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) + */ + classification_ends_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) + */ + classification_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) + */ + classification_not_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) + */ + classification_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) + */ + classification_not_in_values?: string; + /** + * Version of the client (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * City of the client (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Autonomous system number of the client (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * Ethereum consensus client version (filter: eq) + */ + meta_consensus_version_eq?: string; + /** + * Ethereum consensus client version (filter: ne) + */ + meta_consensus_version_ne?: string; + /** + * Ethereum consensus client version (filter: contains) + */ + meta_consensus_version_contains?: string; + /** + * Ethereum consensus client version (filter: starts_with) + */ + meta_consensus_version_starts_with?: string; + /** + * Ethereum consensus client version (filter: ends_with) + */ + meta_consensus_version_ends_with?: string; + /** + * Ethereum consensus client version (filter: like) + */ + meta_consensus_version_like?: string; + /** + * Ethereum consensus client version (filter: not_like) + */ + meta_consensus_version_not_like?: string; + /** + * Ethereum consensus client version (filter: in_values) (comma-separated list) + */ + meta_consensus_version_in_values?: string; + /** + * Ethereum consensus client version (filter: not_in_values) (comma-separated list) + */ + meta_consensus_version_not_in_values?: string; + /** + * Ethereum consensus client implementation (filter: eq) + */ + meta_consensus_implementation_eq?: string; + /** + * Ethereum consensus client implementation (filter: ne) + */ + meta_consensus_implementation_ne?: string; + /** + * Ethereum consensus client implementation (filter: contains) + */ + meta_consensus_implementation_contains?: string; + /** + * Ethereum consensus client implementation (filter: starts_with) + */ + meta_consensus_implementation_starts_with?: string; + /** + * Ethereum consensus client implementation (filter: ends_with) + */ + meta_consensus_implementation_ends_with?: string; + /** + * Ethereum consensus client implementation (filter: like) + */ + meta_consensus_implementation_like?: string; + /** + * Ethereum consensus client implementation (filter: not_like) + */ + meta_consensus_implementation_not_like?: string; + /** + * Ethereum consensus client implementation (filter: in_values) (comma-separated list) + */ + meta_consensus_implementation_in_values?: string; + /** + * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) + */ + meta_consensus_implementation_not_in_values?: string; + /** + * The maximum number of fct_block_payload_available_by_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockPayloadAvailableByNode` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_payload_available_by_node'; +}; + +export type FctBlockPayloadAvailableByNodeServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadAvailableByNodeServiceListError = + FctBlockPayloadAvailableByNodeServiceListErrors[keyof FctBlockPayloadAvailableByNodeServiceListErrors]; + +export type FctBlockPayloadAvailableByNodeServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockPayloadAvailableByNodeResponse; +}; + +export type FctBlockPayloadAvailableByNodeServiceListResponse = + FctBlockPayloadAvailableByNodeServiceListResponses[keyof FctBlockPayloadAvailableByNodeServiceListResponses]; + +export type FctBlockPayloadAvailableByNodeServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_payload_available_by_node/{slot_start_date_time}'; +}; + +export type FctBlockPayloadAvailableByNodeServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadAvailableByNodeServiceGetError = + FctBlockPayloadAvailableByNodeServiceGetErrors[keyof FctBlockPayloadAvailableByNodeServiceGetErrors]; + +export type FctBlockPayloadAvailableByNodeServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockPayloadAvailableByNodeResponse; +}; + +export type FctBlockPayloadAvailableByNodeServiceGetResponse = + FctBlockPayloadAvailableByNodeServiceGetResponses[keyof FctBlockPayloadAvailableByNodeServiceGetResponses]; + +export type FctBlockPayloadBidServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The root of the beacon block containing the bid (filter: eq) + */ + block_root_eq?: string; + /** + * The root of the beacon block containing the bid (filter: ne) + */ + block_root_ne?: string; + /** + * The root of the beacon block containing the bid (filter: contains) + */ + block_root_contains?: string; + /** + * The root of the beacon block containing the bid (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The root of the beacon block containing the bid (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The root of the beacon block containing the bid (filter: like) + */ + block_root_like?: string; + /** + * The root of the beacon block containing the bid (filter: not_like) + */ + block_root_not_like?: string; + /** + * The root of the beacon block containing the bid (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The root of the beacon block containing the bid (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number of the block containing the bid (filter: eq) + */ + slot_eq?: number; + /** + * The slot number of the block containing the bid (filter: ne) + */ + slot_ne?: number; + /** + * The slot number of the block containing the bid (filter: lt) + */ + slot_lt?: number; + /** + * The slot number of the block containing the bid (filter: lte) + */ + slot_lte?: number; + /** + * The slot number of the block containing the bid (filter: gt) + */ + slot_gt?: number; + /** + * The slot number of the block containing the bid (filter: gte) + */ + slot_gte?: number; + /** + * The slot number of the block containing the bid (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number of the block containing the bid (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number of the block containing the bid (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number of the block containing the bid (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The beacon block version, e.g. gloas (filter: eq) + */ + block_version_eq?: string; + /** + * The beacon block version, e.g. gloas (filter: ne) + */ + block_version_ne?: string; + /** + * The beacon block version, e.g. gloas (filter: contains) + */ + block_version_contains?: string; + /** + * The beacon block version, e.g. gloas (filter: starts_with) + */ + block_version_starts_with?: string; + /** + * The beacon block version, e.g. gloas (filter: ends_with) + */ + block_version_ends_with?: string; + /** + * The beacon block version, e.g. gloas (filter: like) + */ + block_version_like?: string; + /** + * The beacon block version, e.g. gloas (filter: not_like) + */ + block_version_not_like?: string; + /** + * The beacon block version, e.g. gloas (filter: in_values) (comma-separated list) + */ + block_version_in_values?: string; + /** + * The beacon block version, e.g. gloas (filter: not_in_values) (comma-separated list) + */ + block_version_not_in_values?: string; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: eq) + */ + builder_index_eq?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: ne) + */ + builder_index_ne?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: lt) + */ + builder_index_lt?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: lte) + */ + builder_index_lte?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: gt) + */ + builder_index_gt?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: gte) + */ + builder_index_gte?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: between_min) + */ + builder_index_between_min?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: between_max_value) + */ + builder_index_between_max_value?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: in_values) (comma-separated list) + */ + builder_index_in_values?: string; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: not_in_values) (comma-separated list) + */ + builder_index_not_in_values?: string; + /** + * The execution block hash committed to in the bid (filter: eq) + */ + block_hash_eq?: string; + /** + * The execution block hash committed to in the bid (filter: ne) + */ + block_hash_ne?: string; + /** + * The execution block hash committed to in the bid (filter: contains) + */ + block_hash_contains?: string; + /** + * The execution block hash committed to in the bid (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * The execution block hash committed to in the bid (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * The execution block hash committed to in the bid (filter: like) + */ + block_hash_like?: string; + /** + * The execution block hash committed to in the bid (filter: not_like) + */ + block_hash_not_like?: string; + /** + * The execution block hash committed to in the bid (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * The execution block hash committed to in the bid (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * The parent execution block hash (filter: eq) + */ + parent_block_hash_eq?: string; + /** + * The parent execution block hash (filter: ne) + */ + parent_block_hash_ne?: string; + /** + * The parent execution block hash (filter: contains) + */ + parent_block_hash_contains?: string; + /** + * The parent execution block hash (filter: starts_with) + */ + parent_block_hash_starts_with?: string; + /** + * The parent execution block hash (filter: ends_with) + */ + parent_block_hash_ends_with?: string; + /** + * The parent execution block hash (filter: like) + */ + parent_block_hash_like?: string; + /** + * The parent execution block hash (filter: not_like) + */ + parent_block_hash_not_like?: string; + /** + * The parent execution block hash (filter: in_values) (comma-separated list) + */ + parent_block_hash_in_values?: string; + /** + * The parent execution block hash (filter: not_in_values) (comma-separated list) + */ + parent_block_hash_not_in_values?: string; + /** + * The parent beacon block root (filter: eq) + */ + parent_block_root_eq?: string; + /** + * The parent beacon block root (filter: ne) + */ + parent_block_root_ne?: string; + /** + * The parent beacon block root (filter: contains) + */ + parent_block_root_contains?: string; + /** + * The parent beacon block root (filter: starts_with) + */ + parent_block_root_starts_with?: string; + /** + * The parent beacon block root (filter: ends_with) + */ + parent_block_root_ends_with?: string; + /** + * The parent beacon block root (filter: like) + */ + parent_block_root_like?: string; + /** + * The parent beacon block root (filter: not_like) + */ + parent_block_root_not_like?: string; + /** + * The parent beacon block root (filter: in_values) (comma-separated list) + */ + parent_block_root_in_values?: string; + /** + * The parent beacon block root (filter: not_in_values) (comma-separated list) + */ + parent_block_root_not_in_values?: string; + /** + * The bid value in wei (filter: eq) + */ + value_eq?: string; + /** + * The bid value in wei (filter: ne) + */ + value_ne?: string; + /** + * The bid value in wei (filter: contains) + */ + value_contains?: string; + /** + * The bid value in wei (filter: starts_with) + */ + value_starts_with?: string; + /** + * The bid value in wei (filter: ends_with) + */ + value_ends_with?: string; + /** + * The bid value in wei (filter: like) + */ + value_like?: string; + /** + * The bid value in wei (filter: not_like) + */ + value_not_like?: string; + /** + * The bid value in wei (filter: in_values) (comma-separated list) + */ + value_in_values?: string; + /** + * The bid value in wei (filter: not_in_values) (comma-separated list) + */ + value_not_in_values?: string; + /** + * The execution payment in wei (filter: eq) + */ + execution_payment_eq?: string; + /** + * The execution payment in wei (filter: ne) + */ + execution_payment_ne?: string; + /** + * The execution payment in wei (filter: contains) + */ + execution_payment_contains?: string; + /** + * The execution payment in wei (filter: starts_with) + */ + execution_payment_starts_with?: string; + /** + * The execution payment in wei (filter: ends_with) + */ + execution_payment_ends_with?: string; + /** + * The execution payment in wei (filter: like) + */ + execution_payment_like?: string; + /** + * The execution payment in wei (filter: not_like) + */ + execution_payment_not_like?: string; + /** + * The execution payment in wei (filter: in_values) (comma-separated list) + */ + execution_payment_in_values?: string; + /** + * The execution payment in wei (filter: not_in_values) (comma-separated list) + */ + execution_payment_not_in_values?: string; + /** + * The fee recipient address (filter: eq) + */ + fee_recipient_eq?: string; + /** + * The fee recipient address (filter: ne) + */ + fee_recipient_ne?: string; + /** + * The fee recipient address (filter: contains) + */ + fee_recipient_contains?: string; + /** + * The fee recipient address (filter: starts_with) + */ + fee_recipient_starts_with?: string; + /** + * The fee recipient address (filter: ends_with) + */ + fee_recipient_ends_with?: string; + /** + * The fee recipient address (filter: like) + */ + fee_recipient_like?: string; + /** + * The fee recipient address (filter: not_like) + */ + fee_recipient_not_like?: string; + /** + * The fee recipient address (filter: in_values) (comma-separated list) + */ + fee_recipient_in_values?: string; + /** + * The fee recipient address (filter: not_in_values) (comma-separated list) + */ + fee_recipient_not_in_values?: string; + /** + * The gas limit for the execution payload (filter: eq) + */ + gas_limit_eq?: number; + /** + * The gas limit for the execution payload (filter: ne) + */ + gas_limit_ne?: number; + /** + * The gas limit for the execution payload (filter: lt) + */ + gas_limit_lt?: number; + /** + * The gas limit for the execution payload (filter: lte) + */ + gas_limit_lte?: number; + /** + * The gas limit for the execution payload (filter: gt) + */ + gas_limit_gt?: number; + /** + * The gas limit for the execution payload (filter: gte) + */ + gas_limit_gte?: number; + /** + * The gas limit for the execution payload (filter: between_min) + */ + gas_limit_between_min?: number; + /** + * The gas limit for the execution payload (filter: between_max_value) + */ + gas_limit_between_max_value?: number; + /** + * The gas limit for the execution payload (filter: in_values) (comma-separated list) + */ + gas_limit_in_values?: string; + /** + * The gas limit for the execution payload (filter: not_in_values) (comma-separated list) + */ + gas_limit_not_in_values?: string; + /** + * Number of blob KZG commitments in the bid (filter: eq) + */ + blob_kzg_commitment_count_eq?: number; + /** + * Number of blob KZG commitments in the bid (filter: ne) + */ + blob_kzg_commitment_count_ne?: number; + /** + * Number of blob KZG commitments in the bid (filter: lt) + */ + blob_kzg_commitment_count_lt?: number; + /** + * Number of blob KZG commitments in the bid (filter: lte) + */ + blob_kzg_commitment_count_lte?: number; + /** + * Number of blob KZG commitments in the bid (filter: gt) + */ + blob_kzg_commitment_count_gt?: number; + /** + * Number of blob KZG commitments in the bid (filter: gte) + */ + blob_kzg_commitment_count_gte?: number; + /** + * Number of blob KZG commitments in the bid (filter: between_min) + */ + blob_kzg_commitment_count_between_min?: number; + /** + * Number of blob KZG commitments in the bid (filter: between_max_value) + */ + blob_kzg_commitment_count_between_max_value?: number; + /** + * Number of blob KZG commitments in the bid (filter: in_values) (comma-separated list) + */ + blob_kzg_commitment_count_in_values?: string; + /** + * Number of blob KZG commitments in the bid (filter: not_in_values) (comma-separated list) + */ + blob_kzg_commitment_count_not_in_values?: string; + /** + * The maximum number of fct_block_payload_bid to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockPayloadBid` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_payload_bid'; +}; + +export type FctBlockPayloadBidServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadBidServiceListError = + FctBlockPayloadBidServiceListErrors[keyof FctBlockPayloadBidServiceListErrors]; + +export type FctBlockPayloadBidServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockPayloadBidResponse; +}; + +export type FctBlockPayloadBidServiceListResponse = + FctBlockPayloadBidServiceListResponses[keyof FctBlockPayloadBidServiceListResponses]; + +export type FctBlockPayloadBidServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_payload_bid/{slot_start_date_time}'; +}; + +export type FctBlockPayloadBidServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadBidServiceGetError = + FctBlockPayloadBidServiceGetErrors[keyof FctBlockPayloadBidServiceGetErrors]; + +export type FctBlockPayloadBidServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockPayloadBidResponse; +}; + +export type FctBlockPayloadBidServiceGetResponse = + FctBlockPayloadBidServiceGetResponses[keyof FctBlockPayloadBidServiceGetResponses]; + +export type FctBlockPayloadFirstSeenByNodeServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root the envelope references (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root the envelope references (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root the envelope references (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root the envelope references (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root the envelope references (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root the envelope references (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root the envelope references (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root the envelope references (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root the envelope references (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Name of the client (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Source of the event (filter: eq) + */ + source_eq?: string; + /** + * Source of the event (filter: ne) + */ + source_ne?: string; + /** + * Source of the event (filter: contains) + */ + source_contains?: string; + /** + * Source of the event (filter: starts_with) + */ + source_starts_with?: string; + /** + * Source of the event (filter: ends_with) + */ + source_ends_with?: string; + /** + * Source of the event (filter: like) + */ + source_like?: string; + /** + * Source of the event (filter: not_like) + */ + source_not_like?: string; + /** + * Source of the event (filter: in_values) (comma-separated list) + */ + source_in_values?: string; + /** + * Source of the event (filter: not_in_values) (comma-separated list) + */ + source_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The time from slot start for the client to see the execution payload envelope (filter: eq) + */ + seen_slot_start_diff_eq?: number; + /** + * The time from slot start for the client to see the execution payload envelope (filter: ne) + */ + seen_slot_start_diff_ne?: number; + /** + * The time from slot start for the client to see the execution payload envelope (filter: lt) + */ + seen_slot_start_diff_lt?: number; + /** + * The time from slot start for the client to see the execution payload envelope (filter: lte) + */ + seen_slot_start_diff_lte?: number; + /** + * The time from slot start for the client to see the execution payload envelope (filter: gt) + */ + seen_slot_start_diff_gt?: number; + /** + * The time from slot start for the client to see the execution payload envelope (filter: gte) + */ + seen_slot_start_diff_gte?: number; + /** + * The time from slot start for the client to see the execution payload envelope (filter: between_min) + */ + seen_slot_start_diff_between_min?: number; + /** + * The time from slot start for the client to see the execution payload envelope (filter: between_max_value) + */ + seen_slot_start_diff_between_max_value?: number; + /** + * The time from slot start for the client to see the execution payload envelope (filter: in_values) (comma-separated list) + */ + seen_slot_start_diff_in_values?: string; + /** + * The time from slot start for the client to see the execution payload envelope (filter: not_in_values) (comma-separated list) + */ + seen_slot_start_diff_not_in_values?: string; + /** + * The execution block hash of the payload (filter: eq) + */ + block_hash_eq?: string; + /** + * The execution block hash of the payload (filter: ne) + */ + block_hash_ne?: string; + /** + * The execution block hash of the payload (filter: contains) + */ + block_hash_contains?: string; + /** + * The execution block hash of the payload (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * The execution block hash of the payload (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * The execution block hash of the payload (filter: like) + */ + block_hash_like?: string; + /** + * The execution block hash of the payload (filter: not_like) + */ + block_hash_not_like?: string; + /** + * The execution block hash of the payload (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * The execution block hash of the payload (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * Index of the builder that produced the payload (filter: eq) + */ + builder_index_eq?: number; + /** + * Index of the builder that produced the payload (filter: ne) + */ + builder_index_ne?: number; + /** + * Index of the builder that produced the payload (filter: lt) + */ + builder_index_lt?: number; + /** + * Index of the builder that produced the payload (filter: lte) + */ + builder_index_lte?: number; + /** + * Index of the builder that produced the payload (filter: gt) + */ + builder_index_gt?: number; + /** + * Index of the builder that produced the payload (filter: gte) + */ + builder_index_gte?: number; + /** + * Index of the builder that produced the payload (filter: between_min) + */ + builder_index_between_min?: number; + /** + * Index of the builder that produced the payload (filter: between_max_value) + */ + builder_index_between_max_value?: number; + /** + * Index of the builder that produced the payload (filter: in_values) (comma-separated list) + */ + builder_index_in_values?: string; + /** + * Index of the builder that produced the payload (filter: not_in_values) (comma-separated list) + */ + builder_index_not_in_values?: string; + /** + * Username of the node (filter: eq) + */ + username_eq?: string; + /** + * Username of the node (filter: ne) + */ + username_ne?: string; + /** + * Username of the node (filter: contains) + */ + username_contains?: string; + /** + * Username of the node (filter: starts_with) + */ + username_starts_with?: string; + /** + * Username of the node (filter: ends_with) + */ + username_ends_with?: string; + /** + * Username of the node (filter: like) + */ + username_like?: string; + /** + * Username of the node (filter: not_like) + */ + username_not_like?: string; + /** + * Username of the node (filter: in_values) (comma-separated list) + */ + username_in_values?: string; + /** + * Username of the node (filter: not_in_values) (comma-separated list) + */ + username_not_in_values?: string; + /** + * ID of the node (filter: eq) + */ + node_id_eq?: string; + /** + * ID of the node (filter: ne) + */ + node_id_ne?: string; + /** + * ID of the node (filter: contains) + */ + node_id_contains?: string; + /** + * ID of the node (filter: starts_with) + */ + node_id_starts_with?: string; + /** + * ID of the node (filter: ends_with) + */ + node_id_ends_with?: string; + /** + * ID of the node (filter: like) + */ + node_id_like?: string; + /** + * ID of the node (filter: not_like) + */ + node_id_not_like?: string; + /** + * ID of the node (filter: in_values) (comma-separated list) + */ + node_id_in_values?: string; + /** + * ID of the node (filter: not_in_values) (comma-separated list) + */ + node_id_not_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) + */ + classification_eq?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) + */ + classification_ne?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) + */ + classification_contains?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) + */ + classification_starts_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) + */ + classification_ends_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) + */ + classification_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) + */ + classification_not_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) + */ + classification_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) + */ + classification_not_in_values?: string; + /** + * Version of the client (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * City of the client (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Autonomous system number of the client (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * Ethereum consensus client version (filter: eq) + */ + meta_consensus_version_eq?: string; + /** + * Ethereum consensus client version (filter: ne) + */ + meta_consensus_version_ne?: string; + /** + * Ethereum consensus client version (filter: contains) + */ + meta_consensus_version_contains?: string; + /** + * Ethereum consensus client version (filter: starts_with) + */ + meta_consensus_version_starts_with?: string; + /** + * Ethereum consensus client version (filter: ends_with) + */ + meta_consensus_version_ends_with?: string; + /** + * Ethereum consensus client version (filter: like) + */ + meta_consensus_version_like?: string; + /** + * Ethereum consensus client version (filter: not_like) + */ + meta_consensus_version_not_like?: string; + /** + * Ethereum consensus client version (filter: in_values) (comma-separated list) + */ + meta_consensus_version_in_values?: string; + /** + * Ethereum consensus client version (filter: not_in_values) (comma-separated list) + */ + meta_consensus_version_not_in_values?: string; + /** + * Ethereum consensus client implementation (filter: eq) + */ + meta_consensus_implementation_eq?: string; + /** + * Ethereum consensus client implementation (filter: ne) + */ + meta_consensus_implementation_ne?: string; + /** + * Ethereum consensus client implementation (filter: contains) + */ + meta_consensus_implementation_contains?: string; + /** + * Ethereum consensus client implementation (filter: starts_with) + */ + meta_consensus_implementation_starts_with?: string; + /** + * Ethereum consensus client implementation (filter: ends_with) + */ + meta_consensus_implementation_ends_with?: string; + /** + * Ethereum consensus client implementation (filter: like) + */ + meta_consensus_implementation_like?: string; + /** + * Ethereum consensus client implementation (filter: not_like) + */ + meta_consensus_implementation_not_like?: string; + /** + * Ethereum consensus client implementation (filter: in_values) (comma-separated list) + */ + meta_consensus_implementation_in_values?: string; + /** + * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) + */ + meta_consensus_implementation_not_in_values?: string; + /** + * The maximum number of fct_block_payload_first_seen_by_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockPayloadFirstSeenByNode` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_payload_first_seen_by_node'; +}; + +export type FctBlockPayloadFirstSeenByNodeServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadFirstSeenByNodeServiceListError = + FctBlockPayloadFirstSeenByNodeServiceListErrors[keyof FctBlockPayloadFirstSeenByNodeServiceListErrors]; + +export type FctBlockPayloadFirstSeenByNodeServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockPayloadFirstSeenByNodeResponse; +}; + +export type FctBlockPayloadFirstSeenByNodeServiceListResponse = + FctBlockPayloadFirstSeenByNodeServiceListResponses[keyof FctBlockPayloadFirstSeenByNodeServiceListResponses]; + +export type FctBlockPayloadFirstSeenByNodeServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_payload_first_seen_by_node/{slot_start_date_time}'; +}; + +export type FctBlockPayloadFirstSeenByNodeServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadFirstSeenByNodeServiceGetError = + FctBlockPayloadFirstSeenByNodeServiceGetErrors[keyof FctBlockPayloadFirstSeenByNodeServiceGetErrors]; + +export type FctBlockPayloadFirstSeenByNodeServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockPayloadFirstSeenByNodeResponse; +}; + +export type FctBlockPayloadFirstSeenByNodeServiceGetResponse = + FctBlockPayloadFirstSeenByNodeServiceGetResponses[keyof FctBlockPayloadFirstSeenByNodeServiceGetResponses]; + +export type FctBlockPayloadPtcVoteServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the attested slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the attested slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the attested slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the attested slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the attested slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the attested slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the attested slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the attested slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the attested slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the attested slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root being attested by the PTC (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root being attested by the PTC (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root being attested by the PTC (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root being attested by the PTC (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root being attested by the PTC (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root being attested by the PTC (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root being attested by the PTC (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root being attested by the PTC (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root being attested by the PTC (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The attested slot number (filter: eq) + */ + slot_eq?: number; + /** + * The attested slot number (filter: ne) + */ + slot_ne?: number; + /** + * The attested slot number (filter: lt) + */ + slot_lt?: number; + /** + * The attested slot number (filter: lte) + */ + slot_lte?: number; + /** + * The attested slot number (filter: gt) + */ + slot_gt?: number; + /** + * The attested slot number (filter: gte) + */ + slot_gte?: number; + /** + * The attested slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The attested slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The attested slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The attested slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the attested slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the attested slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the attested slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the attested slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the attested slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the attested slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the attested slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the attested slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the attested slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the attested slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The beacon block version of the containing block, empty for orphaned rows (filter: eq) + */ + block_version_eq?: string; + /** + * The beacon block version of the containing block, empty for orphaned rows (filter: ne) + */ + block_version_ne?: string; + /** + * The beacon block version of the containing block, empty for orphaned rows (filter: contains) + */ + block_version_contains?: string; + /** + * The beacon block version of the containing block, empty for orphaned rows (filter: starts_with) + */ + block_version_starts_with?: string; + /** + * The beacon block version of the containing block, empty for orphaned rows (filter: ends_with) + */ + block_version_ends_with?: string; + /** + * The beacon block version of the containing block, empty for orphaned rows (filter: like) + */ + block_version_like?: string; + /** + * The beacon block version of the containing block, empty for orphaned rows (filter: not_like) + */ + block_version_not_like?: string; + /** + * The beacon block version of the containing block, empty for orphaned rows (filter: in_values) (comma-separated list) + */ + block_version_in_values?: string; + /** + * The beacon block version of the containing block, empty for orphaned rows (filter: not_in_values) (comma-separated list) + */ + block_version_not_in_values?: string; + /** + * Slot of the canonical block that included the payload attestations, null for orphaned rows (filter: eq) + */ + included_in_slot_eq?: number; + /** + * Slot of the canonical block that included the payload attestations, null for orphaned rows (filter: ne) + */ + included_in_slot_ne?: number; + /** + * Slot of the canonical block that included the payload attestations, null for orphaned rows (filter: lt) + */ + included_in_slot_lt?: number; + /** + * Slot of the canonical block that included the payload attestations, null for orphaned rows (filter: lte) + */ + included_in_slot_lte?: number; + /** + * Slot of the canonical block that included the payload attestations, null for orphaned rows (filter: gt) + */ + included_in_slot_gt?: number; + /** + * Slot of the canonical block that included the payload attestations, null for orphaned rows (filter: gte) + */ + included_in_slot_gte?: number; + /** + * Slot of the canonical block that included the payload attestations, null for orphaned rows (filter: between_min) + */ + included_in_slot_between_min?: number; + /** + * Slot of the canonical block that included the payload attestations, null for orphaned rows (filter: between_max_value) + */ + included_in_slot_between_max_value?: number; + /** + * Slot of the canonical block that included the payload attestations, null for orphaned rows (filter: in_values) (comma-separated list) + */ + included_in_slot_in_values?: string; + /** + * Slot of the canonical block that included the payload attestations, null for orphaned rows (filter: not_in_values) (comma-separated list) + */ + included_in_slot_not_in_values?: string; + /** + * Root of the canonical block that included the payload attestations, null for orphaned rows (filter: eq) + */ + included_in_block_root_eq?: string; + /** + * Root of the canonical block that included the payload attestations, null for orphaned rows (filter: ne) + */ + included_in_block_root_ne?: string; + /** + * Root of the canonical block that included the payload attestations, null for orphaned rows (filter: contains) + */ + included_in_block_root_contains?: string; + /** + * Root of the canonical block that included the payload attestations, null for orphaned rows (filter: starts_with) + */ + included_in_block_root_starts_with?: string; + /** + * Root of the canonical block that included the payload attestations, null for orphaned rows (filter: ends_with) + */ + included_in_block_root_ends_with?: string; + /** + * Root of the canonical block that included the payload attestations, null for orphaned rows (filter: like) + */ + included_in_block_root_like?: string; + /** + * Root of the canonical block that included the payload attestations, null for orphaned rows (filter: not_like) + */ + included_in_block_root_not_like?: string; + /** + * Root of the canonical block that included the payload attestations, null for orphaned rows (filter: in_values) (comma-separated list) + */ + included_in_block_root_in_values?: string; + /** + * Root of the canonical block that included the payload attestations, null for orphaned rows (filter: not_in_values) (comma-separated list) + */ + included_in_block_root_not_in_values?: string; + /** + * Total PTC validators covered: on-chain aggregate counts for canonical rows, distinct validators seen on the live stream for orphaned rows (filter: eq) + */ + ptc_validators_eq?: number; + /** + * Total PTC validators covered: on-chain aggregate counts for canonical rows, distinct validators seen on the live stream for orphaned rows (filter: ne) + */ + ptc_validators_ne?: number; + /** + * Total PTC validators covered: on-chain aggregate counts for canonical rows, distinct validators seen on the live stream for orphaned rows (filter: lt) + */ + ptc_validators_lt?: number; + /** + * Total PTC validators covered: on-chain aggregate counts for canonical rows, distinct validators seen on the live stream for orphaned rows (filter: lte) + */ + ptc_validators_lte?: number; + /** + * Total PTC validators covered: on-chain aggregate counts for canonical rows, distinct validators seen on the live stream for orphaned rows (filter: gt) + */ + ptc_validators_gt?: number; + /** + * Total PTC validators covered: on-chain aggregate counts for canonical rows, distinct validators seen on the live stream for orphaned rows (filter: gte) + */ + ptc_validators_gte?: number; + /** + * Total PTC validators covered: on-chain aggregate counts for canonical rows, distinct validators seen on the live stream for orphaned rows (filter: between_min) + */ + ptc_validators_between_min?: number; + /** + * Total PTC validators covered: on-chain aggregate counts for canonical rows, distinct validators seen on the live stream for orphaned rows (filter: between_max_value) + */ + ptc_validators_between_max_value?: number; + /** + * Total PTC validators covered: on-chain aggregate counts for canonical rows, distinct validators seen on the live stream for orphaned rows (filter: in_values) (comma-separated list) + */ + ptc_validators_in_values?: string; + /** + * Total PTC validators covered: on-chain aggregate counts for canonical rows, distinct validators seen on the live stream for orphaned rows (filter: not_in_values) (comma-separated list) + */ + ptc_validators_not_in_values?: string; + /** + * PTC validators attesting the payload was present (filter: eq) + */ + payload_present_votes_eq?: number; + /** + * PTC validators attesting the payload was present (filter: ne) + */ + payload_present_votes_ne?: number; + /** + * PTC validators attesting the payload was present (filter: lt) + */ + payload_present_votes_lt?: number; + /** + * PTC validators attesting the payload was present (filter: lte) + */ + payload_present_votes_lte?: number; + /** + * PTC validators attesting the payload was present (filter: gt) + */ + payload_present_votes_gt?: number; + /** + * PTC validators attesting the payload was present (filter: gte) + */ + payload_present_votes_gte?: number; + /** + * PTC validators attesting the payload was present (filter: between_min) + */ + payload_present_votes_between_min?: number; + /** + * PTC validators attesting the payload was present (filter: between_max_value) + */ + payload_present_votes_between_max_value?: number; + /** + * PTC validators attesting the payload was present (filter: in_values) (comma-separated list) + */ + payload_present_votes_in_values?: string; + /** + * PTC validators attesting the payload was present (filter: not_in_values) (comma-separated list) + */ + payload_present_votes_not_in_values?: string; + /** + * PTC validators attesting blob data was available (filter: eq) + */ + blob_data_available_votes_eq?: number; + /** + * PTC validators attesting blob data was available (filter: ne) + */ + blob_data_available_votes_ne?: number; + /** + * PTC validators attesting blob data was available (filter: lt) + */ + blob_data_available_votes_lt?: number; + /** + * PTC validators attesting blob data was available (filter: lte) + */ + blob_data_available_votes_lte?: number; + /** + * PTC validators attesting blob data was available (filter: gt) + */ + blob_data_available_votes_gt?: number; + /** + * PTC validators attesting blob data was available (filter: gte) + */ + blob_data_available_votes_gte?: number; + /** + * PTC validators attesting blob data was available (filter: between_min) + */ + blob_data_available_votes_between_min?: number; + /** + * PTC validators attesting blob data was available (filter: between_max_value) + */ + blob_data_available_votes_between_max_value?: number; + /** + * PTC validators attesting blob data was available (filter: in_values) (comma-separated list) + */ + blob_data_available_votes_in_values?: string; + /** + * PTC validators attesting blob data was available (filter: not_in_values) (comma-separated list) + */ + blob_data_available_votes_not_in_values?: string; + /** + * Whether the attested block is canonical or orphaned (filter: eq) + */ + status_eq?: string; + /** + * Whether the attested block is canonical or orphaned (filter: ne) + */ + status_ne?: string; + /** + * Whether the attested block is canonical or orphaned (filter: contains) + */ + status_contains?: string; + /** + * Whether the attested block is canonical or orphaned (filter: starts_with) + */ + status_starts_with?: string; + /** + * Whether the attested block is canonical or orphaned (filter: ends_with) + */ + status_ends_with?: string; + /** + * Whether the attested block is canonical or orphaned (filter: like) + */ + status_like?: string; + /** + * Whether the attested block is canonical or orphaned (filter: not_like) + */ + status_not_like?: string; + /** + * Whether the attested block is canonical or orphaned (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Whether the attested block is canonical or orphaned (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * The maximum number of fct_block_payload_ptc_vote to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockPayloadPtcVote` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_payload_ptc_vote'; +}; + +export type FctBlockPayloadPtcVoteServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadPtcVoteServiceListError = + FctBlockPayloadPtcVoteServiceListErrors[keyof FctBlockPayloadPtcVoteServiceListErrors]; + +export type FctBlockPayloadPtcVoteServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockPayloadPtcVoteResponse; +}; + +export type FctBlockPayloadPtcVoteServiceListResponse = + FctBlockPayloadPtcVoteServiceListResponses[keyof FctBlockPayloadPtcVoteServiceListResponses]; + +export type FctBlockPayloadPtcVoteServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the attested slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_payload_ptc_vote/{slot_start_date_time}'; +}; + +export type FctBlockPayloadPtcVoteServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadPtcVoteServiceGetError = + FctBlockPayloadPtcVoteServiceGetErrors[keyof FctBlockPayloadPtcVoteServiceGetErrors]; + +export type FctBlockPayloadPtcVoteServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockPayloadPtcVoteResponse; +}; + +export type FctBlockPayloadPtcVoteServiceGetResponse = + FctBlockPayloadPtcVoteServiceGetResponses[keyof FctBlockPayloadPtcVoteServiceGetResponses]; + +export type FctBlockPayloadPtcVoteHeadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the attested slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the attested slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the attested slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the attested slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the attested slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the attested slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the attested slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the attested slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the attested slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the attested slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root being attested by the PTC (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root being attested by the PTC (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root being attested by the PTC (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root being attested by the PTC (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root being attested by the PTC (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root being attested by the PTC (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root being attested by the PTC (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root being attested by the PTC (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root being attested by the PTC (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The attested slot number (filter: eq) + */ + slot_eq?: number; + /** + * The attested slot number (filter: ne) + */ + slot_ne?: number; + /** + * The attested slot number (filter: lt) + */ + slot_lt?: number; + /** + * The attested slot number (filter: lte) + */ + slot_lte?: number; + /** + * The attested slot number (filter: gt) + */ + slot_gt?: number; + /** + * The attested slot number (filter: gte) + */ + slot_gte?: number; + /** + * The attested slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The attested slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The attested slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The attested slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the attested slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the attested slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the attested slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the attested slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the attested slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the attested slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the attested slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the attested slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the attested slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the attested slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Distinct PTC validators whose payload attestation was seen on the live event stream (filter: eq) + */ + ptc_validators_seen_eq?: number; + /** + * Distinct PTC validators whose payload attestation was seen on the live event stream (filter: ne) + */ + ptc_validators_seen_ne?: number; + /** + * Distinct PTC validators whose payload attestation was seen on the live event stream (filter: lt) + */ + ptc_validators_seen_lt?: number; + /** + * Distinct PTC validators whose payload attestation was seen on the live event stream (filter: lte) + */ + ptc_validators_seen_lte?: number; + /** + * Distinct PTC validators whose payload attestation was seen on the live event stream (filter: gt) + */ + ptc_validators_seen_gt?: number; + /** + * Distinct PTC validators whose payload attestation was seen on the live event stream (filter: gte) + */ + ptc_validators_seen_gte?: number; + /** + * Distinct PTC validators whose payload attestation was seen on the live event stream (filter: between_min) + */ + ptc_validators_seen_between_min?: number; + /** + * Distinct PTC validators whose payload attestation was seen on the live event stream (filter: between_max_value) + */ + ptc_validators_seen_between_max_value?: number; + /** + * Distinct PTC validators whose payload attestation was seen on the live event stream (filter: in_values) (comma-separated list) + */ + ptc_validators_seen_in_values?: string; + /** + * Distinct PTC validators whose payload attestation was seen on the live event stream (filter: not_in_values) (comma-separated list) + */ + ptc_validators_seen_not_in_values?: string; + /** + * Distinct PTC validators attesting the payload was present (filter: eq) + */ + payload_present_votes_eq?: number; + /** + * Distinct PTC validators attesting the payload was present (filter: ne) + */ + payload_present_votes_ne?: number; + /** + * Distinct PTC validators attesting the payload was present (filter: lt) + */ + payload_present_votes_lt?: number; + /** + * Distinct PTC validators attesting the payload was present (filter: lte) + */ + payload_present_votes_lte?: number; + /** + * Distinct PTC validators attesting the payload was present (filter: gt) + */ + payload_present_votes_gt?: number; + /** + * Distinct PTC validators attesting the payload was present (filter: gte) + */ + payload_present_votes_gte?: number; + /** + * Distinct PTC validators attesting the payload was present (filter: between_min) + */ + payload_present_votes_between_min?: number; + /** + * Distinct PTC validators attesting the payload was present (filter: between_max_value) + */ + payload_present_votes_between_max_value?: number; + /** + * Distinct PTC validators attesting the payload was present (filter: in_values) (comma-separated list) + */ + payload_present_votes_in_values?: string; + /** + * Distinct PTC validators attesting the payload was present (filter: not_in_values) (comma-separated list) + */ + payload_present_votes_not_in_values?: string; + /** + * Distinct PTC validators attesting blob data was available (filter: eq) + */ + blob_data_available_votes_eq?: number; + /** + * Distinct PTC validators attesting blob data was available (filter: ne) + */ + blob_data_available_votes_ne?: number; + /** + * Distinct PTC validators attesting blob data was available (filter: lt) + */ + blob_data_available_votes_lt?: number; + /** + * Distinct PTC validators attesting blob data was available (filter: lte) + */ + blob_data_available_votes_lte?: number; + /** + * Distinct PTC validators attesting blob data was available (filter: gt) + */ + blob_data_available_votes_gt?: number; + /** + * Distinct PTC validators attesting blob data was available (filter: gte) + */ + blob_data_available_votes_gte?: number; + /** + * Distinct PTC validators attesting blob data was available (filter: between_min) + */ + blob_data_available_votes_between_min?: number; + /** + * Distinct PTC validators attesting blob data was available (filter: between_max_value) + */ + blob_data_available_votes_between_max_value?: number; + /** + * Distinct PTC validators attesting blob data was available (filter: in_values) (comma-separated list) + */ + blob_data_available_votes_in_values?: string; + /** + * Distinct PTC validators attesting blob data was available (filter: not_in_values) (comma-separated list) + */ + blob_data_available_votes_not_in_values?: string; + /** + * Time from slot start that the first payload attestation was seen in ms (filter: eq) + */ + first_seen_slot_start_diff_eq?: number; + /** + * Time from slot start that the first payload attestation was seen in ms (filter: ne) + */ + first_seen_slot_start_diff_ne?: number; + /** + * Time from slot start that the first payload attestation was seen in ms (filter: lt) + */ + first_seen_slot_start_diff_lt?: number; + /** + * Time from slot start that the first payload attestation was seen in ms (filter: lte) + */ + first_seen_slot_start_diff_lte?: number; + /** + * Time from slot start that the first payload attestation was seen in ms (filter: gt) + */ + first_seen_slot_start_diff_gt?: number; + /** + * Time from slot start that the first payload attestation was seen in ms (filter: gte) + */ + first_seen_slot_start_diff_gte?: number; + /** + * Time from slot start that the first payload attestation was seen in ms (filter: between_min) + */ + first_seen_slot_start_diff_between_min?: number; + /** + * Time from slot start that the first payload attestation was seen in ms (filter: between_max_value) + */ + first_seen_slot_start_diff_between_max_value?: number; + /** + * Time from slot start that the first payload attestation was seen in ms (filter: in_values) (comma-separated list) + */ + first_seen_slot_start_diff_in_values?: string; + /** + * Time from slot start that the first payload attestation was seen in ms (filter: not_in_values) (comma-separated list) + */ + first_seen_slot_start_diff_not_in_values?: string; + /** + * Time from slot start that the last payload attestation was seen in ms (filter: eq) + */ + last_seen_slot_start_diff_eq?: number; + /** + * Time from slot start that the last payload attestation was seen in ms (filter: ne) + */ + last_seen_slot_start_diff_ne?: number; + /** + * Time from slot start that the last payload attestation was seen in ms (filter: lt) + */ + last_seen_slot_start_diff_lt?: number; + /** + * Time from slot start that the last payload attestation was seen in ms (filter: lte) + */ + last_seen_slot_start_diff_lte?: number; + /** + * Time from slot start that the last payload attestation was seen in ms (filter: gt) + */ + last_seen_slot_start_diff_gt?: number; + /** + * Time from slot start that the last payload attestation was seen in ms (filter: gte) + */ + last_seen_slot_start_diff_gte?: number; + /** + * Time from slot start that the last payload attestation was seen in ms (filter: between_min) + */ + last_seen_slot_start_diff_between_min?: number; + /** + * Time from slot start that the last payload attestation was seen in ms (filter: between_max_value) + */ + last_seen_slot_start_diff_between_max_value?: number; + /** + * Time from slot start that the last payload attestation was seen in ms (filter: in_values) (comma-separated list) + */ + last_seen_slot_start_diff_in_values?: string; + /** + * Time from slot start that the last payload attestation was seen in ms (filter: not_in_values) (comma-separated list) + */ + last_seen_slot_start_diff_not_in_values?: string; + /** + * The maximum number of fct_block_payload_ptc_vote_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockPayloadPtcVoteHead` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_payload_ptc_vote_head'; +}; + +export type FctBlockPayloadPtcVoteHeadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadPtcVoteHeadServiceListError = + FctBlockPayloadPtcVoteHeadServiceListErrors[keyof FctBlockPayloadPtcVoteHeadServiceListErrors]; + +export type FctBlockPayloadPtcVoteHeadServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockPayloadPtcVoteHeadResponse; +}; + +export type FctBlockPayloadPtcVoteHeadServiceListResponse = + FctBlockPayloadPtcVoteHeadServiceListResponses[keyof FctBlockPayloadPtcVoteHeadServiceListResponses]; + +export type FctBlockPayloadPtcVoteHeadServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the attested slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_payload_ptc_vote_head/{slot_start_date_time}'; +}; + +export type FctBlockPayloadPtcVoteHeadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadPtcVoteHeadServiceGetError = + FctBlockPayloadPtcVoteHeadServiceGetErrors[keyof FctBlockPayloadPtcVoteHeadServiceGetErrors]; + +export type FctBlockPayloadPtcVoteHeadServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockPayloadPtcVoteHeadResponse; +}; + +export type FctBlockPayloadPtcVoteHeadServiceGetResponse = + FctBlockPayloadPtcVoteHeadServiceGetResponses[keyof FctBlockPayloadPtcVoteHeadServiceGetResponses]; + +export type FctBlockProposalStatusDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: eq) + */ + status_eq?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: ne) + */ + status_ne?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: contains) + */ + status_contains?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: starts_with) + */ + status_starts_with?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: ends_with) + */ + status_ends_with?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: like) + */ + status_like?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: not_like) + */ + status_not_like?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of slots with this status (filter: eq) + */ + slot_count_eq?: number; + /** + * Number of slots with this status (filter: ne) + */ + slot_count_ne?: number; + /** + * Number of slots with this status (filter: lt) + */ + slot_count_lt?: number; + /** + * Number of slots with this status (filter: lte) + */ + slot_count_lte?: number; + /** + * Number of slots with this status (filter: gt) + */ + slot_count_gt?: number; + /** + * Number of slots with this status (filter: gte) + */ + slot_count_gte?: number; + /** + * Number of slots with this status (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Number of slots with this status (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Number of slots with this status (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Number of slots with this status (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * The maximum number of fct_block_proposal_status_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockProposalStatusDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_proposal_status_daily'; +}; + +export type FctBlockProposalStatusDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockProposalStatusDailyServiceListError = + FctBlockProposalStatusDailyServiceListErrors[keyof FctBlockProposalStatusDailyServiceListErrors]; + +export type FctBlockProposalStatusDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockProposalStatusDailyResponse; +}; + +export type FctBlockProposalStatusDailyServiceListResponse = + FctBlockProposalStatusDailyServiceListResponses[keyof FctBlockProposalStatusDailyServiceListResponses]; + +export type FctBlockProposalStatusDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_block_proposal_status_daily/{day_start_date}'; +}; + +export type FctBlockProposalStatusDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockProposalStatusDailyServiceGetError = + FctBlockProposalStatusDailyServiceGetErrors[keyof FctBlockProposalStatusDailyServiceGetErrors]; + +export type FctBlockProposalStatusDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockProposalStatusDailyResponse; +}; + +export type FctBlockProposalStatusDailyServiceGetResponse = + FctBlockProposalStatusDailyServiceGetResponses[keyof FctBlockProposalStatusDailyServiceGetResponses]; + +export type FctBlockProposalStatusHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: eq) + */ + status_eq?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: ne) + */ + status_ne?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: contains) + */ + status_contains?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: starts_with) + */ + status_starts_with?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: ends_with) + */ + status_ends_with?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: like) + */ + status_like?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: not_like) + */ + status_not_like?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Block proposal status (canonical, orphaned, missed) (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of slots with this status (filter: eq) + */ + slot_count_eq?: number; + /** + * Number of slots with this status (filter: ne) + */ + slot_count_ne?: number; + /** + * Number of slots with this status (filter: lt) + */ + slot_count_lt?: number; + /** + * Number of slots with this status (filter: lte) + */ + slot_count_lte?: number; + /** + * Number of slots with this status (filter: gt) + */ + slot_count_gt?: number; + /** + * Number of slots with this status (filter: gte) + */ + slot_count_gte?: number; + /** + * Number of slots with this status (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Number of slots with this status (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Number of slots with this status (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Number of slots with this status (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * The maximum number of fct_block_proposal_status_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockProposalStatusHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_proposal_status_hourly'; +}; + +export type FctBlockProposalStatusHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockProposalStatusHourlyServiceListError = + FctBlockProposalStatusHourlyServiceListErrors[keyof FctBlockProposalStatusHourlyServiceListErrors]; + +export type FctBlockProposalStatusHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockProposalStatusHourlyResponse; +}; + +export type FctBlockProposalStatusHourlyServiceListResponse = + FctBlockProposalStatusHourlyServiceListResponses[keyof FctBlockProposalStatusHourlyServiceListResponses]; + +export type FctBlockProposalStatusHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_proposal_status_hourly/{hour_start_date_time}'; +}; + +export type FctBlockProposalStatusHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockProposalStatusHourlyServiceGetError = + FctBlockProposalStatusHourlyServiceGetErrors[keyof FctBlockProposalStatusHourlyServiceGetErrors]; + +export type FctBlockProposalStatusHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockProposalStatusHourlyResponse; +}; + +export type FctBlockProposalStatusHourlyServiceGetResponse = + FctBlockProposalStatusHourlyServiceGetResponses[keyof FctBlockProposalStatusHourlyServiceGetResponses]; + +export type FctBlockProposerServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The validator index of the proposer for the slot (filter: eq) + */ + proposer_validator_index_eq?: number; + /** + * The validator index of the proposer for the slot (filter: ne) + */ + proposer_validator_index_ne?: number; + /** + * The validator index of the proposer for the slot (filter: lt) + */ + proposer_validator_index_lt?: number; + /** + * The validator index of the proposer for the slot (filter: lte) + */ + proposer_validator_index_lte?: number; + /** + * The validator index of the proposer for the slot (filter: gt) + */ + proposer_validator_index_gt?: number; + /** + * The validator index of the proposer for the slot (filter: gte) + */ + proposer_validator_index_gte?: number; + /** + * The validator index of the proposer for the slot (filter: between_min) + */ + proposer_validator_index_between_min?: number; + /** + * The validator index of the proposer for the slot (filter: between_max_value) + */ + proposer_validator_index_between_max_value?: number; + /** + * The validator index of the proposer for the slot (filter: in_values) (comma-separated list) + */ + proposer_validator_index_in_values?: string; + /** + * The validator index of the proposer for the slot (filter: not_in_values) (comma-separated list) + */ + proposer_validator_index_not_in_values?: string; + /** + * The public key of the validator proposer (filter: eq) + */ + proposer_pubkey_eq?: string; + /** + * The public key of the validator proposer (filter: ne) + */ + proposer_pubkey_ne?: string; + /** + * The public key of the validator proposer (filter: contains) + */ + proposer_pubkey_contains?: string; + /** + * The public key of the validator proposer (filter: starts_with) + */ + proposer_pubkey_starts_with?: string; + /** + * The public key of the validator proposer (filter: ends_with) + */ + proposer_pubkey_ends_with?: string; + /** + * The public key of the validator proposer (filter: like) + */ + proposer_pubkey_like?: string; + /** + * The public key of the validator proposer (filter: not_like) + */ + proposer_pubkey_not_like?: string; + /** + * The public key of the validator proposer (filter: in_values) (comma-separated list) + */ + proposer_pubkey_in_values?: string; + /** + * The public key of the validator proposer (filter: not_in_values) (comma-separated list) + */ + proposer_pubkey_not_in_values?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: eq) + */ + status_eq?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: ne) + */ + status_ne?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: contains) + */ + status_contains?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: starts_with) + */ + status_starts_with?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: ends_with) + */ + status_ends_with?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: like) + */ + status_like?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: not_like) + */ + status_not_like?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * The maximum number of fct_block_proposer to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockProposer` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_proposer'; +}; + +export type FctBlockProposerServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockProposerServiceListError = + FctBlockProposerServiceListErrors[keyof FctBlockProposerServiceListErrors]; + +export type FctBlockProposerServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockProposerResponse; +}; + +export type FctBlockProposerServiceListResponse = + FctBlockProposerServiceListResponses[keyof FctBlockProposerServiceListResponses]; + +export type FctBlockProposerServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_proposer/{slot_start_date_time}'; +}; + +export type FctBlockProposerServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockProposerServiceGetError = FctBlockProposerServiceGetErrors[keyof FctBlockProposerServiceGetErrors]; + +export type FctBlockProposerServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockProposerResponse; +}; + +export type FctBlockProposerServiceGetResponse = + FctBlockProposerServiceGetResponses[keyof FctBlockProposerServiceGetResponses]; + +export type FctBlockProposerByValidatorServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The validator index of the proposer (filter: eq) + */ + validator_index_eq?: number; + /** + * The validator index of the proposer (filter: ne) + */ + validator_index_ne?: number; + /** + * The validator index of the proposer (filter: lt) + */ + validator_index_lt?: number; + /** + * The validator index of the proposer (filter: lte) + */ + validator_index_lte?: number; + /** + * The validator index of the proposer (filter: gt) + */ + validator_index_gt?: number; + /** + * The validator index of the proposer (filter: gte) + */ + validator_index_gte?: number; + /** + * The validator index of the proposer (filter: between_min) + */ + validator_index_between_min?: number; + /** + * The validator index of the proposer (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * The validator index of the proposer (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * The validator index of the proposer (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The public key of the proposer (filter: eq) + */ + pubkey_eq?: string; + /** + * The public key of the proposer (filter: ne) + */ + pubkey_ne?: string; + /** + * The public key of the proposer (filter: contains) + */ + pubkey_contains?: string; + /** + * The public key of the proposer (filter: starts_with) + */ + pubkey_starts_with?: string; + /** + * The public key of the proposer (filter: ends_with) + */ + pubkey_ends_with?: string; + /** + * The public key of the proposer (filter: like) + */ + pubkey_like?: string; + /** + * The public key of the proposer (filter: not_like) + */ + pubkey_not_like?: string; + /** + * The public key of the proposer (filter: in_values) (comma-separated list) + */ + pubkey_in_values?: string; + /** + * The public key of the proposer (filter: not_in_values) (comma-separated list) + */ + pubkey_not_in_values?: string; + /** + * The beacon block root hash. NULL if missed (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash. NULL if missed (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash. NULL if missed (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash. NULL if missed (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash. NULL if missed (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash. NULL if missed (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash. NULL if missed (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash. NULL if missed (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash. NULL if missed (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: eq) + */ + status_eq?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: ne) + */ + status_ne?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: contains) + */ + status_contains?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: starts_with) + */ + status_starts_with?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: ends_with) + */ + status_ends_with?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: like) + */ + status_like?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: not_like) + */ + status_not_like?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Can be "canonical", "orphaned" or "missed" (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * The maximum number of fct_block_proposer_by_validator to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockProposerByValidator` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_proposer_by_validator'; +}; + +export type FctBlockProposerByValidatorServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockProposerByValidatorServiceListError = + FctBlockProposerByValidatorServiceListErrors[keyof FctBlockProposerByValidatorServiceListErrors]; + +export type FctBlockProposerByValidatorServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockProposerByValidatorResponse; +}; + +export type FctBlockProposerByValidatorServiceListResponse = + FctBlockProposerByValidatorServiceListResponses[keyof FctBlockProposerByValidatorServiceListResponses]; + +export type FctBlockProposerByValidatorServiceGetData = { + body?: never; + path: { + /** + * The validator index of the proposer + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/fct_block_proposer_by_validator/{validator_index}'; +}; + +export type FctBlockProposerByValidatorServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockProposerByValidatorServiceGetError = + FctBlockProposerByValidatorServiceGetErrors[keyof FctBlockProposerByValidatorServiceGetErrors]; + +export type FctBlockProposerByValidatorServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockProposerByValidatorResponse; +}; + +export type FctBlockProposerByValidatorServiceGetResponse = + FctBlockProposerByValidatorServiceGetResponses[keyof FctBlockProposerByValidatorServiceGetResponses]; + +export type FctBlockProposerEntityServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The entity that proposed the block (filter: eq) + */ + entity_eq?: string; + /** + * The entity that proposed the block (filter: ne) + */ + entity_ne?: string; + /** + * The entity that proposed the block (filter: contains) + */ + entity_contains?: string; + /** + * The entity that proposed the block (filter: starts_with) + */ + entity_starts_with?: string; + /** + * The entity that proposed the block (filter: ends_with) + */ + entity_ends_with?: string; + /** + * The entity that proposed the block (filter: like) + */ + entity_like?: string; + /** + * The entity that proposed the block (filter: not_like) + */ + entity_not_like?: string; + /** + * The entity that proposed the block (filter: in_values) (comma-separated list) + */ + entity_in_values?: string; + /** + * The entity that proposed the block (filter: not_in_values) (comma-separated list) + */ + entity_not_in_values?: string; + /** + * The maximum number of fct_block_proposer_entity to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockProposerEntity` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_proposer_entity'; +}; + +export type FctBlockProposerEntityServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockProposerEntityServiceListError = + FctBlockProposerEntityServiceListErrors[keyof FctBlockProposerEntityServiceListErrors]; + +export type FctBlockProposerEntityServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockProposerEntityResponse; +}; + +export type FctBlockProposerEntityServiceListResponse = + FctBlockProposerEntityServiceListResponses[keyof FctBlockProposerEntityServiceListResponses]; + +export type FctBlockProposerEntityServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_proposer_entity/{slot_start_date_time}'; +}; + +export type FctBlockProposerEntityServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockProposerEntityServiceGetError = + FctBlockProposerEntityServiceGetErrors[keyof FctBlockProposerEntityServiceGetErrors]; + +export type FctBlockProposerEntityServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockProposerEntityResponse; +}; + +export type FctBlockProposerEntityServiceGetResponse = + FctBlockProposerEntityServiceGetResponses[keyof FctBlockProposerEntityServiceGetResponses]; + +export type FctBlockProposerHeadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The validator index of the proposer for the slot (filter: eq) + */ + proposer_validator_index_eq?: number; + /** + * The validator index of the proposer for the slot (filter: ne) + */ + proposer_validator_index_ne?: number; + /** + * The validator index of the proposer for the slot (filter: lt) + */ + proposer_validator_index_lt?: number; + /** + * The validator index of the proposer for the slot (filter: lte) + */ + proposer_validator_index_lte?: number; + /** + * The validator index of the proposer for the slot (filter: gt) + */ + proposer_validator_index_gt?: number; + /** + * The validator index of the proposer for the slot (filter: gte) + */ + proposer_validator_index_gte?: number; + /** + * The validator index of the proposer for the slot (filter: between_min) + */ + proposer_validator_index_between_min?: number; + /** + * The validator index of the proposer for the slot (filter: between_max_value) + */ + proposer_validator_index_between_max_value?: number; + /** + * The validator index of the proposer for the slot (filter: in_values) (comma-separated list) + */ + proposer_validator_index_in_values?: string; + /** + * The validator index of the proposer for the slot (filter: not_in_values) (comma-separated list) + */ + proposer_validator_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The public key of the validator proposer (filter: eq) + */ + proposer_pubkey_eq?: string; + /** + * The public key of the validator proposer (filter: ne) + */ + proposer_pubkey_ne?: string; + /** + * The public key of the validator proposer (filter: contains) + */ + proposer_pubkey_contains?: string; + /** + * The public key of the validator proposer (filter: starts_with) + */ + proposer_pubkey_starts_with?: string; + /** + * The public key of the validator proposer (filter: ends_with) + */ + proposer_pubkey_ends_with?: string; + /** + * The public key of the validator proposer (filter: like) + */ + proposer_pubkey_like?: string; + /** + * The public key of the validator proposer (filter: not_like) + */ + proposer_pubkey_not_like?: string; + /** + * The public key of the validator proposer (filter: in_values) (comma-separated list) + */ + proposer_pubkey_in_values?: string; + /** + * The public key of the validator proposer (filter: not_in_values) (comma-separated list) + */ + proposer_pubkey_not_in_values?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash. Null if a block was never seen by a sentry (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The maximum number of fct_block_proposer_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockProposerHead` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_proposer_head'; +}; + +export type FctBlockProposerHeadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockProposerHeadServiceListError = + FctBlockProposerHeadServiceListErrors[keyof FctBlockProposerHeadServiceListErrors]; + +export type FctBlockProposerHeadServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockProposerHeadResponse; +}; + +export type FctBlockProposerHeadServiceListResponse = + FctBlockProposerHeadServiceListResponses[keyof FctBlockProposerHeadServiceListResponses]; + +export type FctBlockProposerHeadServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_proposer_head/{slot_start_date_time}'; +}; + +export type FctBlockProposerHeadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockProposerHeadServiceGetError = + FctBlockProposerHeadServiceGetErrors[keyof FctBlockProposerHeadServiceGetErrors]; + +export type FctBlockProposerHeadServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockProposerHeadResponse; +}; + +export type FctBlockProposerHeadServiceGetResponse = + FctBlockProposerHeadServiceGetResponses[keyof FctBlockProposerHeadServiceGetResponses]; + +export type FctContractStorageStateByAddressDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative count of active storage slots at end of day (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at end of day (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at end of day (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at end of day (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at end of day (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at end of day (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at end of day (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at end of day (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at end of day (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at end of day (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes at end of day (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes at end of day (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of fct_contract_storage_state_by_address_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctContractStorageStateByAddressDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_contract_storage_state_by_address_daily'; +}; + +export type FctContractStorageStateByAddressDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateByAddressDailyServiceListError = + FctContractStorageStateByAddressDailyServiceListErrors[keyof FctContractStorageStateByAddressDailyServiceListErrors]; + +export type FctContractStorageStateByAddressDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctContractStorageStateByAddressDailyResponse; +}; + +export type FctContractStorageStateByAddressDailyServiceListResponse = + FctContractStorageStateByAddressDailyServiceListResponses[keyof FctContractStorageStateByAddressDailyServiceListResponses]; + +export type FctContractStorageStateByAddressDailyServiceGetData = { + body?: never; + path: { + /** + * The contract address + */ + address: string; + }; + query?: never; + url: '/api/v1/fct_contract_storage_state_by_address_daily/{address}'; +}; + +export type FctContractStorageStateByAddressDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateByAddressDailyServiceGetError = + FctContractStorageStateByAddressDailyServiceGetErrors[keyof FctContractStorageStateByAddressDailyServiceGetErrors]; + +export type FctContractStorageStateByAddressDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctContractStorageStateByAddressDailyResponse; +}; + +export type FctContractStorageStateByAddressDailyServiceGetResponse = + FctContractStorageStateByAddressDailyServiceGetResponses[keyof FctContractStorageStateByAddressDailyServiceGetResponses]; + +export type FctContractStorageStateByAddressHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative count of active storage slots at end of hour (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at end of hour (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes at end of hour (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes at end of hour (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of fct_contract_storage_state_by_address_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctContractStorageStateByAddressHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_contract_storage_state_by_address_hourly'; +}; + +export type FctContractStorageStateByAddressHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateByAddressHourlyServiceListError = + FctContractStorageStateByAddressHourlyServiceListErrors[keyof FctContractStorageStateByAddressHourlyServiceListErrors]; + +export type FctContractStorageStateByAddressHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctContractStorageStateByAddressHourlyResponse; +}; + +export type FctContractStorageStateByAddressHourlyServiceListResponse = + FctContractStorageStateByAddressHourlyServiceListResponses[keyof FctContractStorageStateByAddressHourlyServiceListResponses]; + +export type FctContractStorageStateByAddressHourlyServiceGetData = { + body?: never; + path: { + /** + * The contract address + */ + address: string; + }; + query?: never; + url: '/api/v1/fct_contract_storage_state_by_address_hourly/{address}'; +}; + +export type FctContractStorageStateByAddressHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateByAddressHourlyServiceGetError = + FctContractStorageStateByAddressHourlyServiceGetErrors[keyof FctContractStorageStateByAddressHourlyServiceGetErrors]; + +export type FctContractStorageStateByAddressHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctContractStorageStateByAddressHourlyResponse; +}; + +export type FctContractStorageStateByAddressHourlyServiceGetResponse = + FctContractStorageStateByAddressHourlyServiceGetResponses[keyof FctContractStorageStateByAddressHourlyServiceGetResponses]; + +export type FctContractStorageStateByBlockDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative count of active storage slots at end of day (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at end of day (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at end of day (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at end of day (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at end of day (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at end of day (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at end of day (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at end of day (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at end of day (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at end of day (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes at end of day (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes at end of day (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * Cumulative count of contracts with at least one active slot at end of day (filter: eq) + */ + active_contracts_eq?: number; + /** + * Cumulative count of contracts with at least one active slot at end of day (filter: ne) + */ + active_contracts_ne?: number; + /** + * Cumulative count of contracts with at least one active slot at end of day (filter: lt) + */ + active_contracts_lt?: number; + /** + * Cumulative count of contracts with at least one active slot at end of day (filter: lte) + */ + active_contracts_lte?: number; + /** + * Cumulative count of contracts with at least one active slot at end of day (filter: gt) + */ + active_contracts_gt?: number; + /** + * Cumulative count of contracts with at least one active slot at end of day (filter: gte) + */ + active_contracts_gte?: number; + /** + * Cumulative count of contracts with at least one active slot at end of day (filter: between_min) + */ + active_contracts_between_min?: number; + /** + * Cumulative count of contracts with at least one active slot at end of day (filter: between_max_value) + */ + active_contracts_between_max_value?: number; + /** + * Cumulative count of contracts with at least one active slot at end of day (filter: in_values) (comma-separated list) + */ + active_contracts_in_values?: string; + /** + * Cumulative count of contracts with at least one active slot at end of day (filter: not_in_values) (comma-separated list) + */ + active_contracts_not_in_values?: string; + /** + * The maximum number of fct_contract_storage_state_by_block_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctContractStorageStateByBlockDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_contract_storage_state_by_block_daily'; +}; + +export type FctContractStorageStateByBlockDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateByBlockDailyServiceListError = + FctContractStorageStateByBlockDailyServiceListErrors[keyof FctContractStorageStateByBlockDailyServiceListErrors]; + +export type FctContractStorageStateByBlockDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctContractStorageStateByBlockDailyResponse; +}; + +export type FctContractStorageStateByBlockDailyServiceListResponse = + FctContractStorageStateByBlockDailyServiceListResponses[keyof FctContractStorageStateByBlockDailyServiceListResponses]; + +export type FctContractStorageStateByBlockDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_contract_storage_state_by_block_daily/{day_start_date}'; +}; + +export type FctContractStorageStateByBlockDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateByBlockDailyServiceGetError = + FctContractStorageStateByBlockDailyServiceGetErrors[keyof FctContractStorageStateByBlockDailyServiceGetErrors]; + +export type FctContractStorageStateByBlockDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctContractStorageStateByBlockDailyResponse; +}; + +export type FctContractStorageStateByBlockDailyServiceGetResponse = + FctContractStorageStateByBlockDailyServiceGetResponses[keyof FctContractStorageStateByBlockDailyServiceGetResponses]; + +export type FctContractStorageStateByBlockHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative count of active storage slots at end of hour (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at end of hour (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes at end of hour (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes at end of hour (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * Cumulative count of contracts with at least one active slot at end of hour (filter: eq) + */ + active_contracts_eq?: number; + /** + * Cumulative count of contracts with at least one active slot at end of hour (filter: ne) + */ + active_contracts_ne?: number; + /** + * Cumulative count of contracts with at least one active slot at end of hour (filter: lt) + */ + active_contracts_lt?: number; + /** + * Cumulative count of contracts with at least one active slot at end of hour (filter: lte) + */ + active_contracts_lte?: number; + /** + * Cumulative count of contracts with at least one active slot at end of hour (filter: gt) + */ + active_contracts_gt?: number; + /** + * Cumulative count of contracts with at least one active slot at end of hour (filter: gte) + */ + active_contracts_gte?: number; + /** + * Cumulative count of contracts with at least one active slot at end of hour (filter: between_min) + */ + active_contracts_between_min?: number; + /** + * Cumulative count of contracts with at least one active slot at end of hour (filter: between_max_value) + */ + active_contracts_between_max_value?: number; + /** + * Cumulative count of contracts with at least one active slot at end of hour (filter: in_values) (comma-separated list) + */ + active_contracts_in_values?: string; + /** + * Cumulative count of contracts with at least one active slot at end of hour (filter: not_in_values) (comma-separated list) + */ + active_contracts_not_in_values?: string; + /** + * The maximum number of fct_contract_storage_state_by_block_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctContractStorageStateByBlockHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_contract_storage_state_by_block_hourly'; +}; + +export type FctContractStorageStateByBlockHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateByBlockHourlyServiceListError = + FctContractStorageStateByBlockHourlyServiceListErrors[keyof FctContractStorageStateByBlockHourlyServiceListErrors]; + +export type FctContractStorageStateByBlockHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctContractStorageStateByBlockHourlyResponse; +}; + +export type FctContractStorageStateByBlockHourlyServiceListResponse = + FctContractStorageStateByBlockHourlyServiceListResponses[keyof FctContractStorageStateByBlockHourlyServiceListResponses]; + +export type FctContractStorageStateByBlockHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_contract_storage_state_by_block_hourly/{hour_start_date_time}'; +}; + +export type FctContractStorageStateByBlockHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateByBlockHourlyServiceGetError = + FctContractStorageStateByBlockHourlyServiceGetErrors[keyof FctContractStorageStateByBlockHourlyServiceGetErrors]; + +export type FctContractStorageStateByBlockHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctContractStorageStateByBlockHourlyResponse; +}; + +export type FctContractStorageStateByBlockHourlyServiceGetResponse = + FctContractStorageStateByBlockHourlyServiceGetResponses[keyof FctContractStorageStateByBlockHourlyServiceGetResponses]; + +export type FctContractStorageStateWithExpiryByAddressDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Active storage slots in this contract at end of day (0 if expired) (filter: eq) + */ + active_slots_eq?: number; + /** + * Active storage slots in this contract at end of day (0 if expired) (filter: ne) + */ + active_slots_ne?: number; + /** + * Active storage slots in this contract at end of day (0 if expired) (filter: lt) + */ + active_slots_lt?: number; + /** + * Active storage slots in this contract at end of day (0 if expired) (filter: lte) + */ + active_slots_lte?: number; + /** + * Active storage slots in this contract at end of day (0 if expired) (filter: gt) + */ + active_slots_gt?: number; + /** + * Active storage slots in this contract at end of day (0 if expired) (filter: gte) + */ + active_slots_gte?: number; + /** + * Active storage slots in this contract at end of day (0 if expired) (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Active storage slots in this contract at end of day (0 if expired) (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Active storage slots in this contract at end of day (0 if expired) (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Active storage slots in this contract at end of day (0 if expired) (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Effective bytes at end of day (0 if expired) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Effective bytes at end of day (0 if expired) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Effective bytes at end of day (0 if expired) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Effective bytes at end of day (0 if expired) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Effective bytes at end of day (0 if expired) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Effective bytes at end of day (0 if expired) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Effective bytes at end of day (0 if expired) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Effective bytes at end of day (0 if expired) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Effective bytes at end of day (0 if expired) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Effective bytes at end of day (0 if expired) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of fct_contract_storage_state_with_expiry_by_address_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctContractStorageStateWithExpiryByAddressDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_contract_storage_state_with_expiry_by_address_daily'; +}; + +export type FctContractStorageStateWithExpiryByAddressDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateWithExpiryByAddressDailyServiceListError = + FctContractStorageStateWithExpiryByAddressDailyServiceListErrors[keyof FctContractStorageStateWithExpiryByAddressDailyServiceListErrors]; + +export type FctContractStorageStateWithExpiryByAddressDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctContractStorageStateWithExpiryByAddressDailyResponse; +}; + +export type FctContractStorageStateWithExpiryByAddressDailyServiceListResponse = + FctContractStorageStateWithExpiryByAddressDailyServiceListResponses[keyof FctContractStorageStateWithExpiryByAddressDailyServiceListResponses]; + +export type FctContractStorageStateWithExpiryByAddressDailyServiceGetData = { + body?: never; + path: { + /** + * The contract address + */ + address: string; + }; + query?: never; + url: '/api/v1/fct_contract_storage_state_with_expiry_by_address_daily/{address}'; +}; + +export type FctContractStorageStateWithExpiryByAddressDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateWithExpiryByAddressDailyServiceGetError = + FctContractStorageStateWithExpiryByAddressDailyServiceGetErrors[keyof FctContractStorageStateWithExpiryByAddressDailyServiceGetErrors]; + +export type FctContractStorageStateWithExpiryByAddressDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctContractStorageStateWithExpiryByAddressDailyResponse; +}; + +export type FctContractStorageStateWithExpiryByAddressDailyServiceGetResponse = + FctContractStorageStateWithExpiryByAddressDailyServiceGetResponses[keyof FctContractStorageStateWithExpiryByAddressDailyServiceGetResponses]; + +export type FctContractStorageStateWithExpiryByAddressHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Active storage slots in this contract at end of hour (0 if expired) (filter: eq) + */ + active_slots_eq?: number; + /** + * Active storage slots in this contract at end of hour (0 if expired) (filter: ne) + */ + active_slots_ne?: number; + /** + * Active storage slots in this contract at end of hour (0 if expired) (filter: lt) + */ + active_slots_lt?: number; + /** + * Active storage slots in this contract at end of hour (0 if expired) (filter: lte) + */ + active_slots_lte?: number; + /** + * Active storage slots in this contract at end of hour (0 if expired) (filter: gt) + */ + active_slots_gt?: number; + /** + * Active storage slots in this contract at end of hour (0 if expired) (filter: gte) + */ + active_slots_gte?: number; + /** + * Active storage slots in this contract at end of hour (0 if expired) (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Active storage slots in this contract at end of hour (0 if expired) (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Active storage slots in this contract at end of hour (0 if expired) (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Active storage slots in this contract at end of hour (0 if expired) (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Effective bytes at end of hour (0 if expired) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Effective bytes at end of hour (0 if expired) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Effective bytes at end of hour (0 if expired) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Effective bytes at end of hour (0 if expired) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Effective bytes at end of hour (0 if expired) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Effective bytes at end of hour (0 if expired) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Effective bytes at end of hour (0 if expired) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Effective bytes at end of hour (0 if expired) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Effective bytes at end of hour (0 if expired) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Effective bytes at end of hour (0 if expired) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of fct_contract_storage_state_with_expiry_by_address_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctContractStorageStateWithExpiryByAddressHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_contract_storage_state_with_expiry_by_address_hourly'; +}; + +export type FctContractStorageStateWithExpiryByAddressHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateWithExpiryByAddressHourlyServiceListError = + FctContractStorageStateWithExpiryByAddressHourlyServiceListErrors[keyof FctContractStorageStateWithExpiryByAddressHourlyServiceListErrors]; + +export type FctContractStorageStateWithExpiryByAddressHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctContractStorageStateWithExpiryByAddressHourlyResponse; +}; + +export type FctContractStorageStateWithExpiryByAddressHourlyServiceListResponse = + FctContractStorageStateWithExpiryByAddressHourlyServiceListResponses[keyof FctContractStorageStateWithExpiryByAddressHourlyServiceListResponses]; + +export type FctContractStorageStateWithExpiryByAddressHourlyServiceGetData = { + body?: never; + path: { + /** + * The contract address + */ + address: string; + }; + query?: never; + url: '/api/v1/fct_contract_storage_state_with_expiry_by_address_hourly/{address}'; +}; + +export type FctContractStorageStateWithExpiryByAddressHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateWithExpiryByAddressHourlyServiceGetError = + FctContractStorageStateWithExpiryByAddressHourlyServiceGetErrors[keyof FctContractStorageStateWithExpiryByAddressHourlyServiceGetErrors]; + +export type FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctContractStorageStateWithExpiryByAddressHourlyResponse; +}; + +export type FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse = + FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponses[keyof FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponses]; + +export type FctContractStorageStateWithExpiryByBlockDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total active storage slots at end of day (with expiry applied) (filter: eq) + */ + active_slots_eq?: number; + /** + * Total active storage slots at end of day (with expiry applied) (filter: ne) + */ + active_slots_ne?: number; + /** + * Total active storage slots at end of day (with expiry applied) (filter: lt) + */ + active_slots_lt?: number; + /** + * Total active storage slots at end of day (with expiry applied) (filter: lte) + */ + active_slots_lte?: number; + /** + * Total active storage slots at end of day (with expiry applied) (filter: gt) + */ + active_slots_gt?: number; + /** + * Total active storage slots at end of day (with expiry applied) (filter: gte) + */ + active_slots_gte?: number; + /** + * Total active storage slots at end of day (with expiry applied) (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Total active storage slots at end of day (with expiry applied) (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Total active storage slots at end of day (with expiry applied) (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Total active storage slots at end of day (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Total effective bytes at end of day (with expiry applied) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Total effective bytes at end of day (with expiry applied) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Total effective bytes at end of day (with expiry applied) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Total effective bytes at end of day (with expiry applied) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Total effective bytes at end of day (with expiry applied) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Total effective bytes at end of day (with expiry applied) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Total effective bytes at end of day (with expiry applied) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Total effective bytes at end of day (with expiry applied) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Total effective bytes at end of day (with expiry applied) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Total effective bytes at end of day (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * Count of contracts with active_slots > 0 at end of day (filter: eq) + */ + active_contracts_eq?: number; + /** + * Count of contracts with active_slots > 0 at end of day (filter: ne) + */ + active_contracts_ne?: number; + /** + * Count of contracts with active_slots > 0 at end of day (filter: lt) + */ + active_contracts_lt?: number; + /** + * Count of contracts with active_slots > 0 at end of day (filter: lte) + */ + active_contracts_lte?: number; + /** + * Count of contracts with active_slots > 0 at end of day (filter: gt) + */ + active_contracts_gt?: number; + /** + * Count of contracts with active_slots > 0 at end of day (filter: gte) + */ + active_contracts_gte?: number; + /** + * Count of contracts with active_slots > 0 at end of day (filter: between_min) + */ + active_contracts_between_min?: number; + /** + * Count of contracts with active_slots > 0 at end of day (filter: between_max_value) + */ + active_contracts_between_max_value?: number; + /** + * Count of contracts with active_slots > 0 at end of day (filter: in_values) (comma-separated list) + */ + active_contracts_in_values?: string; + /** + * Count of contracts with active_slots > 0 at end of day (filter: not_in_values) (comma-separated list) + */ + active_contracts_not_in_values?: string; + /** + * The maximum number of fct_contract_storage_state_with_expiry_by_block_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctContractStorageStateWithExpiryByBlockDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_contract_storage_state_with_expiry_by_block_daily'; +}; + +export type FctContractStorageStateWithExpiryByBlockDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateWithExpiryByBlockDailyServiceListError = + FctContractStorageStateWithExpiryByBlockDailyServiceListErrors[keyof FctContractStorageStateWithExpiryByBlockDailyServiceListErrors]; + +export type FctContractStorageStateWithExpiryByBlockDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctContractStorageStateWithExpiryByBlockDailyResponse; +}; + +export type FctContractStorageStateWithExpiryByBlockDailyServiceListResponse = + FctContractStorageStateWithExpiryByBlockDailyServiceListResponses[keyof FctContractStorageStateWithExpiryByBlockDailyServiceListResponses]; + +export type FctContractStorageStateWithExpiryByBlockDailyServiceGetData = { + body?: never; + path: { + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy: string; + }; + query?: never; + url: '/api/v1/fct_contract_storage_state_with_expiry_by_block_daily/{expiry_policy}'; +}; + +export type FctContractStorageStateWithExpiryByBlockDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateWithExpiryByBlockDailyServiceGetError = + FctContractStorageStateWithExpiryByBlockDailyServiceGetErrors[keyof FctContractStorageStateWithExpiryByBlockDailyServiceGetErrors]; + +export type FctContractStorageStateWithExpiryByBlockDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctContractStorageStateWithExpiryByBlockDailyResponse; +}; + +export type FctContractStorageStateWithExpiryByBlockDailyServiceGetResponse = + FctContractStorageStateWithExpiryByBlockDailyServiceGetResponses[keyof FctContractStorageStateWithExpiryByBlockDailyServiceGetResponses]; + +export type FctContractStorageStateWithExpiryByBlockHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total active storage slots at end of hour (with expiry applied) (filter: eq) + */ + active_slots_eq?: number; + /** + * Total active storage slots at end of hour (with expiry applied) (filter: ne) + */ + active_slots_ne?: number; + /** + * Total active storage slots at end of hour (with expiry applied) (filter: lt) + */ + active_slots_lt?: number; + /** + * Total active storage slots at end of hour (with expiry applied) (filter: lte) + */ + active_slots_lte?: number; + /** + * Total active storage slots at end of hour (with expiry applied) (filter: gt) + */ + active_slots_gt?: number; + /** + * Total active storage slots at end of hour (with expiry applied) (filter: gte) + */ + active_slots_gte?: number; + /** + * Total active storage slots at end of hour (with expiry applied) (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Total active storage slots at end of hour (with expiry applied) (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Total active storage slots at end of hour (with expiry applied) (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Total active storage slots at end of hour (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Total effective bytes at end of hour (with expiry applied) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Total effective bytes at end of hour (with expiry applied) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Total effective bytes at end of hour (with expiry applied) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Total effective bytes at end of hour (with expiry applied) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Total effective bytes at end of hour (with expiry applied) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Total effective bytes at end of hour (with expiry applied) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Total effective bytes at end of hour (with expiry applied) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Total effective bytes at end of hour (with expiry applied) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Total effective bytes at end of hour (with expiry applied) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Total effective bytes at end of hour (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * Count of contracts with active_slots > 0 at end of hour (filter: eq) + */ + active_contracts_eq?: number; + /** + * Count of contracts with active_slots > 0 at end of hour (filter: ne) + */ + active_contracts_ne?: number; + /** + * Count of contracts with active_slots > 0 at end of hour (filter: lt) + */ + active_contracts_lt?: number; + /** + * Count of contracts with active_slots > 0 at end of hour (filter: lte) + */ + active_contracts_lte?: number; + /** + * Count of contracts with active_slots > 0 at end of hour (filter: gt) + */ + active_contracts_gt?: number; + /** + * Count of contracts with active_slots > 0 at end of hour (filter: gte) + */ + active_contracts_gte?: number; + /** + * Count of contracts with active_slots > 0 at end of hour (filter: between_min) + */ + active_contracts_between_min?: number; + /** + * Count of contracts with active_slots > 0 at end of hour (filter: between_max_value) + */ + active_contracts_between_max_value?: number; + /** + * Count of contracts with active_slots > 0 at end of hour (filter: in_values) (comma-separated list) + */ + active_contracts_in_values?: string; + /** + * Count of contracts with active_slots > 0 at end of hour (filter: not_in_values) (comma-separated list) + */ + active_contracts_not_in_values?: string; + /** + * The maximum number of fct_contract_storage_state_with_expiry_by_block_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctContractStorageStateWithExpiryByBlockHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_contract_storage_state_with_expiry_by_block_hourly'; +}; + +export type FctContractStorageStateWithExpiryByBlockHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateWithExpiryByBlockHourlyServiceListError = + FctContractStorageStateWithExpiryByBlockHourlyServiceListErrors[keyof FctContractStorageStateWithExpiryByBlockHourlyServiceListErrors]; + +export type FctContractStorageStateWithExpiryByBlockHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctContractStorageStateWithExpiryByBlockHourlyResponse; +}; + +export type FctContractStorageStateWithExpiryByBlockHourlyServiceListResponse = + FctContractStorageStateWithExpiryByBlockHourlyServiceListResponses[keyof FctContractStorageStateWithExpiryByBlockHourlyServiceListResponses]; + +export type FctContractStorageStateWithExpiryByBlockHourlyServiceGetData = { + body?: never; + path: { + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy: string; + }; + query?: never; + url: '/api/v1/fct_contract_storage_state_with_expiry_by_block_hourly/{expiry_policy}'; +}; + +export type FctContractStorageStateWithExpiryByBlockHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctContractStorageStateWithExpiryByBlockHourlyServiceGetError = + FctContractStorageStateWithExpiryByBlockHourlyServiceGetErrors[keyof FctContractStorageStateWithExpiryByBlockHourlyServiceGetErrors]; + +export type FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctContractStorageStateWithExpiryByBlockHourlyResponse; +}; + +export type FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse = + FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponses[keyof FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponses]; + +export type FctDataColumnAvailabilityByEpochServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Column index (0-127) (filter: eq) + */ + column_index_eq?: number; + /** + * Column index (0-127) (filter: ne) + */ + column_index_ne?: number; + /** + * Column index (0-127) (filter: lt) + */ + column_index_lt?: number; + /** + * Column index (0-127) (filter: lte) + */ + column_index_lte?: number; + /** + * Column index (0-127) (filter: gt) + */ + column_index_gt?: number; + /** + * Column index (0-127) (filter: gte) + */ + column_index_gte?: number; + /** + * Column index (0-127) (filter: between_min) + */ + column_index_between_min?: number; + /** + * Column index (0-127) (filter: between_max_value) + */ + column_index_between_max_value?: number; + /** + * Column index (0-127) (filter: in_values) (comma-separated list) + */ + column_index_in_values?: string; + /** + * Column index (0-127) (filter: not_in_values) (comma-separated list) + */ + column_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Epoch number (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * Earliest slot start time in this epoch (used for CBT position tracking) (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * Earliest slot start time in this epoch (used for CBT position tracking) (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * Earliest slot start time in this epoch (used for CBT position tracking) (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * Earliest slot start time in this epoch (used for CBT position tracking) (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * Earliest slot start time in this epoch (used for CBT position tracking) (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * Earliest slot start time in this epoch (used for CBT position tracking) (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * Earliest slot start time in this epoch (used for CBT position tracking) (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * Earliest slot start time in this epoch (used for CBT position tracking) (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * Earliest slot start time in this epoch (used for CBT position tracking) (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * Earliest slot start time in this epoch (used for CBT position tracking) (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Number of slots in this epoch aggregation (filter: eq) + */ + slot_count_eq?: number; + /** + * Number of slots in this epoch aggregation (filter: ne) + */ + slot_count_ne?: number; + /** + * Number of slots in this epoch aggregation (filter: lt) + */ + slot_count_lt?: number; + /** + * Number of slots in this epoch aggregation (filter: lte) + */ + slot_count_lte?: number; + /** + * Number of slots in this epoch aggregation (filter: gt) + */ + slot_count_gt?: number; + /** + * Number of slots in this epoch aggregation (filter: gte) + */ + slot_count_gte?: number; + /** + * Number of slots in this epoch aggregation (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Number of slots in this epoch aggregation (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Number of slots in this epoch aggregation (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Number of slots in this epoch aggregation (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * Total probe count across all slots (filter: eq) + */ + total_probe_count_eq?: number; + /** + * Total probe count across all slots (filter: ne) + */ + total_probe_count_ne?: number; + /** + * Total probe count across all slots (filter: lt) + */ + total_probe_count_lt?: number; + /** + * Total probe count across all slots (filter: lte) + */ + total_probe_count_lte?: number; + /** + * Total probe count across all slots (filter: gt) + */ + total_probe_count_gt?: number; + /** + * Total probe count across all slots (filter: gte) + */ + total_probe_count_gte?: number; + /** + * Total probe count across all slots (filter: between_min) + */ + total_probe_count_between_min?: number; + /** + * Total probe count across all slots (filter: between_max_value) + */ + total_probe_count_between_max_value?: number; + /** + * Total probe count across all slots (filter: in_values) (comma-separated list) + */ + total_probe_count_in_values?: string; + /** + * Total probe count across all slots (filter: not_in_values) (comma-separated list) + */ + total_probe_count_not_in_values?: string; + /** + * Total successful probes across all slots (filter: eq) + */ + total_success_count_eq?: number; + /** + * Total successful probes across all slots (filter: ne) + */ + total_success_count_ne?: number; + /** + * Total successful probes across all slots (filter: lt) + */ + total_success_count_lt?: number; + /** + * Total successful probes across all slots (filter: lte) + */ + total_success_count_lte?: number; + /** + * Total successful probes across all slots (filter: gt) + */ + total_success_count_gt?: number; + /** + * Total successful probes across all slots (filter: gte) + */ + total_success_count_gte?: number; + /** + * Total successful probes across all slots (filter: between_min) + */ + total_success_count_between_min?: number; + /** + * Total successful probes across all slots (filter: between_max_value) + */ + total_success_count_between_max_value?: number; + /** + * Total successful probes across all slots (filter: in_values) (comma-separated list) + */ + total_success_count_in_values?: string; + /** + * Total successful probes across all slots (filter: not_in_values) (comma-separated list) + */ + total_success_count_not_in_values?: string; + /** + * Total failed probes across all slots (result = failure) (filter: eq) + */ + total_failure_count_eq?: number; + /** + * Total failed probes across all slots (result = failure) (filter: ne) + */ + total_failure_count_ne?: number; + /** + * Total failed probes across all slots (result = failure) (filter: lt) + */ + total_failure_count_lt?: number; + /** + * Total failed probes across all slots (result = failure) (filter: lte) + */ + total_failure_count_lte?: number; + /** + * Total failed probes across all slots (result = failure) (filter: gt) + */ + total_failure_count_gt?: number; + /** + * Total failed probes across all slots (result = failure) (filter: gte) + */ + total_failure_count_gte?: number; + /** + * Total failed probes across all slots (result = failure) (filter: between_min) + */ + total_failure_count_between_min?: number; + /** + * Total failed probes across all slots (result = failure) (filter: between_max_value) + */ + total_failure_count_between_max_value?: number; + /** + * Total failed probes across all slots (result = failure) (filter: in_values) (comma-separated list) + */ + total_failure_count_in_values?: string; + /** + * Total failed probes across all slots (result = failure) (filter: not_in_values) (comma-separated list) + */ + total_failure_count_not_in_values?: string; + /** + * Total missing probes across all slots (result = missing) (filter: eq) + */ + total_missing_count_eq?: number; + /** + * Total missing probes across all slots (result = missing) (filter: ne) + */ + total_missing_count_ne?: number; + /** + * Total missing probes across all slots (result = missing) (filter: lt) + */ + total_missing_count_lt?: number; + /** + * Total missing probes across all slots (result = missing) (filter: lte) + */ + total_missing_count_lte?: number; + /** + * Total missing probes across all slots (result = missing) (filter: gt) + */ + total_missing_count_gt?: number; + /** + * Total missing probes across all slots (result = missing) (filter: gte) + */ + total_missing_count_gte?: number; + /** + * Total missing probes across all slots (result = missing) (filter: between_min) + */ + total_missing_count_between_min?: number; + /** + * Total missing probes across all slots (result = missing) (filter: between_max_value) + */ + total_missing_count_between_max_value?: number; + /** + * Total missing probes across all slots (result = missing) (filter: in_values) (comma-separated list) + */ + total_missing_count_in_values?: string; + /** + * Total missing probes across all slots (result = missing) (filter: not_in_values) (comma-separated list) + */ + total_missing_count_not_in_values?: string; + /** + * Filter avg_availability_pct using value + */ + avg_availability_pct_value?: number; + /** + * Filter min_availability_pct using value + */ + min_availability_pct_value?: number; + /** + * Filter max_availability_pct using value + */ + max_availability_pct_value?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: eq) + */ + min_response_time_ms_eq?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: ne) + */ + min_response_time_ms_ne?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: lt) + */ + min_response_time_ms_lt?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: lte) + */ + min_response_time_ms_lte?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: gt) + */ + min_response_time_ms_gt?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: gte) + */ + min_response_time_ms_gte?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_min) + */ + min_response_time_ms_between_min?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_max_value) + */ + min_response_time_ms_between_max_value?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + min_response_time_ms_in_values?: string; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + min_response_time_ms_not_in_values?: string; + /** + * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: eq) + */ + avg_p50_response_time_ms_eq?: number; + /** + * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: ne) + */ + avg_p50_response_time_ms_ne?: number; + /** + * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: lt) + */ + avg_p50_response_time_ms_lt?: number; + /** + * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: lte) + */ + avg_p50_response_time_ms_lte?: number; + /** + * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: gt) + */ + avg_p50_response_time_ms_gt?: number; + /** + * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: gte) + */ + avg_p50_response_time_ms_gte?: number; + /** + * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: between_min) + */ + avg_p50_response_time_ms_between_min?: number; + /** + * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: between_max_value) + */ + avg_p50_response_time_ms_between_max_value?: number; + /** + * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + avg_p50_response_time_ms_in_values?: string; + /** + * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + avg_p50_response_time_ms_not_in_values?: string; + /** + * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: eq) + */ + avg_p95_response_time_ms_eq?: number; + /** + * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: ne) + */ + avg_p95_response_time_ms_ne?: number; + /** + * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: lt) + */ + avg_p95_response_time_ms_lt?: number; + /** + * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: lte) + */ + avg_p95_response_time_ms_lte?: number; + /** + * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: gt) + */ + avg_p95_response_time_ms_gt?: number; + /** + * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: gte) + */ + avg_p95_response_time_ms_gte?: number; + /** + * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: between_min) + */ + avg_p95_response_time_ms_between_min?: number; + /** + * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: between_max_value) + */ + avg_p95_response_time_ms_between_max_value?: number; + /** + * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + avg_p95_response_time_ms_in_values?: string; + /** + * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + avg_p95_response_time_ms_not_in_values?: string; + /** + * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: eq) + */ + avg_p99_response_time_ms_eq?: number; + /** + * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: ne) + */ + avg_p99_response_time_ms_ne?: number; + /** + * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: lt) + */ + avg_p99_response_time_ms_lt?: number; + /** + * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: lte) + */ + avg_p99_response_time_ms_lte?: number; + /** + * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: gt) + */ + avg_p99_response_time_ms_gt?: number; + /** + * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: gte) + */ + avg_p99_response_time_ms_gte?: number; + /** + * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: between_min) + */ + avg_p99_response_time_ms_between_min?: number; + /** + * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: between_max_value) + */ + avg_p99_response_time_ms_between_max_value?: number; + /** + * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + avg_p99_response_time_ms_in_values?: string; + /** + * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + avg_p99_response_time_ms_not_in_values?: string; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: eq) + */ + max_response_time_ms_eq?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: ne) + */ + max_response_time_ms_ne?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: lt) + */ + max_response_time_ms_lt?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: lte) + */ + max_response_time_ms_lte?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: gt) + */ + max_response_time_ms_gt?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: gte) + */ + max_response_time_ms_gte?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_min) + */ + max_response_time_ms_between_min?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_max_value) + */ + max_response_time_ms_between_max_value?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + max_response_time_ms_in_values?: string; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + max_response_time_ms_not_in_values?: string; + /** + * Maximum blob count observed in this epoch (filter: eq) + */ + max_blob_count_eq?: number; + /** + * Maximum blob count observed in this epoch (filter: ne) + */ + max_blob_count_ne?: number; + /** + * Maximum blob count observed in this epoch (filter: lt) + */ + max_blob_count_lt?: number; + /** + * Maximum blob count observed in this epoch (filter: lte) + */ + max_blob_count_lte?: number; + /** + * Maximum blob count observed in this epoch (filter: gt) + */ + max_blob_count_gt?: number; + /** + * Maximum blob count observed in this epoch (filter: gte) + */ + max_blob_count_gte?: number; + /** + * Maximum blob count observed in this epoch (filter: between_min) + */ + max_blob_count_between_min?: number; + /** + * Maximum blob count observed in this epoch (filter: between_max_value) + */ + max_blob_count_between_max_value?: number; + /** + * Maximum blob count observed in this epoch (filter: in_values) (comma-separated list) + */ + max_blob_count_in_values?: string; + /** + * Maximum blob count observed in this epoch (filter: not_in_values) (comma-separated list) + */ + max_blob_count_not_in_values?: string; + /** + * The maximum number of fct_data_column_availability_by_epoch to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctDataColumnAvailabilityByEpoch` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_data_column_availability_by_epoch'; +}; + +export type FctDataColumnAvailabilityByEpochServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctDataColumnAvailabilityByEpochServiceListError = + FctDataColumnAvailabilityByEpochServiceListErrors[keyof FctDataColumnAvailabilityByEpochServiceListErrors]; + +export type FctDataColumnAvailabilityByEpochServiceListResponses = { + /** + * OK + */ + 200: ListFctDataColumnAvailabilityByEpochResponse; +}; + +export type FctDataColumnAvailabilityByEpochServiceListResponse = + FctDataColumnAvailabilityByEpochServiceListResponses[keyof FctDataColumnAvailabilityByEpochServiceListResponses]; + +export type FctDataColumnAvailabilityByEpochServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_data_column_availability_by_epoch/{epoch_start_date_time}'; +}; + +export type FctDataColumnAvailabilityByEpochServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctDataColumnAvailabilityByEpochServiceGetError = + FctDataColumnAvailabilityByEpochServiceGetErrors[keyof FctDataColumnAvailabilityByEpochServiceGetErrors]; + +export type FctDataColumnAvailabilityByEpochServiceGetResponses = { + /** + * OK + */ + 200: GetFctDataColumnAvailabilityByEpochResponse; +}; + +export type FctDataColumnAvailabilityByEpochServiceGetResponse = + FctDataColumnAvailabilityByEpochServiceGetResponses[keyof FctDataColumnAvailabilityByEpochServiceGetResponses]; + +export type FctDataColumnAvailabilityBySlotServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Column index being probed (0-127) (filter: eq) + */ + column_index_eq?: number; + /** + * Column index being probed (0-127) (filter: ne) + */ + column_index_ne?: number; + /** + * Column index being probed (0-127) (filter: lt) + */ + column_index_lt?: number; + /** + * Column index being probed (0-127) (filter: lte) + */ + column_index_lte?: number; + /** + * Column index being probed (0-127) (filter: gt) + */ + column_index_gt?: number; + /** + * Column index being probed (0-127) (filter: gte) + */ + column_index_gte?: number; + /** + * Column index being probed (0-127) (filter: between_min) + */ + column_index_between_min?: number; + /** + * Column index being probed (0-127) (filter: between_max_value) + */ + column_index_between_max_value?: number; + /** + * Column index being probed (0-127) (filter: in_values) (comma-separated list) + */ + column_index_in_values?: string; + /** + * Column index being probed (0-127) (filter: not_in_values) (comma-separated list) + */ + column_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number being probed (filter: eq) + */ + slot_eq?: number; + /** + * Slot number being probed (filter: ne) + */ + slot_ne?: number; + /** + * Slot number being probed (filter: lt) + */ + slot_lt?: number; + /** + * Slot number being probed (filter: lte) + */ + slot_lte?: number; + /** + * Slot number being probed (filter: gt) + */ + slot_gt?: number; + /** + * Slot number being probed (filter: gte) + */ + slot_gte?: number; + /** + * Slot number being probed (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number being probed (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number being probed (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number being probed (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The wallclock slot when the request was sent (filter: eq) + */ + wallclock_request_slot_eq?: number; + /** + * The wallclock slot when the request was sent (filter: ne) + */ + wallclock_request_slot_ne?: number; + /** + * The wallclock slot when the request was sent (filter: lt) + */ + wallclock_request_slot_lt?: number; + /** + * The wallclock slot when the request was sent (filter: lte) + */ + wallclock_request_slot_lte?: number; + /** + * The wallclock slot when the request was sent (filter: gt) + */ + wallclock_request_slot_gt?: number; + /** + * The wallclock slot when the request was sent (filter: gte) + */ + wallclock_request_slot_gte?: number; + /** + * The wallclock slot when the request was sent (filter: between_min) + */ + wallclock_request_slot_between_min?: number; + /** + * The wallclock slot when the request was sent (filter: between_max_value) + */ + wallclock_request_slot_between_max_value?: number; + /** + * The wallclock slot when the request was sent (filter: in_values) (comma-separated list) + */ + wallclock_request_slot_in_values?: string; + /** + * The wallclock slot when the request was sent (filter: not_in_values) (comma-separated list) + */ + wallclock_request_slot_not_in_values?: string; + /** + * The start time for the slot when the request was sent (filter: eq) + */ + wallclock_request_slot_start_date_time_eq?: number; + /** + * The start time for the slot when the request was sent (filter: ne) + */ + wallclock_request_slot_start_date_time_ne?: number; + /** + * The start time for the slot when the request was sent (filter: lt) + */ + wallclock_request_slot_start_date_time_lt?: number; + /** + * The start time for the slot when the request was sent (filter: lte) + */ + wallclock_request_slot_start_date_time_lte?: number; + /** + * The start time for the slot when the request was sent (filter: gt) + */ + wallclock_request_slot_start_date_time_gt?: number; + /** + * The start time for the slot when the request was sent (filter: gte) + */ + wallclock_request_slot_start_date_time_gte?: number; + /** + * The start time for the slot when the request was sent (filter: between_min) + */ + wallclock_request_slot_start_date_time_between_min?: number; + /** + * The start time for the slot when the request was sent (filter: between_max_value) + */ + wallclock_request_slot_start_date_time_between_max_value?: number; + /** + * The start time for the slot when the request was sent (filter: in_values) (comma-separated list) + */ + wallclock_request_slot_start_date_time_in_values?: string; + /** + * The start time for the slot when the request was sent (filter: not_in_values) (comma-separated list) + */ + wallclock_request_slot_start_date_time_not_in_values?: string; + /** + * The wallclock epoch when the request was sent (filter: eq) + */ + wallclock_request_epoch_eq?: number; + /** + * The wallclock epoch when the request was sent (filter: ne) + */ + wallclock_request_epoch_ne?: number; + /** + * The wallclock epoch when the request was sent (filter: lt) + */ + wallclock_request_epoch_lt?: number; + /** + * The wallclock epoch when the request was sent (filter: lte) + */ + wallclock_request_epoch_lte?: number; + /** + * The wallclock epoch when the request was sent (filter: gt) + */ + wallclock_request_epoch_gt?: number; + /** + * The wallclock epoch when the request was sent (filter: gte) + */ + wallclock_request_epoch_gte?: number; + /** + * The wallclock epoch when the request was sent (filter: between_min) + */ + wallclock_request_epoch_between_min?: number; + /** + * The wallclock epoch when the request was sent (filter: between_max_value) + */ + wallclock_request_epoch_between_max_value?: number; + /** + * The wallclock epoch when the request was sent (filter: in_values) (comma-separated list) + */ + wallclock_request_epoch_in_values?: string; + /** + * The wallclock epoch when the request was sent (filter: not_in_values) (comma-separated list) + */ + wallclock_request_epoch_not_in_values?: string; + /** + * The start time for the wallclock epoch when the request was sent (filter: eq) + */ + wallclock_request_epoch_start_date_time_eq?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: ne) + */ + wallclock_request_epoch_start_date_time_ne?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: lt) + */ + wallclock_request_epoch_start_date_time_lt?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: lte) + */ + wallclock_request_epoch_start_date_time_lte?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: gt) + */ + wallclock_request_epoch_start_date_time_gt?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: gte) + */ + wallclock_request_epoch_start_date_time_gte?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: between_min) + */ + wallclock_request_epoch_start_date_time_between_min?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: between_max_value) + */ + wallclock_request_epoch_start_date_time_between_max_value?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: in_values) (comma-separated list) + */ + wallclock_request_epoch_start_date_time_in_values?: string; + /** + * The start time for the wallclock epoch when the request was sent (filter: not_in_values) (comma-separated list) + */ + wallclock_request_epoch_start_date_time_not_in_values?: string; + /** + * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: eq) + */ + beacon_block_root_eq?: string; + /** + * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: ne) + */ + beacon_block_root_ne?: string; + /** + * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: contains) + */ + beacon_block_root_contains?: string; + /** + * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: starts_with) + */ + beacon_block_root_starts_with?: string; + /** + * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: ends_with) + */ + beacon_block_root_ends_with?: string; + /** + * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: like) + */ + beacon_block_root_like?: string; + /** + * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: not_like) + */ + beacon_block_root_not_like?: string; + /** + * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: in_values) (comma-separated list) + */ + beacon_block_root_in_values?: string; + /** + * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: not_in_values) (comma-separated list) + */ + beacon_block_root_not_in_values?: string; + /** + * Number of unique block roots observed (>1 indicates reorg/fork) (filter: eq) + */ + beacon_block_root_variants_eq?: number; + /** + * Number of unique block roots observed (>1 indicates reorg/fork) (filter: ne) + */ + beacon_block_root_variants_ne?: number; + /** + * Number of unique block roots observed (>1 indicates reorg/fork) (filter: lt) + */ + beacon_block_root_variants_lt?: number; + /** + * Number of unique block roots observed (>1 indicates reorg/fork) (filter: lte) + */ + beacon_block_root_variants_lte?: number; + /** + * Number of unique block roots observed (>1 indicates reorg/fork) (filter: gt) + */ + beacon_block_root_variants_gt?: number; + /** + * Number of unique block roots observed (>1 indicates reorg/fork) (filter: gte) + */ + beacon_block_root_variants_gte?: number; + /** + * Number of unique block roots observed (>1 indicates reorg/fork) (filter: between_min) + */ + beacon_block_root_variants_between_min?: number; + /** + * Number of unique block roots observed (>1 indicates reorg/fork) (filter: between_max_value) + */ + beacon_block_root_variants_between_max_value?: number; + /** + * Number of unique block roots observed (>1 indicates reorg/fork) (filter: in_values) (comma-separated list) + */ + beacon_block_root_variants_in_values?: string; + /** + * Number of unique block roots observed (>1 indicates reorg/fork) (filter: not_in_values) (comma-separated list) + */ + beacon_block_root_variants_not_in_values?: string; + /** + * Number of blobs in the slot (max column_rows_count) (filter: eq) + */ + blob_count_eq?: number; + /** + * Number of blobs in the slot (max column_rows_count) (filter: ne) + */ + blob_count_ne?: number; + /** + * Number of blobs in the slot (max column_rows_count) (filter: lt) + */ + blob_count_lt?: number; + /** + * Number of blobs in the slot (max column_rows_count) (filter: lte) + */ + blob_count_lte?: number; + /** + * Number of blobs in the slot (max column_rows_count) (filter: gt) + */ + blob_count_gt?: number; + /** + * Number of blobs in the slot (max column_rows_count) (filter: gte) + */ + blob_count_gte?: number; + /** + * Number of blobs in the slot (max column_rows_count) (filter: between_min) + */ + blob_count_between_min?: number; + /** + * Number of blobs in the slot (max column_rows_count) (filter: between_max_value) + */ + blob_count_between_max_value?: number; + /** + * Number of blobs in the slot (max column_rows_count) (filter: in_values) (comma-separated list) + */ + blob_count_in_values?: string; + /** + * Number of blobs in the slot (max column_rows_count) (filter: not_in_values) (comma-separated list) + */ + blob_count_not_in_values?: string; + /** + * Count of successful probes (filter: eq) + */ + success_count_eq?: number; + /** + * Count of successful probes (filter: ne) + */ + success_count_ne?: number; + /** + * Count of successful probes (filter: lt) + */ + success_count_lt?: number; + /** + * Count of successful probes (filter: lte) + */ + success_count_lte?: number; + /** + * Count of successful probes (filter: gt) + */ + success_count_gt?: number; + /** + * Count of successful probes (filter: gte) + */ + success_count_gte?: number; + /** + * Count of successful probes (filter: between_min) + */ + success_count_between_min?: number; + /** + * Count of successful probes (filter: between_max_value) + */ + success_count_between_max_value?: number; + /** + * Count of successful probes (filter: in_values) (comma-separated list) + */ + success_count_in_values?: string; + /** + * Count of successful probes (filter: not_in_values) (comma-separated list) + */ + success_count_not_in_values?: string; + /** + * Count of failed probes (result = failure) (filter: eq) + */ + failure_count_eq?: number; + /** + * Count of failed probes (result = failure) (filter: ne) + */ + failure_count_ne?: number; + /** + * Count of failed probes (result = failure) (filter: lt) + */ + failure_count_lt?: number; + /** + * Count of failed probes (result = failure) (filter: lte) + */ + failure_count_lte?: number; + /** + * Count of failed probes (result = failure) (filter: gt) + */ + failure_count_gt?: number; + /** + * Count of failed probes (result = failure) (filter: gte) + */ + failure_count_gte?: number; + /** + * Count of failed probes (result = failure) (filter: between_min) + */ + failure_count_between_min?: number; + /** + * Count of failed probes (result = failure) (filter: between_max_value) + */ + failure_count_between_max_value?: number; + /** + * Count of failed probes (result = failure) (filter: in_values) (comma-separated list) + */ + failure_count_in_values?: string; + /** + * Count of failed probes (result = failure) (filter: not_in_values) (comma-separated list) + */ + failure_count_not_in_values?: string; + /** + * Count of missing probes (result = missing) (filter: eq) + */ + missing_count_eq?: number; + /** + * Count of missing probes (result = missing) (filter: ne) + */ + missing_count_ne?: number; + /** + * Count of missing probes (result = missing) (filter: lt) + */ + missing_count_lt?: number; + /** + * Count of missing probes (result = missing) (filter: lte) + */ + missing_count_lte?: number; + /** + * Count of missing probes (result = missing) (filter: gt) + */ + missing_count_gt?: number; + /** + * Count of missing probes (result = missing) (filter: gte) + */ + missing_count_gte?: number; + /** + * Count of missing probes (result = missing) (filter: between_min) + */ + missing_count_between_min?: number; + /** + * Count of missing probes (result = missing) (filter: between_max_value) + */ + missing_count_between_max_value?: number; + /** + * Count of missing probes (result = missing) (filter: in_values) (comma-separated list) + */ + missing_count_in_values?: string; + /** + * Count of missing probes (result = missing) (filter: not_in_values) (comma-separated list) + */ + missing_count_not_in_values?: string; + /** + * Total count of probes (filter: eq) + */ + probe_count_eq?: number; + /** + * Total count of probes (filter: ne) + */ + probe_count_ne?: number; + /** + * Total count of probes (filter: lt) + */ + probe_count_lt?: number; + /** + * Total count of probes (filter: lte) + */ + probe_count_lte?: number; + /** + * Total count of probes (filter: gt) + */ + probe_count_gt?: number; + /** + * Total count of probes (filter: gte) + */ + probe_count_gte?: number; + /** + * Total count of probes (filter: between_min) + */ + probe_count_between_min?: number; + /** + * Total count of probes (filter: between_max_value) + */ + probe_count_between_max_value?: number; + /** + * Total count of probes (filter: in_values) (comma-separated list) + */ + probe_count_in_values?: string; + /** + * Total count of probes (filter: not_in_values) (comma-separated list) + */ + probe_count_not_in_values?: string; + /** + * Filter availability_pct using value + */ + availability_pct_value?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: eq) + */ + min_response_time_ms_eq?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: ne) + */ + min_response_time_ms_ne?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: lt) + */ + min_response_time_ms_lt?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: lte) + */ + min_response_time_ms_lte?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: gt) + */ + min_response_time_ms_gt?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: gte) + */ + min_response_time_ms_gte?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: between_min) + */ + min_response_time_ms_between_min?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: between_max_value) + */ + min_response_time_ms_between_max_value?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) + */ + min_response_time_ms_in_values?: string; + /** + * Minimum response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) + */ + min_response_time_ms_not_in_values?: string; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: eq) + */ + p50_response_time_ms_eq?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: ne) + */ + p50_response_time_ms_ne?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: lt) + */ + p50_response_time_ms_lt?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: lte) + */ + p50_response_time_ms_lte?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: gt) + */ + p50_response_time_ms_gt?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: gte) + */ + p50_response_time_ms_gte?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: between_min) + */ + p50_response_time_ms_between_min?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: between_max_value) + */ + p50_response_time_ms_between_max_value?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) + */ + p50_response_time_ms_in_values?: string; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) + */ + p50_response_time_ms_not_in_values?: string; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: eq) + */ + p95_response_time_ms_eq?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: ne) + */ + p95_response_time_ms_ne?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: lt) + */ + p95_response_time_ms_lt?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: lte) + */ + p95_response_time_ms_lte?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: gt) + */ + p95_response_time_ms_gt?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: gte) + */ + p95_response_time_ms_gte?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: between_min) + */ + p95_response_time_ms_between_min?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: between_max_value) + */ + p95_response_time_ms_between_max_value?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) + */ + p95_response_time_ms_in_values?: string; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) + */ + p95_response_time_ms_not_in_values?: string; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: eq) + */ + p99_response_time_ms_eq?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: ne) + */ + p99_response_time_ms_ne?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: lt) + */ + p99_response_time_ms_lt?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: lte) + */ + p99_response_time_ms_lte?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: gt) + */ + p99_response_time_ms_gt?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: gte) + */ + p99_response_time_ms_gte?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: between_min) + */ + p99_response_time_ms_between_min?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: between_max_value) + */ + p99_response_time_ms_between_max_value?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) + */ + p99_response_time_ms_in_values?: string; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) + */ + p99_response_time_ms_not_in_values?: string; + /** + * Maximum response time in milliseconds for successful probes only (filter: eq) + */ + max_response_time_ms_eq?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: ne) + */ + max_response_time_ms_ne?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: lt) + */ + max_response_time_ms_lt?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: lte) + */ + max_response_time_ms_lte?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: gt) + */ + max_response_time_ms_gt?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: gte) + */ + max_response_time_ms_gte?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: between_min) + */ + max_response_time_ms_between_min?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: between_max_value) + */ + max_response_time_ms_between_max_value?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) + */ + max_response_time_ms_in_values?: string; + /** + * Maximum response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) + */ + max_response_time_ms_not_in_values?: string; + /** + * Count of unique peers probed (filter: eq) + */ + unique_peer_count_eq?: number; + /** + * Count of unique peers probed (filter: ne) + */ + unique_peer_count_ne?: number; + /** + * Count of unique peers probed (filter: lt) + */ + unique_peer_count_lt?: number; + /** + * Count of unique peers probed (filter: lte) + */ + unique_peer_count_lte?: number; + /** + * Count of unique peers probed (filter: gt) + */ + unique_peer_count_gt?: number; + /** + * Count of unique peers probed (filter: gte) + */ + unique_peer_count_gte?: number; + /** + * Count of unique peers probed (filter: between_min) + */ + unique_peer_count_between_min?: number; + /** + * Count of unique peers probed (filter: between_max_value) + */ + unique_peer_count_between_max_value?: number; + /** + * Count of unique peers probed (filter: in_values) (comma-separated list) + */ + unique_peer_count_in_values?: string; + /** + * Count of unique peers probed (filter: not_in_values) (comma-separated list) + */ + unique_peer_count_not_in_values?: string; + /** + * Count of unique client names (filter: eq) + */ + unique_client_count_eq?: number; + /** + * Count of unique client names (filter: ne) + */ + unique_client_count_ne?: number; + /** + * Count of unique client names (filter: lt) + */ + unique_client_count_lt?: number; + /** + * Count of unique client names (filter: lte) + */ + unique_client_count_lte?: number; + /** + * Count of unique client names (filter: gt) + */ + unique_client_count_gt?: number; + /** + * Count of unique client names (filter: gte) + */ + unique_client_count_gte?: number; + /** + * Count of unique client names (filter: between_min) + */ + unique_client_count_between_min?: number; + /** + * Count of unique client names (filter: between_max_value) + */ + unique_client_count_between_max_value?: number; + /** + * Count of unique client names (filter: in_values) (comma-separated list) + */ + unique_client_count_in_values?: string; + /** + * Count of unique client names (filter: not_in_values) (comma-separated list) + */ + unique_client_count_not_in_values?: string; + /** + * Count of unique client implementations (filter: eq) + */ + unique_implementation_count_eq?: number; + /** + * Count of unique client implementations (filter: ne) + */ + unique_implementation_count_ne?: number; + /** + * Count of unique client implementations (filter: lt) + */ + unique_implementation_count_lt?: number; + /** + * Count of unique client implementations (filter: lte) + */ + unique_implementation_count_lte?: number; + /** + * Count of unique client implementations (filter: gt) + */ + unique_implementation_count_gt?: number; + /** + * Count of unique client implementations (filter: gte) + */ + unique_implementation_count_gte?: number; + /** + * Count of unique client implementations (filter: between_min) + */ + unique_implementation_count_between_min?: number; + /** + * Count of unique client implementations (filter: between_max_value) + */ + unique_implementation_count_between_max_value?: number; + /** + * Count of unique client implementations (filter: in_values) (comma-separated list) + */ + unique_implementation_count_in_values?: string; + /** + * Count of unique client implementations (filter: not_in_values) (comma-separated list) + */ + unique_implementation_count_not_in_values?: string; + /** + * Count of observations from active RPC custody probes (filter: eq) + */ + custody_probe_count_eq?: number; + /** + * Count of observations from active RPC custody probes (filter: ne) + */ + custody_probe_count_ne?: number; + /** + * Count of observations from active RPC custody probes (filter: lt) + */ + custody_probe_count_lt?: number; + /** + * Count of observations from active RPC custody probes (filter: lte) + */ + custody_probe_count_lte?: number; + /** + * Count of observations from active RPC custody probes (filter: gt) + */ + custody_probe_count_gt?: number; + /** + * Count of observations from active RPC custody probes (filter: gte) + */ + custody_probe_count_gte?: number; + /** + * Count of observations from active RPC custody probes (filter: between_min) + */ + custody_probe_count_between_min?: number; + /** + * Count of observations from active RPC custody probes (filter: between_max_value) + */ + custody_probe_count_between_max_value?: number; + /** + * Count of observations from active RPC custody probes (filter: in_values) (comma-separated list) + */ + custody_probe_count_in_values?: string; + /** + * Count of observations from active RPC custody probes (filter: not_in_values) (comma-separated list) + */ + custody_probe_count_not_in_values?: string; + /** + * Count of observations from passive gossipsub propagation (filter: eq) + */ + gossipsub_count_eq?: number; + /** + * Count of observations from passive gossipsub propagation (filter: ne) + */ + gossipsub_count_ne?: number; + /** + * Count of observations from passive gossipsub propagation (filter: lt) + */ + gossipsub_count_lt?: number; + /** + * Count of observations from passive gossipsub propagation (filter: lte) + */ + gossipsub_count_lte?: number; + /** + * Count of observations from passive gossipsub propagation (filter: gt) + */ + gossipsub_count_gt?: number; + /** + * Count of observations from passive gossipsub propagation (filter: gte) + */ + gossipsub_count_gte?: number; + /** + * Count of observations from passive gossipsub propagation (filter: between_min) + */ + gossipsub_count_between_min?: number; + /** + * Count of observations from passive gossipsub propagation (filter: between_max_value) + */ + gossipsub_count_between_max_value?: number; + /** + * Count of observations from passive gossipsub propagation (filter: in_values) (comma-separated list) + */ + gossipsub_count_in_values?: string; + /** + * Count of observations from passive gossipsub propagation (filter: not_in_values) (comma-separated list) + */ + gossipsub_count_not_in_values?: string; + /** + * The maximum number of fct_data_column_availability_by_slot to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctDataColumnAvailabilityBySlot` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_data_column_availability_by_slot'; +}; + +export type FctDataColumnAvailabilityBySlotServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctDataColumnAvailabilityBySlotServiceListError = + FctDataColumnAvailabilityBySlotServiceListErrors[keyof FctDataColumnAvailabilityBySlotServiceListErrors]; + +export type FctDataColumnAvailabilityBySlotServiceListResponses = { + /** + * OK + */ + 200: ListFctDataColumnAvailabilityBySlotResponse; +}; + +export type FctDataColumnAvailabilityBySlotServiceListResponse = + FctDataColumnAvailabilityBySlotServiceListResponses[keyof FctDataColumnAvailabilityBySlotServiceListResponses]; + +export type FctDataColumnAvailabilityBySlotServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_data_column_availability_by_slot/{slot_start_date_time}'; +}; + +export type FctDataColumnAvailabilityBySlotServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctDataColumnAvailabilityBySlotServiceGetError = + FctDataColumnAvailabilityBySlotServiceGetErrors[keyof FctDataColumnAvailabilityBySlotServiceGetErrors]; + +export type FctDataColumnAvailabilityBySlotServiceGetResponses = { + /** + * OK + */ + 200: GetFctDataColumnAvailabilityBySlotResponse; +}; + +export type FctDataColumnAvailabilityBySlotServiceGetResponse = + FctDataColumnAvailabilityBySlotServiceGetResponses[keyof FctDataColumnAvailabilityBySlotServiceGetResponses]; + +export type FctDataColumnAvailabilityBySlotBlobServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Blob index within the slot (0-based, typically 0-5) (filter: eq) + */ + blob_index_eq?: number; + /** + * Blob index within the slot (0-based, typically 0-5) (filter: ne) + */ + blob_index_ne?: number; + /** + * Blob index within the slot (0-based, typically 0-5) (filter: lt) + */ + blob_index_lt?: number; + /** + * Blob index within the slot (0-based, typically 0-5) (filter: lte) + */ + blob_index_lte?: number; + /** + * Blob index within the slot (0-based, typically 0-5) (filter: gt) + */ + blob_index_gt?: number; + /** + * Blob index within the slot (0-based, typically 0-5) (filter: gte) + */ + blob_index_gte?: number; + /** + * Blob index within the slot (0-based, typically 0-5) (filter: between_min) + */ + blob_index_between_min?: number; + /** + * Blob index within the slot (0-based, typically 0-5) (filter: between_max_value) + */ + blob_index_between_max_value?: number; + /** + * Blob index within the slot (0-based, typically 0-5) (filter: in_values) (comma-separated list) + */ + blob_index_in_values?: string; + /** + * Blob index within the slot (0-based, typically 0-5) (filter: not_in_values) (comma-separated list) + */ + blob_index_not_in_values?: string; + /** + * Column index being probed (0-127) (filter: eq) + */ + column_index_eq?: number; + /** + * Column index being probed (0-127) (filter: ne) + */ + column_index_ne?: number; + /** + * Column index being probed (0-127) (filter: lt) + */ + column_index_lt?: number; + /** + * Column index being probed (0-127) (filter: lte) + */ + column_index_lte?: number; + /** + * Column index being probed (0-127) (filter: gt) + */ + column_index_gt?: number; + /** + * Column index being probed (0-127) (filter: gte) + */ + column_index_gte?: number; + /** + * Column index being probed (0-127) (filter: between_min) + */ + column_index_between_min?: number; + /** + * Column index being probed (0-127) (filter: between_max_value) + */ + column_index_between_max_value?: number; + /** + * Column index being probed (0-127) (filter: in_values) (comma-separated list) + */ + column_index_in_values?: string; + /** + * Column index being probed (0-127) (filter: not_in_values) (comma-separated list) + */ + column_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number being probed (filter: eq) + */ + slot_eq?: number; + /** + * Slot number being probed (filter: ne) + */ + slot_ne?: number; + /** + * Slot number being probed (filter: lt) + */ + slot_lt?: number; + /** + * Slot number being probed (filter: lte) + */ + slot_lte?: number; + /** + * Slot number being probed (filter: gt) + */ + slot_gt?: number; + /** + * Slot number being probed (filter: gte) + */ + slot_gte?: number; + /** + * Slot number being probed (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number being probed (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number being probed (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number being probed (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The wallclock slot when the request was sent (filter: eq) + */ + wallclock_request_slot_eq?: number; + /** + * The wallclock slot when the request was sent (filter: ne) + */ + wallclock_request_slot_ne?: number; + /** + * The wallclock slot when the request was sent (filter: lt) + */ + wallclock_request_slot_lt?: number; + /** + * The wallclock slot when the request was sent (filter: lte) + */ + wallclock_request_slot_lte?: number; + /** + * The wallclock slot when the request was sent (filter: gt) + */ + wallclock_request_slot_gt?: number; + /** + * The wallclock slot when the request was sent (filter: gte) + */ + wallclock_request_slot_gte?: number; + /** + * The wallclock slot when the request was sent (filter: between_min) + */ + wallclock_request_slot_between_min?: number; + /** + * The wallclock slot when the request was sent (filter: between_max_value) + */ + wallclock_request_slot_between_max_value?: number; + /** + * The wallclock slot when the request was sent (filter: in_values) (comma-separated list) + */ + wallclock_request_slot_in_values?: string; + /** + * The wallclock slot when the request was sent (filter: not_in_values) (comma-separated list) + */ + wallclock_request_slot_not_in_values?: string; + /** + * The start time for the slot when the request was sent (filter: eq) + */ + wallclock_request_slot_start_date_time_eq?: number; + /** + * The start time for the slot when the request was sent (filter: ne) + */ + wallclock_request_slot_start_date_time_ne?: number; + /** + * The start time for the slot when the request was sent (filter: lt) + */ + wallclock_request_slot_start_date_time_lt?: number; + /** + * The start time for the slot when the request was sent (filter: lte) + */ + wallclock_request_slot_start_date_time_lte?: number; + /** + * The start time for the slot when the request was sent (filter: gt) + */ + wallclock_request_slot_start_date_time_gt?: number; + /** + * The start time for the slot when the request was sent (filter: gte) + */ + wallclock_request_slot_start_date_time_gte?: number; + /** + * The start time for the slot when the request was sent (filter: between_min) + */ + wallclock_request_slot_start_date_time_between_min?: number; + /** + * The start time for the slot when the request was sent (filter: between_max_value) + */ + wallclock_request_slot_start_date_time_between_max_value?: number; + /** + * The start time for the slot when the request was sent (filter: in_values) (comma-separated list) + */ + wallclock_request_slot_start_date_time_in_values?: string; + /** + * The start time for the slot when the request was sent (filter: not_in_values) (comma-separated list) + */ + wallclock_request_slot_start_date_time_not_in_values?: string; + /** + * The wallclock epoch when the request was sent (filter: eq) + */ + wallclock_request_epoch_eq?: number; + /** + * The wallclock epoch when the request was sent (filter: ne) + */ + wallclock_request_epoch_ne?: number; + /** + * The wallclock epoch when the request was sent (filter: lt) + */ + wallclock_request_epoch_lt?: number; + /** + * The wallclock epoch when the request was sent (filter: lte) + */ + wallclock_request_epoch_lte?: number; + /** + * The wallclock epoch when the request was sent (filter: gt) + */ + wallclock_request_epoch_gt?: number; + /** + * The wallclock epoch when the request was sent (filter: gte) + */ + wallclock_request_epoch_gte?: number; + /** + * The wallclock epoch when the request was sent (filter: between_min) + */ + wallclock_request_epoch_between_min?: number; + /** + * The wallclock epoch when the request was sent (filter: between_max_value) + */ + wallclock_request_epoch_between_max_value?: number; + /** + * The wallclock epoch when the request was sent (filter: in_values) (comma-separated list) + */ + wallclock_request_epoch_in_values?: string; + /** + * The wallclock epoch when the request was sent (filter: not_in_values) (comma-separated list) + */ + wallclock_request_epoch_not_in_values?: string; + /** + * The start time for the wallclock epoch when the request was sent (filter: eq) + */ + wallclock_request_epoch_start_date_time_eq?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: ne) + */ + wallclock_request_epoch_start_date_time_ne?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: lt) + */ + wallclock_request_epoch_start_date_time_lt?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: lte) + */ + wallclock_request_epoch_start_date_time_lte?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: gt) + */ + wallclock_request_epoch_start_date_time_gt?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: gte) + */ + wallclock_request_epoch_start_date_time_gte?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: between_min) + */ + wallclock_request_epoch_start_date_time_between_min?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: between_max_value) + */ + wallclock_request_epoch_start_date_time_between_max_value?: number; + /** + * The start time for the wallclock epoch when the request was sent (filter: in_values) (comma-separated list) + */ + wallclock_request_epoch_start_date_time_in_values?: string; + /** + * The start time for the wallclock epoch when the request was sent (filter: not_in_values) (comma-separated list) + */ + wallclock_request_epoch_start_date_time_not_in_values?: string; + /** + * Total number of blobs in the slot (filter: eq) + */ + blob_count_eq?: number; + /** + * Total number of blobs in the slot (filter: ne) + */ + blob_count_ne?: number; + /** + * Total number of blobs in the slot (filter: lt) + */ + blob_count_lt?: number; + /** + * Total number of blobs in the slot (filter: lte) + */ + blob_count_lte?: number; + /** + * Total number of blobs in the slot (filter: gt) + */ + blob_count_gt?: number; + /** + * Total number of blobs in the slot (filter: gte) + */ + blob_count_gte?: number; + /** + * Total number of blobs in the slot (filter: between_min) + */ + blob_count_between_min?: number; + /** + * Total number of blobs in the slot (filter: between_max_value) + */ + blob_count_between_max_value?: number; + /** + * Total number of blobs in the slot (filter: in_values) (comma-separated list) + */ + blob_count_in_values?: string; + /** + * Total number of blobs in the slot (filter: not_in_values) (comma-separated list) + */ + blob_count_not_in_values?: string; + /** + * Filter availability_pct using value + */ + availability_pct_value?: number; + /** + * Count of successful probes (filter: eq) + */ + success_count_eq?: number; + /** + * Count of successful probes (filter: ne) + */ + success_count_ne?: number; + /** + * Count of successful probes (filter: lt) + */ + success_count_lt?: number; + /** + * Count of successful probes (filter: lte) + */ + success_count_lte?: number; + /** + * Count of successful probes (filter: gt) + */ + success_count_gt?: number; + /** + * Count of successful probes (filter: gte) + */ + success_count_gte?: number; + /** + * Count of successful probes (filter: between_min) + */ + success_count_between_min?: number; + /** + * Count of successful probes (filter: between_max_value) + */ + success_count_between_max_value?: number; + /** + * Count of successful probes (filter: in_values) (comma-separated list) + */ + success_count_in_values?: string; + /** + * Count of successful probes (filter: not_in_values) (comma-separated list) + */ + success_count_not_in_values?: string; + /** + * Count of failed probes (result = failure) (filter: eq) + */ + failure_count_eq?: number; + /** + * Count of failed probes (result = failure) (filter: ne) + */ + failure_count_ne?: number; + /** + * Count of failed probes (result = failure) (filter: lt) + */ + failure_count_lt?: number; + /** + * Count of failed probes (result = failure) (filter: lte) + */ + failure_count_lte?: number; + /** + * Count of failed probes (result = failure) (filter: gt) + */ + failure_count_gt?: number; + /** + * Count of failed probes (result = failure) (filter: gte) + */ + failure_count_gte?: number; + /** + * Count of failed probes (result = failure) (filter: between_min) + */ + failure_count_between_min?: number; + /** + * Count of failed probes (result = failure) (filter: between_max_value) + */ + failure_count_between_max_value?: number; + /** + * Count of failed probes (result = failure) (filter: in_values) (comma-separated list) + */ + failure_count_in_values?: string; + /** + * Count of failed probes (result = failure) (filter: not_in_values) (comma-separated list) + */ + failure_count_not_in_values?: string; + /** + * Count of missing probes (result = missing) (filter: eq) + */ + missing_count_eq?: number; + /** + * Count of missing probes (result = missing) (filter: ne) + */ + missing_count_ne?: number; + /** + * Count of missing probes (result = missing) (filter: lt) + */ + missing_count_lt?: number; + /** + * Count of missing probes (result = missing) (filter: lte) + */ + missing_count_lte?: number; + /** + * Count of missing probes (result = missing) (filter: gt) + */ + missing_count_gt?: number; + /** + * Count of missing probes (result = missing) (filter: gte) + */ + missing_count_gte?: number; + /** + * Count of missing probes (result = missing) (filter: between_min) + */ + missing_count_between_min?: number; + /** + * Count of missing probes (result = missing) (filter: between_max_value) + */ + missing_count_between_max_value?: number; + /** + * Count of missing probes (result = missing) (filter: in_values) (comma-separated list) + */ + missing_count_in_values?: string; + /** + * Count of missing probes (result = missing) (filter: not_in_values) (comma-separated list) + */ + missing_count_not_in_values?: string; + /** + * Total count of probes (filter: eq) + */ + probe_count_eq?: number; + /** + * Total count of probes (filter: ne) + */ + probe_count_ne?: number; + /** + * Total count of probes (filter: lt) + */ + probe_count_lt?: number; + /** + * Total count of probes (filter: lte) + */ + probe_count_lte?: number; + /** + * Total count of probes (filter: gt) + */ + probe_count_gt?: number; + /** + * Total count of probes (filter: gte) + */ + probe_count_gte?: number; + /** + * Total count of probes (filter: between_min) + */ + probe_count_between_min?: number; + /** + * Total count of probes (filter: between_max_value) + */ + probe_count_between_max_value?: number; + /** + * Total count of probes (filter: in_values) (comma-separated list) + */ + probe_count_in_values?: string; + /** + * Total count of probes (filter: not_in_values) (comma-separated list) + */ + probe_count_not_in_values?: string; + /** + * Minimum response time in milliseconds for successful probes only (filter: eq) + */ + min_response_time_ms_eq?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: ne) + */ + min_response_time_ms_ne?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: lt) + */ + min_response_time_ms_lt?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: lte) + */ + min_response_time_ms_lte?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: gt) + */ + min_response_time_ms_gt?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: gte) + */ + min_response_time_ms_gte?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: between_min) + */ + min_response_time_ms_between_min?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: between_max_value) + */ + min_response_time_ms_between_max_value?: number; + /** + * Minimum response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) + */ + min_response_time_ms_in_values?: string; + /** + * Minimum response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) + */ + min_response_time_ms_not_in_values?: string; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: eq) + */ + p50_response_time_ms_eq?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: ne) + */ + p50_response_time_ms_ne?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: lt) + */ + p50_response_time_ms_lt?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: lte) + */ + p50_response_time_ms_lte?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: gt) + */ + p50_response_time_ms_gt?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: gte) + */ + p50_response_time_ms_gte?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: between_min) + */ + p50_response_time_ms_between_min?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: between_max_value) + */ + p50_response_time_ms_between_max_value?: number; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) + */ + p50_response_time_ms_in_values?: string; + /** + * Median (p50) response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) + */ + p50_response_time_ms_not_in_values?: string; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: eq) + */ + p95_response_time_ms_eq?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: ne) + */ + p95_response_time_ms_ne?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: lt) + */ + p95_response_time_ms_lt?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: lte) + */ + p95_response_time_ms_lte?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: gt) + */ + p95_response_time_ms_gt?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: gte) + */ + p95_response_time_ms_gte?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: between_min) + */ + p95_response_time_ms_between_min?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: between_max_value) + */ + p95_response_time_ms_between_max_value?: number; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) + */ + p95_response_time_ms_in_values?: string; + /** + * 95th percentile response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) + */ + p95_response_time_ms_not_in_values?: string; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: eq) + */ + p99_response_time_ms_eq?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: ne) + */ + p99_response_time_ms_ne?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: lt) + */ + p99_response_time_ms_lt?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: lte) + */ + p99_response_time_ms_lte?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: gt) + */ + p99_response_time_ms_gt?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: gte) + */ + p99_response_time_ms_gte?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: between_min) + */ + p99_response_time_ms_between_min?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: between_max_value) + */ + p99_response_time_ms_between_max_value?: number; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) + */ + p99_response_time_ms_in_values?: string; + /** + * 99th percentile response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) + */ + p99_response_time_ms_not_in_values?: string; + /** + * Maximum response time in milliseconds for successful probes only (filter: eq) + */ + max_response_time_ms_eq?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: ne) + */ + max_response_time_ms_ne?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: lt) + */ + max_response_time_ms_lt?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: lte) + */ + max_response_time_ms_lte?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: gt) + */ + max_response_time_ms_gt?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: gte) + */ + max_response_time_ms_gte?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: between_min) + */ + max_response_time_ms_between_min?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: between_max_value) + */ + max_response_time_ms_between_max_value?: number; + /** + * Maximum response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) + */ + max_response_time_ms_in_values?: string; + /** + * Maximum response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) + */ + max_response_time_ms_not_in_values?: string; + /** + * Count of unique peers probed (filter: eq) + */ + unique_peer_count_eq?: number; + /** + * Count of unique peers probed (filter: ne) + */ + unique_peer_count_ne?: number; + /** + * Count of unique peers probed (filter: lt) + */ + unique_peer_count_lt?: number; + /** + * Count of unique peers probed (filter: lte) + */ + unique_peer_count_lte?: number; + /** + * Count of unique peers probed (filter: gt) + */ + unique_peer_count_gt?: number; + /** + * Count of unique peers probed (filter: gte) + */ + unique_peer_count_gte?: number; + /** + * Count of unique peers probed (filter: between_min) + */ + unique_peer_count_between_min?: number; + /** + * Count of unique peers probed (filter: between_max_value) + */ + unique_peer_count_between_max_value?: number; + /** + * Count of unique peers probed (filter: in_values) (comma-separated list) + */ + unique_peer_count_in_values?: string; + /** + * Count of unique peers probed (filter: not_in_values) (comma-separated list) + */ + unique_peer_count_not_in_values?: string; + /** + * Count of unique client names (filter: eq) + */ + unique_client_count_eq?: number; + /** + * Count of unique client names (filter: ne) + */ + unique_client_count_ne?: number; + /** + * Count of unique client names (filter: lt) + */ + unique_client_count_lt?: number; + /** + * Count of unique client names (filter: lte) + */ + unique_client_count_lte?: number; + /** + * Count of unique client names (filter: gt) + */ + unique_client_count_gt?: number; + /** + * Count of unique client names (filter: gte) + */ + unique_client_count_gte?: number; + /** + * Count of unique client names (filter: between_min) + */ + unique_client_count_between_min?: number; + /** + * Count of unique client names (filter: between_max_value) + */ + unique_client_count_between_max_value?: number; + /** + * Count of unique client names (filter: in_values) (comma-separated list) + */ + unique_client_count_in_values?: string; + /** + * Count of unique client names (filter: not_in_values) (comma-separated list) + */ + unique_client_count_not_in_values?: string; + /** + * Count of unique client implementations (filter: eq) + */ + unique_implementation_count_eq?: number; + /** + * Count of unique client implementations (filter: ne) + */ + unique_implementation_count_ne?: number; + /** + * Count of unique client implementations (filter: lt) + */ + unique_implementation_count_lt?: number; + /** + * Count of unique client implementations (filter: lte) + */ + unique_implementation_count_lte?: number; + /** + * Count of unique client implementations (filter: gt) + */ + unique_implementation_count_gt?: number; + /** + * Count of unique client implementations (filter: gte) + */ + unique_implementation_count_gte?: number; + /** + * Count of unique client implementations (filter: between_min) + */ + unique_implementation_count_between_min?: number; + /** + * Count of unique client implementations (filter: between_max_value) + */ + unique_implementation_count_between_max_value?: number; + /** + * Count of unique client implementations (filter: in_values) (comma-separated list) + */ + unique_implementation_count_in_values?: string; + /** + * Count of unique client implementations (filter: not_in_values) (comma-separated list) + */ + unique_implementation_count_not_in_values?: string; + /** + * The maximum number of fct_data_column_availability_by_slot_blob to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctDataColumnAvailabilityBySlotBlob` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_data_column_availability_by_slot_blob'; +}; + +export type FctDataColumnAvailabilityBySlotBlobServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctDataColumnAvailabilityBySlotBlobServiceListError = + FctDataColumnAvailabilityBySlotBlobServiceListErrors[keyof FctDataColumnAvailabilityBySlotBlobServiceListErrors]; + +export type FctDataColumnAvailabilityBySlotBlobServiceListResponses = { + /** + * OK + */ + 200: ListFctDataColumnAvailabilityBySlotBlobResponse; +}; + +export type FctDataColumnAvailabilityBySlotBlobServiceListResponse = + FctDataColumnAvailabilityBySlotBlobServiceListResponses[keyof FctDataColumnAvailabilityBySlotBlobServiceListResponses]; + +export type FctDataColumnAvailabilityBySlotBlobServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_data_column_availability_by_slot_blob/{slot_start_date_time}'; +}; + +export type FctDataColumnAvailabilityBySlotBlobServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctDataColumnAvailabilityBySlotBlobServiceGetError = + FctDataColumnAvailabilityBySlotBlobServiceGetErrors[keyof FctDataColumnAvailabilityBySlotBlobServiceGetErrors]; + +export type FctDataColumnAvailabilityBySlotBlobServiceGetResponses = { + /** + * OK + */ + 200: GetFctDataColumnAvailabilityBySlotBlobResponse; +}; + +export type FctDataColumnAvailabilityBySlotBlobServiceGetResponse = + FctDataColumnAvailabilityBySlotBlobServiceGetResponses[keyof FctDataColumnAvailabilityBySlotBlobServiceGetResponses]; + +export type FctDataColumnAvailabilityDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Date of the aggregation (filter: eq) + */ + date_eq?: string; + /** + * Date of the aggregation (filter: ne) + */ + date_ne?: string; + /** + * Date of the aggregation (filter: contains) + */ + date_contains?: string; + /** + * Date of the aggregation (filter: starts_with) + */ + date_starts_with?: string; + /** + * Date of the aggregation (filter: ends_with) + */ + date_ends_with?: string; + /** + * Date of the aggregation (filter: like) + */ + date_like?: string; + /** + * Date of the aggregation (filter: not_like) + */ + date_not_like?: string; + /** + * Date of the aggregation (filter: in_values) (comma-separated list) + */ + date_in_values?: string; + /** + * Date of the aggregation (filter: not_in_values) (comma-separated list) + */ + date_not_in_values?: string; + /** + * Column index (0-127) (filter: eq) + */ + column_index_eq?: number; + /** + * Column index (0-127) (filter: ne) + */ + column_index_ne?: number; + /** + * Column index (0-127) (filter: lt) + */ + column_index_lt?: number; + /** + * Column index (0-127) (filter: lte) + */ + column_index_lte?: number; + /** + * Column index (0-127) (filter: gt) + */ + column_index_gt?: number; + /** + * Column index (0-127) (filter: gte) + */ + column_index_gte?: number; + /** + * Column index (0-127) (filter: between_min) + */ + column_index_between_min?: number; + /** + * Column index (0-127) (filter: between_max_value) + */ + column_index_between_max_value?: number; + /** + * Column index (0-127) (filter: in_values) (comma-separated list) + */ + column_index_in_values?: string; + /** + * Column index (0-127) (filter: not_in_values) (comma-separated list) + */ + column_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of hours in this day aggregation (filter: eq) + */ + hour_count_eq?: number; + /** + * Number of hours in this day aggregation (filter: ne) + */ + hour_count_ne?: number; + /** + * Number of hours in this day aggregation (filter: lt) + */ + hour_count_lt?: number; + /** + * Number of hours in this day aggregation (filter: lte) + */ + hour_count_lte?: number; + /** + * Number of hours in this day aggregation (filter: gt) + */ + hour_count_gt?: number; + /** + * Number of hours in this day aggregation (filter: gte) + */ + hour_count_gte?: number; + /** + * Number of hours in this day aggregation (filter: between_min) + */ + hour_count_between_min?: number; + /** + * Number of hours in this day aggregation (filter: between_max_value) + */ + hour_count_between_max_value?: number; + /** + * Number of hours in this day aggregation (filter: in_values) (comma-separated list) + */ + hour_count_in_values?: string; + /** + * Number of hours in this day aggregation (filter: not_in_values) (comma-separated list) + */ + hour_count_not_in_values?: string; + /** + * Filter avg_availability_pct using value + */ + avg_availability_pct_value?: number; + /** + * Filter min_availability_pct using value + */ + min_availability_pct_value?: number; + /** + * Filter max_availability_pct using value + */ + max_availability_pct_value?: number; + /** + * Total probe count across all hours (filter: eq) + */ + total_probe_count_eq?: number; + /** + * Total probe count across all hours (filter: ne) + */ + total_probe_count_ne?: number; + /** + * Total probe count across all hours (filter: lt) + */ + total_probe_count_lt?: number; + /** + * Total probe count across all hours (filter: lte) + */ + total_probe_count_lte?: number; + /** + * Total probe count across all hours (filter: gt) + */ + total_probe_count_gt?: number; + /** + * Total probe count across all hours (filter: gte) + */ + total_probe_count_gte?: number; + /** + * Total probe count across all hours (filter: between_min) + */ + total_probe_count_between_min?: number; + /** + * Total probe count across all hours (filter: between_max_value) + */ + total_probe_count_between_max_value?: number; + /** + * Total probe count across all hours (filter: in_values) (comma-separated list) + */ + total_probe_count_in_values?: string; + /** + * Total probe count across all hours (filter: not_in_values) (comma-separated list) + */ + total_probe_count_not_in_values?: string; + /** + * Total successful probes across all hours (filter: eq) + */ + total_success_count_eq?: number; + /** + * Total successful probes across all hours (filter: ne) + */ + total_success_count_ne?: number; + /** + * Total successful probes across all hours (filter: lt) + */ + total_success_count_lt?: number; + /** + * Total successful probes across all hours (filter: lte) + */ + total_success_count_lte?: number; + /** + * Total successful probes across all hours (filter: gt) + */ + total_success_count_gt?: number; + /** + * Total successful probes across all hours (filter: gte) + */ + total_success_count_gte?: number; + /** + * Total successful probes across all hours (filter: between_min) + */ + total_success_count_between_min?: number; + /** + * Total successful probes across all hours (filter: between_max_value) + */ + total_success_count_between_max_value?: number; + /** + * Total successful probes across all hours (filter: in_values) (comma-separated list) + */ + total_success_count_in_values?: string; + /** + * Total successful probes across all hours (filter: not_in_values) (comma-separated list) + */ + total_success_count_not_in_values?: string; + /** + * Total failed probes across all hours (result = failure) (filter: eq) + */ + total_failure_count_eq?: number; + /** + * Total failed probes across all hours (result = failure) (filter: ne) + */ + total_failure_count_ne?: number; + /** + * Total failed probes across all hours (result = failure) (filter: lt) + */ + total_failure_count_lt?: number; + /** + * Total failed probes across all hours (result = failure) (filter: lte) + */ + total_failure_count_lte?: number; + /** + * Total failed probes across all hours (result = failure) (filter: gt) + */ + total_failure_count_gt?: number; + /** + * Total failed probes across all hours (result = failure) (filter: gte) + */ + total_failure_count_gte?: number; + /** + * Total failed probes across all hours (result = failure) (filter: between_min) + */ + total_failure_count_between_min?: number; + /** + * Total failed probes across all hours (result = failure) (filter: between_max_value) + */ + total_failure_count_between_max_value?: number; + /** + * Total failed probes across all hours (result = failure) (filter: in_values) (comma-separated list) + */ + total_failure_count_in_values?: string; + /** + * Total failed probes across all hours (result = failure) (filter: not_in_values) (comma-separated list) + */ + total_failure_count_not_in_values?: string; + /** + * Total missing probes across all hours (result = missing) (filter: eq) + */ + total_missing_count_eq?: number; + /** + * Total missing probes across all hours (result = missing) (filter: ne) + */ + total_missing_count_ne?: number; + /** + * Total missing probes across all hours (result = missing) (filter: lt) + */ + total_missing_count_lt?: number; + /** + * Total missing probes across all hours (result = missing) (filter: lte) + */ + total_missing_count_lte?: number; + /** + * Total missing probes across all hours (result = missing) (filter: gt) + */ + total_missing_count_gt?: number; + /** + * Total missing probes across all hours (result = missing) (filter: gte) + */ + total_missing_count_gte?: number; + /** + * Total missing probes across all hours (result = missing) (filter: between_min) + */ + total_missing_count_between_min?: number; + /** + * Total missing probes across all hours (result = missing) (filter: between_max_value) + */ + total_missing_count_between_max_value?: number; + /** + * Total missing probes across all hours (result = missing) (filter: in_values) (comma-separated list) + */ + total_missing_count_in_values?: string; + /** + * Total missing probes across all hours (result = missing) (filter: not_in_values) (comma-separated list) + */ + total_missing_count_not_in_values?: string; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: eq) + */ + min_response_time_ms_eq?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: ne) + */ + min_response_time_ms_ne?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: lt) + */ + min_response_time_ms_lt?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: lte) + */ + min_response_time_ms_lte?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: gt) + */ + min_response_time_ms_gt?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: gte) + */ + min_response_time_ms_gte?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_min) + */ + min_response_time_ms_between_min?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_max_value) + */ + min_response_time_ms_between_max_value?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + min_response_time_ms_in_values?: string; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + min_response_time_ms_not_in_values?: string; + /** + * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: eq) + */ + avg_p50_response_time_ms_eq?: number; + /** + * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: ne) + */ + avg_p50_response_time_ms_ne?: number; + /** + * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: lt) + */ + avg_p50_response_time_ms_lt?: number; + /** + * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: lte) + */ + avg_p50_response_time_ms_lte?: number; + /** + * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: gt) + */ + avg_p50_response_time_ms_gt?: number; + /** + * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: gte) + */ + avg_p50_response_time_ms_gte?: number; + /** + * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: between_min) + */ + avg_p50_response_time_ms_between_min?: number; + /** + * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: between_max_value) + */ + avg_p50_response_time_ms_between_max_value?: number; + /** + * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + avg_p50_response_time_ms_in_values?: string; + /** + * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + avg_p50_response_time_ms_not_in_values?: string; + /** + * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: eq) + */ + avg_p95_response_time_ms_eq?: number; + /** + * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: ne) + */ + avg_p95_response_time_ms_ne?: number; + /** + * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: lt) + */ + avg_p95_response_time_ms_lt?: number; + /** + * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: lte) + */ + avg_p95_response_time_ms_lte?: number; + /** + * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: gt) + */ + avg_p95_response_time_ms_gt?: number; + /** + * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: gte) + */ + avg_p95_response_time_ms_gte?: number; + /** + * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: between_min) + */ + avg_p95_response_time_ms_between_min?: number; + /** + * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: between_max_value) + */ + avg_p95_response_time_ms_between_max_value?: number; + /** + * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + avg_p95_response_time_ms_in_values?: string; + /** + * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + avg_p95_response_time_ms_not_in_values?: string; + /** + * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: eq) + */ + avg_p99_response_time_ms_eq?: number; + /** + * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: ne) + */ + avg_p99_response_time_ms_ne?: number; + /** + * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: lt) + */ + avg_p99_response_time_ms_lt?: number; + /** + * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: lte) + */ + avg_p99_response_time_ms_lte?: number; + /** + * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: gt) + */ + avg_p99_response_time_ms_gt?: number; + /** + * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: gte) + */ + avg_p99_response_time_ms_gte?: number; + /** + * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: between_min) + */ + avg_p99_response_time_ms_between_min?: number; + /** + * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: between_max_value) + */ + avg_p99_response_time_ms_between_max_value?: number; + /** + * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + avg_p99_response_time_ms_in_values?: string; + /** + * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + avg_p99_response_time_ms_not_in_values?: string; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: eq) + */ + max_response_time_ms_eq?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: ne) + */ + max_response_time_ms_ne?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: lt) + */ + max_response_time_ms_lt?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: lte) + */ + max_response_time_ms_lte?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: gt) + */ + max_response_time_ms_gt?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: gte) + */ + max_response_time_ms_gte?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_min) + */ + max_response_time_ms_between_min?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_max_value) + */ + max_response_time_ms_between_max_value?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + max_response_time_ms_in_values?: string; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + max_response_time_ms_not_in_values?: string; + /** + * Maximum blob count observed in this day (filter: eq) + */ + max_blob_count_eq?: number; + /** + * Maximum blob count observed in this day (filter: ne) + */ + max_blob_count_ne?: number; + /** + * Maximum blob count observed in this day (filter: lt) + */ + max_blob_count_lt?: number; + /** + * Maximum blob count observed in this day (filter: lte) + */ + max_blob_count_lte?: number; + /** + * Maximum blob count observed in this day (filter: gt) + */ + max_blob_count_gt?: number; + /** + * Maximum blob count observed in this day (filter: gte) + */ + max_blob_count_gte?: number; + /** + * Maximum blob count observed in this day (filter: between_min) + */ + max_blob_count_between_min?: number; + /** + * Maximum blob count observed in this day (filter: between_max_value) + */ + max_blob_count_between_max_value?: number; + /** + * Maximum blob count observed in this day (filter: in_values) (comma-separated list) + */ + max_blob_count_in_values?: string; + /** + * Maximum blob count observed in this day (filter: not_in_values) (comma-separated list) + */ + max_blob_count_not_in_values?: string; + /** + * The maximum number of fct_data_column_availability_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctDataColumnAvailabilityDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_data_column_availability_daily'; +}; + +export type FctDataColumnAvailabilityDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctDataColumnAvailabilityDailyServiceListError = + FctDataColumnAvailabilityDailyServiceListErrors[keyof FctDataColumnAvailabilityDailyServiceListErrors]; + +export type FctDataColumnAvailabilityDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctDataColumnAvailabilityDailyResponse; +}; + +export type FctDataColumnAvailabilityDailyServiceListResponse = + FctDataColumnAvailabilityDailyServiceListResponses[keyof FctDataColumnAvailabilityDailyServiceListResponses]; + +export type FctDataColumnAvailabilityDailyServiceGetData = { + body?: never; + path: { + /** + * Date of the aggregation + */ + date: string; + }; + query?: never; + url: '/api/v1/fct_data_column_availability_daily/{date}'; +}; + +export type FctDataColumnAvailabilityDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctDataColumnAvailabilityDailyServiceGetError = + FctDataColumnAvailabilityDailyServiceGetErrors[keyof FctDataColumnAvailabilityDailyServiceGetErrors]; + +export type FctDataColumnAvailabilityDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctDataColumnAvailabilityDailyResponse; +}; + +export type FctDataColumnAvailabilityDailyServiceGetResponse = + FctDataColumnAvailabilityDailyServiceGetResponses[keyof FctDataColumnAvailabilityDailyServiceGetResponses]; + +export type FctDataColumnAvailabilityHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Column index (0-127) (filter: eq) + */ + column_index_eq?: number; + /** + * Column index (0-127) (filter: ne) + */ + column_index_ne?: number; + /** + * Column index (0-127) (filter: lt) + */ + column_index_lt?: number; + /** + * Column index (0-127) (filter: lte) + */ + column_index_lte?: number; + /** + * Column index (0-127) (filter: gt) + */ + column_index_gt?: number; + /** + * Column index (0-127) (filter: gte) + */ + column_index_gte?: number; + /** + * Column index (0-127) (filter: between_min) + */ + column_index_between_min?: number; + /** + * Column index (0-127) (filter: between_max_value) + */ + column_index_between_max_value?: number; + /** + * Column index (0-127) (filter: in_values) (comma-separated list) + */ + column_index_in_values?: string; + /** + * Column index (0-127) (filter: not_in_values) (comma-separated list) + */ + column_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of epochs in this hour aggregation (filter: eq) + */ + epoch_count_eq?: number; + /** + * Number of epochs in this hour aggregation (filter: ne) + */ + epoch_count_ne?: number; + /** + * Number of epochs in this hour aggregation (filter: lt) + */ + epoch_count_lt?: number; + /** + * Number of epochs in this hour aggregation (filter: lte) + */ + epoch_count_lte?: number; + /** + * Number of epochs in this hour aggregation (filter: gt) + */ + epoch_count_gt?: number; + /** + * Number of epochs in this hour aggregation (filter: gte) + */ + epoch_count_gte?: number; + /** + * Number of epochs in this hour aggregation (filter: between_min) + */ + epoch_count_between_min?: number; + /** + * Number of epochs in this hour aggregation (filter: between_max_value) + */ + epoch_count_between_max_value?: number; + /** + * Number of epochs in this hour aggregation (filter: in_values) (comma-separated list) + */ + epoch_count_in_values?: string; + /** + * Number of epochs in this hour aggregation (filter: not_in_values) (comma-separated list) + */ + epoch_count_not_in_values?: string; + /** + * Filter avg_availability_pct using value + */ + avg_availability_pct_value?: number; + /** + * Filter min_availability_pct using value + */ + min_availability_pct_value?: number; + /** + * Filter max_availability_pct using value + */ + max_availability_pct_value?: number; + /** + * Total probe count across all epochs (filter: eq) + */ + total_probe_count_eq?: number; + /** + * Total probe count across all epochs (filter: ne) + */ + total_probe_count_ne?: number; + /** + * Total probe count across all epochs (filter: lt) + */ + total_probe_count_lt?: number; + /** + * Total probe count across all epochs (filter: lte) + */ + total_probe_count_lte?: number; + /** + * Total probe count across all epochs (filter: gt) + */ + total_probe_count_gt?: number; + /** + * Total probe count across all epochs (filter: gte) + */ + total_probe_count_gte?: number; + /** + * Total probe count across all epochs (filter: between_min) + */ + total_probe_count_between_min?: number; + /** + * Total probe count across all epochs (filter: between_max_value) + */ + total_probe_count_between_max_value?: number; + /** + * Total probe count across all epochs (filter: in_values) (comma-separated list) + */ + total_probe_count_in_values?: string; + /** + * Total probe count across all epochs (filter: not_in_values) (comma-separated list) + */ + total_probe_count_not_in_values?: string; + /** + * Total successful probes across all epochs (filter: eq) + */ + total_success_count_eq?: number; + /** + * Total successful probes across all epochs (filter: ne) + */ + total_success_count_ne?: number; + /** + * Total successful probes across all epochs (filter: lt) + */ + total_success_count_lt?: number; + /** + * Total successful probes across all epochs (filter: lte) + */ + total_success_count_lte?: number; + /** + * Total successful probes across all epochs (filter: gt) + */ + total_success_count_gt?: number; + /** + * Total successful probes across all epochs (filter: gte) + */ + total_success_count_gte?: number; + /** + * Total successful probes across all epochs (filter: between_min) + */ + total_success_count_between_min?: number; + /** + * Total successful probes across all epochs (filter: between_max_value) + */ + total_success_count_between_max_value?: number; + /** + * Total successful probes across all epochs (filter: in_values) (comma-separated list) + */ + total_success_count_in_values?: string; + /** + * Total successful probes across all epochs (filter: not_in_values) (comma-separated list) + */ + total_success_count_not_in_values?: string; + /** + * Total failed probes across all epochs (result = failure) (filter: eq) + */ + total_failure_count_eq?: number; + /** + * Total failed probes across all epochs (result = failure) (filter: ne) + */ + total_failure_count_ne?: number; + /** + * Total failed probes across all epochs (result = failure) (filter: lt) + */ + total_failure_count_lt?: number; + /** + * Total failed probes across all epochs (result = failure) (filter: lte) + */ + total_failure_count_lte?: number; + /** + * Total failed probes across all epochs (result = failure) (filter: gt) + */ + total_failure_count_gt?: number; + /** + * Total failed probes across all epochs (result = failure) (filter: gte) + */ + total_failure_count_gte?: number; + /** + * Total failed probes across all epochs (result = failure) (filter: between_min) + */ + total_failure_count_between_min?: number; + /** + * Total failed probes across all epochs (result = failure) (filter: between_max_value) + */ + total_failure_count_between_max_value?: number; + /** + * Total failed probes across all epochs (result = failure) (filter: in_values) (comma-separated list) + */ + total_failure_count_in_values?: string; + /** + * Total failed probes across all epochs (result = failure) (filter: not_in_values) (comma-separated list) + */ + total_failure_count_not_in_values?: string; + /** + * Total missing probes across all epochs (result = missing) (filter: eq) + */ + total_missing_count_eq?: number; + /** + * Total missing probes across all epochs (result = missing) (filter: ne) + */ + total_missing_count_ne?: number; + /** + * Total missing probes across all epochs (result = missing) (filter: lt) + */ + total_missing_count_lt?: number; + /** + * Total missing probes across all epochs (result = missing) (filter: lte) + */ + total_missing_count_lte?: number; + /** + * Total missing probes across all epochs (result = missing) (filter: gt) + */ + total_missing_count_gt?: number; + /** + * Total missing probes across all epochs (result = missing) (filter: gte) + */ + total_missing_count_gte?: number; + /** + * Total missing probes across all epochs (result = missing) (filter: between_min) + */ + total_missing_count_between_min?: number; + /** + * Total missing probes across all epochs (result = missing) (filter: between_max_value) + */ + total_missing_count_between_max_value?: number; + /** + * Total missing probes across all epochs (result = missing) (filter: in_values) (comma-separated list) + */ + total_missing_count_in_values?: string; + /** + * Total missing probes across all epochs (result = missing) (filter: not_in_values) (comma-separated list) + */ + total_missing_count_not_in_values?: string; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: eq) + */ + min_response_time_ms_eq?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: ne) + */ + min_response_time_ms_ne?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: lt) + */ + min_response_time_ms_lt?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: lte) + */ + min_response_time_ms_lte?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: gt) + */ + min_response_time_ms_gt?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: gte) + */ + min_response_time_ms_gte?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_min) + */ + min_response_time_ms_between_min?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_max_value) + */ + min_response_time_ms_between_max_value?: number; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + min_response_time_ms_in_values?: string; + /** + * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + min_response_time_ms_not_in_values?: string; + /** + * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: eq) + */ + avg_p50_response_time_ms_eq?: number; + /** + * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: ne) + */ + avg_p50_response_time_ms_ne?: number; + /** + * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: lt) + */ + avg_p50_response_time_ms_lt?: number; + /** + * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: lte) + */ + avg_p50_response_time_ms_lte?: number; + /** + * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: gt) + */ + avg_p50_response_time_ms_gt?: number; + /** + * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: gte) + */ + avg_p50_response_time_ms_gte?: number; + /** + * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: between_min) + */ + avg_p50_response_time_ms_between_min?: number; + /** + * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: between_max_value) + */ + avg_p50_response_time_ms_between_max_value?: number; + /** + * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + avg_p50_response_time_ms_in_values?: string; + /** + * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + avg_p50_response_time_ms_not_in_values?: string; + /** + * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: eq) + */ + avg_p95_response_time_ms_eq?: number; + /** + * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: ne) + */ + avg_p95_response_time_ms_ne?: number; + /** + * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: lt) + */ + avg_p95_response_time_ms_lt?: number; + /** + * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: lte) + */ + avg_p95_response_time_ms_lte?: number; + /** + * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: gt) + */ + avg_p95_response_time_ms_gt?: number; + /** + * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: gte) + */ + avg_p95_response_time_ms_gte?: number; + /** + * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: between_min) + */ + avg_p95_response_time_ms_between_min?: number; + /** + * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: between_max_value) + */ + avg_p95_response_time_ms_between_max_value?: number; + /** + * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + avg_p95_response_time_ms_in_values?: string; + /** + * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + avg_p95_response_time_ms_not_in_values?: string; + /** + * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: eq) + */ + avg_p99_response_time_ms_eq?: number; + /** + * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: ne) + */ + avg_p99_response_time_ms_ne?: number; + /** + * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: lt) + */ + avg_p99_response_time_ms_lt?: number; + /** + * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: lte) + */ + avg_p99_response_time_ms_lte?: number; + /** + * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: gt) + */ + avg_p99_response_time_ms_gt?: number; + /** + * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: gte) + */ + avg_p99_response_time_ms_gte?: number; + /** + * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: between_min) + */ + avg_p99_response_time_ms_between_min?: number; + /** + * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: between_max_value) + */ + avg_p99_response_time_ms_between_max_value?: number; + /** + * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + avg_p99_response_time_ms_in_values?: string; + /** + * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + avg_p99_response_time_ms_not_in_values?: string; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: eq) + */ + max_response_time_ms_eq?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: ne) + */ + max_response_time_ms_ne?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: lt) + */ + max_response_time_ms_lt?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: lte) + */ + max_response_time_ms_lte?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: gt) + */ + max_response_time_ms_gt?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: gte) + */ + max_response_time_ms_gte?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_min) + */ + max_response_time_ms_between_min?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_max_value) + */ + max_response_time_ms_between_max_value?: number; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) + */ + max_response_time_ms_in_values?: string; + /** + * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) + */ + max_response_time_ms_not_in_values?: string; + /** + * Maximum blob count observed in this hour (filter: eq) + */ + max_blob_count_eq?: number; + /** + * Maximum blob count observed in this hour (filter: ne) + */ + max_blob_count_ne?: number; + /** + * Maximum blob count observed in this hour (filter: lt) + */ + max_blob_count_lt?: number; + /** + * Maximum blob count observed in this hour (filter: lte) + */ + max_blob_count_lte?: number; + /** + * Maximum blob count observed in this hour (filter: gt) + */ + max_blob_count_gt?: number; + /** + * Maximum blob count observed in this hour (filter: gte) + */ + max_blob_count_gte?: number; + /** + * Maximum blob count observed in this hour (filter: between_min) + */ + max_blob_count_between_min?: number; + /** + * Maximum blob count observed in this hour (filter: between_max_value) + */ + max_blob_count_between_max_value?: number; + /** + * Maximum blob count observed in this hour (filter: in_values) (comma-separated list) + */ + max_blob_count_in_values?: string; + /** + * Maximum blob count observed in this hour (filter: not_in_values) (comma-separated list) + */ + max_blob_count_not_in_values?: string; + /** + * The maximum number of fct_data_column_availability_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctDataColumnAvailabilityHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_data_column_availability_hourly'; +}; + +export type FctDataColumnAvailabilityHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctDataColumnAvailabilityHourlyServiceListError = + FctDataColumnAvailabilityHourlyServiceListErrors[keyof FctDataColumnAvailabilityHourlyServiceListErrors]; + +export type FctDataColumnAvailabilityHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctDataColumnAvailabilityHourlyResponse; +}; + +export type FctDataColumnAvailabilityHourlyServiceListResponse = + FctDataColumnAvailabilityHourlyServiceListResponses[keyof FctDataColumnAvailabilityHourlyServiceListResponses]; + +export type FctDataColumnAvailabilityHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_data_column_availability_hourly/{hour_start_date_time}'; +}; + +export type FctDataColumnAvailabilityHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctDataColumnAvailabilityHourlyServiceGetError = + FctDataColumnAvailabilityHourlyServiceGetErrors[keyof FctDataColumnAvailabilityHourlyServiceGetErrors]; + +export type FctDataColumnAvailabilityHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctDataColumnAvailabilityHourlyResponse; +}; + +export type FctDataColumnAvailabilityHourlyServiceGetResponse = + FctDataColumnAvailabilityHourlyServiceGetResponses[keyof FctDataColumnAvailabilityHourlyServiceGetResponses]; + +export type FctEngineGetBlobsByElClientServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) + */ + block_root_eq?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) + */ + block_root_ne?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) + */ + block_root_contains?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: like) + */ + block_root_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) + */ + block_root_not_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) + */ + meta_execution_implementation_eq?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) + */ + meta_execution_implementation_ne?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) + */ + meta_execution_implementation_contains?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) + */ + meta_execution_implementation_starts_with?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) + */ + meta_execution_implementation_ends_with?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: like) + */ + meta_execution_implementation_like?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) + */ + meta_execution_implementation_not_like?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) + */ + meta_execution_implementation_in_values?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) + */ + meta_execution_implementation_not_in_values?: string; + /** + * Execution client version string (filter: eq) + */ + meta_execution_version_eq?: string; + /** + * Execution client version string (filter: ne) + */ + meta_execution_version_ne?: string; + /** + * Execution client version string (filter: contains) + */ + meta_execution_version_contains?: string; + /** + * Execution client version string (filter: starts_with) + */ + meta_execution_version_starts_with?: string; + /** + * Execution client version string (filter: ends_with) + */ + meta_execution_version_ends_with?: string; + /** + * Execution client version string (filter: like) + */ + meta_execution_version_like?: string; + /** + * Execution client version string (filter: not_like) + */ + meta_execution_version_not_like?: string; + /** + * Execution client version string (filter: in_values) (comma-separated list) + */ + meta_execution_version_in_values?: string; + /** + * Execution client version string (filter: not_in_values) (comma-separated list) + */ + meta_execution_version_not_in_values?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: eq) + */ + status_eq?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: ne) + */ + status_ne?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: contains) + */ + status_contains?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: starts_with) + */ + status_starts_with?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: ends_with) + */ + status_ends_with?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: like) + */ + status_like?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: not_like) + */ + status_not_like?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number of the beacon block being reconstructed (filter: eq) + */ + slot_eq?: number; + /** + * Slot number of the beacon block being reconstructed (filter: ne) + */ + slot_ne?: number; + /** + * Slot number of the beacon block being reconstructed (filter: lt) + */ + slot_lt?: number; + /** + * Slot number of the beacon block being reconstructed (filter: lte) + */ + slot_lte?: number; + /** + * Slot number of the beacon block being reconstructed (filter: gt) + */ + slot_gt?: number; + /** + * Slot number of the beacon block being reconstructed (filter: gte) + */ + slot_gte?: number; + /** + * Slot number of the beacon block being reconstructed (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number of the beacon block being reconstructed (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number of the beacon block being reconstructed (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number of the beacon block being reconstructed (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Number of observations for this EL client/status (filter: eq) + */ + observation_count_eq?: number; + /** + * Number of observations for this EL client/status (filter: ne) + */ + observation_count_ne?: number; + /** + * Number of observations for this EL client/status (filter: lt) + */ + observation_count_lt?: number; + /** + * Number of observations for this EL client/status (filter: lte) + */ + observation_count_lte?: number; + /** + * Number of observations for this EL client/status (filter: gt) + */ + observation_count_gt?: number; + /** + * Number of observations for this EL client/status (filter: gte) + */ + observation_count_gte?: number; + /** + * Number of observations for this EL client/status (filter: between_min) + */ + observation_count_between_min?: number; + /** + * Number of observations for this EL client/status (filter: between_max_value) + */ + observation_count_between_max_value?: number; + /** + * Number of observations for this EL client/status (filter: in_values) (comma-separated list) + */ + observation_count_in_values?: string; + /** + * Number of observations for this EL client/status (filter: not_in_values) (comma-separated list) + */ + observation_count_not_in_values?: string; + /** + * Number of unique nodes with this EL client/status (filter: eq) + */ + unique_node_count_eq?: number; + /** + * Number of unique nodes with this EL client/status (filter: ne) + */ + unique_node_count_ne?: number; + /** + * Number of unique nodes with this EL client/status (filter: lt) + */ + unique_node_count_lt?: number; + /** + * Number of unique nodes with this EL client/status (filter: lte) + */ + unique_node_count_lte?: number; + /** + * Number of unique nodes with this EL client/status (filter: gt) + */ + unique_node_count_gt?: number; + /** + * Number of unique nodes with this EL client/status (filter: gte) + */ + unique_node_count_gte?: number; + /** + * Number of unique nodes with this EL client/status (filter: between_min) + */ + unique_node_count_between_min?: number; + /** + * Number of unique nodes with this EL client/status (filter: between_max_value) + */ + unique_node_count_between_max_value?: number; + /** + * Number of unique nodes with this EL client/status (filter: in_values) (comma-separated list) + */ + unique_node_count_in_values?: string; + /** + * Number of unique nodes with this EL client/status (filter: not_in_values) (comma-separated list) + */ + unique_node_count_not_in_values?: string; + /** + * Maximum number of versioned hashes requested (filter: eq) + */ + max_requested_count_eq?: number; + /** + * Maximum number of versioned hashes requested (filter: ne) + */ + max_requested_count_ne?: number; + /** + * Maximum number of versioned hashes requested (filter: lt) + */ + max_requested_count_lt?: number; + /** + * Maximum number of versioned hashes requested (filter: lte) + */ + max_requested_count_lte?: number; + /** + * Maximum number of versioned hashes requested (filter: gt) + */ + max_requested_count_gt?: number; + /** + * Maximum number of versioned hashes requested (filter: gte) + */ + max_requested_count_gte?: number; + /** + * Maximum number of versioned hashes requested (filter: between_min) + */ + max_requested_count_between_min?: number; + /** + * Maximum number of versioned hashes requested (filter: between_max_value) + */ + max_requested_count_between_max_value?: number; + /** + * Maximum number of versioned hashes requested (filter: in_values) (comma-separated list) + */ + max_requested_count_in_values?: string; + /** + * Maximum number of versioned hashes requested (filter: not_in_values) (comma-separated list) + */ + max_requested_count_not_in_values?: string; + /** + * Filter avg_returned_count using value + */ + avg_returned_count_value?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: eq) + */ + avg_duration_ms_eq?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: ne) + */ + avg_duration_ms_ne?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: lt) + */ + avg_duration_ms_lt?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: lte) + */ + avg_duration_ms_lte?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: gt) + */ + avg_duration_ms_gt?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: gte) + */ + avg_duration_ms_gte?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: between_min) + */ + avg_duration_ms_between_min?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: between_max_value) + */ + avg_duration_ms_between_max_value?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) + */ + avg_duration_ms_in_values?: string; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + avg_duration_ms_not_in_values?: string; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: eq) + */ + median_duration_ms_eq?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: ne) + */ + median_duration_ms_ne?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: lt) + */ + median_duration_ms_lt?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: lte) + */ + median_duration_ms_lte?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: gt) + */ + median_duration_ms_gt?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: gte) + */ + median_duration_ms_gte?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: between_min) + */ + median_duration_ms_between_min?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: between_max_value) + */ + median_duration_ms_between_max_value?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) + */ + median_duration_ms_in_values?: string; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + median_duration_ms_not_in_values?: string; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: eq) + */ + min_duration_ms_eq?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: ne) + */ + min_duration_ms_ne?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: lt) + */ + min_duration_ms_lt?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: lte) + */ + min_duration_ms_lte?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: gt) + */ + min_duration_ms_gt?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: gte) + */ + min_duration_ms_gte?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: between_min) + */ + min_duration_ms_between_min?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: between_max_value) + */ + min_duration_ms_between_max_value?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) + */ + min_duration_ms_in_values?: string; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + min_duration_ms_not_in_values?: string; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: eq) + */ + max_duration_ms_eq?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: ne) + */ + max_duration_ms_ne?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: lt) + */ + max_duration_ms_lt?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: lte) + */ + max_duration_ms_lte?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: gt) + */ + max_duration_ms_gt?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: gte) + */ + max_duration_ms_gte?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: between_min) + */ + max_duration_ms_between_min?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: between_max_value) + */ + max_duration_ms_between_max_value?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) + */ + max_duration_ms_in_values?: string; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + max_duration_ms_not_in_values?: string; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: eq) + */ + p95_duration_ms_eq?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: ne) + */ + p95_duration_ms_ne?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: lt) + */ + p95_duration_ms_lt?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: lte) + */ + p95_duration_ms_lte?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: gt) + */ + p95_duration_ms_gt?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: gte) + */ + p95_duration_ms_gte?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: between_min) + */ + p95_duration_ms_between_min?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: between_max_value) + */ + p95_duration_ms_between_max_value?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) + */ + p95_duration_ms_in_values?: string; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + p95_duration_ms_not_in_values?: string; + /** + * The maximum number of fct_engine_get_blobs_by_el_client to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctEngineGetBlobsByElClient` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_engine_get_blobs_by_el_client'; +}; + +export type FctEngineGetBlobsByElClientServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineGetBlobsByElClientServiceListError = + FctEngineGetBlobsByElClientServiceListErrors[keyof FctEngineGetBlobsByElClientServiceListErrors]; + +export type FctEngineGetBlobsByElClientServiceListResponses = { + /** + * OK + */ + 200: ListFctEngineGetBlobsByElClientResponse; +}; + +export type FctEngineGetBlobsByElClientServiceListResponse = + FctEngineGetBlobsByElClientServiceListResponses[keyof FctEngineGetBlobsByElClientServiceListResponses]; + +export type FctEngineGetBlobsByElClientServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_engine_get_blobs_by_el_client/{slot_start_date_time}'; +}; + +export type FctEngineGetBlobsByElClientServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineGetBlobsByElClientServiceGetError = + FctEngineGetBlobsByElClientServiceGetErrors[keyof FctEngineGetBlobsByElClientServiceGetErrors]; + +export type FctEngineGetBlobsByElClientServiceGetResponses = { + /** + * OK + */ + 200: GetFctEngineGetBlobsByElClientResponse; +}; + +export type FctEngineGetBlobsByElClientServiceGetResponse = + FctEngineGetBlobsByElClientServiceGetResponses[keyof FctEngineGetBlobsByElClientServiceGetResponses]; + +export type FctEngineGetBlobsByElClientHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) + */ + meta_execution_implementation_eq?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) + */ + meta_execution_implementation_ne?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) + */ + meta_execution_implementation_contains?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) + */ + meta_execution_implementation_starts_with?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) + */ + meta_execution_implementation_ends_with?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: like) + */ + meta_execution_implementation_like?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) + */ + meta_execution_implementation_not_like?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) + */ + meta_execution_implementation_in_values?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) + */ + meta_execution_implementation_not_in_values?: string; + /** + * Execution client version string (filter: eq) + */ + meta_execution_version_eq?: string; + /** + * Execution client version string (filter: ne) + */ + meta_execution_version_ne?: string; + /** + * Execution client version string (filter: contains) + */ + meta_execution_version_contains?: string; + /** + * Execution client version string (filter: starts_with) + */ + meta_execution_version_starts_with?: string; + /** + * Execution client version string (filter: ends_with) + */ + meta_execution_version_ends_with?: string; + /** + * Execution client version string (filter: like) + */ + meta_execution_version_like?: string; + /** + * Execution client version string (filter: not_like) + */ + meta_execution_version_not_like?: string; + /** + * Execution client version string (filter: in_values) (comma-separated list) + */ + meta_execution_version_in_values?: string; + /** + * Execution client version string (filter: not_in_values) (comma-separated list) + */ + meta_execution_version_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of unique slots in this hour (filter: eq) + */ + slot_count_eq?: number; + /** + * Number of unique slots in this hour (filter: ne) + */ + slot_count_ne?: number; + /** + * Number of unique slots in this hour (filter: lt) + */ + slot_count_lt?: number; + /** + * Number of unique slots in this hour (filter: lte) + */ + slot_count_lte?: number; + /** + * Number of unique slots in this hour (filter: gt) + */ + slot_count_gt?: number; + /** + * Number of unique slots in this hour (filter: gte) + */ + slot_count_gte?: number; + /** + * Number of unique slots in this hour (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Number of unique slots in this hour (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Number of unique slots in this hour (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Number of unique slots in this hour (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * Total number of observations for this client in this hour (filter: eq) + */ + observation_count_eq?: number; + /** + * Total number of observations for this client in this hour (filter: ne) + */ + observation_count_ne?: number; + /** + * Total number of observations for this client in this hour (filter: lt) + */ + observation_count_lt?: number; + /** + * Total number of observations for this client in this hour (filter: lte) + */ + observation_count_lte?: number; + /** + * Total number of observations for this client in this hour (filter: gt) + */ + observation_count_gt?: number; + /** + * Total number of observations for this client in this hour (filter: gte) + */ + observation_count_gte?: number; + /** + * Total number of observations for this client in this hour (filter: between_min) + */ + observation_count_between_min?: number; + /** + * Total number of observations for this client in this hour (filter: between_max_value) + */ + observation_count_between_max_value?: number; + /** + * Total number of observations for this client in this hour (filter: in_values) (comma-separated list) + */ + observation_count_in_values?: string; + /** + * Total number of observations for this client in this hour (filter: not_in_values) (comma-separated list) + */ + observation_count_not_in_values?: string; + /** + * Number of unique nodes reporting for this client (filter: eq) + */ + unique_node_count_eq?: number; + /** + * Number of unique nodes reporting for this client (filter: ne) + */ + unique_node_count_ne?: number; + /** + * Number of unique nodes reporting for this client (filter: lt) + */ + unique_node_count_lt?: number; + /** + * Number of unique nodes reporting for this client (filter: lte) + */ + unique_node_count_lte?: number; + /** + * Number of unique nodes reporting for this client (filter: gt) + */ + unique_node_count_gt?: number; + /** + * Number of unique nodes reporting for this client (filter: gte) + */ + unique_node_count_gte?: number; + /** + * Number of unique nodes reporting for this client (filter: between_min) + */ + unique_node_count_between_min?: number; + /** + * Number of unique nodes reporting for this client (filter: between_max_value) + */ + unique_node_count_between_max_value?: number; + /** + * Number of unique nodes reporting for this client (filter: in_values) (comma-separated list) + */ + unique_node_count_in_values?: string; + /** + * Number of unique nodes reporting for this client (filter: not_in_values) (comma-separated list) + */ + unique_node_count_not_in_values?: string; + /** + * Number of observations with SUCCESS status (filter: eq) + */ + success_count_eq?: number; + /** + * Number of observations with SUCCESS status (filter: ne) + */ + success_count_ne?: number; + /** + * Number of observations with SUCCESS status (filter: lt) + */ + success_count_lt?: number; + /** + * Number of observations with SUCCESS status (filter: lte) + */ + success_count_lte?: number; + /** + * Number of observations with SUCCESS status (filter: gt) + */ + success_count_gt?: number; + /** + * Number of observations with SUCCESS status (filter: gte) + */ + success_count_gte?: number; + /** + * Number of observations with SUCCESS status (filter: between_min) + */ + success_count_between_min?: number; + /** + * Number of observations with SUCCESS status (filter: between_max_value) + */ + success_count_between_max_value?: number; + /** + * Number of observations with SUCCESS status (filter: in_values) (comma-separated list) + */ + success_count_in_values?: string; + /** + * Number of observations with SUCCESS status (filter: not_in_values) (comma-separated list) + */ + success_count_not_in_values?: string; + /** + * Number of observations with PARTIAL status (filter: eq) + */ + partial_count_eq?: number; + /** + * Number of observations with PARTIAL status (filter: ne) + */ + partial_count_ne?: number; + /** + * Number of observations with PARTIAL status (filter: lt) + */ + partial_count_lt?: number; + /** + * Number of observations with PARTIAL status (filter: lte) + */ + partial_count_lte?: number; + /** + * Number of observations with PARTIAL status (filter: gt) + */ + partial_count_gt?: number; + /** + * Number of observations with PARTIAL status (filter: gte) + */ + partial_count_gte?: number; + /** + * Number of observations with PARTIAL status (filter: between_min) + */ + partial_count_between_min?: number; + /** + * Number of observations with PARTIAL status (filter: between_max_value) + */ + partial_count_between_max_value?: number; + /** + * Number of observations with PARTIAL status (filter: in_values) (comma-separated list) + */ + partial_count_in_values?: string; + /** + * Number of observations with PARTIAL status (filter: not_in_values) (comma-separated list) + */ + partial_count_not_in_values?: string; + /** + * Number of observations with EMPTY status (filter: eq) + */ + empty_count_eq?: number; + /** + * Number of observations with EMPTY status (filter: ne) + */ + empty_count_ne?: number; + /** + * Number of observations with EMPTY status (filter: lt) + */ + empty_count_lt?: number; + /** + * Number of observations with EMPTY status (filter: lte) + */ + empty_count_lte?: number; + /** + * Number of observations with EMPTY status (filter: gt) + */ + empty_count_gt?: number; + /** + * Number of observations with EMPTY status (filter: gte) + */ + empty_count_gte?: number; + /** + * Number of observations with EMPTY status (filter: between_min) + */ + empty_count_between_min?: number; + /** + * Number of observations with EMPTY status (filter: between_max_value) + */ + empty_count_between_max_value?: number; + /** + * Number of observations with EMPTY status (filter: in_values) (comma-separated list) + */ + empty_count_in_values?: string; + /** + * Number of observations with EMPTY status (filter: not_in_values) (comma-separated list) + */ + empty_count_not_in_values?: string; + /** + * Number of observations with UNSUPPORTED status (filter: eq) + */ + unsupported_count_eq?: number; + /** + * Number of observations with UNSUPPORTED status (filter: ne) + */ + unsupported_count_ne?: number; + /** + * Number of observations with UNSUPPORTED status (filter: lt) + */ + unsupported_count_lt?: number; + /** + * Number of observations with UNSUPPORTED status (filter: lte) + */ + unsupported_count_lte?: number; + /** + * Number of observations with UNSUPPORTED status (filter: gt) + */ + unsupported_count_gt?: number; + /** + * Number of observations with UNSUPPORTED status (filter: gte) + */ + unsupported_count_gte?: number; + /** + * Number of observations with UNSUPPORTED status (filter: between_min) + */ + unsupported_count_between_min?: number; + /** + * Number of observations with UNSUPPORTED status (filter: between_max_value) + */ + unsupported_count_between_max_value?: number; + /** + * Number of observations with UNSUPPORTED status (filter: in_values) (comma-separated list) + */ + unsupported_count_in_values?: string; + /** + * Number of observations with UNSUPPORTED status (filter: not_in_values) (comma-separated list) + */ + unsupported_count_not_in_values?: string; + /** + * Number of observations with ERROR status (filter: eq) + */ + error_count_eq?: number; + /** + * Number of observations with ERROR status (filter: ne) + */ + error_count_ne?: number; + /** + * Number of observations with ERROR status (filter: lt) + */ + error_count_lt?: number; + /** + * Number of observations with ERROR status (filter: lte) + */ + error_count_lte?: number; + /** + * Number of observations with ERROR status (filter: gt) + */ + error_count_gt?: number; + /** + * Number of observations with ERROR status (filter: gte) + */ + error_count_gte?: number; + /** + * Number of observations with ERROR status (filter: between_min) + */ + error_count_between_min?: number; + /** + * Number of observations with ERROR status (filter: between_max_value) + */ + error_count_between_max_value?: number; + /** + * Number of observations with ERROR status (filter: in_values) (comma-separated list) + */ + error_count_in_values?: string; + /** + * Number of observations with ERROR status (filter: not_in_values) (comma-separated list) + */ + error_count_not_in_values?: string; + /** + * Filter avg_returned_count using value + */ + avg_returned_count_value?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: eq) + */ + avg_duration_ms_eq?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: ne) + */ + avg_duration_ms_ne?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: lt) + */ + avg_duration_ms_lt?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: lte) + */ + avg_duration_ms_lte?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: gt) + */ + avg_duration_ms_gt?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: gte) + */ + avg_duration_ms_gte?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: between_min) + */ + avg_duration_ms_between_min?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: between_max_value) + */ + avg_duration_ms_between_max_value?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) + */ + avg_duration_ms_in_values?: string; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + avg_duration_ms_not_in_values?: string; + /** + * 50th percentile (median) duration in milliseconds (filter: eq) + */ + p50_duration_ms_eq?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: ne) + */ + p50_duration_ms_ne?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: lt) + */ + p50_duration_ms_lt?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: lte) + */ + p50_duration_ms_lte?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: gt) + */ + p50_duration_ms_gt?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: gte) + */ + p50_duration_ms_gte?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: between_min) + */ + p50_duration_ms_between_min?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: between_max_value) + */ + p50_duration_ms_between_max_value?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: in_values) (comma-separated list) + */ + p50_duration_ms_in_values?: string; + /** + * 50th percentile (median) duration in milliseconds (filter: not_in_values) (comma-separated list) + */ + p50_duration_ms_not_in_values?: string; + /** + * 95th percentile duration in milliseconds (filter: eq) + */ + p95_duration_ms_eq?: number; + /** + * 95th percentile duration in milliseconds (filter: ne) + */ + p95_duration_ms_ne?: number; + /** + * 95th percentile duration in milliseconds (filter: lt) + */ + p95_duration_ms_lt?: number; + /** + * 95th percentile duration in milliseconds (filter: lte) + */ + p95_duration_ms_lte?: number; + /** + * 95th percentile duration in milliseconds (filter: gt) + */ + p95_duration_ms_gt?: number; + /** + * 95th percentile duration in milliseconds (filter: gte) + */ + p95_duration_ms_gte?: number; + /** + * 95th percentile duration in milliseconds (filter: between_min) + */ + p95_duration_ms_between_min?: number; + /** + * 95th percentile duration in milliseconds (filter: between_max_value) + */ + p95_duration_ms_between_max_value?: number; + /** + * 95th percentile duration in milliseconds (filter: in_values) (comma-separated list) + */ + p95_duration_ms_in_values?: string; + /** + * 95th percentile duration in milliseconds (filter: not_in_values) (comma-separated list) + */ + p95_duration_ms_not_in_values?: string; + /** + * Minimum duration in milliseconds (filter: eq) + */ + min_duration_ms_eq?: number; + /** + * Minimum duration in milliseconds (filter: ne) + */ + min_duration_ms_ne?: number; + /** + * Minimum duration in milliseconds (filter: lt) + */ + min_duration_ms_lt?: number; + /** + * Minimum duration in milliseconds (filter: lte) + */ + min_duration_ms_lte?: number; + /** + * Minimum duration in milliseconds (filter: gt) + */ + min_duration_ms_gt?: number; + /** + * Minimum duration in milliseconds (filter: gte) + */ + min_duration_ms_gte?: number; + /** + * Minimum duration in milliseconds (filter: between_min) + */ + min_duration_ms_between_min?: number; + /** + * Minimum duration in milliseconds (filter: between_max_value) + */ + min_duration_ms_between_max_value?: number; + /** + * Minimum duration in milliseconds (filter: in_values) (comma-separated list) + */ + min_duration_ms_in_values?: string; + /** + * Minimum duration in milliseconds (filter: not_in_values) (comma-separated list) + */ + min_duration_ms_not_in_values?: string; + /** + * Maximum duration in milliseconds (filter: eq) + */ + max_duration_ms_eq?: number; + /** + * Maximum duration in milliseconds (filter: ne) + */ + max_duration_ms_ne?: number; + /** + * Maximum duration in milliseconds (filter: lt) + */ + max_duration_ms_lt?: number; + /** + * Maximum duration in milliseconds (filter: lte) + */ + max_duration_ms_lte?: number; + /** + * Maximum duration in milliseconds (filter: gt) + */ + max_duration_ms_gt?: number; + /** + * Maximum duration in milliseconds (filter: gte) + */ + max_duration_ms_gte?: number; + /** + * Maximum duration in milliseconds (filter: between_min) + */ + max_duration_ms_between_min?: number; + /** + * Maximum duration in milliseconds (filter: between_max_value) + */ + max_duration_ms_between_max_value?: number; + /** + * Maximum duration in milliseconds (filter: in_values) (comma-separated list) + */ + max_duration_ms_in_values?: string; + /** + * Maximum duration in milliseconds (filter: not_in_values) (comma-separated list) + */ + max_duration_ms_not_in_values?: string; + /** + * The maximum number of fct_engine_get_blobs_by_el_client_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctEngineGetBlobsByElClientHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_engine_get_blobs_by_el_client_hourly'; +}; + +export type FctEngineGetBlobsByElClientHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineGetBlobsByElClientHourlyServiceListError = + FctEngineGetBlobsByElClientHourlyServiceListErrors[keyof FctEngineGetBlobsByElClientHourlyServiceListErrors]; + +export type FctEngineGetBlobsByElClientHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctEngineGetBlobsByElClientHourlyResponse; +}; + +export type FctEngineGetBlobsByElClientHourlyServiceListResponse = + FctEngineGetBlobsByElClientHourlyServiceListResponses[keyof FctEngineGetBlobsByElClientHourlyServiceListResponses]; + +export type FctEngineGetBlobsByElClientHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_engine_get_blobs_by_el_client_hourly/{hour_start_date_time}'; +}; + +export type FctEngineGetBlobsByElClientHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineGetBlobsByElClientHourlyServiceGetError = + FctEngineGetBlobsByElClientHourlyServiceGetErrors[keyof FctEngineGetBlobsByElClientHourlyServiceGetErrors]; + +export type FctEngineGetBlobsByElClientHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctEngineGetBlobsByElClientHourlyResponse; +}; + +export type FctEngineGetBlobsByElClientHourlyServiceGetResponse = + FctEngineGetBlobsByElClientHourlyServiceGetResponses[keyof FctEngineGetBlobsByElClientHourlyServiceGetResponses]; + +export type FctEngineGetBlobsBySlotServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) + */ + block_root_eq?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) + */ + block_root_ne?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) + */ + block_root_contains?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: like) + */ + block_root_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) + */ + block_root_not_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: eq) + */ + status_eq?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: ne) + */ + status_ne?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: contains) + */ + status_contains?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: starts_with) + */ + status_starts_with?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: ends_with) + */ + status_ends_with?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: like) + */ + status_like?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: not_like) + */ + status_not_like?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number of the beacon block being reconstructed (filter: eq) + */ + slot_eq?: number; + /** + * Slot number of the beacon block being reconstructed (filter: ne) + */ + slot_ne?: number; + /** + * Slot number of the beacon block being reconstructed (filter: lt) + */ + slot_lt?: number; + /** + * Slot number of the beacon block being reconstructed (filter: lte) + */ + slot_lte?: number; + /** + * Slot number of the beacon block being reconstructed (filter: gt) + */ + slot_gt?: number; + /** + * Slot number of the beacon block being reconstructed (filter: gte) + */ + slot_gte?: number; + /** + * Slot number of the beacon block being reconstructed (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number of the beacon block being reconstructed (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number of the beacon block being reconstructed (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number of the beacon block being reconstructed (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Number of observations for this slot/block/status (filter: eq) + */ + observation_count_eq?: number; + /** + * Number of observations for this slot/block/status (filter: ne) + */ + observation_count_ne?: number; + /** + * Number of observations for this slot/block/status (filter: lt) + */ + observation_count_lt?: number; + /** + * Number of observations for this slot/block/status (filter: lte) + */ + observation_count_lte?: number; + /** + * Number of observations for this slot/block/status (filter: gt) + */ + observation_count_gt?: number; + /** + * Number of observations for this slot/block/status (filter: gte) + */ + observation_count_gte?: number; + /** + * Number of observations for this slot/block/status (filter: between_min) + */ + observation_count_between_min?: number; + /** + * Number of observations for this slot/block/status (filter: between_max_value) + */ + observation_count_between_max_value?: number; + /** + * Number of observations for this slot/block/status (filter: in_values) (comma-separated list) + */ + observation_count_in_values?: string; + /** + * Number of observations for this slot/block/status (filter: not_in_values) (comma-separated list) + */ + observation_count_not_in_values?: string; + /** + * Number of unique nodes that observed this block with this status (filter: eq) + */ + unique_node_count_eq?: number; + /** + * Number of unique nodes that observed this block with this status (filter: ne) + */ + unique_node_count_ne?: number; + /** + * Number of unique nodes that observed this block with this status (filter: lt) + */ + unique_node_count_lt?: number; + /** + * Number of unique nodes that observed this block with this status (filter: lte) + */ + unique_node_count_lte?: number; + /** + * Number of unique nodes that observed this block with this status (filter: gt) + */ + unique_node_count_gt?: number; + /** + * Number of unique nodes that observed this block with this status (filter: gte) + */ + unique_node_count_gte?: number; + /** + * Number of unique nodes that observed this block with this status (filter: between_min) + */ + unique_node_count_between_min?: number; + /** + * Number of unique nodes that observed this block with this status (filter: between_max_value) + */ + unique_node_count_between_max_value?: number; + /** + * Number of unique nodes that observed this block with this status (filter: in_values) (comma-separated list) + */ + unique_node_count_in_values?: string; + /** + * Number of unique nodes that observed this block with this status (filter: not_in_values) (comma-separated list) + */ + unique_node_count_not_in_values?: string; + /** + * Maximum number of versioned hashes requested (filter: eq) + */ + max_requested_count_eq?: number; + /** + * Maximum number of versioned hashes requested (filter: ne) + */ + max_requested_count_ne?: number; + /** + * Maximum number of versioned hashes requested (filter: lt) + */ + max_requested_count_lt?: number; + /** + * Maximum number of versioned hashes requested (filter: lte) + */ + max_requested_count_lte?: number; + /** + * Maximum number of versioned hashes requested (filter: gt) + */ + max_requested_count_gt?: number; + /** + * Maximum number of versioned hashes requested (filter: gte) + */ + max_requested_count_gte?: number; + /** + * Maximum number of versioned hashes requested (filter: between_min) + */ + max_requested_count_between_min?: number; + /** + * Maximum number of versioned hashes requested (filter: between_max_value) + */ + max_requested_count_between_max_value?: number; + /** + * Maximum number of versioned hashes requested (filter: in_values) (comma-separated list) + */ + max_requested_count_in_values?: string; + /** + * Maximum number of versioned hashes requested (filter: not_in_values) (comma-separated list) + */ + max_requested_count_not_in_values?: string; + /** + * Filter avg_returned_count using value + */ + avg_returned_count_value?: number; + /** + * Filter full_return_pct using value + */ + full_return_pct_value?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: eq) + */ + avg_duration_ms_eq?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: ne) + */ + avg_duration_ms_ne?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: lt) + */ + avg_duration_ms_lt?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: lte) + */ + avg_duration_ms_lte?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: gt) + */ + avg_duration_ms_gt?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: gte) + */ + avg_duration_ms_gte?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: between_min) + */ + avg_duration_ms_between_min?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: between_max_value) + */ + avg_duration_ms_between_max_value?: number; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) + */ + avg_duration_ms_in_values?: string; + /** + * Average duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + avg_duration_ms_not_in_values?: string; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: eq) + */ + median_duration_ms_eq?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: ne) + */ + median_duration_ms_ne?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: lt) + */ + median_duration_ms_lt?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: lte) + */ + median_duration_ms_lte?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: gt) + */ + median_duration_ms_gt?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: gte) + */ + median_duration_ms_gte?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: between_min) + */ + median_duration_ms_between_min?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: between_max_value) + */ + median_duration_ms_between_max_value?: number; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) + */ + median_duration_ms_in_values?: string; + /** + * Median duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + median_duration_ms_not_in_values?: string; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: eq) + */ + min_duration_ms_eq?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: ne) + */ + min_duration_ms_ne?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: lt) + */ + min_duration_ms_lt?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: lte) + */ + min_duration_ms_lte?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: gt) + */ + min_duration_ms_gt?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: gte) + */ + min_duration_ms_gte?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: between_min) + */ + min_duration_ms_between_min?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: between_max_value) + */ + min_duration_ms_between_max_value?: number; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) + */ + min_duration_ms_in_values?: string; + /** + * Minimum duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + min_duration_ms_not_in_values?: string; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: eq) + */ + max_duration_ms_eq?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: ne) + */ + max_duration_ms_ne?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: lt) + */ + max_duration_ms_lt?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: lte) + */ + max_duration_ms_lte?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: gt) + */ + max_duration_ms_gt?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: gte) + */ + max_duration_ms_gte?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: between_min) + */ + max_duration_ms_between_min?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: between_max_value) + */ + max_duration_ms_between_max_value?: number; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) + */ + max_duration_ms_in_values?: string; + /** + * Maximum duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + max_duration_ms_not_in_values?: string; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: eq) + */ + p95_duration_ms_eq?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: ne) + */ + p95_duration_ms_ne?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: lt) + */ + p95_duration_ms_lt?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: lte) + */ + p95_duration_ms_lte?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: gt) + */ + p95_duration_ms_gt?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: gte) + */ + p95_duration_ms_gte?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: between_min) + */ + p95_duration_ms_between_min?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: between_max_value) + */ + p95_duration_ms_between_max_value?: number; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) + */ + p95_duration_ms_in_values?: string; + /** + * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + p95_duration_ms_not_in_values?: string; + /** + * Number of unique CL client implementations observing this block (filter: eq) + */ + unique_cl_implementation_count_eq?: number; + /** + * Number of unique CL client implementations observing this block (filter: ne) + */ + unique_cl_implementation_count_ne?: number; + /** + * Number of unique CL client implementations observing this block (filter: lt) + */ + unique_cl_implementation_count_lt?: number; + /** + * Number of unique CL client implementations observing this block (filter: lte) + */ + unique_cl_implementation_count_lte?: number; + /** + * Number of unique CL client implementations observing this block (filter: gt) + */ + unique_cl_implementation_count_gt?: number; + /** + * Number of unique CL client implementations observing this block (filter: gte) + */ + unique_cl_implementation_count_gte?: number; + /** + * Number of unique CL client implementations observing this block (filter: between_min) + */ + unique_cl_implementation_count_between_min?: number; + /** + * Number of unique CL client implementations observing this block (filter: between_max_value) + */ + unique_cl_implementation_count_between_max_value?: number; + /** + * Number of unique CL client implementations observing this block (filter: in_values) (comma-separated list) + */ + unique_cl_implementation_count_in_values?: string; + /** + * Number of unique CL client implementations observing this block (filter: not_in_values) (comma-separated list) + */ + unique_cl_implementation_count_not_in_values?: string; + /** + * Number of unique EL client implementations observing this block (filter: eq) + */ + unique_el_implementation_count_eq?: number; + /** + * Number of unique EL client implementations observing this block (filter: ne) + */ + unique_el_implementation_count_ne?: number; + /** + * Number of unique EL client implementations observing this block (filter: lt) + */ + unique_el_implementation_count_lt?: number; + /** + * Number of unique EL client implementations observing this block (filter: lte) + */ + unique_el_implementation_count_lte?: number; + /** + * Number of unique EL client implementations observing this block (filter: gt) + */ + unique_el_implementation_count_gt?: number; + /** + * Number of unique EL client implementations observing this block (filter: gte) + */ + unique_el_implementation_count_gte?: number; + /** + * Number of unique EL client implementations observing this block (filter: between_min) + */ + unique_el_implementation_count_between_min?: number; + /** + * Number of unique EL client implementations observing this block (filter: between_max_value) + */ + unique_el_implementation_count_between_max_value?: number; + /** + * Number of unique EL client implementations observing this block (filter: in_values) (comma-separated list) + */ + unique_el_implementation_count_in_values?: string; + /** + * Number of unique EL client implementations observing this block (filter: not_in_values) (comma-separated list) + */ + unique_el_implementation_count_not_in_values?: string; + /** + * The maximum number of fct_engine_get_blobs_by_slot to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctEngineGetBlobsBySlot` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_engine_get_blobs_by_slot'; +}; + +export type FctEngineGetBlobsBySlotServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineGetBlobsBySlotServiceListError = + FctEngineGetBlobsBySlotServiceListErrors[keyof FctEngineGetBlobsBySlotServiceListErrors]; + +export type FctEngineGetBlobsBySlotServiceListResponses = { + /** + * OK + */ + 200: ListFctEngineGetBlobsBySlotResponse; +}; + +export type FctEngineGetBlobsBySlotServiceListResponse = + FctEngineGetBlobsBySlotServiceListResponses[keyof FctEngineGetBlobsBySlotServiceListResponses]; + +export type FctEngineGetBlobsBySlotServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_engine_get_blobs_by_slot/{slot_start_date_time}'; +}; + +export type FctEngineGetBlobsBySlotServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineGetBlobsBySlotServiceGetError = + FctEngineGetBlobsBySlotServiceGetErrors[keyof FctEngineGetBlobsBySlotServiceGetErrors]; + +export type FctEngineGetBlobsBySlotServiceGetResponses = { + /** + * OK + */ + 200: GetFctEngineGetBlobsBySlotResponse; +}; + +export type FctEngineGetBlobsBySlotServiceGetResponse = + FctEngineGetBlobsBySlotServiceGetResponses[keyof FctEngineGetBlobsBySlotServiceGetResponses]; + +export type FctEngineGetBlobsDurationChunked50MsServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) + */ + block_root_eq?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) + */ + block_root_ne?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) + */ + block_root_contains?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: like) + */ + block_root_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) + */ + block_root_not_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: eq) + */ + chunk_duration_ms_eq?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: ne) + */ + chunk_duration_ms_ne?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: lt) + */ + chunk_duration_ms_lt?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: lte) + */ + chunk_duration_ms_lte?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: gt) + */ + chunk_duration_ms_gt?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: gte) + */ + chunk_duration_ms_gte?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: between_min) + */ + chunk_duration_ms_between_min?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: between_max_value) + */ + chunk_duration_ms_between_max_value?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: in_values) (comma-separated list) + */ + chunk_duration_ms_in_values?: string; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: not_in_values) (comma-separated list) + */ + chunk_duration_ms_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number of the beacon block being reconstructed (filter: eq) + */ + slot_eq?: number; + /** + * Slot number of the beacon block being reconstructed (filter: ne) + */ + slot_ne?: number; + /** + * Slot number of the beacon block being reconstructed (filter: lt) + */ + slot_lt?: number; + /** + * Slot number of the beacon block being reconstructed (filter: lte) + */ + slot_lte?: number; + /** + * Slot number of the beacon block being reconstructed (filter: gt) + */ + slot_gt?: number; + /** + * Slot number of the beacon block being reconstructed (filter: gte) + */ + slot_gte?: number; + /** + * Slot number of the beacon block being reconstructed (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number of the beacon block being reconstructed (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number of the beacon block being reconstructed (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number of the beacon block being reconstructed (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Number of observations in this duration chunk (filter: eq) + */ + observation_count_eq?: number; + /** + * Number of observations in this duration chunk (filter: ne) + */ + observation_count_ne?: number; + /** + * Number of observations in this duration chunk (filter: lt) + */ + observation_count_lt?: number; + /** + * Number of observations in this duration chunk (filter: lte) + */ + observation_count_lte?: number; + /** + * Number of observations in this duration chunk (filter: gt) + */ + observation_count_gt?: number; + /** + * Number of observations in this duration chunk (filter: gte) + */ + observation_count_gte?: number; + /** + * Number of observations in this duration chunk (filter: between_min) + */ + observation_count_between_min?: number; + /** + * Number of observations in this duration chunk (filter: between_max_value) + */ + observation_count_between_max_value?: number; + /** + * Number of observations in this duration chunk (filter: in_values) (comma-separated list) + */ + observation_count_in_values?: string; + /** + * Number of observations in this duration chunk (filter: not_in_values) (comma-separated list) + */ + observation_count_not_in_values?: string; + /** + * Number of SUCCESS status observations in this chunk (filter: eq) + */ + success_count_eq?: number; + /** + * Number of SUCCESS status observations in this chunk (filter: ne) + */ + success_count_ne?: number; + /** + * Number of SUCCESS status observations in this chunk (filter: lt) + */ + success_count_lt?: number; + /** + * Number of SUCCESS status observations in this chunk (filter: lte) + */ + success_count_lte?: number; + /** + * Number of SUCCESS status observations in this chunk (filter: gt) + */ + success_count_gt?: number; + /** + * Number of SUCCESS status observations in this chunk (filter: gte) + */ + success_count_gte?: number; + /** + * Number of SUCCESS status observations in this chunk (filter: between_min) + */ + success_count_between_min?: number; + /** + * Number of SUCCESS status observations in this chunk (filter: between_max_value) + */ + success_count_between_max_value?: number; + /** + * Number of SUCCESS status observations in this chunk (filter: in_values) (comma-separated list) + */ + success_count_in_values?: string; + /** + * Number of SUCCESS status observations in this chunk (filter: not_in_values) (comma-separated list) + */ + success_count_not_in_values?: string; + /** + * Number of PARTIAL status observations in this chunk (filter: eq) + */ + partial_count_eq?: number; + /** + * Number of PARTIAL status observations in this chunk (filter: ne) + */ + partial_count_ne?: number; + /** + * Number of PARTIAL status observations in this chunk (filter: lt) + */ + partial_count_lt?: number; + /** + * Number of PARTIAL status observations in this chunk (filter: lte) + */ + partial_count_lte?: number; + /** + * Number of PARTIAL status observations in this chunk (filter: gt) + */ + partial_count_gt?: number; + /** + * Number of PARTIAL status observations in this chunk (filter: gte) + */ + partial_count_gte?: number; + /** + * Number of PARTIAL status observations in this chunk (filter: between_min) + */ + partial_count_between_min?: number; + /** + * Number of PARTIAL status observations in this chunk (filter: between_max_value) + */ + partial_count_between_max_value?: number; + /** + * Number of PARTIAL status observations in this chunk (filter: in_values) (comma-separated list) + */ + partial_count_in_values?: string; + /** + * Number of PARTIAL status observations in this chunk (filter: not_in_values) (comma-separated list) + */ + partial_count_not_in_values?: string; + /** + * Number of EMPTY status observations in this chunk (filter: eq) + */ + empty_count_eq?: number; + /** + * Number of EMPTY status observations in this chunk (filter: ne) + */ + empty_count_ne?: number; + /** + * Number of EMPTY status observations in this chunk (filter: lt) + */ + empty_count_lt?: number; + /** + * Number of EMPTY status observations in this chunk (filter: lte) + */ + empty_count_lte?: number; + /** + * Number of EMPTY status observations in this chunk (filter: gt) + */ + empty_count_gt?: number; + /** + * Number of EMPTY status observations in this chunk (filter: gte) + */ + empty_count_gte?: number; + /** + * Number of EMPTY status observations in this chunk (filter: between_min) + */ + empty_count_between_min?: number; + /** + * Number of EMPTY status observations in this chunk (filter: between_max_value) + */ + empty_count_between_max_value?: number; + /** + * Number of EMPTY status observations in this chunk (filter: in_values) (comma-separated list) + */ + empty_count_in_values?: string; + /** + * Number of EMPTY status observations in this chunk (filter: not_in_values) (comma-separated list) + */ + empty_count_not_in_values?: string; + /** + * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: eq) + */ + error_count_eq?: number; + /** + * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: ne) + */ + error_count_ne?: number; + /** + * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: lt) + */ + error_count_lt?: number; + /** + * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: lte) + */ + error_count_lte?: number; + /** + * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: gt) + */ + error_count_gt?: number; + /** + * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: gte) + */ + error_count_gte?: number; + /** + * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: between_min) + */ + error_count_between_min?: number; + /** + * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: between_max_value) + */ + error_count_between_max_value?: number; + /** + * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: in_values) (comma-separated list) + */ + error_count_in_values?: string; + /** + * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: not_in_values) (comma-separated list) + */ + error_count_not_in_values?: string; + /** + * The maximum number of fct_engine_get_blobs_duration_chunked_50ms to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctEngineGetBlobsDurationChunked50ms` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_engine_get_blobs_duration_chunked_50ms'; +}; + +export type FctEngineGetBlobsDurationChunked50MsServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineGetBlobsDurationChunked50MsServiceListError = + FctEngineGetBlobsDurationChunked50MsServiceListErrors[keyof FctEngineGetBlobsDurationChunked50MsServiceListErrors]; + +export type FctEngineGetBlobsDurationChunked50MsServiceListResponses = { + /** + * OK + */ + 200: ListFctEngineGetBlobsDurationChunked50MsResponse; +}; + +export type FctEngineGetBlobsDurationChunked50MsServiceListResponse = + FctEngineGetBlobsDurationChunked50MsServiceListResponses[keyof FctEngineGetBlobsDurationChunked50MsServiceListResponses]; + +export type FctEngineGetBlobsDurationChunked50MsServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_engine_get_blobs_duration_chunked_50ms/{slot_start_date_time}'; +}; + +export type FctEngineGetBlobsDurationChunked50MsServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineGetBlobsDurationChunked50MsServiceGetError = + FctEngineGetBlobsDurationChunked50MsServiceGetErrors[keyof FctEngineGetBlobsDurationChunked50MsServiceGetErrors]; + +export type FctEngineGetBlobsDurationChunked50MsServiceGetResponses = { + /** + * OK + */ + 200: GetFctEngineGetBlobsDurationChunked50MsResponse; +}; + +export type FctEngineGetBlobsDurationChunked50MsServiceGetResponse = + FctEngineGetBlobsDurationChunked50MsServiceGetResponses[keyof FctEngineGetBlobsDurationChunked50MsServiceGetResponses]; + +export type FctEngineNewPayloadByElClientServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: eq) + */ + block_hash_eq?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: ne) + */ + block_hash_ne?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: contains) + */ + block_hash_contains?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: like) + */ + block_hash_like?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: not_like) + */ + block_hash_not_like?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) + */ + meta_execution_implementation_eq?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) + */ + meta_execution_implementation_ne?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) + */ + meta_execution_implementation_contains?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) + */ + meta_execution_implementation_starts_with?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) + */ + meta_execution_implementation_ends_with?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: like) + */ + meta_execution_implementation_like?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) + */ + meta_execution_implementation_not_like?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) + */ + meta_execution_implementation_in_values?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) + */ + meta_execution_implementation_not_in_values?: string; + /** + * Execution client version string (filter: eq) + */ + meta_execution_version_eq?: string; + /** + * Execution client version string (filter: ne) + */ + meta_execution_version_ne?: string; + /** + * Execution client version string (filter: contains) + */ + meta_execution_version_contains?: string; + /** + * Execution client version string (filter: starts_with) + */ + meta_execution_version_starts_with?: string; + /** + * Execution client version string (filter: ends_with) + */ + meta_execution_version_ends_with?: string; + /** + * Execution client version string (filter: like) + */ + meta_execution_version_like?: string; + /** + * Execution client version string (filter: not_like) + */ + meta_execution_version_not_like?: string; + /** + * Execution client version string (filter: in_values) (comma-separated list) + */ + meta_execution_version_in_values?: string; + /** + * Execution client version string (filter: not_in_values) (comma-separated list) + */ + meta_execution_version_not_in_values?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: eq) + */ + status_eq?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: ne) + */ + status_ne?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: contains) + */ + status_contains?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: starts_with) + */ + status_starts_with?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: ends_with) + */ + status_ends_with?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: like) + */ + status_like?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: not_like) + */ + status_not_like?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number of the beacon block containing the payload (filter: eq) + */ + slot_eq?: number; + /** + * Slot number of the beacon block containing the payload (filter: ne) + */ + slot_ne?: number; + /** + * Slot number of the beacon block containing the payload (filter: lt) + */ + slot_lt?: number; + /** + * Slot number of the beacon block containing the payload (filter: lte) + */ + slot_lte?: number; + /** + * Slot number of the beacon block containing the payload (filter: gt) + */ + slot_gt?: number; + /** + * Slot number of the beacon block containing the payload (filter: gte) + */ + slot_gte?: number; + /** + * Slot number of the beacon block containing the payload (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number of the beacon block containing the payload (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number of the beacon block containing the payload (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number of the beacon block containing the payload (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) + */ + block_root_eq?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) + */ + block_root_ne?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) + */ + block_root_contains?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: like) + */ + block_root_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) + */ + block_root_not_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Total gas used by all transactions in the block (filter: eq) + */ + gas_used_eq?: number; + /** + * Total gas used by all transactions in the block (filter: ne) + */ + gas_used_ne?: number; + /** + * Total gas used by all transactions in the block (filter: lt) + */ + gas_used_lt?: number; + /** + * Total gas used by all transactions in the block (filter: lte) + */ + gas_used_lte?: number; + /** + * Total gas used by all transactions in the block (filter: gt) + */ + gas_used_gt?: number; + /** + * Total gas used by all transactions in the block (filter: gte) + */ + gas_used_gte?: number; + /** + * Total gas used by all transactions in the block (filter: between_min) + */ + gas_used_between_min?: number; + /** + * Total gas used by all transactions in the block (filter: between_max_value) + */ + gas_used_between_max_value?: number; + /** + * Total gas used by all transactions in the block (filter: in_values) (comma-separated list) + */ + gas_used_in_values?: string; + /** + * Total gas used by all transactions in the block (filter: not_in_values) (comma-separated list) + */ + gas_used_not_in_values?: string; + /** + * Gas limit of the block (filter: eq) + */ + gas_limit_eq?: number; + /** + * Gas limit of the block (filter: ne) + */ + gas_limit_ne?: number; + /** + * Gas limit of the block (filter: lt) + */ + gas_limit_lt?: number; + /** + * Gas limit of the block (filter: lte) + */ + gas_limit_lte?: number; + /** + * Gas limit of the block (filter: gt) + */ + gas_limit_gt?: number; + /** + * Gas limit of the block (filter: gte) + */ + gas_limit_gte?: number; + /** + * Gas limit of the block (filter: between_min) + */ + gas_limit_between_min?: number; + /** + * Gas limit of the block (filter: between_max_value) + */ + gas_limit_between_max_value?: number; + /** + * Gas limit of the block (filter: in_values) (comma-separated list) + */ + gas_limit_in_values?: string; + /** + * Gas limit of the block (filter: not_in_values) (comma-separated list) + */ + gas_limit_not_in_values?: string; + /** + * Number of transactions in the block (filter: eq) + */ + tx_count_eq?: number; + /** + * Number of transactions in the block (filter: ne) + */ + tx_count_ne?: number; + /** + * Number of transactions in the block (filter: lt) + */ + tx_count_lt?: number; + /** + * Number of transactions in the block (filter: lte) + */ + tx_count_lte?: number; + /** + * Number of transactions in the block (filter: gt) + */ + tx_count_gt?: number; + /** + * Number of transactions in the block (filter: gte) + */ + tx_count_gte?: number; + /** + * Number of transactions in the block (filter: between_min) + */ + tx_count_between_min?: number; + /** + * Number of transactions in the block (filter: between_max_value) + */ + tx_count_between_max_value?: number; + /** + * Number of transactions in the block (filter: in_values) (comma-separated list) + */ + tx_count_in_values?: string; + /** + * Number of transactions in the block (filter: not_in_values) (comma-separated list) + */ + tx_count_not_in_values?: string; + /** + * Number of blobs in the block (filter: eq) + */ + blob_count_eq?: number; + /** + * Number of blobs in the block (filter: ne) + */ + blob_count_ne?: number; + /** + * Number of blobs in the block (filter: lt) + */ + blob_count_lt?: number; + /** + * Number of blobs in the block (filter: lte) + */ + blob_count_lte?: number; + /** + * Number of blobs in the block (filter: gt) + */ + blob_count_gt?: number; + /** + * Number of blobs in the block (filter: gte) + */ + blob_count_gte?: number; + /** + * Number of blobs in the block (filter: between_min) + */ + blob_count_between_min?: number; + /** + * Number of blobs in the block (filter: between_max_value) + */ + blob_count_between_max_value?: number; + /** + * Number of blobs in the block (filter: in_values) (comma-separated list) + */ + blob_count_in_values?: string; + /** + * Number of blobs in the block (filter: not_in_values) (comma-separated list) + */ + blob_count_not_in_values?: string; + /** + * Number of observations for this EL client/status (filter: eq) + */ + observation_count_eq?: number; + /** + * Number of observations for this EL client/status (filter: ne) + */ + observation_count_ne?: number; + /** + * Number of observations for this EL client/status (filter: lt) + */ + observation_count_lt?: number; + /** + * Number of observations for this EL client/status (filter: lte) + */ + observation_count_lte?: number; + /** + * Number of observations for this EL client/status (filter: gt) + */ + observation_count_gt?: number; + /** + * Number of observations for this EL client/status (filter: gte) + */ + observation_count_gte?: number; + /** + * Number of observations for this EL client/status (filter: between_min) + */ + observation_count_between_min?: number; + /** + * Number of observations for this EL client/status (filter: between_max_value) + */ + observation_count_between_max_value?: number; + /** + * Number of observations for this EL client/status (filter: in_values) (comma-separated list) + */ + observation_count_in_values?: string; + /** + * Number of observations for this EL client/status (filter: not_in_values) (comma-separated list) + */ + observation_count_not_in_values?: string; + /** + * Number of unique nodes with this EL client/status (filter: eq) + */ + unique_node_count_eq?: number; + /** + * Number of unique nodes with this EL client/status (filter: ne) + */ + unique_node_count_ne?: number; + /** + * Number of unique nodes with this EL client/status (filter: lt) + */ + unique_node_count_lt?: number; + /** + * Number of unique nodes with this EL client/status (filter: lte) + */ + unique_node_count_lte?: number; + /** + * Number of unique nodes with this EL client/status (filter: gt) + */ + unique_node_count_gt?: number; + /** + * Number of unique nodes with this EL client/status (filter: gte) + */ + unique_node_count_gte?: number; + /** + * Number of unique nodes with this EL client/status (filter: between_min) + */ + unique_node_count_between_min?: number; + /** + * Number of unique nodes with this EL client/status (filter: between_max_value) + */ + unique_node_count_between_max_value?: number; + /** + * Number of unique nodes with this EL client/status (filter: in_values) (comma-separated list) + */ + unique_node_count_in_values?: string; + /** + * Number of unique nodes with this EL client/status (filter: not_in_values) (comma-separated list) + */ + unique_node_count_not_in_values?: string; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: eq) + */ + avg_duration_ms_eq?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: ne) + */ + avg_duration_ms_ne?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: lt) + */ + avg_duration_ms_lt?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: lte) + */ + avg_duration_ms_lte?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: gt) + */ + avg_duration_ms_gt?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: gte) + */ + avg_duration_ms_gte?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: between_min) + */ + avg_duration_ms_between_min?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: between_max_value) + */ + avg_duration_ms_between_max_value?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) + */ + avg_duration_ms_in_values?: string; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + avg_duration_ms_not_in_values?: string; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: eq) + */ + median_duration_ms_eq?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: ne) + */ + median_duration_ms_ne?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: lt) + */ + median_duration_ms_lt?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: lte) + */ + median_duration_ms_lte?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: gt) + */ + median_duration_ms_gt?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: gte) + */ + median_duration_ms_gte?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: between_min) + */ + median_duration_ms_between_min?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: between_max_value) + */ + median_duration_ms_between_max_value?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) + */ + median_duration_ms_in_values?: string; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + median_duration_ms_not_in_values?: string; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: eq) + */ + min_duration_ms_eq?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: ne) + */ + min_duration_ms_ne?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: lt) + */ + min_duration_ms_lt?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: lte) + */ + min_duration_ms_lte?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: gt) + */ + min_duration_ms_gt?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: gte) + */ + min_duration_ms_gte?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: between_min) + */ + min_duration_ms_between_min?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: between_max_value) + */ + min_duration_ms_between_max_value?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) + */ + min_duration_ms_in_values?: string; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + min_duration_ms_not_in_values?: string; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: eq) + */ + max_duration_ms_eq?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: ne) + */ + max_duration_ms_ne?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: lt) + */ + max_duration_ms_lt?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: lte) + */ + max_duration_ms_lte?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: gt) + */ + max_duration_ms_gt?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: gte) + */ + max_duration_ms_gte?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: between_min) + */ + max_duration_ms_between_min?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: between_max_value) + */ + max_duration_ms_between_max_value?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) + */ + max_duration_ms_in_values?: string; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + max_duration_ms_not_in_values?: string; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: eq) + */ + p95_duration_ms_eq?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: ne) + */ + p95_duration_ms_ne?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: lt) + */ + p95_duration_ms_lt?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: lte) + */ + p95_duration_ms_lte?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: gt) + */ + p95_duration_ms_gt?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: gte) + */ + p95_duration_ms_gte?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: between_min) + */ + p95_duration_ms_between_min?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: between_max_value) + */ + p95_duration_ms_between_max_value?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) + */ + p95_duration_ms_in_values?: string; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + p95_duration_ms_not_in_values?: string; + /** + * The maximum number of fct_engine_new_payload_by_el_client to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctEngineNewPayloadByElClient` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_engine_new_payload_by_el_client'; +}; + +export type FctEngineNewPayloadByElClientServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineNewPayloadByElClientServiceListError = + FctEngineNewPayloadByElClientServiceListErrors[keyof FctEngineNewPayloadByElClientServiceListErrors]; + +export type FctEngineNewPayloadByElClientServiceListResponses = { + /** + * OK + */ + 200: ListFctEngineNewPayloadByElClientResponse; +}; + +export type FctEngineNewPayloadByElClientServiceListResponse = + FctEngineNewPayloadByElClientServiceListResponses[keyof FctEngineNewPayloadByElClientServiceListResponses]; + +export type FctEngineNewPayloadByElClientServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_engine_new_payload_by_el_client/{slot_start_date_time}'; +}; + +export type FctEngineNewPayloadByElClientServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineNewPayloadByElClientServiceGetError = + FctEngineNewPayloadByElClientServiceGetErrors[keyof FctEngineNewPayloadByElClientServiceGetErrors]; + +export type FctEngineNewPayloadByElClientServiceGetResponses = { + /** + * OK + */ + 200: GetFctEngineNewPayloadByElClientResponse; +}; + +export type FctEngineNewPayloadByElClientServiceGetResponse = + FctEngineNewPayloadByElClientServiceGetResponses[keyof FctEngineNewPayloadByElClientServiceGetResponses]; + +export type FctEngineNewPayloadByElClientHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) + */ + meta_execution_implementation_eq?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) + */ + meta_execution_implementation_ne?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) + */ + meta_execution_implementation_contains?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) + */ + meta_execution_implementation_starts_with?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) + */ + meta_execution_implementation_ends_with?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: like) + */ + meta_execution_implementation_like?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) + */ + meta_execution_implementation_not_like?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) + */ + meta_execution_implementation_in_values?: string; + /** + * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) + */ + meta_execution_implementation_not_in_values?: string; + /** + * Execution client version string (filter: eq) + */ + meta_execution_version_eq?: string; + /** + * Execution client version string (filter: ne) + */ + meta_execution_version_ne?: string; + /** + * Execution client version string (filter: contains) + */ + meta_execution_version_contains?: string; + /** + * Execution client version string (filter: starts_with) + */ + meta_execution_version_starts_with?: string; + /** + * Execution client version string (filter: ends_with) + */ + meta_execution_version_ends_with?: string; + /** + * Execution client version string (filter: like) + */ + meta_execution_version_like?: string; + /** + * Execution client version string (filter: not_like) + */ + meta_execution_version_not_like?: string; + /** + * Execution client version string (filter: in_values) (comma-separated list) + */ + meta_execution_version_in_values?: string; + /** + * Execution client version string (filter: not_in_values) (comma-separated list) + */ + meta_execution_version_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of unique slots in this hour (filter: eq) + */ + slot_count_eq?: number; + /** + * Number of unique slots in this hour (filter: ne) + */ + slot_count_ne?: number; + /** + * Number of unique slots in this hour (filter: lt) + */ + slot_count_lt?: number; + /** + * Number of unique slots in this hour (filter: lte) + */ + slot_count_lte?: number; + /** + * Number of unique slots in this hour (filter: gt) + */ + slot_count_gt?: number; + /** + * Number of unique slots in this hour (filter: gte) + */ + slot_count_gte?: number; + /** + * Number of unique slots in this hour (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Number of unique slots in this hour (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Number of unique slots in this hour (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Number of unique slots in this hour (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * Total number of observations for this client in this hour (filter: eq) + */ + observation_count_eq?: number; + /** + * Total number of observations for this client in this hour (filter: ne) + */ + observation_count_ne?: number; + /** + * Total number of observations for this client in this hour (filter: lt) + */ + observation_count_lt?: number; + /** + * Total number of observations for this client in this hour (filter: lte) + */ + observation_count_lte?: number; + /** + * Total number of observations for this client in this hour (filter: gt) + */ + observation_count_gt?: number; + /** + * Total number of observations for this client in this hour (filter: gte) + */ + observation_count_gte?: number; + /** + * Total number of observations for this client in this hour (filter: between_min) + */ + observation_count_between_min?: number; + /** + * Total number of observations for this client in this hour (filter: between_max_value) + */ + observation_count_between_max_value?: number; + /** + * Total number of observations for this client in this hour (filter: in_values) (comma-separated list) + */ + observation_count_in_values?: string; + /** + * Total number of observations for this client in this hour (filter: not_in_values) (comma-separated list) + */ + observation_count_not_in_values?: string; + /** + * Number of unique nodes reporting for this client (filter: eq) + */ + unique_node_count_eq?: number; + /** + * Number of unique nodes reporting for this client (filter: ne) + */ + unique_node_count_ne?: number; + /** + * Number of unique nodes reporting for this client (filter: lt) + */ + unique_node_count_lt?: number; + /** + * Number of unique nodes reporting for this client (filter: lte) + */ + unique_node_count_lte?: number; + /** + * Number of unique nodes reporting for this client (filter: gt) + */ + unique_node_count_gt?: number; + /** + * Number of unique nodes reporting for this client (filter: gte) + */ + unique_node_count_gte?: number; + /** + * Number of unique nodes reporting for this client (filter: between_min) + */ + unique_node_count_between_min?: number; + /** + * Number of unique nodes reporting for this client (filter: between_max_value) + */ + unique_node_count_between_max_value?: number; + /** + * Number of unique nodes reporting for this client (filter: in_values) (comma-separated list) + */ + unique_node_count_in_values?: string; + /** + * Number of unique nodes reporting for this client (filter: not_in_values) (comma-separated list) + */ + unique_node_count_not_in_values?: string; + /** + * Number of observations with VALID status (filter: eq) + */ + valid_count_eq?: number; + /** + * Number of observations with VALID status (filter: ne) + */ + valid_count_ne?: number; + /** + * Number of observations with VALID status (filter: lt) + */ + valid_count_lt?: number; + /** + * Number of observations with VALID status (filter: lte) + */ + valid_count_lte?: number; + /** + * Number of observations with VALID status (filter: gt) + */ + valid_count_gt?: number; + /** + * Number of observations with VALID status (filter: gte) + */ + valid_count_gte?: number; + /** + * Number of observations with VALID status (filter: between_min) + */ + valid_count_between_min?: number; + /** + * Number of observations with VALID status (filter: between_max_value) + */ + valid_count_between_max_value?: number; + /** + * Number of observations with VALID status (filter: in_values) (comma-separated list) + */ + valid_count_in_values?: string; + /** + * Number of observations with VALID status (filter: not_in_values) (comma-separated list) + */ + valid_count_not_in_values?: string; + /** + * Number of observations with INVALID status (filter: eq) + */ + invalid_count_eq?: number; + /** + * Number of observations with INVALID status (filter: ne) + */ + invalid_count_ne?: number; + /** + * Number of observations with INVALID status (filter: lt) + */ + invalid_count_lt?: number; + /** + * Number of observations with INVALID status (filter: lte) + */ + invalid_count_lte?: number; + /** + * Number of observations with INVALID status (filter: gt) + */ + invalid_count_gt?: number; + /** + * Number of observations with INVALID status (filter: gte) + */ + invalid_count_gte?: number; + /** + * Number of observations with INVALID status (filter: between_min) + */ + invalid_count_between_min?: number; + /** + * Number of observations with INVALID status (filter: between_max_value) + */ + invalid_count_between_max_value?: number; + /** + * Number of observations with INVALID status (filter: in_values) (comma-separated list) + */ + invalid_count_in_values?: string; + /** + * Number of observations with INVALID status (filter: not_in_values) (comma-separated list) + */ + invalid_count_not_in_values?: string; + /** + * Number of observations with SYNCING status (filter: eq) + */ + syncing_count_eq?: number; + /** + * Number of observations with SYNCING status (filter: ne) + */ + syncing_count_ne?: number; + /** + * Number of observations with SYNCING status (filter: lt) + */ + syncing_count_lt?: number; + /** + * Number of observations with SYNCING status (filter: lte) + */ + syncing_count_lte?: number; + /** + * Number of observations with SYNCING status (filter: gt) + */ + syncing_count_gt?: number; + /** + * Number of observations with SYNCING status (filter: gte) + */ + syncing_count_gte?: number; + /** + * Number of observations with SYNCING status (filter: between_min) + */ + syncing_count_between_min?: number; + /** + * Number of observations with SYNCING status (filter: between_max_value) + */ + syncing_count_between_max_value?: number; + /** + * Number of observations with SYNCING status (filter: in_values) (comma-separated list) + */ + syncing_count_in_values?: string; + /** + * Number of observations with SYNCING status (filter: not_in_values) (comma-separated list) + */ + syncing_count_not_in_values?: string; + /** + * Number of observations with ACCEPTED status (filter: eq) + */ + accepted_count_eq?: number; + /** + * Number of observations with ACCEPTED status (filter: ne) + */ + accepted_count_ne?: number; + /** + * Number of observations with ACCEPTED status (filter: lt) + */ + accepted_count_lt?: number; + /** + * Number of observations with ACCEPTED status (filter: lte) + */ + accepted_count_lte?: number; + /** + * Number of observations with ACCEPTED status (filter: gt) + */ + accepted_count_gt?: number; + /** + * Number of observations with ACCEPTED status (filter: gte) + */ + accepted_count_gte?: number; + /** + * Number of observations with ACCEPTED status (filter: between_min) + */ + accepted_count_between_min?: number; + /** + * Number of observations with ACCEPTED status (filter: between_max_value) + */ + accepted_count_between_max_value?: number; + /** + * Number of observations with ACCEPTED status (filter: in_values) (comma-separated list) + */ + accepted_count_in_values?: string; + /** + * Number of observations with ACCEPTED status (filter: not_in_values) (comma-separated list) + */ + accepted_count_not_in_values?: string; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: eq) + */ + avg_duration_ms_eq?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: ne) + */ + avg_duration_ms_ne?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: lt) + */ + avg_duration_ms_lt?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: lte) + */ + avg_duration_ms_lte?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: gt) + */ + avg_duration_ms_gt?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: gte) + */ + avg_duration_ms_gte?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: between_min) + */ + avg_duration_ms_between_min?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: between_max_value) + */ + avg_duration_ms_between_max_value?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) + */ + avg_duration_ms_in_values?: string; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + avg_duration_ms_not_in_values?: string; + /** + * 50th percentile (median) duration in milliseconds (filter: eq) + */ + p50_duration_ms_eq?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: ne) + */ + p50_duration_ms_ne?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: lt) + */ + p50_duration_ms_lt?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: lte) + */ + p50_duration_ms_lte?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: gt) + */ + p50_duration_ms_gt?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: gte) + */ + p50_duration_ms_gte?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: between_min) + */ + p50_duration_ms_between_min?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: between_max_value) + */ + p50_duration_ms_between_max_value?: number; + /** + * 50th percentile (median) duration in milliseconds (filter: in_values) (comma-separated list) + */ + p50_duration_ms_in_values?: string; + /** + * 50th percentile (median) duration in milliseconds (filter: not_in_values) (comma-separated list) + */ + p50_duration_ms_not_in_values?: string; + /** + * 95th percentile duration in milliseconds (filter: eq) + */ + p95_duration_ms_eq?: number; + /** + * 95th percentile duration in milliseconds (filter: ne) + */ + p95_duration_ms_ne?: number; + /** + * 95th percentile duration in milliseconds (filter: lt) + */ + p95_duration_ms_lt?: number; + /** + * 95th percentile duration in milliseconds (filter: lte) + */ + p95_duration_ms_lte?: number; + /** + * 95th percentile duration in milliseconds (filter: gt) + */ + p95_duration_ms_gt?: number; + /** + * 95th percentile duration in milliseconds (filter: gte) + */ + p95_duration_ms_gte?: number; + /** + * 95th percentile duration in milliseconds (filter: between_min) + */ + p95_duration_ms_between_min?: number; + /** + * 95th percentile duration in milliseconds (filter: between_max_value) + */ + p95_duration_ms_between_max_value?: number; + /** + * 95th percentile duration in milliseconds (filter: in_values) (comma-separated list) + */ + p95_duration_ms_in_values?: string; + /** + * 95th percentile duration in milliseconds (filter: not_in_values) (comma-separated list) + */ + p95_duration_ms_not_in_values?: string; + /** + * Minimum duration in milliseconds (filter: eq) + */ + min_duration_ms_eq?: number; + /** + * Minimum duration in milliseconds (filter: ne) + */ + min_duration_ms_ne?: number; + /** + * Minimum duration in milliseconds (filter: lt) + */ + min_duration_ms_lt?: number; + /** + * Minimum duration in milliseconds (filter: lte) + */ + min_duration_ms_lte?: number; + /** + * Minimum duration in milliseconds (filter: gt) + */ + min_duration_ms_gt?: number; + /** + * Minimum duration in milliseconds (filter: gte) + */ + min_duration_ms_gte?: number; + /** + * Minimum duration in milliseconds (filter: between_min) + */ + min_duration_ms_between_min?: number; + /** + * Minimum duration in milliseconds (filter: between_max_value) + */ + min_duration_ms_between_max_value?: number; + /** + * Minimum duration in milliseconds (filter: in_values) (comma-separated list) + */ + min_duration_ms_in_values?: string; + /** + * Minimum duration in milliseconds (filter: not_in_values) (comma-separated list) + */ + min_duration_ms_not_in_values?: string; + /** + * Maximum duration in milliseconds (filter: eq) + */ + max_duration_ms_eq?: number; + /** + * Maximum duration in milliseconds (filter: ne) + */ + max_duration_ms_ne?: number; + /** + * Maximum duration in milliseconds (filter: lt) + */ + max_duration_ms_lt?: number; + /** + * Maximum duration in milliseconds (filter: lte) + */ + max_duration_ms_lte?: number; + /** + * Maximum duration in milliseconds (filter: gt) + */ + max_duration_ms_gt?: number; + /** + * Maximum duration in milliseconds (filter: gte) + */ + max_duration_ms_gte?: number; + /** + * Maximum duration in milliseconds (filter: between_min) + */ + max_duration_ms_between_min?: number; + /** + * Maximum duration in milliseconds (filter: between_max_value) + */ + max_duration_ms_between_max_value?: number; + /** + * Maximum duration in milliseconds (filter: in_values) (comma-separated list) + */ + max_duration_ms_in_values?: string; + /** + * Maximum duration in milliseconds (filter: not_in_values) (comma-separated list) + */ + max_duration_ms_not_in_values?: string; + /** + * Average gas used per block (VALID status only) (filter: eq) + */ + avg_gas_used_eq?: number; + /** + * Average gas used per block (VALID status only) (filter: ne) + */ + avg_gas_used_ne?: number; + /** + * Average gas used per block (VALID status only) (filter: lt) + */ + avg_gas_used_lt?: number; + /** + * Average gas used per block (VALID status only) (filter: lte) + */ + avg_gas_used_lte?: number; + /** + * Average gas used per block (VALID status only) (filter: gt) + */ + avg_gas_used_gt?: number; + /** + * Average gas used per block (VALID status only) (filter: gte) + */ + avg_gas_used_gte?: number; + /** + * Average gas used per block (VALID status only) (filter: between_min) + */ + avg_gas_used_between_min?: number; + /** + * Average gas used per block (VALID status only) (filter: between_max_value) + */ + avg_gas_used_between_max_value?: number; + /** + * Average gas used per block (VALID status only) (filter: in_values) (comma-separated list) + */ + avg_gas_used_in_values?: string; + /** + * Average gas used per block (VALID status only) (filter: not_in_values) (comma-separated list) + */ + avg_gas_used_not_in_values?: string; + /** + * Average gas limit per block (VALID status only) (filter: eq) + */ + avg_gas_limit_eq?: number; + /** + * Average gas limit per block (VALID status only) (filter: ne) + */ + avg_gas_limit_ne?: number; + /** + * Average gas limit per block (VALID status only) (filter: lt) + */ + avg_gas_limit_lt?: number; + /** + * Average gas limit per block (VALID status only) (filter: lte) + */ + avg_gas_limit_lte?: number; + /** + * Average gas limit per block (VALID status only) (filter: gt) + */ + avg_gas_limit_gt?: number; + /** + * Average gas limit per block (VALID status only) (filter: gte) + */ + avg_gas_limit_gte?: number; + /** + * Average gas limit per block (VALID status only) (filter: between_min) + */ + avg_gas_limit_between_min?: number; + /** + * Average gas limit per block (VALID status only) (filter: between_max_value) + */ + avg_gas_limit_between_max_value?: number; + /** + * Average gas limit per block (VALID status only) (filter: in_values) (comma-separated list) + */ + avg_gas_limit_in_values?: string; + /** + * Average gas limit per block (VALID status only) (filter: not_in_values) (comma-separated list) + */ + avg_gas_limit_not_in_values?: string; + /** + * Filter avg_tx_count using value + */ + avg_tx_count_value?: number; + /** + * Filter avg_blob_count using value + */ + avg_blob_count_value?: number; + /** + * The maximum number of fct_engine_new_payload_by_el_client_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctEngineNewPayloadByElClientHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_engine_new_payload_by_el_client_hourly'; +}; + +export type FctEngineNewPayloadByElClientHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineNewPayloadByElClientHourlyServiceListError = + FctEngineNewPayloadByElClientHourlyServiceListErrors[keyof FctEngineNewPayloadByElClientHourlyServiceListErrors]; + +export type FctEngineNewPayloadByElClientHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctEngineNewPayloadByElClientHourlyResponse; +}; + +export type FctEngineNewPayloadByElClientHourlyServiceListResponse = + FctEngineNewPayloadByElClientHourlyServiceListResponses[keyof FctEngineNewPayloadByElClientHourlyServiceListResponses]; + +export type FctEngineNewPayloadByElClientHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_engine_new_payload_by_el_client_hourly/{hour_start_date_time}'; +}; + +export type FctEngineNewPayloadByElClientHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineNewPayloadByElClientHourlyServiceGetError = + FctEngineNewPayloadByElClientHourlyServiceGetErrors[keyof FctEngineNewPayloadByElClientHourlyServiceGetErrors]; + +export type FctEngineNewPayloadByElClientHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctEngineNewPayloadByElClientHourlyResponse; +}; + +export type FctEngineNewPayloadByElClientHourlyServiceGetResponse = + FctEngineNewPayloadByElClientHourlyServiceGetResponses[keyof FctEngineNewPayloadByElClientHourlyServiceGetResponses]; + +export type FctEngineNewPayloadBySlotServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: eq) + */ + block_hash_eq?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: ne) + */ + block_hash_ne?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: contains) + */ + block_hash_contains?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: like) + */ + block_hash_like?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: not_like) + */ + block_hash_not_like?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: eq) + */ + status_eq?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: ne) + */ + status_ne?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: contains) + */ + status_contains?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: starts_with) + */ + status_starts_with?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: ends_with) + */ + status_ends_with?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: like) + */ + status_like?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: not_like) + */ + status_not_like?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number of the beacon block containing the payload (filter: eq) + */ + slot_eq?: number; + /** + * Slot number of the beacon block containing the payload (filter: ne) + */ + slot_ne?: number; + /** + * Slot number of the beacon block containing the payload (filter: lt) + */ + slot_lt?: number; + /** + * Slot number of the beacon block containing the payload (filter: lte) + */ + slot_lte?: number; + /** + * Slot number of the beacon block containing the payload (filter: gt) + */ + slot_gt?: number; + /** + * Slot number of the beacon block containing the payload (filter: gte) + */ + slot_gte?: number; + /** + * Slot number of the beacon block containing the payload (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number of the beacon block containing the payload (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number of the beacon block containing the payload (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number of the beacon block containing the payload (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) + */ + block_root_eq?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) + */ + block_root_ne?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) + */ + block_root_contains?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: like) + */ + block_root_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) + */ + block_root_not_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Execution block number (filter: eq) + */ + block_number_eq?: number; + /** + * Execution block number (filter: ne) + */ + block_number_ne?: number; + /** + * Execution block number (filter: lt) + */ + block_number_lt?: number; + /** + * Execution block number (filter: lte) + */ + block_number_lte?: number; + /** + * Execution block number (filter: gt) + */ + block_number_gt?: number; + /** + * Execution block number (filter: gte) + */ + block_number_gte?: number; + /** + * Execution block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * Execution block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * Execution block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * Execution block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * Validator index of the block proposer (filter: eq) + */ + proposer_index_eq?: number; + /** + * Validator index of the block proposer (filter: ne) + */ + proposer_index_ne?: number; + /** + * Validator index of the block proposer (filter: lt) + */ + proposer_index_lt?: number; + /** + * Validator index of the block proposer (filter: lte) + */ + proposer_index_lte?: number; + /** + * Validator index of the block proposer (filter: gt) + */ + proposer_index_gt?: number; + /** + * Validator index of the block proposer (filter: gte) + */ + proposer_index_gte?: number; + /** + * Validator index of the block proposer (filter: between_min) + */ + proposer_index_between_min?: number; + /** + * Validator index of the block proposer (filter: between_max_value) + */ + proposer_index_between_max_value?: number; + /** + * Validator index of the block proposer (filter: in_values) (comma-separated list) + */ + proposer_index_in_values?: string; + /** + * Validator index of the block proposer (filter: not_in_values) (comma-separated list) + */ + proposer_index_not_in_values?: string; + /** + * Total gas used by all transactions in the block (filter: eq) + */ + gas_used_eq?: number; + /** + * Total gas used by all transactions in the block (filter: ne) + */ + gas_used_ne?: number; + /** + * Total gas used by all transactions in the block (filter: lt) + */ + gas_used_lt?: number; + /** + * Total gas used by all transactions in the block (filter: lte) + */ + gas_used_lte?: number; + /** + * Total gas used by all transactions in the block (filter: gt) + */ + gas_used_gt?: number; + /** + * Total gas used by all transactions in the block (filter: gte) + */ + gas_used_gte?: number; + /** + * Total gas used by all transactions in the block (filter: between_min) + */ + gas_used_between_min?: number; + /** + * Total gas used by all transactions in the block (filter: between_max_value) + */ + gas_used_between_max_value?: number; + /** + * Total gas used by all transactions in the block (filter: in_values) (comma-separated list) + */ + gas_used_in_values?: string; + /** + * Total gas used by all transactions in the block (filter: not_in_values) (comma-separated list) + */ + gas_used_not_in_values?: string; + /** + * Gas limit of the block (filter: eq) + */ + gas_limit_eq?: number; + /** + * Gas limit of the block (filter: ne) + */ + gas_limit_ne?: number; + /** + * Gas limit of the block (filter: lt) + */ + gas_limit_lt?: number; + /** + * Gas limit of the block (filter: lte) + */ + gas_limit_lte?: number; + /** + * Gas limit of the block (filter: gt) + */ + gas_limit_gt?: number; + /** + * Gas limit of the block (filter: gte) + */ + gas_limit_gte?: number; + /** + * Gas limit of the block (filter: between_min) + */ + gas_limit_between_min?: number; + /** + * Gas limit of the block (filter: between_max_value) + */ + gas_limit_between_max_value?: number; + /** + * Gas limit of the block (filter: in_values) (comma-separated list) + */ + gas_limit_in_values?: string; + /** + * Gas limit of the block (filter: not_in_values) (comma-separated list) + */ + gas_limit_not_in_values?: string; + /** + * Number of transactions in the block (filter: eq) + */ + tx_count_eq?: number; + /** + * Number of transactions in the block (filter: ne) + */ + tx_count_ne?: number; + /** + * Number of transactions in the block (filter: lt) + */ + tx_count_lt?: number; + /** + * Number of transactions in the block (filter: lte) + */ + tx_count_lte?: number; + /** + * Number of transactions in the block (filter: gt) + */ + tx_count_gt?: number; + /** + * Number of transactions in the block (filter: gte) + */ + tx_count_gte?: number; + /** + * Number of transactions in the block (filter: between_min) + */ + tx_count_between_min?: number; + /** + * Number of transactions in the block (filter: between_max_value) + */ + tx_count_between_max_value?: number; + /** + * Number of transactions in the block (filter: in_values) (comma-separated list) + */ + tx_count_in_values?: string; + /** + * Number of transactions in the block (filter: not_in_values) (comma-separated list) + */ + tx_count_not_in_values?: string; + /** + * Number of blobs in the block (filter: eq) + */ + blob_count_eq?: number; + /** + * Number of blobs in the block (filter: ne) + */ + blob_count_ne?: number; + /** + * Number of blobs in the block (filter: lt) + */ + blob_count_lt?: number; + /** + * Number of blobs in the block (filter: lte) + */ + blob_count_lte?: number; + /** + * Number of blobs in the block (filter: gt) + */ + blob_count_gt?: number; + /** + * Number of blobs in the block (filter: gte) + */ + blob_count_gte?: number; + /** + * Number of blobs in the block (filter: between_min) + */ + blob_count_between_min?: number; + /** + * Number of blobs in the block (filter: between_max_value) + */ + blob_count_between_max_value?: number; + /** + * Number of blobs in the block (filter: in_values) (comma-separated list) + */ + blob_count_in_values?: string; + /** + * Number of blobs in the block (filter: not_in_values) (comma-separated list) + */ + blob_count_not_in_values?: string; + /** + * Number of observations for this slot/block/status (filter: eq) + */ + observation_count_eq?: number; + /** + * Number of observations for this slot/block/status (filter: ne) + */ + observation_count_ne?: number; + /** + * Number of observations for this slot/block/status (filter: lt) + */ + observation_count_lt?: number; + /** + * Number of observations for this slot/block/status (filter: lte) + */ + observation_count_lte?: number; + /** + * Number of observations for this slot/block/status (filter: gt) + */ + observation_count_gt?: number; + /** + * Number of observations for this slot/block/status (filter: gte) + */ + observation_count_gte?: number; + /** + * Number of observations for this slot/block/status (filter: between_min) + */ + observation_count_between_min?: number; + /** + * Number of observations for this slot/block/status (filter: between_max_value) + */ + observation_count_between_max_value?: number; + /** + * Number of observations for this slot/block/status (filter: in_values) (comma-separated list) + */ + observation_count_in_values?: string; + /** + * Number of observations for this slot/block/status (filter: not_in_values) (comma-separated list) + */ + observation_count_not_in_values?: string; + /** + * Number of unique nodes that observed this block with this status (filter: eq) + */ + unique_node_count_eq?: number; + /** + * Number of unique nodes that observed this block with this status (filter: ne) + */ + unique_node_count_ne?: number; + /** + * Number of unique nodes that observed this block with this status (filter: lt) + */ + unique_node_count_lt?: number; + /** + * Number of unique nodes that observed this block with this status (filter: lte) + */ + unique_node_count_lte?: number; + /** + * Number of unique nodes that observed this block with this status (filter: gt) + */ + unique_node_count_gt?: number; + /** + * Number of unique nodes that observed this block with this status (filter: gte) + */ + unique_node_count_gte?: number; + /** + * Number of unique nodes that observed this block with this status (filter: between_min) + */ + unique_node_count_between_min?: number; + /** + * Number of unique nodes that observed this block with this status (filter: between_max_value) + */ + unique_node_count_between_max_value?: number; + /** + * Number of unique nodes that observed this block with this status (filter: in_values) (comma-separated list) + */ + unique_node_count_in_values?: string; + /** + * Number of unique nodes that observed this block with this status (filter: not_in_values) (comma-separated list) + */ + unique_node_count_not_in_values?: string; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: eq) + */ + avg_duration_ms_eq?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: ne) + */ + avg_duration_ms_ne?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: lt) + */ + avg_duration_ms_lt?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: lte) + */ + avg_duration_ms_lte?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: gt) + */ + avg_duration_ms_gt?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: gte) + */ + avg_duration_ms_gte?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: between_min) + */ + avg_duration_ms_between_min?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: between_max_value) + */ + avg_duration_ms_between_max_value?: number; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) + */ + avg_duration_ms_in_values?: string; + /** + * Average duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + avg_duration_ms_not_in_values?: string; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: eq) + */ + median_duration_ms_eq?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: ne) + */ + median_duration_ms_ne?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: lt) + */ + median_duration_ms_lt?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: lte) + */ + median_duration_ms_lte?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: gt) + */ + median_duration_ms_gt?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: gte) + */ + median_duration_ms_gte?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: between_min) + */ + median_duration_ms_between_min?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: between_max_value) + */ + median_duration_ms_between_max_value?: number; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) + */ + median_duration_ms_in_values?: string; + /** + * Median duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + median_duration_ms_not_in_values?: string; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: eq) + */ + min_duration_ms_eq?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: ne) + */ + min_duration_ms_ne?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: lt) + */ + min_duration_ms_lt?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: lte) + */ + min_duration_ms_lte?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: gt) + */ + min_duration_ms_gt?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: gte) + */ + min_duration_ms_gte?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: between_min) + */ + min_duration_ms_between_min?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: between_max_value) + */ + min_duration_ms_between_max_value?: number; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) + */ + min_duration_ms_in_values?: string; + /** + * Minimum duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + min_duration_ms_not_in_values?: string; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: eq) + */ + max_duration_ms_eq?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: ne) + */ + max_duration_ms_ne?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: lt) + */ + max_duration_ms_lt?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: lte) + */ + max_duration_ms_lte?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: gt) + */ + max_duration_ms_gt?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: gte) + */ + max_duration_ms_gte?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: between_min) + */ + max_duration_ms_between_min?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: between_max_value) + */ + max_duration_ms_between_max_value?: number; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) + */ + max_duration_ms_in_values?: string; + /** + * Maximum duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + max_duration_ms_not_in_values?: string; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: eq) + */ + p95_duration_ms_eq?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: ne) + */ + p95_duration_ms_ne?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: lt) + */ + p95_duration_ms_lt?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: lte) + */ + p95_duration_ms_lte?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: gt) + */ + p95_duration_ms_gt?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: gte) + */ + p95_duration_ms_gte?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: between_min) + */ + p95_duration_ms_between_min?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: between_max_value) + */ + p95_duration_ms_between_max_value?: number; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) + */ + p95_duration_ms_in_values?: string; + /** + * 95th percentile duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + p95_duration_ms_not_in_values?: string; + /** + * 99th percentile duration of engine_newPayload calls in milliseconds (filter: eq) + */ + p99_duration_ms_eq?: number; + /** + * 99th percentile duration of engine_newPayload calls in milliseconds (filter: ne) + */ + p99_duration_ms_ne?: number; + /** + * 99th percentile duration of engine_newPayload calls in milliseconds (filter: lt) + */ + p99_duration_ms_lt?: number; + /** + * 99th percentile duration of engine_newPayload calls in milliseconds (filter: lte) + */ + p99_duration_ms_lte?: number; + /** + * 99th percentile duration of engine_newPayload calls in milliseconds (filter: gt) + */ + p99_duration_ms_gt?: number; + /** + * 99th percentile duration of engine_newPayload calls in milliseconds (filter: gte) + */ + p99_duration_ms_gte?: number; + /** + * 99th percentile duration of engine_newPayload calls in milliseconds (filter: between_min) + */ + p99_duration_ms_between_min?: number; + /** + * 99th percentile duration of engine_newPayload calls in milliseconds (filter: between_max_value) + */ + p99_duration_ms_between_max_value?: number; + /** + * 99th percentile duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) + */ + p99_duration_ms_in_values?: string; + /** + * 99th percentile duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) + */ + p99_duration_ms_not_in_values?: string; + /** + * Number of unique CL client implementations observing this block (filter: eq) + */ + unique_cl_implementation_count_eq?: number; + /** + * Number of unique CL client implementations observing this block (filter: ne) + */ + unique_cl_implementation_count_ne?: number; + /** + * Number of unique CL client implementations observing this block (filter: lt) + */ + unique_cl_implementation_count_lt?: number; + /** + * Number of unique CL client implementations observing this block (filter: lte) + */ + unique_cl_implementation_count_lte?: number; + /** + * Number of unique CL client implementations observing this block (filter: gt) + */ + unique_cl_implementation_count_gt?: number; + /** + * Number of unique CL client implementations observing this block (filter: gte) + */ + unique_cl_implementation_count_gte?: number; + /** + * Number of unique CL client implementations observing this block (filter: between_min) + */ + unique_cl_implementation_count_between_min?: number; + /** + * Number of unique CL client implementations observing this block (filter: between_max_value) + */ + unique_cl_implementation_count_between_max_value?: number; + /** + * Number of unique CL client implementations observing this block (filter: in_values) (comma-separated list) + */ + unique_cl_implementation_count_in_values?: string; + /** + * Number of unique CL client implementations observing this block (filter: not_in_values) (comma-separated list) + */ + unique_cl_implementation_count_not_in_values?: string; + /** + * Number of unique EL client implementations observing this block (filter: eq) + */ + unique_el_implementation_count_eq?: number; + /** + * Number of unique EL client implementations observing this block (filter: ne) + */ + unique_el_implementation_count_ne?: number; + /** + * Number of unique EL client implementations observing this block (filter: lt) + */ + unique_el_implementation_count_lt?: number; + /** + * Number of unique EL client implementations observing this block (filter: lte) + */ + unique_el_implementation_count_lte?: number; + /** + * Number of unique EL client implementations observing this block (filter: gt) + */ + unique_el_implementation_count_gt?: number; + /** + * Number of unique EL client implementations observing this block (filter: gte) + */ + unique_el_implementation_count_gte?: number; + /** + * Number of unique EL client implementations observing this block (filter: between_min) + */ + unique_el_implementation_count_between_min?: number; + /** + * Number of unique EL client implementations observing this block (filter: between_max_value) + */ + unique_el_implementation_count_between_max_value?: number; + /** + * Number of unique EL client implementations observing this block (filter: in_values) (comma-separated list) + */ + unique_el_implementation_count_in_values?: string; + /** + * Number of unique EL client implementations observing this block (filter: not_in_values) (comma-separated list) + */ + unique_el_implementation_count_not_in_values?: string; + /** + * The maximum number of fct_engine_new_payload_by_slot to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctEngineNewPayloadBySlot` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_engine_new_payload_by_slot'; +}; + +export type FctEngineNewPayloadBySlotServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineNewPayloadBySlotServiceListError = + FctEngineNewPayloadBySlotServiceListErrors[keyof FctEngineNewPayloadBySlotServiceListErrors]; + +export type FctEngineNewPayloadBySlotServiceListResponses = { + /** + * OK + */ + 200: ListFctEngineNewPayloadBySlotResponse; +}; + +export type FctEngineNewPayloadBySlotServiceListResponse = + FctEngineNewPayloadBySlotServiceListResponses[keyof FctEngineNewPayloadBySlotServiceListResponses]; + +export type FctEngineNewPayloadBySlotServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_engine_new_payload_by_slot/{slot_start_date_time}'; +}; + +export type FctEngineNewPayloadBySlotServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineNewPayloadBySlotServiceGetError = + FctEngineNewPayloadBySlotServiceGetErrors[keyof FctEngineNewPayloadBySlotServiceGetErrors]; + +export type FctEngineNewPayloadBySlotServiceGetResponses = { + /** + * OK + */ + 200: GetFctEngineNewPayloadBySlotResponse; +}; + +export type FctEngineNewPayloadBySlotServiceGetResponse = + FctEngineNewPayloadBySlotServiceGetResponses[keyof FctEngineNewPayloadBySlotServiceGetResponses]; + +export type FctEngineNewPayloadDurationChunked50MsServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: eq) + */ + block_hash_eq?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: ne) + */ + block_hash_ne?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: contains) + */ + block_hash_contains?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: like) + */ + block_hash_like?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: not_like) + */ + block_hash_not_like?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: eq) + */ + chunk_duration_ms_eq?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: ne) + */ + chunk_duration_ms_ne?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: lt) + */ + chunk_duration_ms_lt?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: lte) + */ + chunk_duration_ms_lte?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: gt) + */ + chunk_duration_ms_gt?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: gte) + */ + chunk_duration_ms_gte?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: between_min) + */ + chunk_duration_ms_between_min?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: between_max_value) + */ + chunk_duration_ms_between_max_value?: number; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: in_values) (comma-separated list) + */ + chunk_duration_ms_in_values?: string; + /** + * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: not_in_values) (comma-separated list) + */ + chunk_duration_ms_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number of the beacon block containing the payload (filter: eq) + */ + slot_eq?: number; + /** + * Slot number of the beacon block containing the payload (filter: ne) + */ + slot_ne?: number; + /** + * Slot number of the beacon block containing the payload (filter: lt) + */ + slot_lt?: number; + /** + * Slot number of the beacon block containing the payload (filter: lte) + */ + slot_lte?: number; + /** + * Slot number of the beacon block containing the payload (filter: gt) + */ + slot_gt?: number; + /** + * Slot number of the beacon block containing the payload (filter: gte) + */ + slot_gte?: number; + /** + * Slot number of the beacon block containing the payload (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number of the beacon block containing the payload (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number of the beacon block containing the payload (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number of the beacon block containing the payload (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Number of observations in this duration chunk (filter: eq) + */ + observation_count_eq?: number; + /** + * Number of observations in this duration chunk (filter: ne) + */ + observation_count_ne?: number; + /** + * Number of observations in this duration chunk (filter: lt) + */ + observation_count_lt?: number; + /** + * Number of observations in this duration chunk (filter: lte) + */ + observation_count_lte?: number; + /** + * Number of observations in this duration chunk (filter: gt) + */ + observation_count_gt?: number; + /** + * Number of observations in this duration chunk (filter: gte) + */ + observation_count_gte?: number; + /** + * Number of observations in this duration chunk (filter: between_min) + */ + observation_count_between_min?: number; + /** + * Number of observations in this duration chunk (filter: between_max_value) + */ + observation_count_between_max_value?: number; + /** + * Number of observations in this duration chunk (filter: in_values) (comma-separated list) + */ + observation_count_in_values?: string; + /** + * Number of observations in this duration chunk (filter: not_in_values) (comma-separated list) + */ + observation_count_not_in_values?: string; + /** + * Number of VALID status observations in this chunk (filter: eq) + */ + valid_count_eq?: number; + /** + * Number of VALID status observations in this chunk (filter: ne) + */ + valid_count_ne?: number; + /** + * Number of VALID status observations in this chunk (filter: lt) + */ + valid_count_lt?: number; + /** + * Number of VALID status observations in this chunk (filter: lte) + */ + valid_count_lte?: number; + /** + * Number of VALID status observations in this chunk (filter: gt) + */ + valid_count_gt?: number; + /** + * Number of VALID status observations in this chunk (filter: gte) + */ + valid_count_gte?: number; + /** + * Number of VALID status observations in this chunk (filter: between_min) + */ + valid_count_between_min?: number; + /** + * Number of VALID status observations in this chunk (filter: between_max_value) + */ + valid_count_between_max_value?: number; + /** + * Number of VALID status observations in this chunk (filter: in_values) (comma-separated list) + */ + valid_count_in_values?: string; + /** + * Number of VALID status observations in this chunk (filter: not_in_values) (comma-separated list) + */ + valid_count_not_in_values?: string; + /** + * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: eq) + */ + invalid_count_eq?: number; + /** + * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: ne) + */ + invalid_count_ne?: number; + /** + * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: lt) + */ + invalid_count_lt?: number; + /** + * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: lte) + */ + invalid_count_lte?: number; + /** + * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: gt) + */ + invalid_count_gt?: number; + /** + * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: gte) + */ + invalid_count_gte?: number; + /** + * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: between_min) + */ + invalid_count_between_min?: number; + /** + * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: between_max_value) + */ + invalid_count_between_max_value?: number; + /** + * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: in_values) (comma-separated list) + */ + invalid_count_in_values?: string; + /** + * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: not_in_values) (comma-separated list) + */ + invalid_count_not_in_values?: string; + /** + * The maximum number of fct_engine_new_payload_duration_chunked_50ms to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctEngineNewPayloadDurationChunked50ms` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_engine_new_payload_duration_chunked_50ms'; +}; + +export type FctEngineNewPayloadDurationChunked50MsServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineNewPayloadDurationChunked50MsServiceListError = + FctEngineNewPayloadDurationChunked50MsServiceListErrors[keyof FctEngineNewPayloadDurationChunked50MsServiceListErrors]; + +export type FctEngineNewPayloadDurationChunked50MsServiceListResponses = { + /** + * OK + */ + 200: ListFctEngineNewPayloadDurationChunked50MsResponse; +}; + +export type FctEngineNewPayloadDurationChunked50MsServiceListResponse = + FctEngineNewPayloadDurationChunked50MsServiceListResponses[keyof FctEngineNewPayloadDurationChunked50MsServiceListResponses]; + +export type FctEngineNewPayloadDurationChunked50MsServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_engine_new_payload_duration_chunked_50ms/{slot_start_date_time}'; +}; + +export type FctEngineNewPayloadDurationChunked50MsServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineNewPayloadDurationChunked50MsServiceGetError = + FctEngineNewPayloadDurationChunked50MsServiceGetErrors[keyof FctEngineNewPayloadDurationChunked50MsServiceGetErrors]; + +export type FctEngineNewPayloadDurationChunked50MsServiceGetResponses = { + /** + * OK + */ + 200: GetFctEngineNewPayloadDurationChunked50MsResponse; +}; + +export type FctEngineNewPayloadDurationChunked50MsServiceGetResponse = + FctEngineNewPayloadDurationChunked50MsServiceGetResponses[keyof FctEngineNewPayloadDurationChunked50MsServiceGetResponses]; + +export type FctEngineNewPayloadWinrateDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: eq) + */ + meta_execution_implementation_eq?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: ne) + */ + meta_execution_implementation_ne?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: contains) + */ + meta_execution_implementation_contains?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: starts_with) + */ + meta_execution_implementation_starts_with?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: ends_with) + */ + meta_execution_implementation_ends_with?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: like) + */ + meta_execution_implementation_like?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: not_like) + */ + meta_execution_implementation_not_like?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: in_values) (comma-separated list) + */ + meta_execution_implementation_in_values?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: not_in_values) (comma-separated list) + */ + meta_execution_implementation_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: eq) + */ + win_count_eq?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: ne) + */ + win_count_ne?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: lt) + */ + win_count_lt?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: lte) + */ + win_count_lte?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: gt) + */ + win_count_gt?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: gte) + */ + win_count_gte?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: between_min) + */ + win_count_between_min?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: between_max_value) + */ + win_count_between_max_value?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: in_values) (comma-separated list) + */ + win_count_in_values?: string; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: not_in_values) (comma-separated list) + */ + win_count_not_in_values?: string; + /** + * The maximum number of fct_engine_new_payload_winrate_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctEngineNewPayloadWinrateDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_engine_new_payload_winrate_daily'; +}; + +export type FctEngineNewPayloadWinrateDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineNewPayloadWinrateDailyServiceListError = + FctEngineNewPayloadWinrateDailyServiceListErrors[keyof FctEngineNewPayloadWinrateDailyServiceListErrors]; + +export type FctEngineNewPayloadWinrateDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctEngineNewPayloadWinrateDailyResponse; +}; + +export type FctEngineNewPayloadWinrateDailyServiceListResponse = + FctEngineNewPayloadWinrateDailyServiceListResponses[keyof FctEngineNewPayloadWinrateDailyServiceListResponses]; + +export type FctEngineNewPayloadWinrateDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_engine_new_payload_winrate_daily/{day_start_date}'; +}; + +export type FctEngineNewPayloadWinrateDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineNewPayloadWinrateDailyServiceGetError = + FctEngineNewPayloadWinrateDailyServiceGetErrors[keyof FctEngineNewPayloadWinrateDailyServiceGetErrors]; + +export type FctEngineNewPayloadWinrateDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctEngineNewPayloadWinrateDailyResponse; +}; + +export type FctEngineNewPayloadWinrateDailyServiceGetResponse = + FctEngineNewPayloadWinrateDailyServiceGetResponses[keyof FctEngineNewPayloadWinrateDailyServiceGetResponses]; + +export type FctEngineNewPayloadWinrateHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: eq) + */ + meta_execution_implementation_eq?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: ne) + */ + meta_execution_implementation_ne?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: contains) + */ + meta_execution_implementation_contains?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: starts_with) + */ + meta_execution_implementation_starts_with?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: ends_with) + */ + meta_execution_implementation_ends_with?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: like) + */ + meta_execution_implementation_like?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: not_like) + */ + meta_execution_implementation_not_like?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: in_values) (comma-separated list) + */ + meta_execution_implementation_in_values?: string; + /** + * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: not_in_values) (comma-separated list) + */ + meta_execution_implementation_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: eq) + */ + win_count_eq?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: ne) + */ + win_count_ne?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: lt) + */ + win_count_lt?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: lte) + */ + win_count_lte?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: gt) + */ + win_count_gt?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: gte) + */ + win_count_gte?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: between_min) + */ + win_count_between_min?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: between_max_value) + */ + win_count_between_max_value?: number; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: in_values) (comma-separated list) + */ + win_count_in_values?: string; + /** + * Number of slots where this client had the fastest engine_newPayload duration (filter: not_in_values) (comma-separated list) + */ + win_count_not_in_values?: string; + /** + * The maximum number of fct_engine_new_payload_winrate_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctEngineNewPayloadWinrateHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_engine_new_payload_winrate_hourly'; +}; + +export type FctEngineNewPayloadWinrateHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineNewPayloadWinrateHourlyServiceListError = + FctEngineNewPayloadWinrateHourlyServiceListErrors[keyof FctEngineNewPayloadWinrateHourlyServiceListErrors]; + +export type FctEngineNewPayloadWinrateHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctEngineNewPayloadWinrateHourlyResponse; +}; + +export type FctEngineNewPayloadWinrateHourlyServiceListResponse = + FctEngineNewPayloadWinrateHourlyServiceListResponses[keyof FctEngineNewPayloadWinrateHourlyServiceListResponses]; + +export type FctEngineNewPayloadWinrateHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_engine_new_payload_winrate_hourly/{hour_start_date_time}'; +}; + +export type FctEngineNewPayloadWinrateHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctEngineNewPayloadWinrateHourlyServiceGetError = + FctEngineNewPayloadWinrateHourlyServiceGetErrors[keyof FctEngineNewPayloadWinrateHourlyServiceGetErrors]; + +export type FctEngineNewPayloadWinrateHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctEngineNewPayloadWinrateHourlyResponse; +}; + +export type FctEngineNewPayloadWinrateHourlyServiceGetResponse = + FctEngineNewPayloadWinrateHourlyServiceGetResponses[keyof FctEngineNewPayloadWinrateHourlyServiceGetResponses]; + +export type FctExecutionGasLimitDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks in this day (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks in this day (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks in this day (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks in this day (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks in this day (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks in this day (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks in this day (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks in this day (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks in this day (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks in this day (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total gas limit in this day (filter: eq) + */ + total_gas_limit_eq?: number; + /** + * Total gas limit in this day (filter: ne) + */ + total_gas_limit_ne?: number; + /** + * Total gas limit in this day (filter: lt) + */ + total_gas_limit_lt?: number; + /** + * Total gas limit in this day (filter: lte) + */ + total_gas_limit_lte?: number; + /** + * Total gas limit in this day (filter: gt) + */ + total_gas_limit_gt?: number; + /** + * Total gas limit in this day (filter: gte) + */ + total_gas_limit_gte?: number; + /** + * Total gas limit in this day (filter: between_min) + */ + total_gas_limit_between_min?: number; + /** + * Total gas limit in this day (filter: between_max_value) + */ + total_gas_limit_between_max_value?: number; + /** + * Total gas limit in this day (filter: in_values) (comma-separated list) + */ + total_gas_limit_in_values?: string; + /** + * Total gas limit in this day (filter: not_in_values) (comma-separated list) + */ + total_gas_limit_not_in_values?: string; + /** + * Average gas limit per block (filter: eq) + */ + avg_gas_limit_eq?: number; + /** + * Average gas limit per block (filter: ne) + */ + avg_gas_limit_ne?: number; + /** + * Average gas limit per block (filter: lt) + */ + avg_gas_limit_lt?: number; + /** + * Average gas limit per block (filter: lte) + */ + avg_gas_limit_lte?: number; + /** + * Average gas limit per block (filter: gt) + */ + avg_gas_limit_gt?: number; + /** + * Average gas limit per block (filter: gte) + */ + avg_gas_limit_gte?: number; + /** + * Average gas limit per block (filter: between_min) + */ + avg_gas_limit_between_min?: number; + /** + * Average gas limit per block (filter: between_max_value) + */ + avg_gas_limit_between_max_value?: number; + /** + * Average gas limit per block (filter: in_values) (comma-separated list) + */ + avg_gas_limit_in_values?: string; + /** + * Average gas limit per block (filter: not_in_values) (comma-separated list) + */ + avg_gas_limit_not_in_values?: string; + /** + * Minimum gas limit in a block (filter: eq) + */ + min_gas_limit_eq?: number; + /** + * Minimum gas limit in a block (filter: ne) + */ + min_gas_limit_ne?: number; + /** + * Minimum gas limit in a block (filter: lt) + */ + min_gas_limit_lt?: number; + /** + * Minimum gas limit in a block (filter: lte) + */ + min_gas_limit_lte?: number; + /** + * Minimum gas limit in a block (filter: gt) + */ + min_gas_limit_gt?: number; + /** + * Minimum gas limit in a block (filter: gte) + */ + min_gas_limit_gte?: number; + /** + * Minimum gas limit in a block (filter: between_min) + */ + min_gas_limit_between_min?: number; + /** + * Minimum gas limit in a block (filter: between_max_value) + */ + min_gas_limit_between_max_value?: number; + /** + * Minimum gas limit in a block (filter: in_values) (comma-separated list) + */ + min_gas_limit_in_values?: string; + /** + * Minimum gas limit in a block (filter: not_in_values) (comma-separated list) + */ + min_gas_limit_not_in_values?: string; + /** + * Maximum gas limit in a block (filter: eq) + */ + max_gas_limit_eq?: number; + /** + * Maximum gas limit in a block (filter: ne) + */ + max_gas_limit_ne?: number; + /** + * Maximum gas limit in a block (filter: lt) + */ + max_gas_limit_lt?: number; + /** + * Maximum gas limit in a block (filter: lte) + */ + max_gas_limit_lte?: number; + /** + * Maximum gas limit in a block (filter: gt) + */ + max_gas_limit_gt?: number; + /** + * Maximum gas limit in a block (filter: gte) + */ + max_gas_limit_gte?: number; + /** + * Maximum gas limit in a block (filter: between_min) + */ + max_gas_limit_between_min?: number; + /** + * Maximum gas limit in a block (filter: between_max_value) + */ + max_gas_limit_between_max_value?: number; + /** + * Maximum gas limit in a block (filter: in_values) (comma-separated list) + */ + max_gas_limit_in_values?: string; + /** + * Maximum gas limit in a block (filter: not_in_values) (comma-separated list) + */ + max_gas_limit_not_in_values?: string; + /** + * 5th percentile gas limit (filter: eq) + */ + p05_gas_limit_eq?: number; + /** + * 5th percentile gas limit (filter: ne) + */ + p05_gas_limit_ne?: number; + /** + * 5th percentile gas limit (filter: lt) + */ + p05_gas_limit_lt?: number; + /** + * 5th percentile gas limit (filter: lte) + */ + p05_gas_limit_lte?: number; + /** + * 5th percentile gas limit (filter: gt) + */ + p05_gas_limit_gt?: number; + /** + * 5th percentile gas limit (filter: gte) + */ + p05_gas_limit_gte?: number; + /** + * 5th percentile gas limit (filter: between_min) + */ + p05_gas_limit_between_min?: number; + /** + * 5th percentile gas limit (filter: between_max_value) + */ + p05_gas_limit_between_max_value?: number; + /** + * 5th percentile gas limit (filter: in_values) (comma-separated list) + */ + p05_gas_limit_in_values?: string; + /** + * 5th percentile gas limit (filter: not_in_values) (comma-separated list) + */ + p05_gas_limit_not_in_values?: string; + /** + * 50th percentile (median) gas limit (filter: eq) + */ + p50_gas_limit_eq?: number; + /** + * 50th percentile (median) gas limit (filter: ne) + */ + p50_gas_limit_ne?: number; + /** + * 50th percentile (median) gas limit (filter: lt) + */ + p50_gas_limit_lt?: number; + /** + * 50th percentile (median) gas limit (filter: lte) + */ + p50_gas_limit_lte?: number; + /** + * 50th percentile (median) gas limit (filter: gt) + */ + p50_gas_limit_gt?: number; + /** + * 50th percentile (median) gas limit (filter: gte) + */ + p50_gas_limit_gte?: number; + /** + * 50th percentile (median) gas limit (filter: between_min) + */ + p50_gas_limit_between_min?: number; + /** + * 50th percentile (median) gas limit (filter: between_max_value) + */ + p50_gas_limit_between_max_value?: number; + /** + * 50th percentile (median) gas limit (filter: in_values) (comma-separated list) + */ + p50_gas_limit_in_values?: string; + /** + * 50th percentile (median) gas limit (filter: not_in_values) (comma-separated list) + */ + p50_gas_limit_not_in_values?: string; + /** + * 95th percentile gas limit (filter: eq) + */ + p95_gas_limit_eq?: number; + /** + * 95th percentile gas limit (filter: ne) + */ + p95_gas_limit_ne?: number; + /** + * 95th percentile gas limit (filter: lt) + */ + p95_gas_limit_lt?: number; + /** + * 95th percentile gas limit (filter: lte) + */ + p95_gas_limit_lte?: number; + /** + * 95th percentile gas limit (filter: gt) + */ + p95_gas_limit_gt?: number; + /** + * 95th percentile gas limit (filter: gte) + */ + p95_gas_limit_gte?: number; + /** + * 95th percentile gas limit (filter: between_min) + */ + p95_gas_limit_between_min?: number; + /** + * 95th percentile gas limit (filter: between_max_value) + */ + p95_gas_limit_between_max_value?: number; + /** + * 95th percentile gas limit (filter: in_values) (comma-separated list) + */ + p95_gas_limit_in_values?: string; + /** + * 95th percentile gas limit (filter: not_in_values) (comma-separated list) + */ + p95_gas_limit_not_in_values?: string; + /** + * Standard deviation of gas limit (filter: eq) + */ + stddev_gas_limit_eq?: number; + /** + * Standard deviation of gas limit (filter: ne) + */ + stddev_gas_limit_ne?: number; + /** + * Standard deviation of gas limit (filter: lt) + */ + stddev_gas_limit_lt?: number; + /** + * Standard deviation of gas limit (filter: lte) + */ + stddev_gas_limit_lte?: number; + /** + * Standard deviation of gas limit (filter: gt) + */ + stddev_gas_limit_gt?: number; + /** + * Standard deviation of gas limit (filter: gte) + */ + stddev_gas_limit_gte?: number; + /** + * Standard deviation of gas limit (filter: between_min) + */ + stddev_gas_limit_between_min?: number; + /** + * Standard deviation of gas limit (filter: between_max_value) + */ + stddev_gas_limit_between_max_value?: number; + /** + * Standard deviation of gas limit (filter: in_values) (comma-separated list) + */ + stddev_gas_limit_in_values?: string; + /** + * Standard deviation of gas limit (filter: not_in_values) (comma-separated list) + */ + stddev_gas_limit_not_in_values?: string; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: eq) + */ + upper_band_gas_limit_eq?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: ne) + */ + upper_band_gas_limit_ne?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: lt) + */ + upper_band_gas_limit_lt?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: lte) + */ + upper_band_gas_limit_lte?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: gt) + */ + upper_band_gas_limit_gt?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: gte) + */ + upper_band_gas_limit_gte?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: between_min) + */ + upper_band_gas_limit_between_min?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: between_max_value) + */ + upper_band_gas_limit_between_max_value?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: in_values) (comma-separated list) + */ + upper_band_gas_limit_in_values?: string; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: not_in_values) (comma-separated list) + */ + upper_band_gas_limit_not_in_values?: string; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: eq) + */ + lower_band_gas_limit_eq?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: ne) + */ + lower_band_gas_limit_ne?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lt) + */ + lower_band_gas_limit_lt?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lte) + */ + lower_band_gas_limit_lte?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gt) + */ + lower_band_gas_limit_gt?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gte) + */ + lower_band_gas_limit_gte?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_min) + */ + lower_band_gas_limit_between_min?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_max_value) + */ + lower_band_gas_limit_between_max_value?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: in_values) (comma-separated list) + */ + lower_band_gas_limit_in_values?: string; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: not_in_values) (comma-separated list) + */ + lower_band_gas_limit_not_in_values?: string; + /** + * Moving average gas limit (7-day window) (filter: eq) + */ + moving_avg_gas_limit_eq?: number; + /** + * Moving average gas limit (7-day window) (filter: ne) + */ + moving_avg_gas_limit_ne?: number; + /** + * Moving average gas limit (7-day window) (filter: lt) + */ + moving_avg_gas_limit_lt?: number; + /** + * Moving average gas limit (7-day window) (filter: lte) + */ + moving_avg_gas_limit_lte?: number; + /** + * Moving average gas limit (7-day window) (filter: gt) + */ + moving_avg_gas_limit_gt?: number; + /** + * Moving average gas limit (7-day window) (filter: gte) + */ + moving_avg_gas_limit_gte?: number; + /** + * Moving average gas limit (7-day window) (filter: between_min) + */ + moving_avg_gas_limit_between_min?: number; + /** + * Moving average gas limit (7-day window) (filter: between_max_value) + */ + moving_avg_gas_limit_between_max_value?: number; + /** + * Moving average gas limit (7-day window) (filter: in_values) (comma-separated list) + */ + moving_avg_gas_limit_in_values?: string; + /** + * Moving average gas limit (7-day window) (filter: not_in_values) (comma-separated list) + */ + moving_avg_gas_limit_not_in_values?: string; + /** + * The maximum number of fct_execution_gas_limit_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionGasLimitDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_gas_limit_daily'; +}; + +export type FctExecutionGasLimitDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionGasLimitDailyServiceListError = + FctExecutionGasLimitDailyServiceListErrors[keyof FctExecutionGasLimitDailyServiceListErrors]; + +export type FctExecutionGasLimitDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionGasLimitDailyResponse; +}; + +export type FctExecutionGasLimitDailyServiceListResponse = + FctExecutionGasLimitDailyServiceListResponses[keyof FctExecutionGasLimitDailyServiceListResponses]; + +export type FctExecutionGasLimitDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_execution_gas_limit_daily/{day_start_date}'; +}; + +export type FctExecutionGasLimitDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionGasLimitDailyServiceGetError = + FctExecutionGasLimitDailyServiceGetErrors[keyof FctExecutionGasLimitDailyServiceGetErrors]; + +export type FctExecutionGasLimitDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionGasLimitDailyResponse; +}; + +export type FctExecutionGasLimitDailyServiceGetResponse = + FctExecutionGasLimitDailyServiceGetResponses[keyof FctExecutionGasLimitDailyServiceGetResponses]; + +export type FctExecutionGasLimitHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks in this hour (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks in this hour (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks in this hour (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks in this hour (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks in this hour (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks in this hour (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks in this hour (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks in this hour (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks in this hour (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks in this hour (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total gas limit in this hour (filter: eq) + */ + total_gas_limit_eq?: number; + /** + * Total gas limit in this hour (filter: ne) + */ + total_gas_limit_ne?: number; + /** + * Total gas limit in this hour (filter: lt) + */ + total_gas_limit_lt?: number; + /** + * Total gas limit in this hour (filter: lte) + */ + total_gas_limit_lte?: number; + /** + * Total gas limit in this hour (filter: gt) + */ + total_gas_limit_gt?: number; + /** + * Total gas limit in this hour (filter: gte) + */ + total_gas_limit_gte?: number; + /** + * Total gas limit in this hour (filter: between_min) + */ + total_gas_limit_between_min?: number; + /** + * Total gas limit in this hour (filter: between_max_value) + */ + total_gas_limit_between_max_value?: number; + /** + * Total gas limit in this hour (filter: in_values) (comma-separated list) + */ + total_gas_limit_in_values?: string; + /** + * Total gas limit in this hour (filter: not_in_values) (comma-separated list) + */ + total_gas_limit_not_in_values?: string; + /** + * Average gas limit per block (filter: eq) + */ + avg_gas_limit_eq?: number; + /** + * Average gas limit per block (filter: ne) + */ + avg_gas_limit_ne?: number; + /** + * Average gas limit per block (filter: lt) + */ + avg_gas_limit_lt?: number; + /** + * Average gas limit per block (filter: lte) + */ + avg_gas_limit_lte?: number; + /** + * Average gas limit per block (filter: gt) + */ + avg_gas_limit_gt?: number; + /** + * Average gas limit per block (filter: gte) + */ + avg_gas_limit_gte?: number; + /** + * Average gas limit per block (filter: between_min) + */ + avg_gas_limit_between_min?: number; + /** + * Average gas limit per block (filter: between_max_value) + */ + avg_gas_limit_between_max_value?: number; + /** + * Average gas limit per block (filter: in_values) (comma-separated list) + */ + avg_gas_limit_in_values?: string; + /** + * Average gas limit per block (filter: not_in_values) (comma-separated list) + */ + avg_gas_limit_not_in_values?: string; + /** + * Minimum gas limit in a block (filter: eq) + */ + min_gas_limit_eq?: number; + /** + * Minimum gas limit in a block (filter: ne) + */ + min_gas_limit_ne?: number; + /** + * Minimum gas limit in a block (filter: lt) + */ + min_gas_limit_lt?: number; + /** + * Minimum gas limit in a block (filter: lte) + */ + min_gas_limit_lte?: number; + /** + * Minimum gas limit in a block (filter: gt) + */ + min_gas_limit_gt?: number; + /** + * Minimum gas limit in a block (filter: gte) + */ + min_gas_limit_gte?: number; + /** + * Minimum gas limit in a block (filter: between_min) + */ + min_gas_limit_between_min?: number; + /** + * Minimum gas limit in a block (filter: between_max_value) + */ + min_gas_limit_between_max_value?: number; + /** + * Minimum gas limit in a block (filter: in_values) (comma-separated list) + */ + min_gas_limit_in_values?: string; + /** + * Minimum gas limit in a block (filter: not_in_values) (comma-separated list) + */ + min_gas_limit_not_in_values?: string; + /** + * Maximum gas limit in a block (filter: eq) + */ + max_gas_limit_eq?: number; + /** + * Maximum gas limit in a block (filter: ne) + */ + max_gas_limit_ne?: number; + /** + * Maximum gas limit in a block (filter: lt) + */ + max_gas_limit_lt?: number; + /** + * Maximum gas limit in a block (filter: lte) + */ + max_gas_limit_lte?: number; + /** + * Maximum gas limit in a block (filter: gt) + */ + max_gas_limit_gt?: number; + /** + * Maximum gas limit in a block (filter: gte) + */ + max_gas_limit_gte?: number; + /** + * Maximum gas limit in a block (filter: between_min) + */ + max_gas_limit_between_min?: number; + /** + * Maximum gas limit in a block (filter: between_max_value) + */ + max_gas_limit_between_max_value?: number; + /** + * Maximum gas limit in a block (filter: in_values) (comma-separated list) + */ + max_gas_limit_in_values?: string; + /** + * Maximum gas limit in a block (filter: not_in_values) (comma-separated list) + */ + max_gas_limit_not_in_values?: string; + /** + * 5th percentile gas limit (filter: eq) + */ + p05_gas_limit_eq?: number; + /** + * 5th percentile gas limit (filter: ne) + */ + p05_gas_limit_ne?: number; + /** + * 5th percentile gas limit (filter: lt) + */ + p05_gas_limit_lt?: number; + /** + * 5th percentile gas limit (filter: lte) + */ + p05_gas_limit_lte?: number; + /** + * 5th percentile gas limit (filter: gt) + */ + p05_gas_limit_gt?: number; + /** + * 5th percentile gas limit (filter: gte) + */ + p05_gas_limit_gte?: number; + /** + * 5th percentile gas limit (filter: between_min) + */ + p05_gas_limit_between_min?: number; + /** + * 5th percentile gas limit (filter: between_max_value) + */ + p05_gas_limit_between_max_value?: number; + /** + * 5th percentile gas limit (filter: in_values) (comma-separated list) + */ + p05_gas_limit_in_values?: string; + /** + * 5th percentile gas limit (filter: not_in_values) (comma-separated list) + */ + p05_gas_limit_not_in_values?: string; + /** + * 50th percentile (median) gas limit (filter: eq) + */ + p50_gas_limit_eq?: number; + /** + * 50th percentile (median) gas limit (filter: ne) + */ + p50_gas_limit_ne?: number; + /** + * 50th percentile (median) gas limit (filter: lt) + */ + p50_gas_limit_lt?: number; + /** + * 50th percentile (median) gas limit (filter: lte) + */ + p50_gas_limit_lte?: number; + /** + * 50th percentile (median) gas limit (filter: gt) + */ + p50_gas_limit_gt?: number; + /** + * 50th percentile (median) gas limit (filter: gte) + */ + p50_gas_limit_gte?: number; + /** + * 50th percentile (median) gas limit (filter: between_min) + */ + p50_gas_limit_between_min?: number; + /** + * 50th percentile (median) gas limit (filter: between_max_value) + */ + p50_gas_limit_between_max_value?: number; + /** + * 50th percentile (median) gas limit (filter: in_values) (comma-separated list) + */ + p50_gas_limit_in_values?: string; + /** + * 50th percentile (median) gas limit (filter: not_in_values) (comma-separated list) + */ + p50_gas_limit_not_in_values?: string; + /** + * 95th percentile gas limit (filter: eq) + */ + p95_gas_limit_eq?: number; + /** + * 95th percentile gas limit (filter: ne) + */ + p95_gas_limit_ne?: number; + /** + * 95th percentile gas limit (filter: lt) + */ + p95_gas_limit_lt?: number; + /** + * 95th percentile gas limit (filter: lte) + */ + p95_gas_limit_lte?: number; + /** + * 95th percentile gas limit (filter: gt) + */ + p95_gas_limit_gt?: number; + /** + * 95th percentile gas limit (filter: gte) + */ + p95_gas_limit_gte?: number; + /** + * 95th percentile gas limit (filter: between_min) + */ + p95_gas_limit_between_min?: number; + /** + * 95th percentile gas limit (filter: between_max_value) + */ + p95_gas_limit_between_max_value?: number; + /** + * 95th percentile gas limit (filter: in_values) (comma-separated list) + */ + p95_gas_limit_in_values?: string; + /** + * 95th percentile gas limit (filter: not_in_values) (comma-separated list) + */ + p95_gas_limit_not_in_values?: string; + /** + * Standard deviation of gas limit (filter: eq) + */ + stddev_gas_limit_eq?: number; + /** + * Standard deviation of gas limit (filter: ne) + */ + stddev_gas_limit_ne?: number; + /** + * Standard deviation of gas limit (filter: lt) + */ + stddev_gas_limit_lt?: number; + /** + * Standard deviation of gas limit (filter: lte) + */ + stddev_gas_limit_lte?: number; + /** + * Standard deviation of gas limit (filter: gt) + */ + stddev_gas_limit_gt?: number; + /** + * Standard deviation of gas limit (filter: gte) + */ + stddev_gas_limit_gte?: number; + /** + * Standard deviation of gas limit (filter: between_min) + */ + stddev_gas_limit_between_min?: number; + /** + * Standard deviation of gas limit (filter: between_max_value) + */ + stddev_gas_limit_between_max_value?: number; + /** + * Standard deviation of gas limit (filter: in_values) (comma-separated list) + */ + stddev_gas_limit_in_values?: string; + /** + * Standard deviation of gas limit (filter: not_in_values) (comma-separated list) + */ + stddev_gas_limit_not_in_values?: string; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: eq) + */ + upper_band_gas_limit_eq?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: ne) + */ + upper_band_gas_limit_ne?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: lt) + */ + upper_band_gas_limit_lt?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: lte) + */ + upper_band_gas_limit_lte?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: gt) + */ + upper_band_gas_limit_gt?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: gte) + */ + upper_band_gas_limit_gte?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: between_min) + */ + upper_band_gas_limit_between_min?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: between_max_value) + */ + upper_band_gas_limit_between_max_value?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: in_values) (comma-separated list) + */ + upper_band_gas_limit_in_values?: string; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: not_in_values) (comma-separated list) + */ + upper_band_gas_limit_not_in_values?: string; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: eq) + */ + lower_band_gas_limit_eq?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: ne) + */ + lower_band_gas_limit_ne?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lt) + */ + lower_band_gas_limit_lt?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lte) + */ + lower_band_gas_limit_lte?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gt) + */ + lower_band_gas_limit_gt?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gte) + */ + lower_band_gas_limit_gte?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_min) + */ + lower_band_gas_limit_between_min?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_max_value) + */ + lower_band_gas_limit_between_max_value?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: in_values) (comma-separated list) + */ + lower_band_gas_limit_in_values?: string; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: not_in_values) (comma-separated list) + */ + lower_band_gas_limit_not_in_values?: string; + /** + * Moving average gas limit (6-hour window) (filter: eq) + */ + moving_avg_gas_limit_eq?: number; + /** + * Moving average gas limit (6-hour window) (filter: ne) + */ + moving_avg_gas_limit_ne?: number; + /** + * Moving average gas limit (6-hour window) (filter: lt) + */ + moving_avg_gas_limit_lt?: number; + /** + * Moving average gas limit (6-hour window) (filter: lte) + */ + moving_avg_gas_limit_lte?: number; + /** + * Moving average gas limit (6-hour window) (filter: gt) + */ + moving_avg_gas_limit_gt?: number; + /** + * Moving average gas limit (6-hour window) (filter: gte) + */ + moving_avg_gas_limit_gte?: number; + /** + * Moving average gas limit (6-hour window) (filter: between_min) + */ + moving_avg_gas_limit_between_min?: number; + /** + * Moving average gas limit (6-hour window) (filter: between_max_value) + */ + moving_avg_gas_limit_between_max_value?: number; + /** + * Moving average gas limit (6-hour window) (filter: in_values) (comma-separated list) + */ + moving_avg_gas_limit_in_values?: string; + /** + * Moving average gas limit (6-hour window) (filter: not_in_values) (comma-separated list) + */ + moving_avg_gas_limit_not_in_values?: string; + /** + * The maximum number of fct_execution_gas_limit_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionGasLimitHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_gas_limit_hourly'; +}; + +export type FctExecutionGasLimitHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionGasLimitHourlyServiceListError = + FctExecutionGasLimitHourlyServiceListErrors[keyof FctExecutionGasLimitHourlyServiceListErrors]; + +export type FctExecutionGasLimitHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionGasLimitHourlyResponse; +}; + +export type FctExecutionGasLimitHourlyServiceListResponse = + FctExecutionGasLimitHourlyServiceListResponses[keyof FctExecutionGasLimitHourlyServiceListResponses]; + +export type FctExecutionGasLimitHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_execution_gas_limit_hourly/{hour_start_date_time}'; +}; + +export type FctExecutionGasLimitHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionGasLimitHourlyServiceGetError = + FctExecutionGasLimitHourlyServiceGetErrors[keyof FctExecutionGasLimitHourlyServiceGetErrors]; + +export type FctExecutionGasLimitHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionGasLimitHourlyResponse; +}; + +export type FctExecutionGasLimitHourlyServiceGetResponse = + FctExecutionGasLimitHourlyServiceGetResponses[keyof FctExecutionGasLimitHourlyServiceGetResponses]; + +export type FctExecutionGasLimitSignallingDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * required) (filter: eq) + */ + day_start_date_eq?: string; + /** + * required) (filter: ne) + */ + day_start_date_ne?: string; + /** + * required) (filter: contains) + */ + day_start_date_contains?: string; + /** + * required) (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * required) (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * required) (filter: like) + */ + day_start_date_like?: string; + /** + * required) (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * required) (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * required) (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * updated_date_time (filter: eq) + */ + updated_date_time_eq?: number; + /** + * updated_date_time (filter: ne) + */ + updated_date_time_ne?: number; + /** + * updated_date_time (filter: lt) + */ + updated_date_time_lt?: number; + /** + * updated_date_time (filter: lte) + */ + updated_date_time_lte?: number; + /** + * updated_date_time (filter: gt) + */ + updated_date_time_gt?: number; + /** + * updated_date_time (filter: gte) + */ + updated_date_time_gte?: number; + /** + * updated_date_time (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * updated_date_time (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * updated_date_time (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * updated_date_time (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * gas_limit_band_counts (filter: key_value_key) + */ + gas_limit_band_counts_key_value_key?: string; + /** + * gas_limit_band_counts (filter: key_value_value_filter_eq) + */ + gas_limit_band_counts_key_value_value_filter_eq?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_ne) + */ + gas_limit_band_counts_key_value_value_filter_ne?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_lt) + */ + gas_limit_band_counts_key_value_value_filter_lt?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_lte) + */ + gas_limit_band_counts_key_value_value_filter_lte?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_gt) + */ + gas_limit_band_counts_key_value_value_filter_gt?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_gte) + */ + gas_limit_band_counts_key_value_value_filter_gte?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_between_min) + */ + gas_limit_band_counts_key_value_value_filter_between_min?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_between_max_value) + */ + gas_limit_band_counts_key_value_value_filter_between_max_value?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_in_values) (comma-separated list) + */ + gas_limit_band_counts_key_value_value_filter_in_values?: string; + /** + * gas_limit_band_counts (filter: key_value_value_filter_not_in_values) (comma-separated list) + */ + gas_limit_band_counts_key_value_value_filter_not_in_values?: string; + /** + * gas_limit_band_counts (filter: has_key) + */ + gas_limit_band_counts_has_key?: string; + /** + * gas_limit_band_counts (filter: not_has_key) + */ + gas_limit_band_counts_not_has_key?: string; + /** + * gas_limit_band_counts (filter: has_any_key_values) + */ + gas_limit_band_counts_has_any_key_values?: Array; + /** + * gas_limit_band_counts (filter: has_all_keys_values) + */ + gas_limit_band_counts_has_all_keys_values?: Array; + /** + * The maximum number of fct_execution_gas_limit_signalling_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionGasLimitSignallingDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_gas_limit_signalling_daily'; +}; + +export type FctExecutionGasLimitSignallingDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionGasLimitSignallingDailyServiceListError = + FctExecutionGasLimitSignallingDailyServiceListErrors[keyof FctExecutionGasLimitSignallingDailyServiceListErrors]; + +export type FctExecutionGasLimitSignallingDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionGasLimitSignallingDailyResponse; +}; + +export type FctExecutionGasLimitSignallingDailyServiceListResponse = + FctExecutionGasLimitSignallingDailyServiceListResponses[keyof FctExecutionGasLimitSignallingDailyServiceListResponses]; + +export type FctExecutionGasLimitSignallingDailyServiceGetData = { + body?: never; + path: { + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_execution_gas_limit_signalling_daily/{day_start_date}'; +}; + +export type FctExecutionGasLimitSignallingDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionGasLimitSignallingDailyServiceGetError = + FctExecutionGasLimitSignallingDailyServiceGetErrors[keyof FctExecutionGasLimitSignallingDailyServiceGetErrors]; + +export type FctExecutionGasLimitSignallingDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionGasLimitSignallingDailyResponse; +}; + +export type FctExecutionGasLimitSignallingDailyServiceGetResponse = + FctExecutionGasLimitSignallingDailyServiceGetResponses[keyof FctExecutionGasLimitSignallingDailyServiceGetResponses]; + +export type FctExecutionGasLimitSignallingHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * required) (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * required) (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * required) (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * required) (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * required) (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * required) (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * required) (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * required) (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * required) (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * required) (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * updated_date_time (filter: eq) + */ + updated_date_time_eq?: number; + /** + * updated_date_time (filter: ne) + */ + updated_date_time_ne?: number; + /** + * updated_date_time (filter: lt) + */ + updated_date_time_lt?: number; + /** + * updated_date_time (filter: lte) + */ + updated_date_time_lte?: number; + /** + * updated_date_time (filter: gt) + */ + updated_date_time_gt?: number; + /** + * updated_date_time (filter: gte) + */ + updated_date_time_gte?: number; + /** + * updated_date_time (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * updated_date_time (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * updated_date_time (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * updated_date_time (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * gas_limit_band_counts (filter: key_value_key) + */ + gas_limit_band_counts_key_value_key?: string; + /** + * gas_limit_band_counts (filter: key_value_value_filter_eq) + */ + gas_limit_band_counts_key_value_value_filter_eq?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_ne) + */ + gas_limit_band_counts_key_value_value_filter_ne?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_lt) + */ + gas_limit_band_counts_key_value_value_filter_lt?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_lte) + */ + gas_limit_band_counts_key_value_value_filter_lte?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_gt) + */ + gas_limit_band_counts_key_value_value_filter_gt?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_gte) + */ + gas_limit_band_counts_key_value_value_filter_gte?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_between_min) + */ + gas_limit_band_counts_key_value_value_filter_between_min?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_between_max_value) + */ + gas_limit_band_counts_key_value_value_filter_between_max_value?: number; + /** + * gas_limit_band_counts (filter: key_value_value_filter_in_values) (comma-separated list) + */ + gas_limit_band_counts_key_value_value_filter_in_values?: string; + /** + * gas_limit_band_counts (filter: key_value_value_filter_not_in_values) (comma-separated list) + */ + gas_limit_band_counts_key_value_value_filter_not_in_values?: string; + /** + * gas_limit_band_counts (filter: has_key) + */ + gas_limit_band_counts_has_key?: string; + /** + * gas_limit_band_counts (filter: not_has_key) + */ + gas_limit_band_counts_not_has_key?: string; + /** + * gas_limit_band_counts (filter: has_any_key_values) + */ + gas_limit_band_counts_has_any_key_values?: Array; + /** + * gas_limit_band_counts (filter: has_all_keys_values) + */ + gas_limit_band_counts_has_all_keys_values?: Array; + /** + * The maximum number of fct_execution_gas_limit_signalling_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionGasLimitSignallingHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_gas_limit_signalling_hourly'; +}; + +export type FctExecutionGasLimitSignallingHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionGasLimitSignallingHourlyServiceListError = + FctExecutionGasLimitSignallingHourlyServiceListErrors[keyof FctExecutionGasLimitSignallingHourlyServiceListErrors]; + +export type FctExecutionGasLimitSignallingHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionGasLimitSignallingHourlyResponse; +}; + +export type FctExecutionGasLimitSignallingHourlyServiceListResponse = + FctExecutionGasLimitSignallingHourlyServiceListResponses[keyof FctExecutionGasLimitSignallingHourlyServiceListResponses]; + +export type FctExecutionGasLimitSignallingHourlyServiceGetData = { + body?: never; + path: { + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_execution_gas_limit_signalling_hourly/{hour_start_date_time}'; +}; + +export type FctExecutionGasLimitSignallingHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionGasLimitSignallingHourlyServiceGetError = + FctExecutionGasLimitSignallingHourlyServiceGetErrors[keyof FctExecutionGasLimitSignallingHourlyServiceGetErrors]; + +export type FctExecutionGasLimitSignallingHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionGasLimitSignallingHourlyResponse; +}; + +export type FctExecutionGasLimitSignallingHourlyServiceGetResponse = + FctExecutionGasLimitSignallingHourlyServiceGetResponses[keyof FctExecutionGasLimitSignallingHourlyServiceGetResponses]; + +export type FctExecutionGasUsedDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks in this day (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks in this day (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks in this day (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks in this day (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks in this day (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks in this day (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks in this day (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks in this day (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks in this day (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks in this day (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total gas used in this day (filter: eq) + */ + total_gas_used_eq?: number; + /** + * Total gas used in this day (filter: ne) + */ + total_gas_used_ne?: number; + /** + * Total gas used in this day (filter: lt) + */ + total_gas_used_lt?: number; + /** + * Total gas used in this day (filter: lte) + */ + total_gas_used_lte?: number; + /** + * Total gas used in this day (filter: gt) + */ + total_gas_used_gt?: number; + /** + * Total gas used in this day (filter: gte) + */ + total_gas_used_gte?: number; + /** + * Total gas used in this day (filter: between_min) + */ + total_gas_used_between_min?: number; + /** + * Total gas used in this day (filter: between_max_value) + */ + total_gas_used_between_max_value?: number; + /** + * Total gas used in this day (filter: in_values) (comma-separated list) + */ + total_gas_used_in_values?: string; + /** + * Total gas used in this day (filter: not_in_values) (comma-separated list) + */ + total_gas_used_not_in_values?: string; + /** + * Cumulative gas used since genesis (filter: eq) + */ + cumulative_gas_used_eq?: number; + /** + * Cumulative gas used since genesis (filter: ne) + */ + cumulative_gas_used_ne?: number; + /** + * Cumulative gas used since genesis (filter: lt) + */ + cumulative_gas_used_lt?: number; + /** + * Cumulative gas used since genesis (filter: lte) + */ + cumulative_gas_used_lte?: number; + /** + * Cumulative gas used since genesis (filter: gt) + */ + cumulative_gas_used_gt?: number; + /** + * Cumulative gas used since genesis (filter: gte) + */ + cumulative_gas_used_gte?: number; + /** + * Cumulative gas used since genesis (filter: between_min) + */ + cumulative_gas_used_between_min?: number; + /** + * Cumulative gas used since genesis (filter: between_max_value) + */ + cumulative_gas_used_between_max_value?: number; + /** + * Cumulative gas used since genesis (filter: in_values) (comma-separated list) + */ + cumulative_gas_used_in_values?: string; + /** + * Cumulative gas used since genesis (filter: not_in_values) (comma-separated list) + */ + cumulative_gas_used_not_in_values?: string; + /** + * Average gas used per block (filter: eq) + */ + avg_gas_used_eq?: number; + /** + * Average gas used per block (filter: ne) + */ + avg_gas_used_ne?: number; + /** + * Average gas used per block (filter: lt) + */ + avg_gas_used_lt?: number; + /** + * Average gas used per block (filter: lte) + */ + avg_gas_used_lte?: number; + /** + * Average gas used per block (filter: gt) + */ + avg_gas_used_gt?: number; + /** + * Average gas used per block (filter: gte) + */ + avg_gas_used_gte?: number; + /** + * Average gas used per block (filter: between_min) + */ + avg_gas_used_between_min?: number; + /** + * Average gas used per block (filter: between_max_value) + */ + avg_gas_used_between_max_value?: number; + /** + * Average gas used per block (filter: in_values) (comma-separated list) + */ + avg_gas_used_in_values?: string; + /** + * Average gas used per block (filter: not_in_values) (comma-separated list) + */ + avg_gas_used_not_in_values?: string; + /** + * Minimum gas used in a block (filter: eq) + */ + min_gas_used_eq?: number; + /** + * Minimum gas used in a block (filter: ne) + */ + min_gas_used_ne?: number; + /** + * Minimum gas used in a block (filter: lt) + */ + min_gas_used_lt?: number; + /** + * Minimum gas used in a block (filter: lte) + */ + min_gas_used_lte?: number; + /** + * Minimum gas used in a block (filter: gt) + */ + min_gas_used_gt?: number; + /** + * Minimum gas used in a block (filter: gte) + */ + min_gas_used_gte?: number; + /** + * Minimum gas used in a block (filter: between_min) + */ + min_gas_used_between_min?: number; + /** + * Minimum gas used in a block (filter: between_max_value) + */ + min_gas_used_between_max_value?: number; + /** + * Minimum gas used in a block (filter: in_values) (comma-separated list) + */ + min_gas_used_in_values?: string; + /** + * Minimum gas used in a block (filter: not_in_values) (comma-separated list) + */ + min_gas_used_not_in_values?: string; + /** + * Maximum gas used in a block (filter: eq) + */ + max_gas_used_eq?: number; + /** + * Maximum gas used in a block (filter: ne) + */ + max_gas_used_ne?: number; + /** + * Maximum gas used in a block (filter: lt) + */ + max_gas_used_lt?: number; + /** + * Maximum gas used in a block (filter: lte) + */ + max_gas_used_lte?: number; + /** + * Maximum gas used in a block (filter: gt) + */ + max_gas_used_gt?: number; + /** + * Maximum gas used in a block (filter: gte) + */ + max_gas_used_gte?: number; + /** + * Maximum gas used in a block (filter: between_min) + */ + max_gas_used_between_min?: number; + /** + * Maximum gas used in a block (filter: between_max_value) + */ + max_gas_used_between_max_value?: number; + /** + * Maximum gas used in a block (filter: in_values) (comma-separated list) + */ + max_gas_used_in_values?: string; + /** + * Maximum gas used in a block (filter: not_in_values) (comma-separated list) + */ + max_gas_used_not_in_values?: string; + /** + * 5th percentile gas used (filter: eq) + */ + p05_gas_used_eq?: number; + /** + * 5th percentile gas used (filter: ne) + */ + p05_gas_used_ne?: number; + /** + * 5th percentile gas used (filter: lt) + */ + p05_gas_used_lt?: number; + /** + * 5th percentile gas used (filter: lte) + */ + p05_gas_used_lte?: number; + /** + * 5th percentile gas used (filter: gt) + */ + p05_gas_used_gt?: number; + /** + * 5th percentile gas used (filter: gte) + */ + p05_gas_used_gte?: number; + /** + * 5th percentile gas used (filter: between_min) + */ + p05_gas_used_between_min?: number; + /** + * 5th percentile gas used (filter: between_max_value) + */ + p05_gas_used_between_max_value?: number; + /** + * 5th percentile gas used (filter: in_values) (comma-separated list) + */ + p05_gas_used_in_values?: string; + /** + * 5th percentile gas used (filter: not_in_values) (comma-separated list) + */ + p05_gas_used_not_in_values?: string; + /** + * 50th percentile (median) gas used (filter: eq) + */ + p50_gas_used_eq?: number; + /** + * 50th percentile (median) gas used (filter: ne) + */ + p50_gas_used_ne?: number; + /** + * 50th percentile (median) gas used (filter: lt) + */ + p50_gas_used_lt?: number; + /** + * 50th percentile (median) gas used (filter: lte) + */ + p50_gas_used_lte?: number; + /** + * 50th percentile (median) gas used (filter: gt) + */ + p50_gas_used_gt?: number; + /** + * 50th percentile (median) gas used (filter: gte) + */ + p50_gas_used_gte?: number; + /** + * 50th percentile (median) gas used (filter: between_min) + */ + p50_gas_used_between_min?: number; + /** + * 50th percentile (median) gas used (filter: between_max_value) + */ + p50_gas_used_between_max_value?: number; + /** + * 50th percentile (median) gas used (filter: in_values) (comma-separated list) + */ + p50_gas_used_in_values?: string; + /** + * 50th percentile (median) gas used (filter: not_in_values) (comma-separated list) + */ + p50_gas_used_not_in_values?: string; + /** + * 95th percentile gas used (filter: eq) + */ + p95_gas_used_eq?: number; + /** + * 95th percentile gas used (filter: ne) + */ + p95_gas_used_ne?: number; + /** + * 95th percentile gas used (filter: lt) + */ + p95_gas_used_lt?: number; + /** + * 95th percentile gas used (filter: lte) + */ + p95_gas_used_lte?: number; + /** + * 95th percentile gas used (filter: gt) + */ + p95_gas_used_gt?: number; + /** + * 95th percentile gas used (filter: gte) + */ + p95_gas_used_gte?: number; + /** + * 95th percentile gas used (filter: between_min) + */ + p95_gas_used_between_min?: number; + /** + * 95th percentile gas used (filter: between_max_value) + */ + p95_gas_used_between_max_value?: number; + /** + * 95th percentile gas used (filter: in_values) (comma-separated list) + */ + p95_gas_used_in_values?: string; + /** + * 95th percentile gas used (filter: not_in_values) (comma-separated list) + */ + p95_gas_used_not_in_values?: string; + /** + * Standard deviation of gas used (filter: eq) + */ + stddev_gas_used_eq?: number; + /** + * Standard deviation of gas used (filter: ne) + */ + stddev_gas_used_ne?: number; + /** + * Standard deviation of gas used (filter: lt) + */ + stddev_gas_used_lt?: number; + /** + * Standard deviation of gas used (filter: lte) + */ + stddev_gas_used_lte?: number; + /** + * Standard deviation of gas used (filter: gt) + */ + stddev_gas_used_gt?: number; + /** + * Standard deviation of gas used (filter: gte) + */ + stddev_gas_used_gte?: number; + /** + * Standard deviation of gas used (filter: between_min) + */ + stddev_gas_used_between_min?: number; + /** + * Standard deviation of gas used (filter: between_max_value) + */ + stddev_gas_used_between_max_value?: number; + /** + * Standard deviation of gas used (filter: in_values) (comma-separated list) + */ + stddev_gas_used_in_values?: string; + /** + * Standard deviation of gas used (filter: not_in_values) (comma-separated list) + */ + stddev_gas_used_not_in_values?: string; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: eq) + */ + upper_band_gas_used_eq?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: ne) + */ + upper_band_gas_used_ne?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: lt) + */ + upper_band_gas_used_lt?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: lte) + */ + upper_band_gas_used_lte?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: gt) + */ + upper_band_gas_used_gt?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: gte) + */ + upper_band_gas_used_gte?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: between_min) + */ + upper_band_gas_used_between_min?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: between_max_value) + */ + upper_band_gas_used_between_max_value?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: in_values) (comma-separated list) + */ + upper_band_gas_used_in_values?: string; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: not_in_values) (comma-separated list) + */ + upper_band_gas_used_not_in_values?: string; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: eq) + */ + lower_band_gas_used_eq?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: ne) + */ + lower_band_gas_used_ne?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lt) + */ + lower_band_gas_used_lt?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lte) + */ + lower_band_gas_used_lte?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gt) + */ + lower_band_gas_used_gt?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gte) + */ + lower_band_gas_used_gte?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_min) + */ + lower_band_gas_used_between_min?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_max_value) + */ + lower_band_gas_used_between_max_value?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: in_values) (comma-separated list) + */ + lower_band_gas_used_in_values?: string; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: not_in_values) (comma-separated list) + */ + lower_band_gas_used_not_in_values?: string; + /** + * Moving average gas used (7-day window) (filter: eq) + */ + moving_avg_gas_used_eq?: number; + /** + * Moving average gas used (7-day window) (filter: ne) + */ + moving_avg_gas_used_ne?: number; + /** + * Moving average gas used (7-day window) (filter: lt) + */ + moving_avg_gas_used_lt?: number; + /** + * Moving average gas used (7-day window) (filter: lte) + */ + moving_avg_gas_used_lte?: number; + /** + * Moving average gas used (7-day window) (filter: gt) + */ + moving_avg_gas_used_gt?: number; + /** + * Moving average gas used (7-day window) (filter: gte) + */ + moving_avg_gas_used_gte?: number; + /** + * Moving average gas used (7-day window) (filter: between_min) + */ + moving_avg_gas_used_between_min?: number; + /** + * Moving average gas used (7-day window) (filter: between_max_value) + */ + moving_avg_gas_used_between_max_value?: number; + /** + * Moving average gas used (7-day window) (filter: in_values) (comma-separated list) + */ + moving_avg_gas_used_in_values?: string; + /** + * Moving average gas used (7-day window) (filter: not_in_values) (comma-separated list) + */ + moving_avg_gas_used_not_in_values?: string; + /** + * The maximum number of fct_execution_gas_used_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionGasUsedDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_gas_used_daily'; +}; + +export type FctExecutionGasUsedDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionGasUsedDailyServiceListError = + FctExecutionGasUsedDailyServiceListErrors[keyof FctExecutionGasUsedDailyServiceListErrors]; + +export type FctExecutionGasUsedDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionGasUsedDailyResponse; +}; + +export type FctExecutionGasUsedDailyServiceListResponse = + FctExecutionGasUsedDailyServiceListResponses[keyof FctExecutionGasUsedDailyServiceListResponses]; + +export type FctExecutionGasUsedDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_execution_gas_used_daily/{day_start_date}'; +}; + +export type FctExecutionGasUsedDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionGasUsedDailyServiceGetError = + FctExecutionGasUsedDailyServiceGetErrors[keyof FctExecutionGasUsedDailyServiceGetErrors]; + +export type FctExecutionGasUsedDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionGasUsedDailyResponse; +}; + +export type FctExecutionGasUsedDailyServiceGetResponse = + FctExecutionGasUsedDailyServiceGetResponses[keyof FctExecutionGasUsedDailyServiceGetResponses]; + +export type FctExecutionGasUsedHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks in this hour (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks in this hour (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks in this hour (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks in this hour (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks in this hour (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks in this hour (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks in this hour (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks in this hour (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks in this hour (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks in this hour (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total gas used in this hour (filter: eq) + */ + total_gas_used_eq?: number; + /** + * Total gas used in this hour (filter: ne) + */ + total_gas_used_ne?: number; + /** + * Total gas used in this hour (filter: lt) + */ + total_gas_used_lt?: number; + /** + * Total gas used in this hour (filter: lte) + */ + total_gas_used_lte?: number; + /** + * Total gas used in this hour (filter: gt) + */ + total_gas_used_gt?: number; + /** + * Total gas used in this hour (filter: gte) + */ + total_gas_used_gte?: number; + /** + * Total gas used in this hour (filter: between_min) + */ + total_gas_used_between_min?: number; + /** + * Total gas used in this hour (filter: between_max_value) + */ + total_gas_used_between_max_value?: number; + /** + * Total gas used in this hour (filter: in_values) (comma-separated list) + */ + total_gas_used_in_values?: string; + /** + * Total gas used in this hour (filter: not_in_values) (comma-separated list) + */ + total_gas_used_not_in_values?: string; + /** + * Cumulative gas used since genesis (filter: eq) + */ + cumulative_gas_used_eq?: number; + /** + * Cumulative gas used since genesis (filter: ne) + */ + cumulative_gas_used_ne?: number; + /** + * Cumulative gas used since genesis (filter: lt) + */ + cumulative_gas_used_lt?: number; + /** + * Cumulative gas used since genesis (filter: lte) + */ + cumulative_gas_used_lte?: number; + /** + * Cumulative gas used since genesis (filter: gt) + */ + cumulative_gas_used_gt?: number; + /** + * Cumulative gas used since genesis (filter: gte) + */ + cumulative_gas_used_gte?: number; + /** + * Cumulative gas used since genesis (filter: between_min) + */ + cumulative_gas_used_between_min?: number; + /** + * Cumulative gas used since genesis (filter: between_max_value) + */ + cumulative_gas_used_between_max_value?: number; + /** + * Cumulative gas used since genesis (filter: in_values) (comma-separated list) + */ + cumulative_gas_used_in_values?: string; + /** + * Cumulative gas used since genesis (filter: not_in_values) (comma-separated list) + */ + cumulative_gas_used_not_in_values?: string; + /** + * Average gas used per block (filter: eq) + */ + avg_gas_used_eq?: number; + /** + * Average gas used per block (filter: ne) + */ + avg_gas_used_ne?: number; + /** + * Average gas used per block (filter: lt) + */ + avg_gas_used_lt?: number; + /** + * Average gas used per block (filter: lte) + */ + avg_gas_used_lte?: number; + /** + * Average gas used per block (filter: gt) + */ + avg_gas_used_gt?: number; + /** + * Average gas used per block (filter: gte) + */ + avg_gas_used_gte?: number; + /** + * Average gas used per block (filter: between_min) + */ + avg_gas_used_between_min?: number; + /** + * Average gas used per block (filter: between_max_value) + */ + avg_gas_used_between_max_value?: number; + /** + * Average gas used per block (filter: in_values) (comma-separated list) + */ + avg_gas_used_in_values?: string; + /** + * Average gas used per block (filter: not_in_values) (comma-separated list) + */ + avg_gas_used_not_in_values?: string; + /** + * Minimum gas used in a block (filter: eq) + */ + min_gas_used_eq?: number; + /** + * Minimum gas used in a block (filter: ne) + */ + min_gas_used_ne?: number; + /** + * Minimum gas used in a block (filter: lt) + */ + min_gas_used_lt?: number; + /** + * Minimum gas used in a block (filter: lte) + */ + min_gas_used_lte?: number; + /** + * Minimum gas used in a block (filter: gt) + */ + min_gas_used_gt?: number; + /** + * Minimum gas used in a block (filter: gte) + */ + min_gas_used_gte?: number; + /** + * Minimum gas used in a block (filter: between_min) + */ + min_gas_used_between_min?: number; + /** + * Minimum gas used in a block (filter: between_max_value) + */ + min_gas_used_between_max_value?: number; + /** + * Minimum gas used in a block (filter: in_values) (comma-separated list) + */ + min_gas_used_in_values?: string; + /** + * Minimum gas used in a block (filter: not_in_values) (comma-separated list) + */ + min_gas_used_not_in_values?: string; + /** + * Maximum gas used in a block (filter: eq) + */ + max_gas_used_eq?: number; + /** + * Maximum gas used in a block (filter: ne) + */ + max_gas_used_ne?: number; + /** + * Maximum gas used in a block (filter: lt) + */ + max_gas_used_lt?: number; + /** + * Maximum gas used in a block (filter: lte) + */ + max_gas_used_lte?: number; + /** + * Maximum gas used in a block (filter: gt) + */ + max_gas_used_gt?: number; + /** + * Maximum gas used in a block (filter: gte) + */ + max_gas_used_gte?: number; + /** + * Maximum gas used in a block (filter: between_min) + */ + max_gas_used_between_min?: number; + /** + * Maximum gas used in a block (filter: between_max_value) + */ + max_gas_used_between_max_value?: number; + /** + * Maximum gas used in a block (filter: in_values) (comma-separated list) + */ + max_gas_used_in_values?: string; + /** + * Maximum gas used in a block (filter: not_in_values) (comma-separated list) + */ + max_gas_used_not_in_values?: string; + /** + * 5th percentile gas used (filter: eq) + */ + p05_gas_used_eq?: number; + /** + * 5th percentile gas used (filter: ne) + */ + p05_gas_used_ne?: number; + /** + * 5th percentile gas used (filter: lt) + */ + p05_gas_used_lt?: number; + /** + * 5th percentile gas used (filter: lte) + */ + p05_gas_used_lte?: number; + /** + * 5th percentile gas used (filter: gt) + */ + p05_gas_used_gt?: number; + /** + * 5th percentile gas used (filter: gte) + */ + p05_gas_used_gte?: number; + /** + * 5th percentile gas used (filter: between_min) + */ + p05_gas_used_between_min?: number; + /** + * 5th percentile gas used (filter: between_max_value) + */ + p05_gas_used_between_max_value?: number; + /** + * 5th percentile gas used (filter: in_values) (comma-separated list) + */ + p05_gas_used_in_values?: string; + /** + * 5th percentile gas used (filter: not_in_values) (comma-separated list) + */ + p05_gas_used_not_in_values?: string; + /** + * 50th percentile (median) gas used (filter: eq) + */ + p50_gas_used_eq?: number; + /** + * 50th percentile (median) gas used (filter: ne) + */ + p50_gas_used_ne?: number; + /** + * 50th percentile (median) gas used (filter: lt) + */ + p50_gas_used_lt?: number; + /** + * 50th percentile (median) gas used (filter: lte) + */ + p50_gas_used_lte?: number; + /** + * 50th percentile (median) gas used (filter: gt) + */ + p50_gas_used_gt?: number; + /** + * 50th percentile (median) gas used (filter: gte) + */ + p50_gas_used_gte?: number; + /** + * 50th percentile (median) gas used (filter: between_min) + */ + p50_gas_used_between_min?: number; + /** + * 50th percentile (median) gas used (filter: between_max_value) + */ + p50_gas_used_between_max_value?: number; + /** + * 50th percentile (median) gas used (filter: in_values) (comma-separated list) + */ + p50_gas_used_in_values?: string; + /** + * 50th percentile (median) gas used (filter: not_in_values) (comma-separated list) + */ + p50_gas_used_not_in_values?: string; + /** + * 95th percentile gas used (filter: eq) + */ + p95_gas_used_eq?: number; + /** + * 95th percentile gas used (filter: ne) + */ + p95_gas_used_ne?: number; + /** + * 95th percentile gas used (filter: lt) + */ + p95_gas_used_lt?: number; + /** + * 95th percentile gas used (filter: lte) + */ + p95_gas_used_lte?: number; + /** + * 95th percentile gas used (filter: gt) + */ + p95_gas_used_gt?: number; + /** + * 95th percentile gas used (filter: gte) + */ + p95_gas_used_gte?: number; + /** + * 95th percentile gas used (filter: between_min) + */ + p95_gas_used_between_min?: number; + /** + * 95th percentile gas used (filter: between_max_value) + */ + p95_gas_used_between_max_value?: number; + /** + * 95th percentile gas used (filter: in_values) (comma-separated list) + */ + p95_gas_used_in_values?: string; + /** + * 95th percentile gas used (filter: not_in_values) (comma-separated list) + */ + p95_gas_used_not_in_values?: string; + /** + * Standard deviation of gas used (filter: eq) + */ + stddev_gas_used_eq?: number; + /** + * Standard deviation of gas used (filter: ne) + */ + stddev_gas_used_ne?: number; + /** + * Standard deviation of gas used (filter: lt) + */ + stddev_gas_used_lt?: number; + /** + * Standard deviation of gas used (filter: lte) + */ + stddev_gas_used_lte?: number; + /** + * Standard deviation of gas used (filter: gt) + */ + stddev_gas_used_gt?: number; + /** + * Standard deviation of gas used (filter: gte) + */ + stddev_gas_used_gte?: number; + /** + * Standard deviation of gas used (filter: between_min) + */ + stddev_gas_used_between_min?: number; + /** + * Standard deviation of gas used (filter: between_max_value) + */ + stddev_gas_used_between_max_value?: number; + /** + * Standard deviation of gas used (filter: in_values) (comma-separated list) + */ + stddev_gas_used_in_values?: string; + /** + * Standard deviation of gas used (filter: not_in_values) (comma-separated list) + */ + stddev_gas_used_not_in_values?: string; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: eq) + */ + upper_band_gas_used_eq?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: ne) + */ + upper_band_gas_used_ne?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: lt) + */ + upper_band_gas_used_lt?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: lte) + */ + upper_band_gas_used_lte?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: gt) + */ + upper_band_gas_used_gt?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: gte) + */ + upper_band_gas_used_gte?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: between_min) + */ + upper_band_gas_used_between_min?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: between_max_value) + */ + upper_band_gas_used_between_max_value?: number; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: in_values) (comma-separated list) + */ + upper_band_gas_used_in_values?: string; + /** + * Upper Bollinger band (avg + 2*stddev) (filter: not_in_values) (comma-separated list) + */ + upper_band_gas_used_not_in_values?: string; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: eq) + */ + lower_band_gas_used_eq?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: ne) + */ + lower_band_gas_used_ne?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lt) + */ + lower_band_gas_used_lt?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lte) + */ + lower_band_gas_used_lte?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gt) + */ + lower_band_gas_used_gt?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gte) + */ + lower_band_gas_used_gte?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_min) + */ + lower_band_gas_used_between_min?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_max_value) + */ + lower_band_gas_used_between_max_value?: number; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: in_values) (comma-separated list) + */ + lower_band_gas_used_in_values?: string; + /** + * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: not_in_values) (comma-separated list) + */ + lower_band_gas_used_not_in_values?: string; + /** + * Moving average gas used (6-hour window) (filter: eq) + */ + moving_avg_gas_used_eq?: number; + /** + * Moving average gas used (6-hour window) (filter: ne) + */ + moving_avg_gas_used_ne?: number; + /** + * Moving average gas used (6-hour window) (filter: lt) + */ + moving_avg_gas_used_lt?: number; + /** + * Moving average gas used (6-hour window) (filter: lte) + */ + moving_avg_gas_used_lte?: number; + /** + * Moving average gas used (6-hour window) (filter: gt) + */ + moving_avg_gas_used_gt?: number; + /** + * Moving average gas used (6-hour window) (filter: gte) + */ + moving_avg_gas_used_gte?: number; + /** + * Moving average gas used (6-hour window) (filter: between_min) + */ + moving_avg_gas_used_between_min?: number; + /** + * Moving average gas used (6-hour window) (filter: between_max_value) + */ + moving_avg_gas_used_between_max_value?: number; + /** + * Moving average gas used (6-hour window) (filter: in_values) (comma-separated list) + */ + moving_avg_gas_used_in_values?: string; + /** + * Moving average gas used (6-hour window) (filter: not_in_values) (comma-separated list) + */ + moving_avg_gas_used_not_in_values?: string; + /** + * The maximum number of fct_execution_gas_used_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionGasUsedHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_gas_used_hourly'; +}; + +export type FctExecutionGasUsedHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionGasUsedHourlyServiceListError = + FctExecutionGasUsedHourlyServiceListErrors[keyof FctExecutionGasUsedHourlyServiceListErrors]; + +export type FctExecutionGasUsedHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionGasUsedHourlyResponse; +}; + +export type FctExecutionGasUsedHourlyServiceListResponse = + FctExecutionGasUsedHourlyServiceListResponses[keyof FctExecutionGasUsedHourlyServiceListResponses]; + +export type FctExecutionGasUsedHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_execution_gas_used_hourly/{hour_start_date_time}'; +}; + +export type FctExecutionGasUsedHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionGasUsedHourlyServiceGetError = + FctExecutionGasUsedHourlyServiceGetErrors[keyof FctExecutionGasUsedHourlyServiceGetErrors]; + +export type FctExecutionGasUsedHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionGasUsedHourlyResponse; +}; + +export type FctExecutionGasUsedHourlyServiceGetResponse = + FctExecutionGasUsedHourlyServiceGetResponses[keyof FctExecutionGasUsedHourlyServiceGetResponses]; + +export type FctExecutionReceiptSizeDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The start date of the day (filter: eq) + */ + day_start_date_eq?: string; + /** + * The start date of the day (filter: ne) + */ + day_start_date_ne?: string; + /** + * The start date of the day (filter: contains) + */ + day_start_date_contains?: string; + /** + * The start date of the day (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * The start date of the day (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * The start date of the day (filter: like) + */ + day_start_date_like?: string; + /** + * The start date of the day (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * The start date of the day (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * The start date of the day (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks in this day (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks in this day (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks in this day (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks in this day (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks in this day (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks in this day (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks in this day (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks in this day (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks in this day (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks in this day (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Number of transactions in this day (filter: eq) + */ + transaction_count_eq?: number; + /** + * Number of transactions in this day (filter: ne) + */ + transaction_count_ne?: number; + /** + * Number of transactions in this day (filter: lt) + */ + transaction_count_lt?: number; + /** + * Number of transactions in this day (filter: lte) + */ + transaction_count_lte?: number; + /** + * Number of transactions in this day (filter: gt) + */ + transaction_count_gt?: number; + /** + * Number of transactions in this day (filter: gte) + */ + transaction_count_gte?: number; + /** + * Number of transactions in this day (filter: between_min) + */ + transaction_count_between_min?: number; + /** + * Number of transactions in this day (filter: between_max_value) + */ + transaction_count_between_max_value?: number; + /** + * Number of transactions in this day (filter: in_values) (comma-separated list) + */ + transaction_count_in_values?: string; + /** + * Number of transactions in this day (filter: not_in_values) (comma-separated list) + */ + transaction_count_not_in_values?: string; + /** + * Total receipt bytes across all blocks (filter: eq) + */ + total_receipt_bytes_eq?: number; + /** + * Total receipt bytes across all blocks (filter: ne) + */ + total_receipt_bytes_ne?: number; + /** + * Total receipt bytes across all blocks (filter: lt) + */ + total_receipt_bytes_lt?: number; + /** + * Total receipt bytes across all blocks (filter: lte) + */ + total_receipt_bytes_lte?: number; + /** + * Total receipt bytes across all blocks (filter: gt) + */ + total_receipt_bytes_gt?: number; + /** + * Total receipt bytes across all blocks (filter: gte) + */ + total_receipt_bytes_gte?: number; + /** + * Total receipt bytes across all blocks (filter: between_min) + */ + total_receipt_bytes_between_min?: number; + /** + * Total receipt bytes across all blocks (filter: between_max_value) + */ + total_receipt_bytes_between_max_value?: number; + /** + * Total receipt bytes across all blocks (filter: in_values) (comma-separated list) + */ + total_receipt_bytes_in_values?: string; + /** + * Total receipt bytes across all blocks (filter: not_in_values) (comma-separated list) + */ + total_receipt_bytes_not_in_values?: string; + /** + * Filter avg_receipt_bytes_per_block using value + */ + avg_receipt_bytes_per_block_value?: number; + /** + * Minimum total receipt bytes in a single block (filter: eq) + */ + min_receipt_bytes_per_block_eq?: number; + /** + * Minimum total receipt bytes in a single block (filter: ne) + */ + min_receipt_bytes_per_block_ne?: number; + /** + * Minimum total receipt bytes in a single block (filter: lt) + */ + min_receipt_bytes_per_block_lt?: number; + /** + * Minimum total receipt bytes in a single block (filter: lte) + */ + min_receipt_bytes_per_block_lte?: number; + /** + * Minimum total receipt bytes in a single block (filter: gt) + */ + min_receipt_bytes_per_block_gt?: number; + /** + * Minimum total receipt bytes in a single block (filter: gte) + */ + min_receipt_bytes_per_block_gte?: number; + /** + * Minimum total receipt bytes in a single block (filter: between_min) + */ + min_receipt_bytes_per_block_between_min?: number; + /** + * Minimum total receipt bytes in a single block (filter: between_max_value) + */ + min_receipt_bytes_per_block_between_max_value?: number; + /** + * Minimum total receipt bytes in a single block (filter: in_values) (comma-separated list) + */ + min_receipt_bytes_per_block_in_values?: string; + /** + * Minimum total receipt bytes in a single block (filter: not_in_values) (comma-separated list) + */ + min_receipt_bytes_per_block_not_in_values?: string; + /** + * Maximum total receipt bytes in a single block (filter: eq) + */ + max_receipt_bytes_per_block_eq?: number; + /** + * Maximum total receipt bytes in a single block (filter: ne) + */ + max_receipt_bytes_per_block_ne?: number; + /** + * Maximum total receipt bytes in a single block (filter: lt) + */ + max_receipt_bytes_per_block_lt?: number; + /** + * Maximum total receipt bytes in a single block (filter: lte) + */ + max_receipt_bytes_per_block_lte?: number; + /** + * Maximum total receipt bytes in a single block (filter: gt) + */ + max_receipt_bytes_per_block_gt?: number; + /** + * Maximum total receipt bytes in a single block (filter: gte) + */ + max_receipt_bytes_per_block_gte?: number; + /** + * Maximum total receipt bytes in a single block (filter: between_min) + */ + max_receipt_bytes_per_block_between_min?: number; + /** + * Maximum total receipt bytes in a single block (filter: between_max_value) + */ + max_receipt_bytes_per_block_between_max_value?: number; + /** + * Maximum total receipt bytes in a single block (filter: in_values) (comma-separated list) + */ + max_receipt_bytes_per_block_in_values?: string; + /** + * Maximum total receipt bytes in a single block (filter: not_in_values) (comma-separated list) + */ + max_receipt_bytes_per_block_not_in_values?: string; + /** + * 5th percentile of total receipt bytes per block (filter: eq) + */ + p05_receipt_bytes_per_block_eq?: number; + /** + * 5th percentile of total receipt bytes per block (filter: ne) + */ + p05_receipt_bytes_per_block_ne?: number; + /** + * 5th percentile of total receipt bytes per block (filter: lt) + */ + p05_receipt_bytes_per_block_lt?: number; + /** + * 5th percentile of total receipt bytes per block (filter: lte) + */ + p05_receipt_bytes_per_block_lte?: number; + /** + * 5th percentile of total receipt bytes per block (filter: gt) + */ + p05_receipt_bytes_per_block_gt?: number; + /** + * 5th percentile of total receipt bytes per block (filter: gte) + */ + p05_receipt_bytes_per_block_gte?: number; + /** + * 5th percentile of total receipt bytes per block (filter: between_min) + */ + p05_receipt_bytes_per_block_between_min?: number; + /** + * 5th percentile of total receipt bytes per block (filter: between_max_value) + */ + p05_receipt_bytes_per_block_between_max_value?: number; + /** + * 5th percentile of total receipt bytes per block (filter: in_values) (comma-separated list) + */ + p05_receipt_bytes_per_block_in_values?: string; + /** + * 5th percentile of total receipt bytes per block (filter: not_in_values) (comma-separated list) + */ + p05_receipt_bytes_per_block_not_in_values?: string; + /** + * 50th percentile of total receipt bytes per block (filter: eq) + */ + p50_receipt_bytes_per_block_eq?: number; + /** + * 50th percentile of total receipt bytes per block (filter: ne) + */ + p50_receipt_bytes_per_block_ne?: number; + /** + * 50th percentile of total receipt bytes per block (filter: lt) + */ + p50_receipt_bytes_per_block_lt?: number; + /** + * 50th percentile of total receipt bytes per block (filter: lte) + */ + p50_receipt_bytes_per_block_lte?: number; + /** + * 50th percentile of total receipt bytes per block (filter: gt) + */ + p50_receipt_bytes_per_block_gt?: number; + /** + * 50th percentile of total receipt bytes per block (filter: gte) + */ + p50_receipt_bytes_per_block_gte?: number; + /** + * 50th percentile of total receipt bytes per block (filter: between_min) + */ + p50_receipt_bytes_per_block_between_min?: number; + /** + * 50th percentile of total receipt bytes per block (filter: between_max_value) + */ + p50_receipt_bytes_per_block_between_max_value?: number; + /** + * 50th percentile of total receipt bytes per block (filter: in_values) (comma-separated list) + */ + p50_receipt_bytes_per_block_in_values?: string; + /** + * 50th percentile of total receipt bytes per block (filter: not_in_values) (comma-separated list) + */ + p50_receipt_bytes_per_block_not_in_values?: string; + /** + * 95th percentile of total receipt bytes per block (filter: eq) + */ + p95_receipt_bytes_per_block_eq?: number; + /** + * 95th percentile of total receipt bytes per block (filter: ne) + */ + p95_receipt_bytes_per_block_ne?: number; + /** + * 95th percentile of total receipt bytes per block (filter: lt) + */ + p95_receipt_bytes_per_block_lt?: number; + /** + * 95th percentile of total receipt bytes per block (filter: lte) + */ + p95_receipt_bytes_per_block_lte?: number; + /** + * 95th percentile of total receipt bytes per block (filter: gt) + */ + p95_receipt_bytes_per_block_gt?: number; + /** + * 95th percentile of total receipt bytes per block (filter: gte) + */ + p95_receipt_bytes_per_block_gte?: number; + /** + * 95th percentile of total receipt bytes per block (filter: between_min) + */ + p95_receipt_bytes_per_block_between_min?: number; + /** + * 95th percentile of total receipt bytes per block (filter: between_max_value) + */ + p95_receipt_bytes_per_block_between_max_value?: number; + /** + * 95th percentile of total receipt bytes per block (filter: in_values) (comma-separated list) + */ + p95_receipt_bytes_per_block_in_values?: string; + /** + * 95th percentile of total receipt bytes per block (filter: not_in_values) (comma-separated list) + */ + p95_receipt_bytes_per_block_not_in_values?: string; + /** + * Filter stddev_receipt_bytes_per_block using value + */ + stddev_receipt_bytes_per_block_value?: number; + /** + * Filter upper_band_receipt_bytes_per_block using value + */ + upper_band_receipt_bytes_per_block_value?: number; + /** + * Filter lower_band_receipt_bytes_per_block using value + */ + lower_band_receipt_bytes_per_block_value?: number; + /** + * Filter moving_avg_receipt_bytes_per_block using value + */ + moving_avg_receipt_bytes_per_block_value?: number; + /** + * Filter avg_receipt_bytes_per_transaction using value + */ + avg_receipt_bytes_per_transaction_value?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: eq) + */ + p50_receipt_bytes_per_transaction_eq?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: ne) + */ + p50_receipt_bytes_per_transaction_ne?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: lt) + */ + p50_receipt_bytes_per_transaction_lt?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: lte) + */ + p50_receipt_bytes_per_transaction_lte?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: gt) + */ + p50_receipt_bytes_per_transaction_gt?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: gte) + */ + p50_receipt_bytes_per_transaction_gte?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: between_min) + */ + p50_receipt_bytes_per_transaction_between_min?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: between_max_value) + */ + p50_receipt_bytes_per_transaction_between_max_value?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: in_values) (comma-separated list) + */ + p50_receipt_bytes_per_transaction_in_values?: string; + /** + * 50th percentile of receipt bytes per transaction (filter: not_in_values) (comma-separated list) + */ + p50_receipt_bytes_per_transaction_not_in_values?: string; + /** + * 95th percentile of receipt bytes per transaction (filter: eq) + */ + p95_receipt_bytes_per_transaction_eq?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: ne) + */ + p95_receipt_bytes_per_transaction_ne?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: lt) + */ + p95_receipt_bytes_per_transaction_lt?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: lte) + */ + p95_receipt_bytes_per_transaction_lte?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: gt) + */ + p95_receipt_bytes_per_transaction_gt?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: gte) + */ + p95_receipt_bytes_per_transaction_gte?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: between_min) + */ + p95_receipt_bytes_per_transaction_between_min?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: between_max_value) + */ + p95_receipt_bytes_per_transaction_between_max_value?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: in_values) (comma-separated list) + */ + p95_receipt_bytes_per_transaction_in_values?: string; + /** + * 95th percentile of receipt bytes per transaction (filter: not_in_values) (comma-separated list) + */ + p95_receipt_bytes_per_transaction_not_in_values?: string; + /** + * Total logs emitted across all transactions (filter: eq) + */ + total_log_count_eq?: number; + /** + * Total logs emitted across all transactions (filter: ne) + */ + total_log_count_ne?: number; + /** + * Total logs emitted across all transactions (filter: lt) + */ + total_log_count_lt?: number; + /** + * Total logs emitted across all transactions (filter: lte) + */ + total_log_count_lte?: number; + /** + * Total logs emitted across all transactions (filter: gt) + */ + total_log_count_gt?: number; + /** + * Total logs emitted across all transactions (filter: gte) + */ + total_log_count_gte?: number; + /** + * Total logs emitted across all transactions (filter: between_min) + */ + total_log_count_between_min?: number; + /** + * Total logs emitted across all transactions (filter: between_max_value) + */ + total_log_count_between_max_value?: number; + /** + * Total logs emitted across all transactions (filter: in_values) (comma-separated list) + */ + total_log_count_in_values?: string; + /** + * Total logs emitted across all transactions (filter: not_in_values) (comma-separated list) + */ + total_log_count_not_in_values?: string; + /** + * Filter avg_log_count_per_transaction using value + */ + avg_log_count_per_transaction_value?: number; + /** + * Running total of receipt bytes since genesis (filter: eq) + */ + cumulative_receipt_bytes_eq?: number; + /** + * Running total of receipt bytes since genesis (filter: ne) + */ + cumulative_receipt_bytes_ne?: number; + /** + * Running total of receipt bytes since genesis (filter: lt) + */ + cumulative_receipt_bytes_lt?: number; + /** + * Running total of receipt bytes since genesis (filter: lte) + */ + cumulative_receipt_bytes_lte?: number; + /** + * Running total of receipt bytes since genesis (filter: gt) + */ + cumulative_receipt_bytes_gt?: number; + /** + * Running total of receipt bytes since genesis (filter: gte) + */ + cumulative_receipt_bytes_gte?: number; + /** + * Running total of receipt bytes since genesis (filter: between_min) + */ + cumulative_receipt_bytes_between_min?: number; + /** + * Running total of receipt bytes since genesis (filter: between_max_value) + */ + cumulative_receipt_bytes_between_max_value?: number; + /** + * Running total of receipt bytes since genesis (filter: in_values) (comma-separated list) + */ + cumulative_receipt_bytes_in_values?: string; + /** + * Running total of receipt bytes since genesis (filter: not_in_values) (comma-separated list) + */ + cumulative_receipt_bytes_not_in_values?: string; + /** + * The maximum number of fct_execution_receipt_size_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionReceiptSizeDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_receipt_size_daily'; +}; + +export type FctExecutionReceiptSizeDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionReceiptSizeDailyServiceListError = + FctExecutionReceiptSizeDailyServiceListErrors[keyof FctExecutionReceiptSizeDailyServiceListErrors]; + +export type FctExecutionReceiptSizeDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionReceiptSizeDailyResponse; +}; + +export type FctExecutionReceiptSizeDailyServiceListResponse = + FctExecutionReceiptSizeDailyServiceListResponses[keyof FctExecutionReceiptSizeDailyServiceListResponses]; + +export type FctExecutionReceiptSizeDailyServiceGetData = { + body?: never; + path: { + /** + * The start date of the day + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_execution_receipt_size_daily/{day_start_date}'; +}; + +export type FctExecutionReceiptSizeDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionReceiptSizeDailyServiceGetError = + FctExecutionReceiptSizeDailyServiceGetErrors[keyof FctExecutionReceiptSizeDailyServiceGetErrors]; + +export type FctExecutionReceiptSizeDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionReceiptSizeDailyResponse; +}; + +export type FctExecutionReceiptSizeDailyServiceGetResponse = + FctExecutionReceiptSizeDailyServiceGetResponses[keyof FctExecutionReceiptSizeDailyServiceGetResponses]; + +export type FctExecutionReceiptSizeHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The start time of the hour (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * The start time of the hour (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * The start time of the hour (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * The start time of the hour (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * The start time of the hour (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * The start time of the hour (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * The start time of the hour (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * The start time of the hour (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * The start time of the hour (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * The start time of the hour (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks in this hour (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks in this hour (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks in this hour (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks in this hour (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks in this hour (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks in this hour (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks in this hour (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks in this hour (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks in this hour (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks in this hour (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Number of transactions in this hour (filter: eq) + */ + transaction_count_eq?: number; + /** + * Number of transactions in this hour (filter: ne) + */ + transaction_count_ne?: number; + /** + * Number of transactions in this hour (filter: lt) + */ + transaction_count_lt?: number; + /** + * Number of transactions in this hour (filter: lte) + */ + transaction_count_lte?: number; + /** + * Number of transactions in this hour (filter: gt) + */ + transaction_count_gt?: number; + /** + * Number of transactions in this hour (filter: gte) + */ + transaction_count_gte?: number; + /** + * Number of transactions in this hour (filter: between_min) + */ + transaction_count_between_min?: number; + /** + * Number of transactions in this hour (filter: between_max_value) + */ + transaction_count_between_max_value?: number; + /** + * Number of transactions in this hour (filter: in_values) (comma-separated list) + */ + transaction_count_in_values?: string; + /** + * Number of transactions in this hour (filter: not_in_values) (comma-separated list) + */ + transaction_count_not_in_values?: string; + /** + * Total receipt bytes across all blocks (filter: eq) + */ + total_receipt_bytes_eq?: number; + /** + * Total receipt bytes across all blocks (filter: ne) + */ + total_receipt_bytes_ne?: number; + /** + * Total receipt bytes across all blocks (filter: lt) + */ + total_receipt_bytes_lt?: number; + /** + * Total receipt bytes across all blocks (filter: lte) + */ + total_receipt_bytes_lte?: number; + /** + * Total receipt bytes across all blocks (filter: gt) + */ + total_receipt_bytes_gt?: number; + /** + * Total receipt bytes across all blocks (filter: gte) + */ + total_receipt_bytes_gte?: number; + /** + * Total receipt bytes across all blocks (filter: between_min) + */ + total_receipt_bytes_between_min?: number; + /** + * Total receipt bytes across all blocks (filter: between_max_value) + */ + total_receipt_bytes_between_max_value?: number; + /** + * Total receipt bytes across all blocks (filter: in_values) (comma-separated list) + */ + total_receipt_bytes_in_values?: string; + /** + * Total receipt bytes across all blocks (filter: not_in_values) (comma-separated list) + */ + total_receipt_bytes_not_in_values?: string; + /** + * Filter avg_receipt_bytes_per_block using value + */ + avg_receipt_bytes_per_block_value?: number; + /** + * Minimum total receipt bytes in a single block (filter: eq) + */ + min_receipt_bytes_per_block_eq?: number; + /** + * Minimum total receipt bytes in a single block (filter: ne) + */ + min_receipt_bytes_per_block_ne?: number; + /** + * Minimum total receipt bytes in a single block (filter: lt) + */ + min_receipt_bytes_per_block_lt?: number; + /** + * Minimum total receipt bytes in a single block (filter: lte) + */ + min_receipt_bytes_per_block_lte?: number; + /** + * Minimum total receipt bytes in a single block (filter: gt) + */ + min_receipt_bytes_per_block_gt?: number; + /** + * Minimum total receipt bytes in a single block (filter: gte) + */ + min_receipt_bytes_per_block_gte?: number; + /** + * Minimum total receipt bytes in a single block (filter: between_min) + */ + min_receipt_bytes_per_block_between_min?: number; + /** + * Minimum total receipt bytes in a single block (filter: between_max_value) + */ + min_receipt_bytes_per_block_between_max_value?: number; + /** + * Minimum total receipt bytes in a single block (filter: in_values) (comma-separated list) + */ + min_receipt_bytes_per_block_in_values?: string; + /** + * Minimum total receipt bytes in a single block (filter: not_in_values) (comma-separated list) + */ + min_receipt_bytes_per_block_not_in_values?: string; + /** + * Maximum total receipt bytes in a single block (filter: eq) + */ + max_receipt_bytes_per_block_eq?: number; + /** + * Maximum total receipt bytes in a single block (filter: ne) + */ + max_receipt_bytes_per_block_ne?: number; + /** + * Maximum total receipt bytes in a single block (filter: lt) + */ + max_receipt_bytes_per_block_lt?: number; + /** + * Maximum total receipt bytes in a single block (filter: lte) + */ + max_receipt_bytes_per_block_lte?: number; + /** + * Maximum total receipt bytes in a single block (filter: gt) + */ + max_receipt_bytes_per_block_gt?: number; + /** + * Maximum total receipt bytes in a single block (filter: gte) + */ + max_receipt_bytes_per_block_gte?: number; + /** + * Maximum total receipt bytes in a single block (filter: between_min) + */ + max_receipt_bytes_per_block_between_min?: number; + /** + * Maximum total receipt bytes in a single block (filter: between_max_value) + */ + max_receipt_bytes_per_block_between_max_value?: number; + /** + * Maximum total receipt bytes in a single block (filter: in_values) (comma-separated list) + */ + max_receipt_bytes_per_block_in_values?: string; + /** + * Maximum total receipt bytes in a single block (filter: not_in_values) (comma-separated list) + */ + max_receipt_bytes_per_block_not_in_values?: string; + /** + * 5th percentile of total receipt bytes per block (filter: eq) + */ + p05_receipt_bytes_per_block_eq?: number; + /** + * 5th percentile of total receipt bytes per block (filter: ne) + */ + p05_receipt_bytes_per_block_ne?: number; + /** + * 5th percentile of total receipt bytes per block (filter: lt) + */ + p05_receipt_bytes_per_block_lt?: number; + /** + * 5th percentile of total receipt bytes per block (filter: lte) + */ + p05_receipt_bytes_per_block_lte?: number; + /** + * 5th percentile of total receipt bytes per block (filter: gt) + */ + p05_receipt_bytes_per_block_gt?: number; + /** + * 5th percentile of total receipt bytes per block (filter: gte) + */ + p05_receipt_bytes_per_block_gte?: number; + /** + * 5th percentile of total receipt bytes per block (filter: between_min) + */ + p05_receipt_bytes_per_block_between_min?: number; + /** + * 5th percentile of total receipt bytes per block (filter: between_max_value) + */ + p05_receipt_bytes_per_block_between_max_value?: number; + /** + * 5th percentile of total receipt bytes per block (filter: in_values) (comma-separated list) + */ + p05_receipt_bytes_per_block_in_values?: string; + /** + * 5th percentile of total receipt bytes per block (filter: not_in_values) (comma-separated list) + */ + p05_receipt_bytes_per_block_not_in_values?: string; + /** + * 50th percentile of total receipt bytes per block (filter: eq) + */ + p50_receipt_bytes_per_block_eq?: number; + /** + * 50th percentile of total receipt bytes per block (filter: ne) + */ + p50_receipt_bytes_per_block_ne?: number; + /** + * 50th percentile of total receipt bytes per block (filter: lt) + */ + p50_receipt_bytes_per_block_lt?: number; + /** + * 50th percentile of total receipt bytes per block (filter: lte) + */ + p50_receipt_bytes_per_block_lte?: number; + /** + * 50th percentile of total receipt bytes per block (filter: gt) + */ + p50_receipt_bytes_per_block_gt?: number; + /** + * 50th percentile of total receipt bytes per block (filter: gte) + */ + p50_receipt_bytes_per_block_gte?: number; + /** + * 50th percentile of total receipt bytes per block (filter: between_min) + */ + p50_receipt_bytes_per_block_between_min?: number; + /** + * 50th percentile of total receipt bytes per block (filter: between_max_value) + */ + p50_receipt_bytes_per_block_between_max_value?: number; + /** + * 50th percentile of total receipt bytes per block (filter: in_values) (comma-separated list) + */ + p50_receipt_bytes_per_block_in_values?: string; + /** + * 50th percentile of total receipt bytes per block (filter: not_in_values) (comma-separated list) + */ + p50_receipt_bytes_per_block_not_in_values?: string; + /** + * 95th percentile of total receipt bytes per block (filter: eq) + */ + p95_receipt_bytes_per_block_eq?: number; + /** + * 95th percentile of total receipt bytes per block (filter: ne) + */ + p95_receipt_bytes_per_block_ne?: number; + /** + * 95th percentile of total receipt bytes per block (filter: lt) + */ + p95_receipt_bytes_per_block_lt?: number; + /** + * 95th percentile of total receipt bytes per block (filter: lte) + */ + p95_receipt_bytes_per_block_lte?: number; + /** + * 95th percentile of total receipt bytes per block (filter: gt) + */ + p95_receipt_bytes_per_block_gt?: number; + /** + * 95th percentile of total receipt bytes per block (filter: gte) + */ + p95_receipt_bytes_per_block_gte?: number; + /** + * 95th percentile of total receipt bytes per block (filter: between_min) + */ + p95_receipt_bytes_per_block_between_min?: number; + /** + * 95th percentile of total receipt bytes per block (filter: between_max_value) + */ + p95_receipt_bytes_per_block_between_max_value?: number; + /** + * 95th percentile of total receipt bytes per block (filter: in_values) (comma-separated list) + */ + p95_receipt_bytes_per_block_in_values?: string; + /** + * 95th percentile of total receipt bytes per block (filter: not_in_values) (comma-separated list) + */ + p95_receipt_bytes_per_block_not_in_values?: string; + /** + * Filter stddev_receipt_bytes_per_block using value + */ + stddev_receipt_bytes_per_block_value?: number; + /** + * Filter upper_band_receipt_bytes_per_block using value + */ + upper_band_receipt_bytes_per_block_value?: number; + /** + * Filter lower_band_receipt_bytes_per_block using value + */ + lower_band_receipt_bytes_per_block_value?: number; + /** + * Filter moving_avg_receipt_bytes_per_block using value + */ + moving_avg_receipt_bytes_per_block_value?: number; + /** + * Filter avg_receipt_bytes_per_transaction using value + */ + avg_receipt_bytes_per_transaction_value?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: eq) + */ + p50_receipt_bytes_per_transaction_eq?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: ne) + */ + p50_receipt_bytes_per_transaction_ne?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: lt) + */ + p50_receipt_bytes_per_transaction_lt?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: lte) + */ + p50_receipt_bytes_per_transaction_lte?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: gt) + */ + p50_receipt_bytes_per_transaction_gt?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: gte) + */ + p50_receipt_bytes_per_transaction_gte?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: between_min) + */ + p50_receipt_bytes_per_transaction_between_min?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: between_max_value) + */ + p50_receipt_bytes_per_transaction_between_max_value?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: in_values) (comma-separated list) + */ + p50_receipt_bytes_per_transaction_in_values?: string; + /** + * 50th percentile of receipt bytes per transaction (filter: not_in_values) (comma-separated list) + */ + p50_receipt_bytes_per_transaction_not_in_values?: string; + /** + * 95th percentile of receipt bytes per transaction (filter: eq) + */ + p95_receipt_bytes_per_transaction_eq?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: ne) + */ + p95_receipt_bytes_per_transaction_ne?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: lt) + */ + p95_receipt_bytes_per_transaction_lt?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: lte) + */ + p95_receipt_bytes_per_transaction_lte?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: gt) + */ + p95_receipt_bytes_per_transaction_gt?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: gte) + */ + p95_receipt_bytes_per_transaction_gte?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: between_min) + */ + p95_receipt_bytes_per_transaction_between_min?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: between_max_value) + */ + p95_receipt_bytes_per_transaction_between_max_value?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: in_values) (comma-separated list) + */ + p95_receipt_bytes_per_transaction_in_values?: string; + /** + * 95th percentile of receipt bytes per transaction (filter: not_in_values) (comma-separated list) + */ + p95_receipt_bytes_per_transaction_not_in_values?: string; + /** + * Total logs emitted across all transactions (filter: eq) + */ + total_log_count_eq?: number; + /** + * Total logs emitted across all transactions (filter: ne) + */ + total_log_count_ne?: number; + /** + * Total logs emitted across all transactions (filter: lt) + */ + total_log_count_lt?: number; + /** + * Total logs emitted across all transactions (filter: lte) + */ + total_log_count_lte?: number; + /** + * Total logs emitted across all transactions (filter: gt) + */ + total_log_count_gt?: number; + /** + * Total logs emitted across all transactions (filter: gte) + */ + total_log_count_gte?: number; + /** + * Total logs emitted across all transactions (filter: between_min) + */ + total_log_count_between_min?: number; + /** + * Total logs emitted across all transactions (filter: between_max_value) + */ + total_log_count_between_max_value?: number; + /** + * Total logs emitted across all transactions (filter: in_values) (comma-separated list) + */ + total_log_count_in_values?: string; + /** + * Total logs emitted across all transactions (filter: not_in_values) (comma-separated list) + */ + total_log_count_not_in_values?: string; + /** + * Filter avg_log_count_per_transaction using value + */ + avg_log_count_per_transaction_value?: number; + /** + * Running total of receipt bytes since genesis (filter: eq) + */ + cumulative_receipt_bytes_eq?: number; + /** + * Running total of receipt bytes since genesis (filter: ne) + */ + cumulative_receipt_bytes_ne?: number; + /** + * Running total of receipt bytes since genesis (filter: lt) + */ + cumulative_receipt_bytes_lt?: number; + /** + * Running total of receipt bytes since genesis (filter: lte) + */ + cumulative_receipt_bytes_lte?: number; + /** + * Running total of receipt bytes since genesis (filter: gt) + */ + cumulative_receipt_bytes_gt?: number; + /** + * Running total of receipt bytes since genesis (filter: gte) + */ + cumulative_receipt_bytes_gte?: number; + /** + * Running total of receipt bytes since genesis (filter: between_min) + */ + cumulative_receipt_bytes_between_min?: number; + /** + * Running total of receipt bytes since genesis (filter: between_max_value) + */ + cumulative_receipt_bytes_between_max_value?: number; + /** + * Running total of receipt bytes since genesis (filter: in_values) (comma-separated list) + */ + cumulative_receipt_bytes_in_values?: string; + /** + * Running total of receipt bytes since genesis (filter: not_in_values) (comma-separated list) + */ + cumulative_receipt_bytes_not_in_values?: string; + /** + * The maximum number of fct_execution_receipt_size_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionReceiptSizeHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_receipt_size_hourly'; +}; + +export type FctExecutionReceiptSizeHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionReceiptSizeHourlyServiceListError = + FctExecutionReceiptSizeHourlyServiceListErrors[keyof FctExecutionReceiptSizeHourlyServiceListErrors]; + +export type FctExecutionReceiptSizeHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionReceiptSizeHourlyResponse; +}; + +export type FctExecutionReceiptSizeHourlyServiceListResponse = + FctExecutionReceiptSizeHourlyServiceListResponses[keyof FctExecutionReceiptSizeHourlyServiceListResponses]; + +export type FctExecutionReceiptSizeHourlyServiceGetData = { + body?: never; + path: { + /** + * The start time of the hour + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_execution_receipt_size_hourly/{hour_start_date_time}'; +}; + +export type FctExecutionReceiptSizeHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionReceiptSizeHourlyServiceGetError = + FctExecutionReceiptSizeHourlyServiceGetErrors[keyof FctExecutionReceiptSizeHourlyServiceGetErrors]; + +export type FctExecutionReceiptSizeHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionReceiptSizeHourlyResponse; +}; + +export type FctExecutionReceiptSizeHourlyServiceGetResponse = + FctExecutionReceiptSizeHourlyServiceGetResponses[keyof FctExecutionReceiptSizeHourlyServiceGetResponses]; + +export type FctExecutionStateSizeDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total accounts at end of day (filter: eq) + */ + accounts_eq?: number; + /** + * Total accounts at end of day (filter: ne) + */ + accounts_ne?: number; + /** + * Total accounts at end of day (filter: lt) + */ + accounts_lt?: number; + /** + * Total accounts at end of day (filter: lte) + */ + accounts_lte?: number; + /** + * Total accounts at end of day (filter: gt) + */ + accounts_gt?: number; + /** + * Total accounts at end of day (filter: gte) + */ + accounts_gte?: number; + /** + * Total accounts at end of day (filter: between_min) + */ + accounts_between_min?: number; + /** + * Total accounts at end of day (filter: between_max_value) + */ + accounts_between_max_value?: number; + /** + * Total accounts at end of day (filter: in_values) (comma-separated list) + */ + accounts_in_values?: string; + /** + * Total accounts at end of day (filter: not_in_values) (comma-separated list) + */ + accounts_not_in_values?: string; + /** + * Account bytes at end of day (filter: eq) + */ + account_bytes_eq?: number; + /** + * Account bytes at end of day (filter: ne) + */ + account_bytes_ne?: number; + /** + * Account bytes at end of day (filter: lt) + */ + account_bytes_lt?: number; + /** + * Account bytes at end of day (filter: lte) + */ + account_bytes_lte?: number; + /** + * Account bytes at end of day (filter: gt) + */ + account_bytes_gt?: number; + /** + * Account bytes at end of day (filter: gte) + */ + account_bytes_gte?: number; + /** + * Account bytes at end of day (filter: between_min) + */ + account_bytes_between_min?: number; + /** + * Account bytes at end of day (filter: between_max_value) + */ + account_bytes_between_max_value?: number; + /** + * Account bytes at end of day (filter: in_values) (comma-separated list) + */ + account_bytes_in_values?: string; + /** + * Account bytes at end of day (filter: not_in_values) (comma-separated list) + */ + account_bytes_not_in_values?: string; + /** + * Account trie nodes at end of day (filter: eq) + */ + account_trienodes_eq?: number; + /** + * Account trie nodes at end of day (filter: ne) + */ + account_trienodes_ne?: number; + /** + * Account trie nodes at end of day (filter: lt) + */ + account_trienodes_lt?: number; + /** + * Account trie nodes at end of day (filter: lte) + */ + account_trienodes_lte?: number; + /** + * Account trie nodes at end of day (filter: gt) + */ + account_trienodes_gt?: number; + /** + * Account trie nodes at end of day (filter: gte) + */ + account_trienodes_gte?: number; + /** + * Account trie nodes at end of day (filter: between_min) + */ + account_trienodes_between_min?: number; + /** + * Account trie nodes at end of day (filter: between_max_value) + */ + account_trienodes_between_max_value?: number; + /** + * Account trie nodes at end of day (filter: in_values) (comma-separated list) + */ + account_trienodes_in_values?: string; + /** + * Account trie nodes at end of day (filter: not_in_values) (comma-separated list) + */ + account_trienodes_not_in_values?: string; + /** + * Account trie node bytes at end of day (filter: eq) + */ + account_trienode_bytes_eq?: number; + /** + * Account trie node bytes at end of day (filter: ne) + */ + account_trienode_bytes_ne?: number; + /** + * Account trie node bytes at end of day (filter: lt) + */ + account_trienode_bytes_lt?: number; + /** + * Account trie node bytes at end of day (filter: lte) + */ + account_trienode_bytes_lte?: number; + /** + * Account trie node bytes at end of day (filter: gt) + */ + account_trienode_bytes_gt?: number; + /** + * Account trie node bytes at end of day (filter: gte) + */ + account_trienode_bytes_gte?: number; + /** + * Account trie node bytes at end of day (filter: between_min) + */ + account_trienode_bytes_between_min?: number; + /** + * Account trie node bytes at end of day (filter: between_max_value) + */ + account_trienode_bytes_between_max_value?: number; + /** + * Account trie node bytes at end of day (filter: in_values) (comma-separated list) + */ + account_trienode_bytes_in_values?: string; + /** + * Account trie node bytes at end of day (filter: not_in_values) (comma-separated list) + */ + account_trienode_bytes_not_in_values?: string; + /** + * Contract codes at end of day (filter: eq) + */ + contract_codes_eq?: number; + /** + * Contract codes at end of day (filter: ne) + */ + contract_codes_ne?: number; + /** + * Contract codes at end of day (filter: lt) + */ + contract_codes_lt?: number; + /** + * Contract codes at end of day (filter: lte) + */ + contract_codes_lte?: number; + /** + * Contract codes at end of day (filter: gt) + */ + contract_codes_gt?: number; + /** + * Contract codes at end of day (filter: gte) + */ + contract_codes_gte?: number; + /** + * Contract codes at end of day (filter: between_min) + */ + contract_codes_between_min?: number; + /** + * Contract codes at end of day (filter: between_max_value) + */ + contract_codes_between_max_value?: number; + /** + * Contract codes at end of day (filter: in_values) (comma-separated list) + */ + contract_codes_in_values?: string; + /** + * Contract codes at end of day (filter: not_in_values) (comma-separated list) + */ + contract_codes_not_in_values?: string; + /** + * Contract code bytes at end of day (filter: eq) + */ + contract_code_bytes_eq?: number; + /** + * Contract code bytes at end of day (filter: ne) + */ + contract_code_bytes_ne?: number; + /** + * Contract code bytes at end of day (filter: lt) + */ + contract_code_bytes_lt?: number; + /** + * Contract code bytes at end of day (filter: lte) + */ + contract_code_bytes_lte?: number; + /** + * Contract code bytes at end of day (filter: gt) + */ + contract_code_bytes_gt?: number; + /** + * Contract code bytes at end of day (filter: gte) + */ + contract_code_bytes_gte?: number; + /** + * Contract code bytes at end of day (filter: between_min) + */ + contract_code_bytes_between_min?: number; + /** + * Contract code bytes at end of day (filter: between_max_value) + */ + contract_code_bytes_between_max_value?: number; + /** + * Contract code bytes at end of day (filter: in_values) (comma-separated list) + */ + contract_code_bytes_in_values?: string; + /** + * Contract code bytes at end of day (filter: not_in_values) (comma-separated list) + */ + contract_code_bytes_not_in_values?: string; + /** + * Storage slots at end of day (filter: eq) + */ + storages_eq?: number; + /** + * Storage slots at end of day (filter: ne) + */ + storages_ne?: number; + /** + * Storage slots at end of day (filter: lt) + */ + storages_lt?: number; + /** + * Storage slots at end of day (filter: lte) + */ + storages_lte?: number; + /** + * Storage slots at end of day (filter: gt) + */ + storages_gt?: number; + /** + * Storage slots at end of day (filter: gte) + */ + storages_gte?: number; + /** + * Storage slots at end of day (filter: between_min) + */ + storages_between_min?: number; + /** + * Storage slots at end of day (filter: between_max_value) + */ + storages_between_max_value?: number; + /** + * Storage slots at end of day (filter: in_values) (comma-separated list) + */ + storages_in_values?: string; + /** + * Storage slots at end of day (filter: not_in_values) (comma-separated list) + */ + storages_not_in_values?: string; + /** + * Storage bytes at end of day (filter: eq) + */ + storage_bytes_eq?: number; + /** + * Storage bytes at end of day (filter: ne) + */ + storage_bytes_ne?: number; + /** + * Storage bytes at end of day (filter: lt) + */ + storage_bytes_lt?: number; + /** + * Storage bytes at end of day (filter: lte) + */ + storage_bytes_lte?: number; + /** + * Storage bytes at end of day (filter: gt) + */ + storage_bytes_gt?: number; + /** + * Storage bytes at end of day (filter: gte) + */ + storage_bytes_gte?: number; + /** + * Storage bytes at end of day (filter: between_min) + */ + storage_bytes_between_min?: number; + /** + * Storage bytes at end of day (filter: between_max_value) + */ + storage_bytes_between_max_value?: number; + /** + * Storage bytes at end of day (filter: in_values) (comma-separated list) + */ + storage_bytes_in_values?: string; + /** + * Storage bytes at end of day (filter: not_in_values) (comma-separated list) + */ + storage_bytes_not_in_values?: string; + /** + * Storage trie nodes at end of day (filter: eq) + */ + storage_trienodes_eq?: number; + /** + * Storage trie nodes at end of day (filter: ne) + */ + storage_trienodes_ne?: number; + /** + * Storage trie nodes at end of day (filter: lt) + */ + storage_trienodes_lt?: number; + /** + * Storage trie nodes at end of day (filter: lte) + */ + storage_trienodes_lte?: number; + /** + * Storage trie nodes at end of day (filter: gt) + */ + storage_trienodes_gt?: number; + /** + * Storage trie nodes at end of day (filter: gte) + */ + storage_trienodes_gte?: number; + /** + * Storage trie nodes at end of day (filter: between_min) + */ + storage_trienodes_between_min?: number; + /** + * Storage trie nodes at end of day (filter: between_max_value) + */ + storage_trienodes_between_max_value?: number; + /** + * Storage trie nodes at end of day (filter: in_values) (comma-separated list) + */ + storage_trienodes_in_values?: string; + /** + * Storage trie nodes at end of day (filter: not_in_values) (comma-separated list) + */ + storage_trienodes_not_in_values?: string; + /** + * Storage trie node bytes at end of day (filter: eq) + */ + storage_trienode_bytes_eq?: number; + /** + * Storage trie node bytes at end of day (filter: ne) + */ + storage_trienode_bytes_ne?: number; + /** + * Storage trie node bytes at end of day (filter: lt) + */ + storage_trienode_bytes_lt?: number; + /** + * Storage trie node bytes at end of day (filter: lte) + */ + storage_trienode_bytes_lte?: number; + /** + * Storage trie node bytes at end of day (filter: gt) + */ + storage_trienode_bytes_gt?: number; + /** + * Storage trie node bytes at end of day (filter: gte) + */ + storage_trienode_bytes_gte?: number; + /** + * Storage trie node bytes at end of day (filter: between_min) + */ + storage_trienode_bytes_between_min?: number; + /** + * Storage trie node bytes at end of day (filter: between_max_value) + */ + storage_trienode_bytes_between_max_value?: number; + /** + * Storage trie node bytes at end of day (filter: in_values) (comma-separated list) + */ + storage_trienode_bytes_in_values?: string; + /** + * Storage trie node bytes at end of day (filter: not_in_values) (comma-separated list) + */ + storage_trienode_bytes_not_in_values?: string; + /** + * Total state size in bytes (filter: eq) + */ + total_bytes_eq?: number; + /** + * Total state size in bytes (filter: ne) + */ + total_bytes_ne?: number; + /** + * Total state size in bytes (filter: lt) + */ + total_bytes_lt?: number; + /** + * Total state size in bytes (filter: lte) + */ + total_bytes_lte?: number; + /** + * Total state size in bytes (filter: gt) + */ + total_bytes_gt?: number; + /** + * Total state size in bytes (filter: gte) + */ + total_bytes_gte?: number; + /** + * Total state size in bytes (filter: between_min) + */ + total_bytes_between_min?: number; + /** + * Total state size in bytes (filter: between_max_value) + */ + total_bytes_between_max_value?: number; + /** + * Total state size in bytes (filter: in_values) (comma-separated list) + */ + total_bytes_in_values?: string; + /** + * Total state size in bytes (filter: not_in_values) (comma-separated list) + */ + total_bytes_not_in_values?: string; + /** + * The maximum number of fct_execution_state_size_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionStateSizeDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_state_size_daily'; +}; + +export type FctExecutionStateSizeDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionStateSizeDailyServiceListError = + FctExecutionStateSizeDailyServiceListErrors[keyof FctExecutionStateSizeDailyServiceListErrors]; + +export type FctExecutionStateSizeDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionStateSizeDailyResponse; +}; + +export type FctExecutionStateSizeDailyServiceListResponse = + FctExecutionStateSizeDailyServiceListResponses[keyof FctExecutionStateSizeDailyServiceListResponses]; + +export type FctExecutionStateSizeDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_execution_state_size_daily/{day_start_date}'; +}; + +export type FctExecutionStateSizeDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionStateSizeDailyServiceGetError = + FctExecutionStateSizeDailyServiceGetErrors[keyof FctExecutionStateSizeDailyServiceGetErrors]; + +export type FctExecutionStateSizeDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionStateSizeDailyResponse; +}; + +export type FctExecutionStateSizeDailyServiceGetResponse = + FctExecutionStateSizeDailyServiceGetResponses[keyof FctExecutionStateSizeDailyServiceGetResponses]; + +export type FctExecutionStateSizeHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total accounts at end of hour (filter: eq) + */ + accounts_eq?: number; + /** + * Total accounts at end of hour (filter: ne) + */ + accounts_ne?: number; + /** + * Total accounts at end of hour (filter: lt) + */ + accounts_lt?: number; + /** + * Total accounts at end of hour (filter: lte) + */ + accounts_lte?: number; + /** + * Total accounts at end of hour (filter: gt) + */ + accounts_gt?: number; + /** + * Total accounts at end of hour (filter: gte) + */ + accounts_gte?: number; + /** + * Total accounts at end of hour (filter: between_min) + */ + accounts_between_min?: number; + /** + * Total accounts at end of hour (filter: between_max_value) + */ + accounts_between_max_value?: number; + /** + * Total accounts at end of hour (filter: in_values) (comma-separated list) + */ + accounts_in_values?: string; + /** + * Total accounts at end of hour (filter: not_in_values) (comma-separated list) + */ + accounts_not_in_values?: string; + /** + * Account bytes at end of hour (filter: eq) + */ + account_bytes_eq?: number; + /** + * Account bytes at end of hour (filter: ne) + */ + account_bytes_ne?: number; + /** + * Account bytes at end of hour (filter: lt) + */ + account_bytes_lt?: number; + /** + * Account bytes at end of hour (filter: lte) + */ + account_bytes_lte?: number; + /** + * Account bytes at end of hour (filter: gt) + */ + account_bytes_gt?: number; + /** + * Account bytes at end of hour (filter: gte) + */ + account_bytes_gte?: number; + /** + * Account bytes at end of hour (filter: between_min) + */ + account_bytes_between_min?: number; + /** + * Account bytes at end of hour (filter: between_max_value) + */ + account_bytes_between_max_value?: number; + /** + * Account bytes at end of hour (filter: in_values) (comma-separated list) + */ + account_bytes_in_values?: string; + /** + * Account bytes at end of hour (filter: not_in_values) (comma-separated list) + */ + account_bytes_not_in_values?: string; + /** + * Account trie nodes at end of hour (filter: eq) + */ + account_trienodes_eq?: number; + /** + * Account trie nodes at end of hour (filter: ne) + */ + account_trienodes_ne?: number; + /** + * Account trie nodes at end of hour (filter: lt) + */ + account_trienodes_lt?: number; + /** + * Account trie nodes at end of hour (filter: lte) + */ + account_trienodes_lte?: number; + /** + * Account trie nodes at end of hour (filter: gt) + */ + account_trienodes_gt?: number; + /** + * Account trie nodes at end of hour (filter: gte) + */ + account_trienodes_gte?: number; + /** + * Account trie nodes at end of hour (filter: between_min) + */ + account_trienodes_between_min?: number; + /** + * Account trie nodes at end of hour (filter: between_max_value) + */ + account_trienodes_between_max_value?: number; + /** + * Account trie nodes at end of hour (filter: in_values) (comma-separated list) + */ + account_trienodes_in_values?: string; + /** + * Account trie nodes at end of hour (filter: not_in_values) (comma-separated list) + */ + account_trienodes_not_in_values?: string; + /** + * Account trie node bytes at end of hour (filter: eq) + */ + account_trienode_bytes_eq?: number; + /** + * Account trie node bytes at end of hour (filter: ne) + */ + account_trienode_bytes_ne?: number; + /** + * Account trie node bytes at end of hour (filter: lt) + */ + account_trienode_bytes_lt?: number; + /** + * Account trie node bytes at end of hour (filter: lte) + */ + account_trienode_bytes_lte?: number; + /** + * Account trie node bytes at end of hour (filter: gt) + */ + account_trienode_bytes_gt?: number; + /** + * Account trie node bytes at end of hour (filter: gte) + */ + account_trienode_bytes_gte?: number; + /** + * Account trie node bytes at end of hour (filter: between_min) + */ + account_trienode_bytes_between_min?: number; + /** + * Account trie node bytes at end of hour (filter: between_max_value) + */ + account_trienode_bytes_between_max_value?: number; + /** + * Account trie node bytes at end of hour (filter: in_values) (comma-separated list) + */ + account_trienode_bytes_in_values?: string; + /** + * Account trie node bytes at end of hour (filter: not_in_values) (comma-separated list) + */ + account_trienode_bytes_not_in_values?: string; + /** + * Contract codes at end of hour (filter: eq) + */ + contract_codes_eq?: number; + /** + * Contract codes at end of hour (filter: ne) + */ + contract_codes_ne?: number; + /** + * Contract codes at end of hour (filter: lt) + */ + contract_codes_lt?: number; + /** + * Contract codes at end of hour (filter: lte) + */ + contract_codes_lte?: number; + /** + * Contract codes at end of hour (filter: gt) + */ + contract_codes_gt?: number; + /** + * Contract codes at end of hour (filter: gte) + */ + contract_codes_gte?: number; + /** + * Contract codes at end of hour (filter: between_min) + */ + contract_codes_between_min?: number; + /** + * Contract codes at end of hour (filter: between_max_value) + */ + contract_codes_between_max_value?: number; + /** + * Contract codes at end of hour (filter: in_values) (comma-separated list) + */ + contract_codes_in_values?: string; + /** + * Contract codes at end of hour (filter: not_in_values) (comma-separated list) + */ + contract_codes_not_in_values?: string; + /** + * Contract code bytes at end of hour (filter: eq) + */ + contract_code_bytes_eq?: number; + /** + * Contract code bytes at end of hour (filter: ne) + */ + contract_code_bytes_ne?: number; + /** + * Contract code bytes at end of hour (filter: lt) + */ + contract_code_bytes_lt?: number; + /** + * Contract code bytes at end of hour (filter: lte) + */ + contract_code_bytes_lte?: number; + /** + * Contract code bytes at end of hour (filter: gt) + */ + contract_code_bytes_gt?: number; + /** + * Contract code bytes at end of hour (filter: gte) + */ + contract_code_bytes_gte?: number; + /** + * Contract code bytes at end of hour (filter: between_min) + */ + contract_code_bytes_between_min?: number; + /** + * Contract code bytes at end of hour (filter: between_max_value) + */ + contract_code_bytes_between_max_value?: number; + /** + * Contract code bytes at end of hour (filter: in_values) (comma-separated list) + */ + contract_code_bytes_in_values?: string; + /** + * Contract code bytes at end of hour (filter: not_in_values) (comma-separated list) + */ + contract_code_bytes_not_in_values?: string; + /** + * Storage slots at end of hour (filter: eq) + */ + storages_eq?: number; + /** + * Storage slots at end of hour (filter: ne) + */ + storages_ne?: number; + /** + * Storage slots at end of hour (filter: lt) + */ + storages_lt?: number; + /** + * Storage slots at end of hour (filter: lte) + */ + storages_lte?: number; + /** + * Storage slots at end of hour (filter: gt) + */ + storages_gt?: number; + /** + * Storage slots at end of hour (filter: gte) + */ + storages_gte?: number; + /** + * Storage slots at end of hour (filter: between_min) + */ + storages_between_min?: number; + /** + * Storage slots at end of hour (filter: between_max_value) + */ + storages_between_max_value?: number; + /** + * Storage slots at end of hour (filter: in_values) (comma-separated list) + */ + storages_in_values?: string; + /** + * Storage slots at end of hour (filter: not_in_values) (comma-separated list) + */ + storages_not_in_values?: string; + /** + * Storage bytes at end of hour (filter: eq) + */ + storage_bytes_eq?: number; + /** + * Storage bytes at end of hour (filter: ne) + */ + storage_bytes_ne?: number; + /** + * Storage bytes at end of hour (filter: lt) + */ + storage_bytes_lt?: number; + /** + * Storage bytes at end of hour (filter: lte) + */ + storage_bytes_lte?: number; + /** + * Storage bytes at end of hour (filter: gt) + */ + storage_bytes_gt?: number; + /** + * Storage bytes at end of hour (filter: gte) + */ + storage_bytes_gte?: number; + /** + * Storage bytes at end of hour (filter: between_min) + */ + storage_bytes_between_min?: number; + /** + * Storage bytes at end of hour (filter: between_max_value) + */ + storage_bytes_between_max_value?: number; + /** + * Storage bytes at end of hour (filter: in_values) (comma-separated list) + */ + storage_bytes_in_values?: string; + /** + * Storage bytes at end of hour (filter: not_in_values) (comma-separated list) + */ + storage_bytes_not_in_values?: string; + /** + * Storage trie nodes at end of hour (filter: eq) + */ + storage_trienodes_eq?: number; + /** + * Storage trie nodes at end of hour (filter: ne) + */ + storage_trienodes_ne?: number; + /** + * Storage trie nodes at end of hour (filter: lt) + */ + storage_trienodes_lt?: number; + /** + * Storage trie nodes at end of hour (filter: lte) + */ + storage_trienodes_lte?: number; + /** + * Storage trie nodes at end of hour (filter: gt) + */ + storage_trienodes_gt?: number; + /** + * Storage trie nodes at end of hour (filter: gte) + */ + storage_trienodes_gte?: number; + /** + * Storage trie nodes at end of hour (filter: between_min) + */ + storage_trienodes_between_min?: number; + /** + * Storage trie nodes at end of hour (filter: between_max_value) + */ + storage_trienodes_between_max_value?: number; + /** + * Storage trie nodes at end of hour (filter: in_values) (comma-separated list) + */ + storage_trienodes_in_values?: string; + /** + * Storage trie nodes at end of hour (filter: not_in_values) (comma-separated list) + */ + storage_trienodes_not_in_values?: string; + /** + * Storage trie node bytes at end of hour (filter: eq) + */ + storage_trienode_bytes_eq?: number; + /** + * Storage trie node bytes at end of hour (filter: ne) + */ + storage_trienode_bytes_ne?: number; + /** + * Storage trie node bytes at end of hour (filter: lt) + */ + storage_trienode_bytes_lt?: number; + /** + * Storage trie node bytes at end of hour (filter: lte) + */ + storage_trienode_bytes_lte?: number; + /** + * Storage trie node bytes at end of hour (filter: gt) + */ + storage_trienode_bytes_gt?: number; + /** + * Storage trie node bytes at end of hour (filter: gte) + */ + storage_trienode_bytes_gte?: number; + /** + * Storage trie node bytes at end of hour (filter: between_min) + */ + storage_trienode_bytes_between_min?: number; + /** + * Storage trie node bytes at end of hour (filter: between_max_value) + */ + storage_trienode_bytes_between_max_value?: number; + /** + * Storage trie node bytes at end of hour (filter: in_values) (comma-separated list) + */ + storage_trienode_bytes_in_values?: string; + /** + * Storage trie node bytes at end of hour (filter: not_in_values) (comma-separated list) + */ + storage_trienode_bytes_not_in_values?: string; + /** + * Total state size in bytes (filter: eq) + */ + total_bytes_eq?: number; + /** + * Total state size in bytes (filter: ne) + */ + total_bytes_ne?: number; + /** + * Total state size in bytes (filter: lt) + */ + total_bytes_lt?: number; + /** + * Total state size in bytes (filter: lte) + */ + total_bytes_lte?: number; + /** + * Total state size in bytes (filter: gt) + */ + total_bytes_gt?: number; + /** + * Total state size in bytes (filter: gte) + */ + total_bytes_gte?: number; + /** + * Total state size in bytes (filter: between_min) + */ + total_bytes_between_min?: number; + /** + * Total state size in bytes (filter: between_max_value) + */ + total_bytes_between_max_value?: number; + /** + * Total state size in bytes (filter: in_values) (comma-separated list) + */ + total_bytes_in_values?: string; + /** + * Total state size in bytes (filter: not_in_values) (comma-separated list) + */ + total_bytes_not_in_values?: string; + /** + * The maximum number of fct_execution_state_size_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionStateSizeHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_state_size_hourly'; +}; + +export type FctExecutionStateSizeHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionStateSizeHourlyServiceListError = + FctExecutionStateSizeHourlyServiceListErrors[keyof FctExecutionStateSizeHourlyServiceListErrors]; + +export type FctExecutionStateSizeHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionStateSizeHourlyResponse; +}; + +export type FctExecutionStateSizeHourlyServiceListResponse = + FctExecutionStateSizeHourlyServiceListResponses[keyof FctExecutionStateSizeHourlyServiceListResponses]; + +export type FctExecutionStateSizeHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_execution_state_size_hourly/{hour_start_date_time}'; +}; + +export type FctExecutionStateSizeHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionStateSizeHourlyServiceGetError = + FctExecutionStateSizeHourlyServiceGetErrors[keyof FctExecutionStateSizeHourlyServiceGetErrors]; + +export type FctExecutionStateSizeHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionStateSizeHourlyResponse; +}; + +export type FctExecutionStateSizeHourlyServiceGetResponse = + FctExecutionStateSizeHourlyServiceGetResponses[keyof FctExecutionStateSizeHourlyServiceGetResponses]; + +export type FctExecutionTpsDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks in this day (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks in this day (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks in this day (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks in this day (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks in this day (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks in this day (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks in this day (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks in this day (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks in this day (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks in this day (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total transactions in this day (filter: eq) + */ + total_transactions_eq?: number; + /** + * Total transactions in this day (filter: ne) + */ + total_transactions_ne?: number; + /** + * Total transactions in this day (filter: lt) + */ + total_transactions_lt?: number; + /** + * Total transactions in this day (filter: lte) + */ + total_transactions_lte?: number; + /** + * Total transactions in this day (filter: gt) + */ + total_transactions_gt?: number; + /** + * Total transactions in this day (filter: gte) + */ + total_transactions_gte?: number; + /** + * Total transactions in this day (filter: between_min) + */ + total_transactions_between_min?: number; + /** + * Total transactions in this day (filter: between_max_value) + */ + total_transactions_between_max_value?: number; + /** + * Total transactions in this day (filter: in_values) (comma-separated list) + */ + total_transactions_in_values?: string; + /** + * Total transactions in this day (filter: not_in_values) (comma-separated list) + */ + total_transactions_not_in_values?: string; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: eq) + */ + total_seconds_eq?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: ne) + */ + total_seconds_ne?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: lt) + */ + total_seconds_lt?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: lte) + */ + total_seconds_lte?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: gt) + */ + total_seconds_gt?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: gte) + */ + total_seconds_gte?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_min) + */ + total_seconds_between_min?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_max_value) + */ + total_seconds_between_max_value?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: in_values) (comma-separated list) + */ + total_seconds_in_values?: string; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: not_in_values) (comma-separated list) + */ + total_seconds_not_in_values?: string; + /** + * Filter avg_tps using value + */ + avg_tps_value?: number; + /** + * Filter min_tps using value + */ + min_tps_value?: number; + /** + * Filter max_tps using value + */ + max_tps_value?: number; + /** + * Filter p05_tps using value + */ + p05_tps_value?: number; + /** + * Filter p50_tps using value + */ + p50_tps_value?: number; + /** + * Filter p95_tps using value + */ + p95_tps_value?: number; + /** + * Filter stddev_tps using value + */ + stddev_tps_value?: number; + /** + * Filter upper_band_tps using value + */ + upper_band_tps_value?: number; + /** + * Filter lower_band_tps using value + */ + lower_band_tps_value?: number; + /** + * Filter moving_avg_tps using value + */ + moving_avg_tps_value?: number; + /** + * The maximum number of fct_execution_tps_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionTpsDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_tps_daily'; +}; + +export type FctExecutionTpsDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionTpsDailyServiceListError = + FctExecutionTpsDailyServiceListErrors[keyof FctExecutionTpsDailyServiceListErrors]; + +export type FctExecutionTpsDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionTpsDailyResponse; +}; + +export type FctExecutionTpsDailyServiceListResponse = + FctExecutionTpsDailyServiceListResponses[keyof FctExecutionTpsDailyServiceListResponses]; + +export type FctExecutionTpsDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_execution_tps_daily/{day_start_date}'; +}; + +export type FctExecutionTpsDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionTpsDailyServiceGetError = + FctExecutionTpsDailyServiceGetErrors[keyof FctExecutionTpsDailyServiceGetErrors]; + +export type FctExecutionTpsDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionTpsDailyResponse; +}; + +export type FctExecutionTpsDailyServiceGetResponse = + FctExecutionTpsDailyServiceGetResponses[keyof FctExecutionTpsDailyServiceGetResponses]; + +export type FctExecutionTpsHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks in this hour (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks in this hour (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks in this hour (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks in this hour (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks in this hour (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks in this hour (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks in this hour (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks in this hour (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks in this hour (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks in this hour (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total transactions in this hour (filter: eq) + */ + total_transactions_eq?: number; + /** + * Total transactions in this hour (filter: ne) + */ + total_transactions_ne?: number; + /** + * Total transactions in this hour (filter: lt) + */ + total_transactions_lt?: number; + /** + * Total transactions in this hour (filter: lte) + */ + total_transactions_lte?: number; + /** + * Total transactions in this hour (filter: gt) + */ + total_transactions_gt?: number; + /** + * Total transactions in this hour (filter: gte) + */ + total_transactions_gte?: number; + /** + * Total transactions in this hour (filter: between_min) + */ + total_transactions_between_min?: number; + /** + * Total transactions in this hour (filter: between_max_value) + */ + total_transactions_between_max_value?: number; + /** + * Total transactions in this hour (filter: in_values) (comma-separated list) + */ + total_transactions_in_values?: string; + /** + * Total transactions in this hour (filter: not_in_values) (comma-separated list) + */ + total_transactions_not_in_values?: string; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: eq) + */ + total_seconds_eq?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: ne) + */ + total_seconds_ne?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: lt) + */ + total_seconds_lt?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: lte) + */ + total_seconds_lte?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: gt) + */ + total_seconds_gt?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: gte) + */ + total_seconds_gte?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_min) + */ + total_seconds_between_min?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_max_value) + */ + total_seconds_between_max_value?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: in_values) (comma-separated list) + */ + total_seconds_in_values?: string; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: not_in_values) (comma-separated list) + */ + total_seconds_not_in_values?: string; + /** + * Filter avg_tps using value + */ + avg_tps_value?: number; + /** + * Filter min_tps using value + */ + min_tps_value?: number; + /** + * Filter max_tps using value + */ + max_tps_value?: number; + /** + * Filter p05_tps using value + */ + p05_tps_value?: number; + /** + * Filter p50_tps using value + */ + p50_tps_value?: number; + /** + * Filter p95_tps using value + */ + p95_tps_value?: number; + /** + * Filter stddev_tps using value + */ + stddev_tps_value?: number; + /** + * Filter upper_band_tps using value + */ + upper_band_tps_value?: number; + /** + * Filter lower_band_tps using value + */ + lower_band_tps_value?: number; + /** + * Filter moving_avg_tps using value + */ + moving_avg_tps_value?: number; + /** + * The maximum number of fct_execution_tps_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionTpsHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_tps_hourly'; +}; + +export type FctExecutionTpsHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionTpsHourlyServiceListError = + FctExecutionTpsHourlyServiceListErrors[keyof FctExecutionTpsHourlyServiceListErrors]; + +export type FctExecutionTpsHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionTpsHourlyResponse; +}; + +export type FctExecutionTpsHourlyServiceListResponse = + FctExecutionTpsHourlyServiceListResponses[keyof FctExecutionTpsHourlyServiceListResponses]; + +export type FctExecutionTpsHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_execution_tps_hourly/{hour_start_date_time}'; +}; + +export type FctExecutionTpsHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionTpsHourlyServiceGetError = + FctExecutionTpsHourlyServiceGetErrors[keyof FctExecutionTpsHourlyServiceGetErrors]; + +export type FctExecutionTpsHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionTpsHourlyResponse; +}; + +export type FctExecutionTpsHourlyServiceGetResponse = + FctExecutionTpsHourlyServiceGetResponses[keyof FctExecutionTpsHourlyServiceGetResponses]; + +export type FctExecutionTransactionsDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks in this day (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks in this day (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks in this day (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks in this day (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks in this day (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks in this day (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks in this day (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks in this day (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks in this day (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks in this day (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total transactions in this day (filter: eq) + */ + total_transactions_eq?: number; + /** + * Total transactions in this day (filter: ne) + */ + total_transactions_ne?: number; + /** + * Total transactions in this day (filter: lt) + */ + total_transactions_lt?: number; + /** + * Total transactions in this day (filter: lte) + */ + total_transactions_lte?: number; + /** + * Total transactions in this day (filter: gt) + */ + total_transactions_gt?: number; + /** + * Total transactions in this day (filter: gte) + */ + total_transactions_gte?: number; + /** + * Total transactions in this day (filter: between_min) + */ + total_transactions_between_min?: number; + /** + * Total transactions in this day (filter: between_max_value) + */ + total_transactions_between_max_value?: number; + /** + * Total transactions in this day (filter: in_values) (comma-separated list) + */ + total_transactions_in_values?: string; + /** + * Total transactions in this day (filter: not_in_values) (comma-separated list) + */ + total_transactions_not_in_values?: string; + /** + * Cumulative transaction count since genesis (filter: eq) + */ + cumulative_transactions_eq?: number; + /** + * Cumulative transaction count since genesis (filter: ne) + */ + cumulative_transactions_ne?: number; + /** + * Cumulative transaction count since genesis (filter: lt) + */ + cumulative_transactions_lt?: number; + /** + * Cumulative transaction count since genesis (filter: lte) + */ + cumulative_transactions_lte?: number; + /** + * Cumulative transaction count since genesis (filter: gt) + */ + cumulative_transactions_gt?: number; + /** + * Cumulative transaction count since genesis (filter: gte) + */ + cumulative_transactions_gte?: number; + /** + * Cumulative transaction count since genesis (filter: between_min) + */ + cumulative_transactions_between_min?: number; + /** + * Cumulative transaction count since genesis (filter: between_max_value) + */ + cumulative_transactions_between_max_value?: number; + /** + * Cumulative transaction count since genesis (filter: in_values) (comma-separated list) + */ + cumulative_transactions_in_values?: string; + /** + * Cumulative transaction count since genesis (filter: not_in_values) (comma-separated list) + */ + cumulative_transactions_not_in_values?: string; + /** + * Filter avg_txn_per_block using value + */ + avg_txn_per_block_value?: number; + /** + * Minimum transactions in a block (filter: eq) + */ + min_txn_per_block_eq?: number; + /** + * Minimum transactions in a block (filter: ne) + */ + min_txn_per_block_ne?: number; + /** + * Minimum transactions in a block (filter: lt) + */ + min_txn_per_block_lt?: number; + /** + * Minimum transactions in a block (filter: lte) + */ + min_txn_per_block_lte?: number; + /** + * Minimum transactions in a block (filter: gt) + */ + min_txn_per_block_gt?: number; + /** + * Minimum transactions in a block (filter: gte) + */ + min_txn_per_block_gte?: number; + /** + * Minimum transactions in a block (filter: between_min) + */ + min_txn_per_block_between_min?: number; + /** + * Minimum transactions in a block (filter: between_max_value) + */ + min_txn_per_block_between_max_value?: number; + /** + * Minimum transactions in a block (filter: in_values) (comma-separated list) + */ + min_txn_per_block_in_values?: string; + /** + * Minimum transactions in a block (filter: not_in_values) (comma-separated list) + */ + min_txn_per_block_not_in_values?: string; + /** + * Maximum transactions in a block (filter: eq) + */ + max_txn_per_block_eq?: number; + /** + * Maximum transactions in a block (filter: ne) + */ + max_txn_per_block_ne?: number; + /** + * Maximum transactions in a block (filter: lt) + */ + max_txn_per_block_lt?: number; + /** + * Maximum transactions in a block (filter: lte) + */ + max_txn_per_block_lte?: number; + /** + * Maximum transactions in a block (filter: gt) + */ + max_txn_per_block_gt?: number; + /** + * Maximum transactions in a block (filter: gte) + */ + max_txn_per_block_gte?: number; + /** + * Maximum transactions in a block (filter: between_min) + */ + max_txn_per_block_between_min?: number; + /** + * Maximum transactions in a block (filter: between_max_value) + */ + max_txn_per_block_between_max_value?: number; + /** + * Maximum transactions in a block (filter: in_values) (comma-separated list) + */ + max_txn_per_block_in_values?: string; + /** + * Maximum transactions in a block (filter: not_in_values) (comma-separated list) + */ + max_txn_per_block_not_in_values?: string; + /** + * 50th percentile (median) transactions per block (filter: eq) + */ + p50_txn_per_block_eq?: number; + /** + * 50th percentile (median) transactions per block (filter: ne) + */ + p50_txn_per_block_ne?: number; + /** + * 50th percentile (median) transactions per block (filter: lt) + */ + p50_txn_per_block_lt?: number; + /** + * 50th percentile (median) transactions per block (filter: lte) + */ + p50_txn_per_block_lte?: number; + /** + * 50th percentile (median) transactions per block (filter: gt) + */ + p50_txn_per_block_gt?: number; + /** + * 50th percentile (median) transactions per block (filter: gte) + */ + p50_txn_per_block_gte?: number; + /** + * 50th percentile (median) transactions per block (filter: between_min) + */ + p50_txn_per_block_between_min?: number; + /** + * 50th percentile (median) transactions per block (filter: between_max_value) + */ + p50_txn_per_block_between_max_value?: number; + /** + * 50th percentile (median) transactions per block (filter: in_values) (comma-separated list) + */ + p50_txn_per_block_in_values?: string; + /** + * 50th percentile (median) transactions per block (filter: not_in_values) (comma-separated list) + */ + p50_txn_per_block_not_in_values?: string; + /** + * 95th percentile transactions per block (filter: eq) + */ + p95_txn_per_block_eq?: number; + /** + * 95th percentile transactions per block (filter: ne) + */ + p95_txn_per_block_ne?: number; + /** + * 95th percentile transactions per block (filter: lt) + */ + p95_txn_per_block_lt?: number; + /** + * 95th percentile transactions per block (filter: lte) + */ + p95_txn_per_block_lte?: number; + /** + * 95th percentile transactions per block (filter: gt) + */ + p95_txn_per_block_gt?: number; + /** + * 95th percentile transactions per block (filter: gte) + */ + p95_txn_per_block_gte?: number; + /** + * 95th percentile transactions per block (filter: between_min) + */ + p95_txn_per_block_between_min?: number; + /** + * 95th percentile transactions per block (filter: between_max_value) + */ + p95_txn_per_block_between_max_value?: number; + /** + * 95th percentile transactions per block (filter: in_values) (comma-separated list) + */ + p95_txn_per_block_in_values?: string; + /** + * 95th percentile transactions per block (filter: not_in_values) (comma-separated list) + */ + p95_txn_per_block_not_in_values?: string; + /** + * 5th percentile transactions per block (filter: eq) + */ + p05_txn_per_block_eq?: number; + /** + * 5th percentile transactions per block (filter: ne) + */ + p05_txn_per_block_ne?: number; + /** + * 5th percentile transactions per block (filter: lt) + */ + p05_txn_per_block_lt?: number; + /** + * 5th percentile transactions per block (filter: lte) + */ + p05_txn_per_block_lte?: number; + /** + * 5th percentile transactions per block (filter: gt) + */ + p05_txn_per_block_gt?: number; + /** + * 5th percentile transactions per block (filter: gte) + */ + p05_txn_per_block_gte?: number; + /** + * 5th percentile transactions per block (filter: between_min) + */ + p05_txn_per_block_between_min?: number; + /** + * 5th percentile transactions per block (filter: between_max_value) + */ + p05_txn_per_block_between_max_value?: number; + /** + * 5th percentile transactions per block (filter: in_values) (comma-separated list) + */ + p05_txn_per_block_in_values?: string; + /** + * 5th percentile transactions per block (filter: not_in_values) (comma-separated list) + */ + p05_txn_per_block_not_in_values?: string; + /** + * Filter stddev_txn_per_block using value + */ + stddev_txn_per_block_value?: number; + /** + * Filter upper_band_txn_per_block using value + */ + upper_band_txn_per_block_value?: number; + /** + * Filter lower_band_txn_per_block using value + */ + lower_band_txn_per_block_value?: number; + /** + * Filter moving_avg_txn_per_block using value + */ + moving_avg_txn_per_block_value?: number; + /** + * The maximum number of fct_execution_transactions_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionTransactionsDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_transactions_daily'; +}; + +export type FctExecutionTransactionsDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionTransactionsDailyServiceListError = + FctExecutionTransactionsDailyServiceListErrors[keyof FctExecutionTransactionsDailyServiceListErrors]; + +export type FctExecutionTransactionsDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionTransactionsDailyResponse; +}; + +export type FctExecutionTransactionsDailyServiceListResponse = + FctExecutionTransactionsDailyServiceListResponses[keyof FctExecutionTransactionsDailyServiceListResponses]; + +export type FctExecutionTransactionsDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_execution_transactions_daily/{day_start_date}'; +}; + +export type FctExecutionTransactionsDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionTransactionsDailyServiceGetError = + FctExecutionTransactionsDailyServiceGetErrors[keyof FctExecutionTransactionsDailyServiceGetErrors]; + +export type FctExecutionTransactionsDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionTransactionsDailyResponse; +}; + +export type FctExecutionTransactionsDailyServiceGetResponse = + FctExecutionTransactionsDailyServiceGetResponses[keyof FctExecutionTransactionsDailyServiceGetResponses]; + +export type FctExecutionTransactionsHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks in this hour (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks in this hour (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks in this hour (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks in this hour (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks in this hour (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks in this hour (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks in this hour (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks in this hour (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks in this hour (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks in this hour (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total transactions in this hour (filter: eq) + */ + total_transactions_eq?: number; + /** + * Total transactions in this hour (filter: ne) + */ + total_transactions_ne?: number; + /** + * Total transactions in this hour (filter: lt) + */ + total_transactions_lt?: number; + /** + * Total transactions in this hour (filter: lte) + */ + total_transactions_lte?: number; + /** + * Total transactions in this hour (filter: gt) + */ + total_transactions_gt?: number; + /** + * Total transactions in this hour (filter: gte) + */ + total_transactions_gte?: number; + /** + * Total transactions in this hour (filter: between_min) + */ + total_transactions_between_min?: number; + /** + * Total transactions in this hour (filter: between_max_value) + */ + total_transactions_between_max_value?: number; + /** + * Total transactions in this hour (filter: in_values) (comma-separated list) + */ + total_transactions_in_values?: string; + /** + * Total transactions in this hour (filter: not_in_values) (comma-separated list) + */ + total_transactions_not_in_values?: string; + /** + * Cumulative transaction count since genesis (filter: eq) + */ + cumulative_transactions_eq?: number; + /** + * Cumulative transaction count since genesis (filter: ne) + */ + cumulative_transactions_ne?: number; + /** + * Cumulative transaction count since genesis (filter: lt) + */ + cumulative_transactions_lt?: number; + /** + * Cumulative transaction count since genesis (filter: lte) + */ + cumulative_transactions_lte?: number; + /** + * Cumulative transaction count since genesis (filter: gt) + */ + cumulative_transactions_gt?: number; + /** + * Cumulative transaction count since genesis (filter: gte) + */ + cumulative_transactions_gte?: number; + /** + * Cumulative transaction count since genesis (filter: between_min) + */ + cumulative_transactions_between_min?: number; + /** + * Cumulative transaction count since genesis (filter: between_max_value) + */ + cumulative_transactions_between_max_value?: number; + /** + * Cumulative transaction count since genesis (filter: in_values) (comma-separated list) + */ + cumulative_transactions_in_values?: string; + /** + * Cumulative transaction count since genesis (filter: not_in_values) (comma-separated list) + */ + cumulative_transactions_not_in_values?: string; + /** + * Filter avg_txn_per_block using value + */ + avg_txn_per_block_value?: number; + /** + * Minimum transactions in a block (filter: eq) + */ + min_txn_per_block_eq?: number; + /** + * Minimum transactions in a block (filter: ne) + */ + min_txn_per_block_ne?: number; + /** + * Minimum transactions in a block (filter: lt) + */ + min_txn_per_block_lt?: number; + /** + * Minimum transactions in a block (filter: lte) + */ + min_txn_per_block_lte?: number; + /** + * Minimum transactions in a block (filter: gt) + */ + min_txn_per_block_gt?: number; + /** + * Minimum transactions in a block (filter: gte) + */ + min_txn_per_block_gte?: number; + /** + * Minimum transactions in a block (filter: between_min) + */ + min_txn_per_block_between_min?: number; + /** + * Minimum transactions in a block (filter: between_max_value) + */ + min_txn_per_block_between_max_value?: number; + /** + * Minimum transactions in a block (filter: in_values) (comma-separated list) + */ + min_txn_per_block_in_values?: string; + /** + * Minimum transactions in a block (filter: not_in_values) (comma-separated list) + */ + min_txn_per_block_not_in_values?: string; + /** + * Maximum transactions in a block (filter: eq) + */ + max_txn_per_block_eq?: number; + /** + * Maximum transactions in a block (filter: ne) + */ + max_txn_per_block_ne?: number; + /** + * Maximum transactions in a block (filter: lt) + */ + max_txn_per_block_lt?: number; + /** + * Maximum transactions in a block (filter: lte) + */ + max_txn_per_block_lte?: number; + /** + * Maximum transactions in a block (filter: gt) + */ + max_txn_per_block_gt?: number; + /** + * Maximum transactions in a block (filter: gte) + */ + max_txn_per_block_gte?: number; + /** + * Maximum transactions in a block (filter: between_min) + */ + max_txn_per_block_between_min?: number; + /** + * Maximum transactions in a block (filter: between_max_value) + */ + max_txn_per_block_between_max_value?: number; + /** + * Maximum transactions in a block (filter: in_values) (comma-separated list) + */ + max_txn_per_block_in_values?: string; + /** + * Maximum transactions in a block (filter: not_in_values) (comma-separated list) + */ + max_txn_per_block_not_in_values?: string; + /** + * 50th percentile (median) transactions per block (filter: eq) + */ + p50_txn_per_block_eq?: number; + /** + * 50th percentile (median) transactions per block (filter: ne) + */ + p50_txn_per_block_ne?: number; + /** + * 50th percentile (median) transactions per block (filter: lt) + */ + p50_txn_per_block_lt?: number; + /** + * 50th percentile (median) transactions per block (filter: lte) + */ + p50_txn_per_block_lte?: number; + /** + * 50th percentile (median) transactions per block (filter: gt) + */ + p50_txn_per_block_gt?: number; + /** + * 50th percentile (median) transactions per block (filter: gte) + */ + p50_txn_per_block_gte?: number; + /** + * 50th percentile (median) transactions per block (filter: between_min) + */ + p50_txn_per_block_between_min?: number; + /** + * 50th percentile (median) transactions per block (filter: between_max_value) + */ + p50_txn_per_block_between_max_value?: number; + /** + * 50th percentile (median) transactions per block (filter: in_values) (comma-separated list) + */ + p50_txn_per_block_in_values?: string; + /** + * 50th percentile (median) transactions per block (filter: not_in_values) (comma-separated list) + */ + p50_txn_per_block_not_in_values?: string; + /** + * 95th percentile transactions per block (filter: eq) + */ + p95_txn_per_block_eq?: number; + /** + * 95th percentile transactions per block (filter: ne) + */ + p95_txn_per_block_ne?: number; + /** + * 95th percentile transactions per block (filter: lt) + */ + p95_txn_per_block_lt?: number; + /** + * 95th percentile transactions per block (filter: lte) + */ + p95_txn_per_block_lte?: number; + /** + * 95th percentile transactions per block (filter: gt) + */ + p95_txn_per_block_gt?: number; + /** + * 95th percentile transactions per block (filter: gte) + */ + p95_txn_per_block_gte?: number; + /** + * 95th percentile transactions per block (filter: between_min) + */ + p95_txn_per_block_between_min?: number; + /** + * 95th percentile transactions per block (filter: between_max_value) + */ + p95_txn_per_block_between_max_value?: number; + /** + * 95th percentile transactions per block (filter: in_values) (comma-separated list) + */ + p95_txn_per_block_in_values?: string; + /** + * 95th percentile transactions per block (filter: not_in_values) (comma-separated list) + */ + p95_txn_per_block_not_in_values?: string; + /** + * 5th percentile transactions per block (filter: eq) + */ + p05_txn_per_block_eq?: number; + /** + * 5th percentile transactions per block (filter: ne) + */ + p05_txn_per_block_ne?: number; + /** + * 5th percentile transactions per block (filter: lt) + */ + p05_txn_per_block_lt?: number; + /** + * 5th percentile transactions per block (filter: lte) + */ + p05_txn_per_block_lte?: number; + /** + * 5th percentile transactions per block (filter: gt) + */ + p05_txn_per_block_gt?: number; + /** + * 5th percentile transactions per block (filter: gte) + */ + p05_txn_per_block_gte?: number; + /** + * 5th percentile transactions per block (filter: between_min) + */ + p05_txn_per_block_between_min?: number; + /** + * 5th percentile transactions per block (filter: between_max_value) + */ + p05_txn_per_block_between_max_value?: number; + /** + * 5th percentile transactions per block (filter: in_values) (comma-separated list) + */ + p05_txn_per_block_in_values?: string; + /** + * 5th percentile transactions per block (filter: not_in_values) (comma-separated list) + */ + p05_txn_per_block_not_in_values?: string; + /** + * Filter stddev_txn_per_block using value + */ + stddev_txn_per_block_value?: number; + /** + * Filter upper_band_txn_per_block using value + */ + upper_band_txn_per_block_value?: number; + /** + * Filter lower_band_txn_per_block using value + */ + lower_band_txn_per_block_value?: number; + /** + * Filter moving_avg_txn_per_block using value + */ + moving_avg_txn_per_block_value?: number; + /** + * The maximum number of fct_execution_transactions_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctExecutionTransactionsHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_execution_transactions_hourly'; +}; + +export type FctExecutionTransactionsHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionTransactionsHourlyServiceListError = + FctExecutionTransactionsHourlyServiceListErrors[keyof FctExecutionTransactionsHourlyServiceListErrors]; + +export type FctExecutionTransactionsHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctExecutionTransactionsHourlyResponse; +}; + +export type FctExecutionTransactionsHourlyServiceListResponse = + FctExecutionTransactionsHourlyServiceListResponses[keyof FctExecutionTransactionsHourlyServiceListResponses]; + +export type FctExecutionTransactionsHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_execution_transactions_hourly/{hour_start_date_time}'; +}; + +export type FctExecutionTransactionsHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctExecutionTransactionsHourlyServiceGetError = + FctExecutionTransactionsHourlyServiceGetErrors[keyof FctExecutionTransactionsHourlyServiceGetErrors]; + +export type FctExecutionTransactionsHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctExecutionTransactionsHourlyResponse; +}; + +export type FctExecutionTransactionsHourlyServiceGetResponse = + FctExecutionTransactionsHourlyServiceGetResponses[keyof FctExecutionTransactionsHourlyServiceGetResponses]; + +export type FctHeadFirstSeenByNodeServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The head block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The head block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The head block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The head block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The head block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The head block root hash (filter: like) + */ + block_root_like?: string; + /** + * The head block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The head block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The head block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Name of the client (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Source of the event (filter: eq) + */ + source_eq?: string; + /** + * Source of the event (filter: ne) + */ + source_ne?: string; + /** + * Source of the event (filter: contains) + */ + source_contains?: string; + /** + * Source of the event (filter: starts_with) + */ + source_starts_with?: string; + /** + * Source of the event (filter: ends_with) + */ + source_ends_with?: string; + /** + * Source of the event (filter: like) + */ + source_like?: string; + /** + * Source of the event (filter: not_like) + */ + source_not_like?: string; + /** + * Source of the event (filter: in_values) (comma-separated list) + */ + source_in_values?: string; + /** + * Source of the event (filter: not_in_values) (comma-separated list) + */ + source_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The time from slot start for the client to see the head event (filter: eq) + */ + seen_slot_start_diff_eq?: number; + /** + * The time from slot start for the client to see the head event (filter: ne) + */ + seen_slot_start_diff_ne?: number; + /** + * The time from slot start for the client to see the head event (filter: lt) + */ + seen_slot_start_diff_lt?: number; + /** + * The time from slot start for the client to see the head event (filter: lte) + */ + seen_slot_start_diff_lte?: number; + /** + * The time from slot start for the client to see the head event (filter: gt) + */ + seen_slot_start_diff_gt?: number; + /** + * The time from slot start for the client to see the head event (filter: gte) + */ + seen_slot_start_diff_gte?: number; + /** + * The time from slot start for the client to see the head event (filter: between_min) + */ + seen_slot_start_diff_between_min?: number; + /** + * The time from slot start for the client to see the head event (filter: between_max_value) + */ + seen_slot_start_diff_between_max_value?: number; + /** + * The time from slot start for the client to see the head event (filter: in_values) (comma-separated list) + */ + seen_slot_start_diff_in_values?: string; + /** + * The time from slot start for the client to see the head event (filter: not_in_values) (comma-separated list) + */ + seen_slot_start_diff_not_in_values?: string; + /** + * Username of the node (filter: eq) + */ + username_eq?: string; + /** + * Username of the node (filter: ne) + */ + username_ne?: string; + /** + * Username of the node (filter: contains) + */ + username_contains?: string; + /** + * Username of the node (filter: starts_with) + */ + username_starts_with?: string; + /** + * Username of the node (filter: ends_with) + */ + username_ends_with?: string; + /** + * Username of the node (filter: like) + */ + username_like?: string; + /** + * Username of the node (filter: not_like) + */ + username_not_like?: string; + /** + * Username of the node (filter: in_values) (comma-separated list) + */ + username_in_values?: string; + /** + * Username of the node (filter: not_in_values) (comma-separated list) + */ + username_not_in_values?: string; + /** + * ID of the node (filter: eq) + */ + node_id_eq?: string; + /** + * ID of the node (filter: ne) + */ + node_id_ne?: string; + /** + * ID of the node (filter: contains) + */ + node_id_contains?: string; + /** + * ID of the node (filter: starts_with) + */ + node_id_starts_with?: string; + /** + * ID of the node (filter: ends_with) + */ + node_id_ends_with?: string; + /** + * ID of the node (filter: like) + */ + node_id_like?: string; + /** + * ID of the node (filter: not_like) + */ + node_id_not_like?: string; + /** + * ID of the node (filter: in_values) (comma-separated list) + */ + node_id_in_values?: string; + /** + * ID of the node (filter: not_in_values) (comma-separated list) + */ + node_id_not_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) + */ + classification_eq?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) + */ + classification_ne?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) + */ + classification_contains?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) + */ + classification_starts_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) + */ + classification_ends_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) + */ + classification_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) + */ + classification_not_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) + */ + classification_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) + */ + classification_not_in_values?: string; + /** + * Version of the client (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * City of the client (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Autonomous system number of the client (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * Ethereum consensus client version (filter: eq) + */ + meta_consensus_version_eq?: string; + /** + * Ethereum consensus client version (filter: ne) + */ + meta_consensus_version_ne?: string; + /** + * Ethereum consensus client version (filter: contains) + */ + meta_consensus_version_contains?: string; + /** + * Ethereum consensus client version (filter: starts_with) + */ + meta_consensus_version_starts_with?: string; + /** + * Ethereum consensus client version (filter: ends_with) + */ + meta_consensus_version_ends_with?: string; + /** + * Ethereum consensus client version (filter: like) + */ + meta_consensus_version_like?: string; + /** + * Ethereum consensus client version (filter: not_like) + */ + meta_consensus_version_not_like?: string; + /** + * Ethereum consensus client version (filter: in_values) (comma-separated list) + */ + meta_consensus_version_in_values?: string; + /** + * Ethereum consensus client version (filter: not_in_values) (comma-separated list) + */ + meta_consensus_version_not_in_values?: string; + /** + * Ethereum consensus client implementation (filter: eq) + */ + meta_consensus_implementation_eq?: string; + /** + * Ethereum consensus client implementation (filter: ne) + */ + meta_consensus_implementation_ne?: string; + /** + * Ethereum consensus client implementation (filter: contains) + */ + meta_consensus_implementation_contains?: string; + /** + * Ethereum consensus client implementation (filter: starts_with) + */ + meta_consensus_implementation_starts_with?: string; + /** + * Ethereum consensus client implementation (filter: ends_with) + */ + meta_consensus_implementation_ends_with?: string; + /** + * Ethereum consensus client implementation (filter: like) + */ + meta_consensus_implementation_like?: string; + /** + * Ethereum consensus client implementation (filter: not_like) + */ + meta_consensus_implementation_not_like?: string; + /** + * Ethereum consensus client implementation (filter: in_values) (comma-separated list) + */ + meta_consensus_implementation_in_values?: string; + /** + * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) + */ + meta_consensus_implementation_not_in_values?: string; + /** + * The maximum number of fct_head_first_seen_by_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctHeadFirstSeenByNode` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_head_first_seen_by_node'; +}; + +export type FctHeadFirstSeenByNodeServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctHeadFirstSeenByNodeServiceListError = + FctHeadFirstSeenByNodeServiceListErrors[keyof FctHeadFirstSeenByNodeServiceListErrors]; + +export type FctHeadFirstSeenByNodeServiceListResponses = { + /** + * OK + */ + 200: ListFctHeadFirstSeenByNodeResponse; +}; + +export type FctHeadFirstSeenByNodeServiceListResponse = + FctHeadFirstSeenByNodeServiceListResponses[keyof FctHeadFirstSeenByNodeServiceListResponses]; + +export type FctHeadFirstSeenByNodeServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_head_first_seen_by_node/{slot_start_date_time}'; +}; + +export type FctHeadFirstSeenByNodeServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctHeadFirstSeenByNodeServiceGetError = + FctHeadFirstSeenByNodeServiceGetErrors[keyof FctHeadFirstSeenByNodeServiceGetErrors]; + +export type FctHeadFirstSeenByNodeServiceGetResponses = { + /** + * OK + */ + 200: GetFctHeadFirstSeenByNodeResponse; +}; + +export type FctHeadFirstSeenByNodeServiceGetResponse = + FctHeadFirstSeenByNodeServiceGetResponses[keyof FctHeadFirstSeenByNodeServiceGetResponses]; + +export type FctHeadVoteCorrectnessRateDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of slots in this day (filter: eq) + */ + slot_count_eq?: number; + /** + * Number of slots in this day (filter: ne) + */ + slot_count_ne?: number; + /** + * Number of slots in this day (filter: lt) + */ + slot_count_lt?: number; + /** + * Number of slots in this day (filter: lte) + */ + slot_count_lte?: number; + /** + * Number of slots in this day (filter: gt) + */ + slot_count_gt?: number; + /** + * Number of slots in this day (filter: gte) + */ + slot_count_gte?: number; + /** + * Number of slots in this day (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Number of slots in this day (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Number of slots in this day (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Number of slots in this day (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * Filter avg_head_vote_rate using value + */ + avg_head_vote_rate_value?: number; + /** + * Filter min_head_vote_rate using value + */ + min_head_vote_rate_value?: number; + /** + * Filter max_head_vote_rate using value + */ + max_head_vote_rate_value?: number; + /** + * Filter p05_head_vote_rate using value + */ + p05_head_vote_rate_value?: number; + /** + * Filter p50_head_vote_rate using value + */ + p50_head_vote_rate_value?: number; + /** + * Filter p95_head_vote_rate using value + */ + p95_head_vote_rate_value?: number; + /** + * Filter stddev_head_vote_rate using value + */ + stddev_head_vote_rate_value?: number; + /** + * Filter upper_band_head_vote_rate using value + */ + upper_band_head_vote_rate_value?: number; + /** + * Filter lower_band_head_vote_rate using value + */ + lower_band_head_vote_rate_value?: number; + /** + * Filter moving_avg_head_vote_rate using value + */ + moving_avg_head_vote_rate_value?: number; + /** + * The maximum number of fct_head_vote_correctness_rate_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctHeadVoteCorrectnessRateDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_head_vote_correctness_rate_daily'; +}; + +export type FctHeadVoteCorrectnessRateDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctHeadVoteCorrectnessRateDailyServiceListError = + FctHeadVoteCorrectnessRateDailyServiceListErrors[keyof FctHeadVoteCorrectnessRateDailyServiceListErrors]; + +export type FctHeadVoteCorrectnessRateDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctHeadVoteCorrectnessRateDailyResponse; +}; + +export type FctHeadVoteCorrectnessRateDailyServiceListResponse = + FctHeadVoteCorrectnessRateDailyServiceListResponses[keyof FctHeadVoteCorrectnessRateDailyServiceListResponses]; + +export type FctHeadVoteCorrectnessRateDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_head_vote_correctness_rate_daily/{day_start_date}'; +}; + +export type FctHeadVoteCorrectnessRateDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctHeadVoteCorrectnessRateDailyServiceGetError = + FctHeadVoteCorrectnessRateDailyServiceGetErrors[keyof FctHeadVoteCorrectnessRateDailyServiceGetErrors]; + +export type FctHeadVoteCorrectnessRateDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctHeadVoteCorrectnessRateDailyResponse; +}; + +export type FctHeadVoteCorrectnessRateDailyServiceGetResponse = + FctHeadVoteCorrectnessRateDailyServiceGetResponses[keyof FctHeadVoteCorrectnessRateDailyServiceGetResponses]; + +export type FctHeadVoteCorrectnessRateHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of slots in this hour (filter: eq) + */ + slot_count_eq?: number; + /** + * Number of slots in this hour (filter: ne) + */ + slot_count_ne?: number; + /** + * Number of slots in this hour (filter: lt) + */ + slot_count_lt?: number; + /** + * Number of slots in this hour (filter: lte) + */ + slot_count_lte?: number; + /** + * Number of slots in this hour (filter: gt) + */ + slot_count_gt?: number; + /** + * Number of slots in this hour (filter: gte) + */ + slot_count_gte?: number; + /** + * Number of slots in this hour (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Number of slots in this hour (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Number of slots in this hour (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Number of slots in this hour (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * Filter avg_head_vote_rate using value + */ + avg_head_vote_rate_value?: number; + /** + * Filter min_head_vote_rate using value + */ + min_head_vote_rate_value?: number; + /** + * Filter max_head_vote_rate using value + */ + max_head_vote_rate_value?: number; + /** + * Filter p05_head_vote_rate using value + */ + p05_head_vote_rate_value?: number; + /** + * Filter p50_head_vote_rate using value + */ + p50_head_vote_rate_value?: number; + /** + * Filter p95_head_vote_rate using value + */ + p95_head_vote_rate_value?: number; + /** + * Filter stddev_head_vote_rate using value + */ + stddev_head_vote_rate_value?: number; + /** + * Filter upper_band_head_vote_rate using value + */ + upper_band_head_vote_rate_value?: number; + /** + * Filter lower_band_head_vote_rate using value + */ + lower_band_head_vote_rate_value?: number; + /** + * Filter moving_avg_head_vote_rate using value + */ + moving_avg_head_vote_rate_value?: number; + /** + * The maximum number of fct_head_vote_correctness_rate_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctHeadVoteCorrectnessRateHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_head_vote_correctness_rate_hourly'; +}; + +export type FctHeadVoteCorrectnessRateHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctHeadVoteCorrectnessRateHourlyServiceListError = + FctHeadVoteCorrectnessRateHourlyServiceListErrors[keyof FctHeadVoteCorrectnessRateHourlyServiceListErrors]; + +export type FctHeadVoteCorrectnessRateHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctHeadVoteCorrectnessRateHourlyResponse; +}; + +export type FctHeadVoteCorrectnessRateHourlyServiceListResponse = + FctHeadVoteCorrectnessRateHourlyServiceListResponses[keyof FctHeadVoteCorrectnessRateHourlyServiceListResponses]; + +export type FctHeadVoteCorrectnessRateHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_head_vote_correctness_rate_hourly/{hour_start_date_time}'; +}; + +export type FctHeadVoteCorrectnessRateHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctHeadVoteCorrectnessRateHourlyServiceGetError = + FctHeadVoteCorrectnessRateHourlyServiceGetErrors[keyof FctHeadVoteCorrectnessRateHourlyServiceGetErrors]; + +export type FctHeadVoteCorrectnessRateHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctHeadVoteCorrectnessRateHourlyResponse; +}; + +export type FctHeadVoteCorrectnessRateHourlyServiceGetResponse = + FctHeadVoteCorrectnessRateHourlyServiceGetResponses[keyof FctHeadVoteCorrectnessRateHourlyServiceGetResponses]; + +export type FctMevBidCountByBuilderServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The start time for the slot that the bid is for (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The start time for the slot that the bid is for (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The start time for the slot that the bid is for (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The start time for the slot that the bid is for (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The start time for the slot that the bid is for (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The start time for the slot that the bid is for (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The start time for the slot that the bid is for (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The start time for the slot that the bid is for (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The start time for the slot that the bid is for (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The start time for the slot that the bid is for (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The relay that the bid was fetched from (filter: eq) + */ + builder_pubkey_eq?: string; + /** + * The relay that the bid was fetched from (filter: ne) + */ + builder_pubkey_ne?: string; + /** + * The relay that the bid was fetched from (filter: contains) + */ + builder_pubkey_contains?: string; + /** + * The relay that the bid was fetched from (filter: starts_with) + */ + builder_pubkey_starts_with?: string; + /** + * The relay that the bid was fetched from (filter: ends_with) + */ + builder_pubkey_ends_with?: string; + /** + * The relay that the bid was fetched from (filter: like) + */ + builder_pubkey_like?: string; + /** + * The relay that the bid was fetched from (filter: not_like) + */ + builder_pubkey_not_like?: string; + /** + * The relay that the bid was fetched from (filter: in_values) (comma-separated list) + */ + builder_pubkey_in_values?: string; + /** + * The relay that the bid was fetched from (filter: not_in_values) (comma-separated list) + */ + builder_pubkey_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number within the block bid (filter: eq) + */ + slot_eq?: number; + /** + * Slot number within the block bid (filter: ne) + */ + slot_ne?: number; + /** + * Slot number within the block bid (filter: lt) + */ + slot_lt?: number; + /** + * Slot number within the block bid (filter: lte) + */ + slot_lte?: number; + /** + * Slot number within the block bid (filter: gt) + */ + slot_gt?: number; + /** + * Slot number within the block bid (filter: gte) + */ + slot_gte?: number; + /** + * Slot number within the block bid (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number within the block bid (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number within the block bid (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number within the block bid (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot that the bid is for (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot that the bid is for (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The start time for the epoch that the bid is for (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The start time for the epoch that the bid is for (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The start time for the epoch that the bid is for (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The start time for the epoch that the bid is for (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The start time for the epoch that the bid is for (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The start time for the epoch that the bid is for (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The start time for the epoch that the bid is for (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The start time for the epoch that the bid is for (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The start time for the epoch that the bid is for (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The start time for the epoch that the bid is for (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The total number of bids from the builder (filter: eq) + */ + bid_total_eq?: number; + /** + * The total number of bids from the builder (filter: ne) + */ + bid_total_ne?: number; + /** + * The total number of bids from the builder (filter: lt) + */ + bid_total_lt?: number; + /** + * The total number of bids from the builder (filter: lte) + */ + bid_total_lte?: number; + /** + * The total number of bids from the builder (filter: gt) + */ + bid_total_gt?: number; + /** + * The total number of bids from the builder (filter: gte) + */ + bid_total_gte?: number; + /** + * The total number of bids from the builder (filter: between_min) + */ + bid_total_between_min?: number; + /** + * The total number of bids from the builder (filter: between_max_value) + */ + bid_total_between_max_value?: number; + /** + * The total number of bids from the builder (filter: in_values) (comma-separated list) + */ + bid_total_in_values?: string; + /** + * The total number of bids from the builder (filter: not_in_values) (comma-separated list) + */ + bid_total_not_in_values?: string; + /** + * The maximum number of fct_mev_bid_count_by_builder to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctMevBidCountByBuilder` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_mev_bid_count_by_builder'; +}; + +export type FctMevBidCountByBuilderServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctMevBidCountByBuilderServiceListError = + FctMevBidCountByBuilderServiceListErrors[keyof FctMevBidCountByBuilderServiceListErrors]; + +export type FctMevBidCountByBuilderServiceListResponses = { + /** + * OK + */ + 200: ListFctMevBidCountByBuilderResponse; +}; + +export type FctMevBidCountByBuilderServiceListResponse = + FctMevBidCountByBuilderServiceListResponses[keyof FctMevBidCountByBuilderServiceListResponses]; + +export type FctMevBidCountByBuilderServiceGetData = { + body?: never; + path: { + /** + * The start time for the slot that the bid is for + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_mev_bid_count_by_builder/{slot_start_date_time}'; +}; + +export type FctMevBidCountByBuilderServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctMevBidCountByBuilderServiceGetError = + FctMevBidCountByBuilderServiceGetErrors[keyof FctMevBidCountByBuilderServiceGetErrors]; + +export type FctMevBidCountByBuilderServiceGetResponses = { + /** + * OK + */ + 200: GetFctMevBidCountByBuilderResponse; +}; + +export type FctMevBidCountByBuilderServiceGetResponse = + FctMevBidCountByBuilderServiceGetResponses[keyof FctMevBidCountByBuilderServiceGetResponses]; + +export type FctMevBidCountByRelayServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The start time for the slot that the bid is for (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The start time for the slot that the bid is for (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The start time for the slot that the bid is for (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The start time for the slot that the bid is for (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The start time for the slot that the bid is for (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The start time for the slot that the bid is for (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The start time for the slot that the bid is for (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The start time for the slot that the bid is for (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The start time for the slot that the bid is for (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The start time for the slot that the bid is for (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The relay that the bid was fetched from (filter: eq) + */ + relay_name_eq?: string; + /** + * The relay that the bid was fetched from (filter: ne) + */ + relay_name_ne?: string; + /** + * The relay that the bid was fetched from (filter: contains) + */ + relay_name_contains?: string; + /** + * The relay that the bid was fetched from (filter: starts_with) + */ + relay_name_starts_with?: string; + /** + * The relay that the bid was fetched from (filter: ends_with) + */ + relay_name_ends_with?: string; + /** + * The relay that the bid was fetched from (filter: like) + */ + relay_name_like?: string; + /** + * The relay that the bid was fetched from (filter: not_like) + */ + relay_name_not_like?: string; + /** + * The relay that the bid was fetched from (filter: in_values) (comma-separated list) + */ + relay_name_in_values?: string; + /** + * The relay that the bid was fetched from (filter: not_in_values) (comma-separated list) + */ + relay_name_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number within the block bid (filter: eq) + */ + slot_eq?: number; + /** + * Slot number within the block bid (filter: ne) + */ + slot_ne?: number; + /** + * Slot number within the block bid (filter: lt) + */ + slot_lt?: number; + /** + * Slot number within the block bid (filter: lte) + */ + slot_lte?: number; + /** + * Slot number within the block bid (filter: gt) + */ + slot_gt?: number; + /** + * Slot number within the block bid (filter: gte) + */ + slot_gte?: number; + /** + * Slot number within the block bid (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number within the block bid (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number within the block bid (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number within the block bid (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot that the bid is for (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot that the bid is for (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The start time for the epoch that the bid is for (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The start time for the epoch that the bid is for (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The start time for the epoch that the bid is for (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The start time for the epoch that the bid is for (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The start time for the epoch that the bid is for (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The start time for the epoch that the bid is for (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The start time for the epoch that the bid is for (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The start time for the epoch that the bid is for (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The start time for the epoch that the bid is for (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The start time for the epoch that the bid is for (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The total number of bids for the relay (filter: eq) + */ + bid_total_eq?: number; + /** + * The total number of bids for the relay (filter: ne) + */ + bid_total_ne?: number; + /** + * The total number of bids for the relay (filter: lt) + */ + bid_total_lt?: number; + /** + * The total number of bids for the relay (filter: lte) + */ + bid_total_lte?: number; + /** + * The total number of bids for the relay (filter: gt) + */ + bid_total_gt?: number; + /** + * The total number of bids for the relay (filter: gte) + */ + bid_total_gte?: number; + /** + * The total number of bids for the relay (filter: between_min) + */ + bid_total_between_min?: number; + /** + * The total number of bids for the relay (filter: between_max_value) + */ + bid_total_between_max_value?: number; + /** + * The total number of bids for the relay (filter: in_values) (comma-separated list) + */ + bid_total_in_values?: string; + /** + * The total number of bids for the relay (filter: not_in_values) (comma-separated list) + */ + bid_total_not_in_values?: string; + /** + * The maximum number of fct_mev_bid_count_by_relay to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctMevBidCountByRelay` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_mev_bid_count_by_relay'; +}; + +export type FctMevBidCountByRelayServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctMevBidCountByRelayServiceListError = + FctMevBidCountByRelayServiceListErrors[keyof FctMevBidCountByRelayServiceListErrors]; + +export type FctMevBidCountByRelayServiceListResponses = { + /** + * OK + */ + 200: ListFctMevBidCountByRelayResponse; +}; + +export type FctMevBidCountByRelayServiceListResponse = + FctMevBidCountByRelayServiceListResponses[keyof FctMevBidCountByRelayServiceListResponses]; + +export type FctMevBidCountByRelayServiceGetData = { + body?: never; + path: { + /** + * The start time for the slot that the bid is for + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_mev_bid_count_by_relay/{slot_start_date_time}'; +}; + +export type FctMevBidCountByRelayServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctMevBidCountByRelayServiceGetError = + FctMevBidCountByRelayServiceGetErrors[keyof FctMevBidCountByRelayServiceGetErrors]; + +export type FctMevBidCountByRelayServiceGetResponses = { + /** + * OK + */ + 200: GetFctMevBidCountByRelayResponse; +}; + +export type FctMevBidCountByRelayServiceGetResponse = + FctMevBidCountByRelayServiceGetResponses[keyof FctMevBidCountByRelayServiceGetResponses]; + +export type FctMevBidHighestValueByBuilderChunked50MsServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The start time for the slot that the bid is for (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The start time for the slot that the bid is for (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The start time for the slot that the bid is for (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The start time for the slot that the bid is for (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The start time for the slot that the bid is for (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The start time for the slot that the bid is for (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The start time for the slot that the bid is for (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The start time for the slot that the bid is for (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The start time for the slot that the bid is for (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The start time for the slot that the bid is for (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: eq) + */ + chunk_slot_start_diff_eq?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: ne) + */ + chunk_slot_start_diff_ne?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: lt) + */ + chunk_slot_start_diff_lt?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: lte) + */ + chunk_slot_start_diff_lte?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: gt) + */ + chunk_slot_start_diff_gt?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: gte) + */ + chunk_slot_start_diff_gte?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: between_min) + */ + chunk_slot_start_diff_between_min?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: between_max_value) + */ + chunk_slot_start_diff_between_max_value?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: in_values) (comma-separated list) + */ + chunk_slot_start_diff_in_values?: string; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: not_in_values) (comma-separated list) + */ + chunk_slot_start_diff_not_in_values?: string; + /** + * The builder pubkey of the bid (filter: eq) + */ + builder_pubkey_eq?: string; + /** + * The builder pubkey of the bid (filter: ne) + */ + builder_pubkey_ne?: string; + /** + * The builder pubkey of the bid (filter: contains) + */ + builder_pubkey_contains?: string; + /** + * The builder pubkey of the bid (filter: starts_with) + */ + builder_pubkey_starts_with?: string; + /** + * The builder pubkey of the bid (filter: ends_with) + */ + builder_pubkey_ends_with?: string; + /** + * The builder pubkey of the bid (filter: like) + */ + builder_pubkey_like?: string; + /** + * The builder pubkey of the bid (filter: not_like) + */ + builder_pubkey_not_like?: string; + /** + * The builder pubkey of the bid (filter: in_values) (comma-separated list) + */ + builder_pubkey_in_values?: string; + /** + * The builder pubkey of the bid (filter: not_in_values) (comma-separated list) + */ + builder_pubkey_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number within the block bid (filter: eq) + */ + slot_eq?: number; + /** + * Slot number within the block bid (filter: ne) + */ + slot_ne?: number; + /** + * Slot number within the block bid (filter: lt) + */ + slot_lt?: number; + /** + * Slot number within the block bid (filter: lte) + */ + slot_lte?: number; + /** + * Slot number within the block bid (filter: gt) + */ + slot_gt?: number; + /** + * Slot number within the block bid (filter: gte) + */ + slot_gte?: number; + /** + * Slot number within the block bid (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number within the block bid (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number within the block bid (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number within the block bid (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot that the bid is for (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot that the bid is for (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The start time for the epoch that the bid is for (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The start time for the epoch that the bid is for (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The start time for the epoch that the bid is for (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The start time for the epoch that the bid is for (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The start time for the epoch that the bid is for (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The start time for the epoch that the bid is for (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The start time for the epoch that the bid is for (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The start time for the epoch that the bid is for (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The start time for the epoch that the bid is for (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The start time for the epoch that the bid is for (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The timestamp of the earliest bid for this block_hash from this builder (filter: eq) + */ + earliest_bid_date_time_eq?: number; + /** + * The timestamp of the earliest bid for this block_hash from this builder (filter: ne) + */ + earliest_bid_date_time_ne?: number; + /** + * The timestamp of the earliest bid for this block_hash from this builder (filter: lt) + */ + earliest_bid_date_time_lt?: number; + /** + * The timestamp of the earliest bid for this block_hash from this builder (filter: lte) + */ + earliest_bid_date_time_lte?: number; + /** + * The timestamp of the earliest bid for this block_hash from this builder (filter: gt) + */ + earliest_bid_date_time_gt?: number; + /** + * The timestamp of the earliest bid for this block_hash from this builder (filter: gte) + */ + earliest_bid_date_time_gte?: number; + /** + * The timestamp of the earliest bid for this block_hash from this builder (filter: between_min) + */ + earliest_bid_date_time_between_min?: number; + /** + * The timestamp of the earliest bid for this block_hash from this builder (filter: between_max_value) + */ + earliest_bid_date_time_between_max_value?: number; + /** + * The timestamp of the earliest bid for this block_hash from this builder (filter: in_values) (comma-separated list) + */ + earliest_bid_date_time_in_values?: string; + /** + * The timestamp of the earliest bid for this block_hash from this builder (filter: not_in_values) (comma-separated list) + */ + earliest_bid_date_time_not_in_values?: string; + /** + * The relay that the bid was fetched from (filter: has) + */ + relay_names_has?: string; + /** + * The relay that the bid was fetched from (filter: has_all_values) + */ + relay_names_has_all_values?: Array; + /** + * The relay that the bid was fetched from (filter: has_any_values) + */ + relay_names_has_any_values?: Array; + /** + * The relay that the bid was fetched from (filter: length_eq) + */ + relay_names_length_eq?: number; + /** + * The relay that the bid was fetched from (filter: length_gt) + */ + relay_names_length_gt?: number; + /** + * The relay that the bid was fetched from (filter: length_gte) + */ + relay_names_length_gte?: number; + /** + * The relay that the bid was fetched from (filter: length_lt) + */ + relay_names_length_lt?: number; + /** + * The relay that the bid was fetched from (filter: length_lte) + */ + relay_names_length_lte?: number; + /** + * The execution block hash of the bid (filter: eq) + */ + block_hash_eq?: string; + /** + * The execution block hash of the bid (filter: ne) + */ + block_hash_ne?: string; + /** + * The execution block hash of the bid (filter: contains) + */ + block_hash_contains?: string; + /** + * The execution block hash of the bid (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * The execution block hash of the bid (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * The execution block hash of the bid (filter: like) + */ + block_hash_like?: string; + /** + * The execution block hash of the bid (filter: not_like) + */ + block_hash_not_like?: string; + /** + * The execution block hash of the bid (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * The execution block hash of the bid (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * The transaction value in wei (filter: eq) + */ + value_eq?: string; + /** + * The transaction value in wei (filter: ne) + */ + value_ne?: string; + /** + * The transaction value in wei (filter: contains) + */ + value_contains?: string; + /** + * The transaction value in wei (filter: starts_with) + */ + value_starts_with?: string; + /** + * The transaction value in wei (filter: ends_with) + */ + value_ends_with?: string; + /** + * The transaction value in wei (filter: like) + */ + value_like?: string; + /** + * The transaction value in wei (filter: not_like) + */ + value_not_like?: string; + /** + * The transaction value in wei (filter: in_values) (comma-separated list) + */ + value_in_values?: string; + /** + * The transaction value in wei (filter: not_in_values) (comma-separated list) + */ + value_not_in_values?: string; + /** + * The maximum number of fct_mev_bid_highest_value_by_builder_chunked_50ms to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctMevBidHighestValueByBuilderChunked50ms` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_mev_bid_highest_value_by_builder_chunked_50ms'; +}; + +export type FctMevBidHighestValueByBuilderChunked50MsServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctMevBidHighestValueByBuilderChunked50MsServiceListError = + FctMevBidHighestValueByBuilderChunked50MsServiceListErrors[keyof FctMevBidHighestValueByBuilderChunked50MsServiceListErrors]; + +export type FctMevBidHighestValueByBuilderChunked50MsServiceListResponses = { + /** + * OK + */ + 200: ListFctMevBidHighestValueByBuilderChunked50MsResponse; +}; + +export type FctMevBidHighestValueByBuilderChunked50MsServiceListResponse = + FctMevBidHighestValueByBuilderChunked50MsServiceListResponses[keyof FctMevBidHighestValueByBuilderChunked50MsServiceListResponses]; + +export type FctMevBidHighestValueByBuilderChunked50MsServiceGetData = { + body?: never; + path: { + /** + * The start time for the slot that the bid is for + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_mev_bid_highest_value_by_builder_chunked_50ms/{slot_start_date_time}'; +}; + +export type FctMevBidHighestValueByBuilderChunked50MsServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctMevBidHighestValueByBuilderChunked50MsServiceGetError = + FctMevBidHighestValueByBuilderChunked50MsServiceGetErrors[keyof FctMevBidHighestValueByBuilderChunked50MsServiceGetErrors]; + +export type FctMevBidHighestValueByBuilderChunked50MsServiceGetResponses = { + /** + * OK + */ + 200: GetFctMevBidHighestValueByBuilderChunked50MsResponse; +}; + +export type FctMevBidHighestValueByBuilderChunked50MsServiceGetResponse = + FctMevBidHighestValueByBuilderChunked50MsServiceGetResponses[keyof FctMevBidHighestValueByBuilderChunked50MsServiceGetResponses]; + +export type FctMissedSlotRateDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total number of slots in this day (filter: eq) + */ + slot_count_eq?: number; + /** + * Total number of slots in this day (filter: ne) + */ + slot_count_ne?: number; + /** + * Total number of slots in this day (filter: lt) + */ + slot_count_lt?: number; + /** + * Total number of slots in this day (filter: lte) + */ + slot_count_lte?: number; + /** + * Total number of slots in this day (filter: gt) + */ + slot_count_gt?: number; + /** + * Total number of slots in this day (filter: gte) + */ + slot_count_gte?: number; + /** + * Total number of slots in this day (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Total number of slots in this day (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Total number of slots in this day (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Total number of slots in this day (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * Number of missed slots in this day (filter: eq) + */ + missed_count_eq?: number; + /** + * Number of missed slots in this day (filter: ne) + */ + missed_count_ne?: number; + /** + * Number of missed slots in this day (filter: lt) + */ + missed_count_lt?: number; + /** + * Number of missed slots in this day (filter: lte) + */ + missed_count_lte?: number; + /** + * Number of missed slots in this day (filter: gt) + */ + missed_count_gt?: number; + /** + * Number of missed slots in this day (filter: gte) + */ + missed_count_gte?: number; + /** + * Number of missed slots in this day (filter: between_min) + */ + missed_count_between_min?: number; + /** + * Number of missed slots in this day (filter: between_max_value) + */ + missed_count_between_max_value?: number; + /** + * Number of missed slots in this day (filter: in_values) (comma-separated list) + */ + missed_count_in_values?: string; + /** + * Number of missed slots in this day (filter: not_in_values) (comma-separated list) + */ + missed_count_not_in_values?: string; + /** + * Filter missed_rate using value + */ + missed_rate_value?: number; + /** + * Filter moving_avg_missed_rate using value + */ + moving_avg_missed_rate_value?: number; + /** + * The maximum number of fct_missed_slot_rate_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctMissedSlotRateDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_missed_slot_rate_daily'; +}; + +export type FctMissedSlotRateDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctMissedSlotRateDailyServiceListError = + FctMissedSlotRateDailyServiceListErrors[keyof FctMissedSlotRateDailyServiceListErrors]; + +export type FctMissedSlotRateDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctMissedSlotRateDailyResponse; +}; + +export type FctMissedSlotRateDailyServiceListResponse = + FctMissedSlotRateDailyServiceListResponses[keyof FctMissedSlotRateDailyServiceListResponses]; + +export type FctMissedSlotRateDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_missed_slot_rate_daily/{day_start_date}'; +}; + +export type FctMissedSlotRateDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctMissedSlotRateDailyServiceGetError = + FctMissedSlotRateDailyServiceGetErrors[keyof FctMissedSlotRateDailyServiceGetErrors]; + +export type FctMissedSlotRateDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctMissedSlotRateDailyResponse; +}; + +export type FctMissedSlotRateDailyServiceGetResponse = + FctMissedSlotRateDailyServiceGetResponses[keyof FctMissedSlotRateDailyServiceGetResponses]; + +export type FctMissedSlotRateHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total number of slots in this hour (filter: eq) + */ + slot_count_eq?: number; + /** + * Total number of slots in this hour (filter: ne) + */ + slot_count_ne?: number; + /** + * Total number of slots in this hour (filter: lt) + */ + slot_count_lt?: number; + /** + * Total number of slots in this hour (filter: lte) + */ + slot_count_lte?: number; + /** + * Total number of slots in this hour (filter: gt) + */ + slot_count_gt?: number; + /** + * Total number of slots in this hour (filter: gte) + */ + slot_count_gte?: number; + /** + * Total number of slots in this hour (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Total number of slots in this hour (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Total number of slots in this hour (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Total number of slots in this hour (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * Number of missed slots in this hour (filter: eq) + */ + missed_count_eq?: number; + /** + * Number of missed slots in this hour (filter: ne) + */ + missed_count_ne?: number; + /** + * Number of missed slots in this hour (filter: lt) + */ + missed_count_lt?: number; + /** + * Number of missed slots in this hour (filter: lte) + */ + missed_count_lte?: number; + /** + * Number of missed slots in this hour (filter: gt) + */ + missed_count_gt?: number; + /** + * Number of missed slots in this hour (filter: gte) + */ + missed_count_gte?: number; + /** + * Number of missed slots in this hour (filter: between_min) + */ + missed_count_between_min?: number; + /** + * Number of missed slots in this hour (filter: between_max_value) + */ + missed_count_between_max_value?: number; + /** + * Number of missed slots in this hour (filter: in_values) (comma-separated list) + */ + missed_count_in_values?: string; + /** + * Number of missed slots in this hour (filter: not_in_values) (comma-separated list) + */ + missed_count_not_in_values?: string; + /** + * Filter missed_rate using value + */ + missed_rate_value?: number; + /** + * Filter moving_avg_missed_rate using value + */ + moving_avg_missed_rate_value?: number; + /** + * The maximum number of fct_missed_slot_rate_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctMissedSlotRateHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_missed_slot_rate_hourly'; +}; + +export type FctMissedSlotRateHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctMissedSlotRateHourlyServiceListError = + FctMissedSlotRateHourlyServiceListErrors[keyof FctMissedSlotRateHourlyServiceListErrors]; + +export type FctMissedSlotRateHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctMissedSlotRateHourlyResponse; +}; + +export type FctMissedSlotRateHourlyServiceListResponse = + FctMissedSlotRateHourlyServiceListResponses[keyof FctMissedSlotRateHourlyServiceListResponses]; + +export type FctMissedSlotRateHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_missed_slot_rate_hourly/{hour_start_date_time}'; +}; + +export type FctMissedSlotRateHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctMissedSlotRateHourlyServiceGetError = + FctMissedSlotRateHourlyServiceGetErrors[keyof FctMissedSlotRateHourlyServiceGetErrors]; + +export type FctMissedSlotRateHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctMissedSlotRateHourlyResponse; +}; + +export type FctMissedSlotRateHourlyServiceGetResponse = + FctMissedSlotRateHourlyServiceGetResponses[keyof FctMissedSlotRateHourlyServiceGetResponses]; + +export type FctNodeActiveLast24hServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Name of the client (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Timestamp when the node was last seen (filter: eq) + */ + last_seen_date_time_eq?: number; + /** + * Timestamp when the node was last seen (filter: ne) + */ + last_seen_date_time_ne?: number; + /** + * Timestamp when the node was last seen (filter: lt) + */ + last_seen_date_time_lt?: number; + /** + * Timestamp when the node was last seen (filter: lte) + */ + last_seen_date_time_lte?: number; + /** + * Timestamp when the node was last seen (filter: gt) + */ + last_seen_date_time_gt?: number; + /** + * Timestamp when the node was last seen (filter: gte) + */ + last_seen_date_time_gte?: number; + /** + * Timestamp when the node was last seen (filter: between_min) + */ + last_seen_date_time_between_min?: number; + /** + * Timestamp when the node was last seen (filter: between_max_value) + */ + last_seen_date_time_between_max_value?: number; + /** + * Timestamp when the node was last seen (filter: in_values) (comma-separated list) + */ + last_seen_date_time_in_values?: string; + /** + * Timestamp when the node was last seen (filter: not_in_values) (comma-separated list) + */ + last_seen_date_time_not_in_values?: string; + /** + * Username of the node (filter: eq) + */ + username_eq?: string; + /** + * Username of the node (filter: ne) + */ + username_ne?: string; + /** + * Username of the node (filter: contains) + */ + username_contains?: string; + /** + * Username of the node (filter: starts_with) + */ + username_starts_with?: string; + /** + * Username of the node (filter: ends_with) + */ + username_ends_with?: string; + /** + * Username of the node (filter: like) + */ + username_like?: string; + /** + * Username of the node (filter: not_like) + */ + username_not_like?: string; + /** + * Username of the node (filter: in_values) (comma-separated list) + */ + username_in_values?: string; + /** + * Username of the node (filter: not_in_values) (comma-separated list) + */ + username_not_in_values?: string; + /** + * ID of the node (filter: eq) + */ + node_id_eq?: string; + /** + * ID of the node (filter: ne) + */ + node_id_ne?: string; + /** + * ID of the node (filter: contains) + */ + node_id_contains?: string; + /** + * ID of the node (filter: starts_with) + */ + node_id_starts_with?: string; + /** + * ID of the node (filter: ends_with) + */ + node_id_ends_with?: string; + /** + * ID of the node (filter: like) + */ + node_id_like?: string; + /** + * ID of the node (filter: not_like) + */ + node_id_not_like?: string; + /** + * ID of the node (filter: in_values) (comma-separated list) + */ + node_id_in_values?: string; + /** + * ID of the node (filter: not_in_values) (comma-separated list) + */ + node_id_not_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) + */ + classification_eq?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) + */ + classification_ne?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) + */ + classification_contains?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) + */ + classification_starts_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) + */ + classification_ends_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) + */ + classification_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) + */ + classification_not_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) + */ + classification_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) + */ + classification_not_in_values?: string; + /** + * Version of the client (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * City of the client (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Autonomous system number of the client (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * Ethereum consensus client version (filter: eq) + */ + meta_consensus_version_eq?: string; + /** + * Ethereum consensus client version (filter: ne) + */ + meta_consensus_version_ne?: string; + /** + * Ethereum consensus client version (filter: contains) + */ + meta_consensus_version_contains?: string; + /** + * Ethereum consensus client version (filter: starts_with) + */ + meta_consensus_version_starts_with?: string; + /** + * Ethereum consensus client version (filter: ends_with) + */ + meta_consensus_version_ends_with?: string; + /** + * Ethereum consensus client version (filter: like) + */ + meta_consensus_version_like?: string; + /** + * Ethereum consensus client version (filter: not_like) + */ + meta_consensus_version_not_like?: string; + /** + * Ethereum consensus client version (filter: in_values) (comma-separated list) + */ + meta_consensus_version_in_values?: string; + /** + * Ethereum consensus client version (filter: not_in_values) (comma-separated list) + */ + meta_consensus_version_not_in_values?: string; + /** + * Ethereum consensus client implementation (filter: eq) + */ + meta_consensus_implementation_eq?: string; + /** + * Ethereum consensus client implementation (filter: ne) + */ + meta_consensus_implementation_ne?: string; + /** + * Ethereum consensus client implementation (filter: contains) + */ + meta_consensus_implementation_contains?: string; + /** + * Ethereum consensus client implementation (filter: starts_with) + */ + meta_consensus_implementation_starts_with?: string; + /** + * Ethereum consensus client implementation (filter: ends_with) + */ + meta_consensus_implementation_ends_with?: string; + /** + * Ethereum consensus client implementation (filter: like) + */ + meta_consensus_implementation_like?: string; + /** + * Ethereum consensus client implementation (filter: not_like) + */ + meta_consensus_implementation_not_like?: string; + /** + * Ethereum consensus client implementation (filter: in_values) (comma-separated list) + */ + meta_consensus_implementation_in_values?: string; + /** + * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) + */ + meta_consensus_implementation_not_in_values?: string; + /** + * The maximum number of fct_node_active_last_24h to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctNodeActiveLast24h` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_node_active_last_24h'; +}; + +export type FctNodeActiveLast24hServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctNodeActiveLast24hServiceListError = + FctNodeActiveLast24hServiceListErrors[keyof FctNodeActiveLast24hServiceListErrors]; + +export type FctNodeActiveLast24hServiceListResponses = { + /** + * OK + */ + 200: ListFctNodeActiveLast24hResponse; +}; + +export type FctNodeActiveLast24hServiceListResponse = + FctNodeActiveLast24hServiceListResponses[keyof FctNodeActiveLast24hServiceListResponses]; + +export type FctNodeActiveLast24hServiceGetData = { + body?: never; + path: { + /** + * Name of the client + */ + meta_client_name: string; + }; + query?: never; + url: '/api/v1/fct_node_active_last_24h/{meta_client_name}'; +}; + +export type FctNodeActiveLast24hServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctNodeActiveLast24hServiceGetError = + FctNodeActiveLast24hServiceGetErrors[keyof FctNodeActiveLast24hServiceGetErrors]; + +export type FctNodeActiveLast24hServiceGetResponses = { + /** + * OK + */ + 200: GetFctNodeActiveLast24hResponse; +}; + +export type FctNodeActiveLast24hServiceGetResponse = + FctNodeActiveLast24hServiceGetResponses[keyof FctNodeActiveLast24hServiceGetResponses]; + +export type FctNodeCpuUtilizationByProcessServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + wallclock_slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + wallclock_slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + wallclock_slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + wallclock_slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + wallclock_slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + wallclock_slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + wallclock_slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + wallclock_slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + wallclock_slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + wallclock_slot_start_date_time_not_in_values?: string; + /** + * Name of the observoor client that collected the data (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the observoor client that collected the data (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the observoor client that collected the data (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the observoor client that collected the data (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the observoor client that collected the data (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the observoor client that collected the data (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the observoor client that collected the data (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the observoor client that collected the data (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the observoor client that collected the data (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Client type: CL or EL (filter: eq) + */ + client_type_eq?: string; + /** + * Client type: CL or EL (filter: ne) + */ + client_type_ne?: string; + /** + * Client type: CL or EL (filter: contains) + */ + client_type_contains?: string; + /** + * Client type: CL or EL (filter: starts_with) + */ + client_type_starts_with?: string; + /** + * Client type: CL or EL (filter: ends_with) + */ + client_type_ends_with?: string; + /** + * Client type: CL or EL (filter: like) + */ + client_type_like?: string; + /** + * Client type: CL or EL (filter: not_like) + */ + client_type_not_like?: string; + /** + * Client type: CL or EL (filter: in_values) (comma-separated list) + */ + client_type_in_values?: string; + /** + * Client type: CL or EL (filter: not_in_values) (comma-separated list) + */ + client_type_not_in_values?: string; + /** + * Process ID of the monitored client (filter: eq) + */ + pid_eq?: number; + /** + * Process ID of the monitored client (filter: ne) + */ + pid_ne?: number; + /** + * Process ID of the monitored client (filter: lt) + */ + pid_lt?: number; + /** + * Process ID of the monitored client (filter: lte) + */ + pid_lte?: number; + /** + * Process ID of the monitored client (filter: gt) + */ + pid_gt?: number; + /** + * Process ID of the monitored client (filter: gte) + */ + pid_gte?: number; + /** + * Process ID of the monitored client (filter: between_min) + */ + pid_between_min?: number; + /** + * Process ID of the monitored client (filter: between_max_value) + */ + pid_between_max_value?: number; + /** + * Process ID of the monitored client (filter: in_values) (comma-separated list) + */ + pid_in_values?: string; + /** + * Process ID of the monitored client (filter: not_in_values) (comma-separated list) + */ + pid_not_in_values?: string; + /** + * Start of the sub-slot aggregation window (filter: eq) + */ + window_start_eq?: number; + /** + * Start of the sub-slot aggregation window (filter: ne) + */ + window_start_ne?: number; + /** + * Start of the sub-slot aggregation window (filter: lt) + */ + window_start_lt?: number; + /** + * Start of the sub-slot aggregation window (filter: lte) + */ + window_start_lte?: number; + /** + * Start of the sub-slot aggregation window (filter: gt) + */ + window_start_gt?: number; + /** + * Start of the sub-slot aggregation window (filter: gte) + */ + window_start_gte?: number; + /** + * Start of the sub-slot aggregation window (filter: between_min) + */ + window_start_between_min?: number; + /** + * Start of the sub-slot aggregation window (filter: between_max_value) + */ + window_start_between_max_value?: number; + /** + * Start of the sub-slot aggregation window (filter: in_values) (comma-separated list) + */ + window_start_in_values?: string; + /** + * Start of the sub-slot aggregation window (filter: not_in_values) (comma-separated list) + */ + window_start_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The wallclock slot number (filter: eq) + */ + wallclock_slot_eq?: number; + /** + * The wallclock slot number (filter: ne) + */ + wallclock_slot_ne?: number; + /** + * The wallclock slot number (filter: lt) + */ + wallclock_slot_lt?: number; + /** + * The wallclock slot number (filter: lte) + */ + wallclock_slot_lte?: number; + /** + * The wallclock slot number (filter: gt) + */ + wallclock_slot_gt?: number; + /** + * The wallclock slot number (filter: gte) + */ + wallclock_slot_gte?: number; + /** + * The wallclock slot number (filter: between_min) + */ + wallclock_slot_between_min?: number; + /** + * The wallclock slot number (filter: between_max_value) + */ + wallclock_slot_between_max_value?: number; + /** + * The wallclock slot number (filter: in_values) (comma-separated list) + */ + wallclock_slot_in_values?: string; + /** + * The wallclock slot number (filter: not_in_values) (comma-separated list) + */ + wallclock_slot_not_in_values?: string; + /** + * Ethereum network name (filter: eq) + */ + meta_network_name_eq?: string; + /** + * Ethereum network name (filter: ne) + */ + meta_network_name_ne?: string; + /** + * Ethereum network name (filter: contains) + */ + meta_network_name_contains?: string; + /** + * Ethereum network name (filter: starts_with) + */ + meta_network_name_starts_with?: string; + /** + * Ethereum network name (filter: ends_with) + */ + meta_network_name_ends_with?: string; + /** + * Ethereum network name (filter: like) + */ + meta_network_name_like?: string; + /** + * Ethereum network name (filter: not_like) + */ + meta_network_name_not_like?: string; + /** + * Ethereum network name (filter: in_values) (comma-separated list) + */ + meta_network_name_in_values?: string; + /** + * Ethereum network name (filter: not_in_values) (comma-separated list) + */ + meta_network_name_not_in_values?: string; + /** + * Total system CPU cores (filter: eq) + */ + system_cores_eq?: number; + /** + * Total system CPU cores (filter: ne) + */ + system_cores_ne?: number; + /** + * Total system CPU cores (filter: lt) + */ + system_cores_lt?: number; + /** + * Total system CPU cores (filter: lte) + */ + system_cores_lte?: number; + /** + * Total system CPU cores (filter: gt) + */ + system_cores_gt?: number; + /** + * Total system CPU cores (filter: gte) + */ + system_cores_gte?: number; + /** + * Total system CPU cores (filter: between_min) + */ + system_cores_between_min?: number; + /** + * Total system CPU cores (filter: between_max_value) + */ + system_cores_between_max_value?: number; + /** + * Total system CPU cores (filter: in_values) (comma-separated list) + */ + system_cores_in_values?: string; + /** + * Total system CPU cores (filter: not_in_values) (comma-separated list) + */ + system_cores_not_in_values?: string; + /** + * Filter mean_core_pct using value + */ + mean_core_pct_value?: number; + /** + * Filter min_core_pct using value + */ + min_core_pct_value?: number; + /** + * Filter max_core_pct using value + */ + max_core_pct_value?: number; + /** + * Node classification for filtering (e.g. eip7870) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * The maximum number of fct_node_cpu_utilization_by_process to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctNodeCpuUtilizationByProcess` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_node_cpu_utilization_by_process'; +}; + +export type FctNodeCpuUtilizationByProcessServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctNodeCpuUtilizationByProcessServiceListError = + FctNodeCpuUtilizationByProcessServiceListErrors[keyof FctNodeCpuUtilizationByProcessServiceListErrors]; + +export type FctNodeCpuUtilizationByProcessServiceListResponses = { + /** + * OK + */ + 200: ListFctNodeCpuUtilizationByProcessResponse; +}; + +export type FctNodeCpuUtilizationByProcessServiceListResponse = + FctNodeCpuUtilizationByProcessServiceListResponses[keyof FctNodeCpuUtilizationByProcessServiceListResponses]; + +export type FctNodeCpuUtilizationByProcessServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + wallclock_slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_node_cpu_utilization_by_process/{wallclock_slot_start_date_time}'; +}; + +export type FctNodeCpuUtilizationByProcessServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctNodeCpuUtilizationByProcessServiceGetError = + FctNodeCpuUtilizationByProcessServiceGetErrors[keyof FctNodeCpuUtilizationByProcessServiceGetErrors]; + +export type FctNodeCpuUtilizationByProcessServiceGetResponses = { + /** + * OK + */ + 200: GetFctNodeCpuUtilizationByProcessResponse; +}; + +export type FctNodeCpuUtilizationByProcessServiceGetResponse = + FctNodeCpuUtilizationByProcessServiceGetResponses[keyof FctNodeCpuUtilizationByProcessServiceGetResponses]; + +export type FctNodeDiskIoByProcessServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + wallclock_slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + wallclock_slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + wallclock_slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + wallclock_slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + wallclock_slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + wallclock_slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + wallclock_slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + wallclock_slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + wallclock_slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + wallclock_slot_start_date_time_not_in_values?: string; + /** + * Name of the observoor client that collected the data (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the observoor client that collected the data (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the observoor client that collected the data (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the observoor client that collected the data (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the observoor client that collected the data (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the observoor client that collected the data (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the observoor client that collected the data (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the observoor client that collected the data (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the observoor client that collected the data (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Client type: CL or EL (filter: eq) + */ + client_type_eq?: string; + /** + * Client type: CL or EL (filter: ne) + */ + client_type_ne?: string; + /** + * Client type: CL or EL (filter: contains) + */ + client_type_contains?: string; + /** + * Client type: CL or EL (filter: starts_with) + */ + client_type_starts_with?: string; + /** + * Client type: CL or EL (filter: ends_with) + */ + client_type_ends_with?: string; + /** + * Client type: CL or EL (filter: like) + */ + client_type_like?: string; + /** + * Client type: CL or EL (filter: not_like) + */ + client_type_not_like?: string; + /** + * Client type: CL or EL (filter: in_values) (comma-separated list) + */ + client_type_in_values?: string; + /** + * Client type: CL or EL (filter: not_in_values) (comma-separated list) + */ + client_type_not_in_values?: string; + /** + * Process ID of the monitored client (filter: eq) + */ + pid_eq?: number; + /** + * Process ID of the monitored client (filter: ne) + */ + pid_ne?: number; + /** + * Process ID of the monitored client (filter: lt) + */ + pid_lt?: number; + /** + * Process ID of the monitored client (filter: lte) + */ + pid_lte?: number; + /** + * Process ID of the monitored client (filter: gt) + */ + pid_gt?: number; + /** + * Process ID of the monitored client (filter: gte) + */ + pid_gte?: number; + /** + * Process ID of the monitored client (filter: between_min) + */ + pid_between_min?: number; + /** + * Process ID of the monitored client (filter: between_max_value) + */ + pid_between_max_value?: number; + /** + * Process ID of the monitored client (filter: in_values) (comma-separated list) + */ + pid_in_values?: string; + /** + * Process ID of the monitored client (filter: not_in_values) (comma-separated list) + */ + pid_not_in_values?: string; + /** + * I/O direction: read or write (filter: eq) + */ + rw_eq?: string; + /** + * I/O direction: read or write (filter: ne) + */ + rw_ne?: string; + /** + * I/O direction: read or write (filter: contains) + */ + rw_contains?: string; + /** + * I/O direction: read or write (filter: starts_with) + */ + rw_starts_with?: string; + /** + * I/O direction: read or write (filter: ends_with) + */ + rw_ends_with?: string; + /** + * I/O direction: read or write (filter: like) + */ + rw_like?: string; + /** + * I/O direction: read or write (filter: not_like) + */ + rw_not_like?: string; + /** + * I/O direction: read or write (filter: in_values) (comma-separated list) + */ + rw_in_values?: string; + /** + * I/O direction: read or write (filter: not_in_values) (comma-separated list) + */ + rw_not_in_values?: string; + /** + * Start of the sub-slot aggregation window (filter: eq) + */ + window_start_eq?: number; + /** + * Start of the sub-slot aggregation window (filter: ne) + */ + window_start_ne?: number; + /** + * Start of the sub-slot aggregation window (filter: lt) + */ + window_start_lt?: number; + /** + * Start of the sub-slot aggregation window (filter: lte) + */ + window_start_lte?: number; + /** + * Start of the sub-slot aggregation window (filter: gt) + */ + window_start_gt?: number; + /** + * Start of the sub-slot aggregation window (filter: gte) + */ + window_start_gte?: number; + /** + * Start of the sub-slot aggregation window (filter: between_min) + */ + window_start_between_min?: number; + /** + * Start of the sub-slot aggregation window (filter: between_max_value) + */ + window_start_between_max_value?: number; + /** + * Start of the sub-slot aggregation window (filter: in_values) (comma-separated list) + */ + window_start_in_values?: string; + /** + * Start of the sub-slot aggregation window (filter: not_in_values) (comma-separated list) + */ + window_start_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The wallclock slot number (filter: eq) + */ + wallclock_slot_eq?: number; + /** + * The wallclock slot number (filter: ne) + */ + wallclock_slot_ne?: number; + /** + * The wallclock slot number (filter: lt) + */ + wallclock_slot_lt?: number; + /** + * The wallclock slot number (filter: lte) + */ + wallclock_slot_lte?: number; + /** + * The wallclock slot number (filter: gt) + */ + wallclock_slot_gt?: number; + /** + * The wallclock slot number (filter: gte) + */ + wallclock_slot_gte?: number; + /** + * The wallclock slot number (filter: between_min) + */ + wallclock_slot_between_min?: number; + /** + * The wallclock slot number (filter: between_max_value) + */ + wallclock_slot_between_max_value?: number; + /** + * The wallclock slot number (filter: in_values) (comma-separated list) + */ + wallclock_slot_in_values?: string; + /** + * The wallclock slot number (filter: not_in_values) (comma-separated list) + */ + wallclock_slot_not_in_values?: string; + /** + * Ethereum network name (filter: eq) + */ + meta_network_name_eq?: string; + /** + * Ethereum network name (filter: ne) + */ + meta_network_name_ne?: string; + /** + * Ethereum network name (filter: contains) + */ + meta_network_name_contains?: string; + /** + * Ethereum network name (filter: starts_with) + */ + meta_network_name_starts_with?: string; + /** + * Ethereum network name (filter: ends_with) + */ + meta_network_name_ends_with?: string; + /** + * Ethereum network name (filter: like) + */ + meta_network_name_like?: string; + /** + * Ethereum network name (filter: not_like) + */ + meta_network_name_not_like?: string; + /** + * Ethereum network name (filter: in_values) (comma-separated list) + */ + meta_network_name_in_values?: string; + /** + * Ethereum network name (filter: not_in_values) (comma-separated list) + */ + meta_network_name_not_in_values?: string; + /** + * Filter io_bytes using value + */ + io_bytes_value?: number; + /** + * Total I/O operations across all devices in this window (filter: eq) + */ + io_ops_eq?: number; + /** + * Total I/O operations across all devices in this window (filter: ne) + */ + io_ops_ne?: number; + /** + * Total I/O operations across all devices in this window (filter: lt) + */ + io_ops_lt?: number; + /** + * Total I/O operations across all devices in this window (filter: lte) + */ + io_ops_lte?: number; + /** + * Total I/O operations across all devices in this window (filter: gt) + */ + io_ops_gt?: number; + /** + * Total I/O operations across all devices in this window (filter: gte) + */ + io_ops_gte?: number; + /** + * Total I/O operations across all devices in this window (filter: between_min) + */ + io_ops_between_min?: number; + /** + * Total I/O operations across all devices in this window (filter: between_max_value) + */ + io_ops_between_max_value?: number; + /** + * Total I/O operations across all devices in this window (filter: in_values) (comma-separated list) + */ + io_ops_in_values?: string; + /** + * Total I/O operations across all devices in this window (filter: not_in_values) (comma-separated list) + */ + io_ops_not_in_values?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * The maximum number of fct_node_disk_io_by_process to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctNodeDiskIoByProcess` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_node_disk_io_by_process'; +}; + +export type FctNodeDiskIoByProcessServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctNodeDiskIoByProcessServiceListError = + FctNodeDiskIoByProcessServiceListErrors[keyof FctNodeDiskIoByProcessServiceListErrors]; + +export type FctNodeDiskIoByProcessServiceListResponses = { + /** + * OK + */ + 200: ListFctNodeDiskIoByProcessResponse; +}; + +export type FctNodeDiskIoByProcessServiceListResponse = + FctNodeDiskIoByProcessServiceListResponses[keyof FctNodeDiskIoByProcessServiceListResponses]; + +export type FctNodeDiskIoByProcessServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + wallclock_slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_node_disk_io_by_process/{wallclock_slot_start_date_time}'; +}; + +export type FctNodeDiskIoByProcessServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctNodeDiskIoByProcessServiceGetError = + FctNodeDiskIoByProcessServiceGetErrors[keyof FctNodeDiskIoByProcessServiceGetErrors]; + +export type FctNodeDiskIoByProcessServiceGetResponses = { + /** + * OK + */ + 200: GetFctNodeDiskIoByProcessResponse; +}; + +export type FctNodeDiskIoByProcessServiceGetResponse = + FctNodeDiskIoByProcessServiceGetResponses[keyof FctNodeDiskIoByProcessServiceGetResponses]; + +export type FctNodeMemoryUsageByProcessServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + wallclock_slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + wallclock_slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + wallclock_slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + wallclock_slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + wallclock_slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + wallclock_slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + wallclock_slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + wallclock_slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + wallclock_slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + wallclock_slot_start_date_time_not_in_values?: string; + /** + * Name of the observoor client that collected the data (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the observoor client that collected the data (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the observoor client that collected the data (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the observoor client that collected the data (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the observoor client that collected the data (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the observoor client that collected the data (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the observoor client that collected the data (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the observoor client that collected the data (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the observoor client that collected the data (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Client type: CL or EL (filter: eq) + */ + client_type_eq?: string; + /** + * Client type: CL or EL (filter: ne) + */ + client_type_ne?: string; + /** + * Client type: CL or EL (filter: contains) + */ + client_type_contains?: string; + /** + * Client type: CL or EL (filter: starts_with) + */ + client_type_starts_with?: string; + /** + * Client type: CL or EL (filter: ends_with) + */ + client_type_ends_with?: string; + /** + * Client type: CL or EL (filter: like) + */ + client_type_like?: string; + /** + * Client type: CL or EL (filter: not_like) + */ + client_type_not_like?: string; + /** + * Client type: CL or EL (filter: in_values) (comma-separated list) + */ + client_type_in_values?: string; + /** + * Client type: CL or EL (filter: not_in_values) (comma-separated list) + */ + client_type_not_in_values?: string; + /** + * Process ID of the monitored client (filter: eq) + */ + pid_eq?: number; + /** + * Process ID of the monitored client (filter: ne) + */ + pid_ne?: number; + /** + * Process ID of the monitored client (filter: lt) + */ + pid_lt?: number; + /** + * Process ID of the monitored client (filter: lte) + */ + pid_lte?: number; + /** + * Process ID of the monitored client (filter: gt) + */ + pid_gt?: number; + /** + * Process ID of the monitored client (filter: gte) + */ + pid_gte?: number; + /** + * Process ID of the monitored client (filter: between_min) + */ + pid_between_min?: number; + /** + * Process ID of the monitored client (filter: between_max_value) + */ + pid_between_max_value?: number; + /** + * Process ID of the monitored client (filter: in_values) (comma-separated list) + */ + pid_in_values?: string; + /** + * Process ID of the monitored client (filter: not_in_values) (comma-separated list) + */ + pid_not_in_values?: string; + /** + * Start of the sub-slot aggregation window (filter: eq) + */ + window_start_eq?: number; + /** + * Start of the sub-slot aggregation window (filter: ne) + */ + window_start_ne?: number; + /** + * Start of the sub-slot aggregation window (filter: lt) + */ + window_start_lt?: number; + /** + * Start of the sub-slot aggregation window (filter: lte) + */ + window_start_lte?: number; + /** + * Start of the sub-slot aggregation window (filter: gt) + */ + window_start_gt?: number; + /** + * Start of the sub-slot aggregation window (filter: gte) + */ + window_start_gte?: number; + /** + * Start of the sub-slot aggregation window (filter: between_min) + */ + window_start_between_min?: number; + /** + * Start of the sub-slot aggregation window (filter: between_max_value) + */ + window_start_between_max_value?: number; + /** + * Start of the sub-slot aggregation window (filter: in_values) (comma-separated list) + */ + window_start_in_values?: string; + /** + * Start of the sub-slot aggregation window (filter: not_in_values) (comma-separated list) + */ + window_start_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The wallclock slot number (filter: eq) + */ + wallclock_slot_eq?: number; + /** + * The wallclock slot number (filter: ne) + */ + wallclock_slot_ne?: number; + /** + * The wallclock slot number (filter: lt) + */ + wallclock_slot_lt?: number; + /** + * The wallclock slot number (filter: lte) + */ + wallclock_slot_lte?: number; + /** + * The wallclock slot number (filter: gt) + */ + wallclock_slot_gt?: number; + /** + * The wallclock slot number (filter: gte) + */ + wallclock_slot_gte?: number; + /** + * The wallclock slot number (filter: between_min) + */ + wallclock_slot_between_min?: number; + /** + * The wallclock slot number (filter: between_max_value) + */ + wallclock_slot_between_max_value?: number; + /** + * The wallclock slot number (filter: in_values) (comma-separated list) + */ + wallclock_slot_in_values?: string; + /** + * The wallclock slot number (filter: not_in_values) (comma-separated list) + */ + wallclock_slot_not_in_values?: string; + /** + * Ethereum network name (filter: eq) + */ + meta_network_name_eq?: string; + /** + * Ethereum network name (filter: ne) + */ + meta_network_name_ne?: string; + /** + * Ethereum network name (filter: contains) + */ + meta_network_name_contains?: string; + /** + * Ethereum network name (filter: starts_with) + */ + meta_network_name_starts_with?: string; + /** + * Ethereum network name (filter: ends_with) + */ + meta_network_name_ends_with?: string; + /** + * Ethereum network name (filter: like) + */ + meta_network_name_like?: string; + /** + * Ethereum network name (filter: not_like) + */ + meta_network_name_not_like?: string; + /** + * Ethereum network name (filter: in_values) (comma-separated list) + */ + meta_network_name_in_values?: string; + /** + * Ethereum network name (filter: not_in_values) (comma-separated list) + */ + meta_network_name_not_in_values?: string; + /** + * Resident set size in bytes (total physical memory used) (filter: eq) + */ + vm_rss_bytes_eq?: number; + /** + * Resident set size in bytes (total physical memory used) (filter: ne) + */ + vm_rss_bytes_ne?: number; + /** + * Resident set size in bytes (total physical memory used) (filter: lt) + */ + vm_rss_bytes_lt?: number; + /** + * Resident set size in bytes (total physical memory used) (filter: lte) + */ + vm_rss_bytes_lte?: number; + /** + * Resident set size in bytes (total physical memory used) (filter: gt) + */ + vm_rss_bytes_gt?: number; + /** + * Resident set size in bytes (total physical memory used) (filter: gte) + */ + vm_rss_bytes_gte?: number; + /** + * Resident set size in bytes (total physical memory used) (filter: between_min) + */ + vm_rss_bytes_between_min?: number; + /** + * Resident set size in bytes (total physical memory used) (filter: between_max_value) + */ + vm_rss_bytes_between_max_value?: number; + /** + * Resident set size in bytes (total physical memory used) (filter: in_values) (comma-separated list) + */ + vm_rss_bytes_in_values?: string; + /** + * Resident set size in bytes (total physical memory used) (filter: not_in_values) (comma-separated list) + */ + vm_rss_bytes_not_in_values?: string; + /** + * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: eq) + */ + rss_anon_bytes_eq?: number; + /** + * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: ne) + */ + rss_anon_bytes_ne?: number; + /** + * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: lt) + */ + rss_anon_bytes_lt?: number; + /** + * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: lte) + */ + rss_anon_bytes_lte?: number; + /** + * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: gt) + */ + rss_anon_bytes_gt?: number; + /** + * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: gte) + */ + rss_anon_bytes_gte?: number; + /** + * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: between_min) + */ + rss_anon_bytes_between_min?: number; + /** + * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: between_max_value) + */ + rss_anon_bytes_between_max_value?: number; + /** + * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: in_values) (comma-separated list) + */ + rss_anon_bytes_in_values?: string; + /** + * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: not_in_values) (comma-separated list) + */ + rss_anon_bytes_not_in_values?: string; + /** + * File-backed RSS in bytes (shared libraries, mmap files) (filter: eq) + */ + rss_file_bytes_eq?: number; + /** + * File-backed RSS in bytes (shared libraries, mmap files) (filter: ne) + */ + rss_file_bytes_ne?: number; + /** + * File-backed RSS in bytes (shared libraries, mmap files) (filter: lt) + */ + rss_file_bytes_lt?: number; + /** + * File-backed RSS in bytes (shared libraries, mmap files) (filter: lte) + */ + rss_file_bytes_lte?: number; + /** + * File-backed RSS in bytes (shared libraries, mmap files) (filter: gt) + */ + rss_file_bytes_gt?: number; + /** + * File-backed RSS in bytes (shared libraries, mmap files) (filter: gte) + */ + rss_file_bytes_gte?: number; + /** + * File-backed RSS in bytes (shared libraries, mmap files) (filter: between_min) + */ + rss_file_bytes_between_min?: number; + /** + * File-backed RSS in bytes (shared libraries, mmap files) (filter: between_max_value) + */ + rss_file_bytes_between_max_value?: number; + /** + * File-backed RSS in bytes (shared libraries, mmap files) (filter: in_values) (comma-separated list) + */ + rss_file_bytes_in_values?: string; + /** + * File-backed RSS in bytes (shared libraries, mmap files) (filter: not_in_values) (comma-separated list) + */ + rss_file_bytes_not_in_values?: string; + /** + * Swap usage in bytes (filter: eq) + */ + vm_swap_bytes_eq?: number; + /** + * Swap usage in bytes (filter: ne) + */ + vm_swap_bytes_ne?: number; + /** + * Swap usage in bytes (filter: lt) + */ + vm_swap_bytes_lt?: number; + /** + * Swap usage in bytes (filter: lte) + */ + vm_swap_bytes_lte?: number; + /** + * Swap usage in bytes (filter: gt) + */ + vm_swap_bytes_gt?: number; + /** + * Swap usage in bytes (filter: gte) + */ + vm_swap_bytes_gte?: number; + /** + * Swap usage in bytes (filter: between_min) + */ + vm_swap_bytes_between_min?: number; + /** + * Swap usage in bytes (filter: between_max_value) + */ + vm_swap_bytes_between_max_value?: number; + /** + * Swap usage in bytes (filter: in_values) (comma-separated list) + */ + vm_swap_bytes_in_values?: string; + /** + * Swap usage in bytes (filter: not_in_values) (comma-separated list) + */ + vm_swap_bytes_not_in_values?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * The maximum number of fct_node_memory_usage_by_process to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctNodeMemoryUsageByProcess` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_node_memory_usage_by_process'; +}; + +export type FctNodeMemoryUsageByProcessServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctNodeMemoryUsageByProcessServiceListError = + FctNodeMemoryUsageByProcessServiceListErrors[keyof FctNodeMemoryUsageByProcessServiceListErrors]; + +export type FctNodeMemoryUsageByProcessServiceListResponses = { + /** + * OK + */ + 200: ListFctNodeMemoryUsageByProcessResponse; +}; + +export type FctNodeMemoryUsageByProcessServiceListResponse = + FctNodeMemoryUsageByProcessServiceListResponses[keyof FctNodeMemoryUsageByProcessServiceListResponses]; + +export type FctNodeMemoryUsageByProcessServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + wallclock_slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_node_memory_usage_by_process/{wallclock_slot_start_date_time}'; +}; + +export type FctNodeMemoryUsageByProcessServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctNodeMemoryUsageByProcessServiceGetError = + FctNodeMemoryUsageByProcessServiceGetErrors[keyof FctNodeMemoryUsageByProcessServiceGetErrors]; + +export type FctNodeMemoryUsageByProcessServiceGetResponses = { + /** + * OK + */ + 200: GetFctNodeMemoryUsageByProcessResponse; +}; + +export type FctNodeMemoryUsageByProcessServiceGetResponse = + FctNodeMemoryUsageByProcessServiceGetResponses[keyof FctNodeMemoryUsageByProcessServiceGetResponses]; + +export type FctNodeNetworkIoByProcessServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + wallclock_slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + wallclock_slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + wallclock_slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + wallclock_slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + wallclock_slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + wallclock_slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + wallclock_slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + wallclock_slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + wallclock_slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + wallclock_slot_start_date_time_not_in_values?: string; + /** + * Name of the observoor client that collected the data (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the observoor client that collected the data (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the observoor client that collected the data (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the observoor client that collected the data (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the observoor client that collected the data (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the observoor client that collected the data (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the observoor client that collected the data (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the observoor client that collected the data (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the observoor client that collected the data (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Client type: CL or EL (filter: eq) + */ + client_type_eq?: string; + /** + * Client type: CL or EL (filter: ne) + */ + client_type_ne?: string; + /** + * Client type: CL or EL (filter: contains) + */ + client_type_contains?: string; + /** + * Client type: CL or EL (filter: starts_with) + */ + client_type_starts_with?: string; + /** + * Client type: CL or EL (filter: ends_with) + */ + client_type_ends_with?: string; + /** + * Client type: CL or EL (filter: like) + */ + client_type_like?: string; + /** + * Client type: CL or EL (filter: not_like) + */ + client_type_not_like?: string; + /** + * Client type: CL or EL (filter: in_values) (comma-separated list) + */ + client_type_in_values?: string; + /** + * Client type: CL or EL (filter: not_in_values) (comma-separated list) + */ + client_type_not_in_values?: string; + /** + * Process ID of the monitored client (filter: eq) + */ + pid_eq?: number; + /** + * Process ID of the monitored client (filter: ne) + */ + pid_ne?: number; + /** + * Process ID of the monitored client (filter: lt) + */ + pid_lt?: number; + /** + * Process ID of the monitored client (filter: lte) + */ + pid_lte?: number; + /** + * Process ID of the monitored client (filter: gt) + */ + pid_gt?: number; + /** + * Process ID of the monitored client (filter: gte) + */ + pid_gte?: number; + /** + * Process ID of the monitored client (filter: between_min) + */ + pid_between_min?: number; + /** + * Process ID of the monitored client (filter: between_max_value) + */ + pid_between_max_value?: number; + /** + * Process ID of the monitored client (filter: in_values) (comma-separated list) + */ + pid_in_values?: string; + /** + * Process ID of the monitored client (filter: not_in_values) (comma-separated list) + */ + pid_not_in_values?: string; + /** + * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: eq) + */ + port_label_eq?: string; + /** + * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: ne) + */ + port_label_ne?: string; + /** + * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: contains) + */ + port_label_contains?: string; + /** + * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: starts_with) + */ + port_label_starts_with?: string; + /** + * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: ends_with) + */ + port_label_ends_with?: string; + /** + * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: like) + */ + port_label_like?: string; + /** + * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: not_like) + */ + port_label_not_like?: string; + /** + * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: in_values) (comma-separated list) + */ + port_label_in_values?: string; + /** + * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: not_in_values) (comma-separated list) + */ + port_label_not_in_values?: string; + /** + * Traffic direction: tx or rx (filter: eq) + */ + direction_eq?: string; + /** + * Traffic direction: tx or rx (filter: ne) + */ + direction_ne?: string; + /** + * Traffic direction: tx or rx (filter: contains) + */ + direction_contains?: string; + /** + * Traffic direction: tx or rx (filter: starts_with) + */ + direction_starts_with?: string; + /** + * Traffic direction: tx or rx (filter: ends_with) + */ + direction_ends_with?: string; + /** + * Traffic direction: tx or rx (filter: like) + */ + direction_like?: string; + /** + * Traffic direction: tx or rx (filter: not_like) + */ + direction_not_like?: string; + /** + * Traffic direction: tx or rx (filter: in_values) (comma-separated list) + */ + direction_in_values?: string; + /** + * Traffic direction: tx or rx (filter: not_in_values) (comma-separated list) + */ + direction_not_in_values?: string; + /** + * Start of the sub-slot aggregation window (filter: eq) + */ + window_start_eq?: number; + /** + * Start of the sub-slot aggregation window (filter: ne) + */ + window_start_ne?: number; + /** + * Start of the sub-slot aggregation window (filter: lt) + */ + window_start_lt?: number; + /** + * Start of the sub-slot aggregation window (filter: lte) + */ + window_start_lte?: number; + /** + * Start of the sub-slot aggregation window (filter: gt) + */ + window_start_gt?: number; + /** + * Start of the sub-slot aggregation window (filter: gte) + */ + window_start_gte?: number; + /** + * Start of the sub-slot aggregation window (filter: between_min) + */ + window_start_between_min?: number; + /** + * Start of the sub-slot aggregation window (filter: between_max_value) + */ + window_start_between_max_value?: number; + /** + * Start of the sub-slot aggregation window (filter: in_values) (comma-separated list) + */ + window_start_in_values?: string; + /** + * Start of the sub-slot aggregation window (filter: not_in_values) (comma-separated list) + */ + window_start_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The wallclock slot number (filter: eq) + */ + wallclock_slot_eq?: number; + /** + * The wallclock slot number (filter: ne) + */ + wallclock_slot_ne?: number; + /** + * The wallclock slot number (filter: lt) + */ + wallclock_slot_lt?: number; + /** + * The wallclock slot number (filter: lte) + */ + wallclock_slot_lte?: number; + /** + * The wallclock slot number (filter: gt) + */ + wallclock_slot_gt?: number; + /** + * The wallclock slot number (filter: gte) + */ + wallclock_slot_gte?: number; + /** + * The wallclock slot number (filter: between_min) + */ + wallclock_slot_between_min?: number; + /** + * The wallclock slot number (filter: between_max_value) + */ + wallclock_slot_between_max_value?: number; + /** + * The wallclock slot number (filter: in_values) (comma-separated list) + */ + wallclock_slot_in_values?: string; + /** + * The wallclock slot number (filter: not_in_values) (comma-separated list) + */ + wallclock_slot_not_in_values?: string; + /** + * Ethereum network name (filter: eq) + */ + meta_network_name_eq?: string; + /** + * Ethereum network name (filter: ne) + */ + meta_network_name_ne?: string; + /** + * Ethereum network name (filter: contains) + */ + meta_network_name_contains?: string; + /** + * Ethereum network name (filter: starts_with) + */ + meta_network_name_starts_with?: string; + /** + * Ethereum network name (filter: ends_with) + */ + meta_network_name_ends_with?: string; + /** + * Ethereum network name (filter: like) + */ + meta_network_name_like?: string; + /** + * Ethereum network name (filter: not_like) + */ + meta_network_name_not_like?: string; + /** + * Ethereum network name (filter: in_values) (comma-separated list) + */ + meta_network_name_in_values?: string; + /** + * Ethereum network name (filter: not_in_values) (comma-separated list) + */ + meta_network_name_not_in_values?: string; + /** + * Filter io_bytes using value + */ + io_bytes_value?: number; + /** + * Total packet or event count in this window (filter: eq) + */ + io_count_eq?: number; + /** + * Total packet or event count in this window (filter: ne) + */ + io_count_ne?: number; + /** + * Total packet or event count in this window (filter: lt) + */ + io_count_lt?: number; + /** + * Total packet or event count in this window (filter: lte) + */ + io_count_lte?: number; + /** + * Total packet or event count in this window (filter: gt) + */ + io_count_gt?: number; + /** + * Total packet or event count in this window (filter: gte) + */ + io_count_gte?: number; + /** + * Total packet or event count in this window (filter: between_min) + */ + io_count_between_min?: number; + /** + * Total packet or event count in this window (filter: between_max_value) + */ + io_count_between_max_value?: number; + /** + * Total packet or event count in this window (filter: in_values) (comma-separated list) + */ + io_count_in_values?: string; + /** + * Total packet or event count in this window (filter: not_in_values) (comma-separated list) + */ + io_count_not_in_values?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for filtering (e.g. eip7870) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * The maximum number of fct_node_network_io_by_process to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctNodeNetworkIoByProcess` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_node_network_io_by_process'; +}; + +export type FctNodeNetworkIoByProcessServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctNodeNetworkIoByProcessServiceListError = + FctNodeNetworkIoByProcessServiceListErrors[keyof FctNodeNetworkIoByProcessServiceListErrors]; + +export type FctNodeNetworkIoByProcessServiceListResponses = { + /** + * OK + */ + 200: ListFctNodeNetworkIoByProcessResponse; +}; + +export type FctNodeNetworkIoByProcessServiceListResponse = + FctNodeNetworkIoByProcessServiceListResponses[keyof FctNodeNetworkIoByProcessServiceListResponses]; + +export type FctNodeNetworkIoByProcessServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + wallclock_slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_node_network_io_by_process/{wallclock_slot_start_date_time}'; +}; + +export type FctNodeNetworkIoByProcessServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctNodeNetworkIoByProcessServiceGetError = + FctNodeNetworkIoByProcessServiceGetErrors[keyof FctNodeNetworkIoByProcessServiceGetErrors]; + +export type FctNodeNetworkIoByProcessServiceGetResponses = { + /** + * OK + */ + 200: GetFctNodeNetworkIoByProcessResponse; +}; + +export type FctNodeNetworkIoByProcessServiceGetResponse = + FctNodeNetworkIoByProcessServiceGetResponses[keyof FctNodeNetworkIoByProcessServiceGetResponses]; + +export type FctOpcodeGasByOpcodeDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: eq) + */ + opcode_eq?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ne) + */ + opcode_ne?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: contains) + */ + opcode_contains?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: starts_with) + */ + opcode_starts_with?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ends_with) + */ + opcode_ends_with?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: like) + */ + opcode_like?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_like) + */ + opcode_not_like?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: in_values) (comma-separated list) + */ + opcode_in_values?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_in_values) (comma-separated list) + */ + opcode_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks containing this opcode in this day (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks containing this opcode in this day (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks containing this opcode in this day (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks containing this opcode in this day (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks containing this opcode in this day (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks containing this opcode in this day (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks containing this opcode in this day (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks containing this opcode in this day (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks containing this opcode in this day (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks containing this opcode in this day (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total execution count of this opcode in this day (filter: eq) + */ + total_count_eq?: number; + /** + * Total execution count of this opcode in this day (filter: ne) + */ + total_count_ne?: number; + /** + * Total execution count of this opcode in this day (filter: lt) + */ + total_count_lt?: number; + /** + * Total execution count of this opcode in this day (filter: lte) + */ + total_count_lte?: number; + /** + * Total execution count of this opcode in this day (filter: gt) + */ + total_count_gt?: number; + /** + * Total execution count of this opcode in this day (filter: gte) + */ + total_count_gte?: number; + /** + * Total execution count of this opcode in this day (filter: between_min) + */ + total_count_between_min?: number; + /** + * Total execution count of this opcode in this day (filter: between_max_value) + */ + total_count_between_max_value?: number; + /** + * Total execution count of this opcode in this day (filter: in_values) (comma-separated list) + */ + total_count_in_values?: string; + /** + * Total execution count of this opcode in this day (filter: not_in_values) (comma-separated list) + */ + total_count_not_in_values?: string; + /** + * Total gas consumed by this opcode in this day (filter: eq) + */ + total_gas_eq?: number; + /** + * Total gas consumed by this opcode in this day (filter: ne) + */ + total_gas_ne?: number; + /** + * Total gas consumed by this opcode in this day (filter: lt) + */ + total_gas_lt?: number; + /** + * Total gas consumed by this opcode in this day (filter: lte) + */ + total_gas_lte?: number; + /** + * Total gas consumed by this opcode in this day (filter: gt) + */ + total_gas_gt?: number; + /** + * Total gas consumed by this opcode in this day (filter: gte) + */ + total_gas_gte?: number; + /** + * Total gas consumed by this opcode in this day (filter: between_min) + */ + total_gas_between_min?: number; + /** + * Total gas consumed by this opcode in this day (filter: between_max_value) + */ + total_gas_between_max_value?: number; + /** + * Total gas consumed by this opcode in this day (filter: in_values) (comma-separated list) + */ + total_gas_in_values?: string; + /** + * Total gas consumed by this opcode in this day (filter: not_in_values) (comma-separated list) + */ + total_gas_not_in_values?: string; + /** + * Total error count for this opcode in this day (filter: eq) + */ + total_error_count_eq?: number; + /** + * Total error count for this opcode in this day (filter: ne) + */ + total_error_count_ne?: number; + /** + * Total error count for this opcode in this day (filter: lt) + */ + total_error_count_lt?: number; + /** + * Total error count for this opcode in this day (filter: lte) + */ + total_error_count_lte?: number; + /** + * Total error count for this opcode in this day (filter: gt) + */ + total_error_count_gt?: number; + /** + * Total error count for this opcode in this day (filter: gte) + */ + total_error_count_gte?: number; + /** + * Total error count for this opcode in this day (filter: between_min) + */ + total_error_count_between_min?: number; + /** + * Total error count for this opcode in this day (filter: between_max_value) + */ + total_error_count_between_max_value?: number; + /** + * Total error count for this opcode in this day (filter: in_values) (comma-separated list) + */ + total_error_count_in_values?: string; + /** + * Total error count for this opcode in this day (filter: not_in_values) (comma-separated list) + */ + total_error_count_not_in_values?: string; + /** + * Filter avg_count_per_block using value + */ + avg_count_per_block_value?: number; + /** + * Filter avg_gas_per_block using value + */ + avg_gas_per_block_value?: number; + /** + * Filter avg_gas_per_execution using value + */ + avg_gas_per_execution_value?: number; + /** + * The maximum number of fct_opcode_gas_by_opcode_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctOpcodeGasByOpcodeDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_opcode_gas_by_opcode_daily'; +}; + +export type FctOpcodeGasByOpcodeDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctOpcodeGasByOpcodeDailyServiceListError = + FctOpcodeGasByOpcodeDailyServiceListErrors[keyof FctOpcodeGasByOpcodeDailyServiceListErrors]; + +export type FctOpcodeGasByOpcodeDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctOpcodeGasByOpcodeDailyResponse; +}; + +export type FctOpcodeGasByOpcodeDailyServiceListResponse = + FctOpcodeGasByOpcodeDailyServiceListResponses[keyof FctOpcodeGasByOpcodeDailyServiceListResponses]; + +export type FctOpcodeGasByOpcodeDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_opcode_gas_by_opcode_daily/{day_start_date}'; +}; + +export type FctOpcodeGasByOpcodeDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctOpcodeGasByOpcodeDailyServiceGetError = + FctOpcodeGasByOpcodeDailyServiceGetErrors[keyof FctOpcodeGasByOpcodeDailyServiceGetErrors]; + +export type FctOpcodeGasByOpcodeDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctOpcodeGasByOpcodeDailyResponse; +}; + +export type FctOpcodeGasByOpcodeDailyServiceGetResponse = + FctOpcodeGasByOpcodeDailyServiceGetResponses[keyof FctOpcodeGasByOpcodeDailyServiceGetResponses]; + +export type FctOpcodeGasByOpcodeHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: eq) + */ + opcode_eq?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ne) + */ + opcode_ne?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: contains) + */ + opcode_contains?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: starts_with) + */ + opcode_starts_with?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ends_with) + */ + opcode_ends_with?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: like) + */ + opcode_like?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_like) + */ + opcode_not_like?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: in_values) (comma-separated list) + */ + opcode_in_values?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_in_values) (comma-separated list) + */ + opcode_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks containing this opcode in this hour (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks containing this opcode in this hour (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks containing this opcode in this hour (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks containing this opcode in this hour (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks containing this opcode in this hour (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks containing this opcode in this hour (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks containing this opcode in this hour (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks containing this opcode in this hour (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks containing this opcode in this hour (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks containing this opcode in this hour (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total execution count of this opcode in this hour (filter: eq) + */ + total_count_eq?: number; + /** + * Total execution count of this opcode in this hour (filter: ne) + */ + total_count_ne?: number; + /** + * Total execution count of this opcode in this hour (filter: lt) + */ + total_count_lt?: number; + /** + * Total execution count of this opcode in this hour (filter: lte) + */ + total_count_lte?: number; + /** + * Total execution count of this opcode in this hour (filter: gt) + */ + total_count_gt?: number; + /** + * Total execution count of this opcode in this hour (filter: gte) + */ + total_count_gte?: number; + /** + * Total execution count of this opcode in this hour (filter: between_min) + */ + total_count_between_min?: number; + /** + * Total execution count of this opcode in this hour (filter: between_max_value) + */ + total_count_between_max_value?: number; + /** + * Total execution count of this opcode in this hour (filter: in_values) (comma-separated list) + */ + total_count_in_values?: string; + /** + * Total execution count of this opcode in this hour (filter: not_in_values) (comma-separated list) + */ + total_count_not_in_values?: string; + /** + * Total gas consumed by this opcode in this hour (filter: eq) + */ + total_gas_eq?: number; + /** + * Total gas consumed by this opcode in this hour (filter: ne) + */ + total_gas_ne?: number; + /** + * Total gas consumed by this opcode in this hour (filter: lt) + */ + total_gas_lt?: number; + /** + * Total gas consumed by this opcode in this hour (filter: lte) + */ + total_gas_lte?: number; + /** + * Total gas consumed by this opcode in this hour (filter: gt) + */ + total_gas_gt?: number; + /** + * Total gas consumed by this opcode in this hour (filter: gte) + */ + total_gas_gte?: number; + /** + * Total gas consumed by this opcode in this hour (filter: between_min) + */ + total_gas_between_min?: number; + /** + * Total gas consumed by this opcode in this hour (filter: between_max_value) + */ + total_gas_between_max_value?: number; + /** + * Total gas consumed by this opcode in this hour (filter: in_values) (comma-separated list) + */ + total_gas_in_values?: string; + /** + * Total gas consumed by this opcode in this hour (filter: not_in_values) (comma-separated list) + */ + total_gas_not_in_values?: string; + /** + * Total error count for this opcode in this hour (filter: eq) + */ + total_error_count_eq?: number; + /** + * Total error count for this opcode in this hour (filter: ne) + */ + total_error_count_ne?: number; + /** + * Total error count for this opcode in this hour (filter: lt) + */ + total_error_count_lt?: number; + /** + * Total error count for this opcode in this hour (filter: lte) + */ + total_error_count_lte?: number; + /** + * Total error count for this opcode in this hour (filter: gt) + */ + total_error_count_gt?: number; + /** + * Total error count for this opcode in this hour (filter: gte) + */ + total_error_count_gte?: number; + /** + * Total error count for this opcode in this hour (filter: between_min) + */ + total_error_count_between_min?: number; + /** + * Total error count for this opcode in this hour (filter: between_max_value) + */ + total_error_count_between_max_value?: number; + /** + * Total error count for this opcode in this hour (filter: in_values) (comma-separated list) + */ + total_error_count_in_values?: string; + /** + * Total error count for this opcode in this hour (filter: not_in_values) (comma-separated list) + */ + total_error_count_not_in_values?: string; + /** + * Filter avg_count_per_block using value + */ + avg_count_per_block_value?: number; + /** + * Filter avg_gas_per_block using value + */ + avg_gas_per_block_value?: number; + /** + * Filter avg_gas_per_execution using value + */ + avg_gas_per_execution_value?: number; + /** + * The maximum number of fct_opcode_gas_by_opcode_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctOpcodeGasByOpcodeHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_opcode_gas_by_opcode_hourly'; +}; + +export type FctOpcodeGasByOpcodeHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctOpcodeGasByOpcodeHourlyServiceListError = + FctOpcodeGasByOpcodeHourlyServiceListErrors[keyof FctOpcodeGasByOpcodeHourlyServiceListErrors]; + +export type FctOpcodeGasByOpcodeHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctOpcodeGasByOpcodeHourlyResponse; +}; + +export type FctOpcodeGasByOpcodeHourlyServiceListResponse = + FctOpcodeGasByOpcodeHourlyServiceListResponses[keyof FctOpcodeGasByOpcodeHourlyServiceListResponses]; + +export type FctOpcodeGasByOpcodeHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_opcode_gas_by_opcode_hourly/{hour_start_date_time}'; +}; + +export type FctOpcodeGasByOpcodeHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctOpcodeGasByOpcodeHourlyServiceGetError = + FctOpcodeGasByOpcodeHourlyServiceGetErrors[keyof FctOpcodeGasByOpcodeHourlyServiceGetErrors]; + +export type FctOpcodeGasByOpcodeHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctOpcodeGasByOpcodeHourlyResponse; +}; + +export type FctOpcodeGasByOpcodeHourlyServiceGetResponse = + FctOpcodeGasByOpcodeHourlyServiceGetResponses[keyof FctOpcodeGasByOpcodeHourlyServiceGetResponses]; + +export type FctOpcodeOpsDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks in this day (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks in this day (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks in this day (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks in this day (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks in this day (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks in this day (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks in this day (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks in this day (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks in this day (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks in this day (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total opcode executions in this day (filter: eq) + */ + total_opcode_count_eq?: number; + /** + * Total opcode executions in this day (filter: ne) + */ + total_opcode_count_ne?: number; + /** + * Total opcode executions in this day (filter: lt) + */ + total_opcode_count_lt?: number; + /** + * Total opcode executions in this day (filter: lte) + */ + total_opcode_count_lte?: number; + /** + * Total opcode executions in this day (filter: gt) + */ + total_opcode_count_gt?: number; + /** + * Total opcode executions in this day (filter: gte) + */ + total_opcode_count_gte?: number; + /** + * Total opcode executions in this day (filter: between_min) + */ + total_opcode_count_between_min?: number; + /** + * Total opcode executions in this day (filter: between_max_value) + */ + total_opcode_count_between_max_value?: number; + /** + * Total opcode executions in this day (filter: in_values) (comma-separated list) + */ + total_opcode_count_in_values?: string; + /** + * Total opcode executions in this day (filter: not_in_values) (comma-separated list) + */ + total_opcode_count_not_in_values?: string; + /** + * Total gas consumed by opcodes in this day (filter: eq) + */ + total_gas_eq?: number; + /** + * Total gas consumed by opcodes in this day (filter: ne) + */ + total_gas_ne?: number; + /** + * Total gas consumed by opcodes in this day (filter: lt) + */ + total_gas_lt?: number; + /** + * Total gas consumed by opcodes in this day (filter: lte) + */ + total_gas_lte?: number; + /** + * Total gas consumed by opcodes in this day (filter: gt) + */ + total_gas_gt?: number; + /** + * Total gas consumed by opcodes in this day (filter: gte) + */ + total_gas_gte?: number; + /** + * Total gas consumed by opcodes in this day (filter: between_min) + */ + total_gas_between_min?: number; + /** + * Total gas consumed by opcodes in this day (filter: between_max_value) + */ + total_gas_between_max_value?: number; + /** + * Total gas consumed by opcodes in this day (filter: in_values) (comma-separated list) + */ + total_gas_in_values?: string; + /** + * Total gas consumed by opcodes in this day (filter: not_in_values) (comma-separated list) + */ + total_gas_not_in_values?: string; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: eq) + */ + total_seconds_eq?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: ne) + */ + total_seconds_ne?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: lt) + */ + total_seconds_lt?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: lte) + */ + total_seconds_lte?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: gt) + */ + total_seconds_gt?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: gte) + */ + total_seconds_gte?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_min) + */ + total_seconds_between_min?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_max_value) + */ + total_seconds_between_max_value?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: in_values) (comma-separated list) + */ + total_seconds_in_values?: string; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: not_in_values) (comma-separated list) + */ + total_seconds_not_in_values?: string; + /** + * Filter avg_ops using value + */ + avg_ops_value?: number; + /** + * Filter min_ops using value + */ + min_ops_value?: number; + /** + * Filter max_ops using value + */ + max_ops_value?: number; + /** + * Filter p05_ops using value + */ + p05_ops_value?: number; + /** + * Filter p50_ops using value + */ + p50_ops_value?: number; + /** + * Filter p95_ops using value + */ + p95_ops_value?: number; + /** + * Filter stddev_ops using value + */ + stddev_ops_value?: number; + /** + * Filter upper_band_ops using value + */ + upper_band_ops_value?: number; + /** + * Filter lower_band_ops using value + */ + lower_band_ops_value?: number; + /** + * Filter moving_avg_ops using value + */ + moving_avg_ops_value?: number; + /** + * The maximum number of fct_opcode_ops_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctOpcodeOpsDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_opcode_ops_daily'; +}; + +export type FctOpcodeOpsDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctOpcodeOpsDailyServiceListError = + FctOpcodeOpsDailyServiceListErrors[keyof FctOpcodeOpsDailyServiceListErrors]; + +export type FctOpcodeOpsDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctOpcodeOpsDailyResponse; +}; + +export type FctOpcodeOpsDailyServiceListResponse = + FctOpcodeOpsDailyServiceListResponses[keyof FctOpcodeOpsDailyServiceListResponses]; + +export type FctOpcodeOpsDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_opcode_ops_daily/{day_start_date}'; +}; + +export type FctOpcodeOpsDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctOpcodeOpsDailyServiceGetError = + FctOpcodeOpsDailyServiceGetErrors[keyof FctOpcodeOpsDailyServiceGetErrors]; + +export type FctOpcodeOpsDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctOpcodeOpsDailyResponse; +}; + +export type FctOpcodeOpsDailyServiceGetResponse = + FctOpcodeOpsDailyServiceGetResponses[keyof FctOpcodeOpsDailyServiceGetResponses]; + +export type FctOpcodeOpsHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks in this hour (filter: eq) + */ + block_count_eq?: number; + /** + * Number of blocks in this hour (filter: ne) + */ + block_count_ne?: number; + /** + * Number of blocks in this hour (filter: lt) + */ + block_count_lt?: number; + /** + * Number of blocks in this hour (filter: lte) + */ + block_count_lte?: number; + /** + * Number of blocks in this hour (filter: gt) + */ + block_count_gt?: number; + /** + * Number of blocks in this hour (filter: gte) + */ + block_count_gte?: number; + /** + * Number of blocks in this hour (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of blocks in this hour (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of blocks in this hour (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of blocks in this hour (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Total opcode executions in this hour (filter: eq) + */ + total_opcode_count_eq?: number; + /** + * Total opcode executions in this hour (filter: ne) + */ + total_opcode_count_ne?: number; + /** + * Total opcode executions in this hour (filter: lt) + */ + total_opcode_count_lt?: number; + /** + * Total opcode executions in this hour (filter: lte) + */ + total_opcode_count_lte?: number; + /** + * Total opcode executions in this hour (filter: gt) + */ + total_opcode_count_gt?: number; + /** + * Total opcode executions in this hour (filter: gte) + */ + total_opcode_count_gte?: number; + /** + * Total opcode executions in this hour (filter: between_min) + */ + total_opcode_count_between_min?: number; + /** + * Total opcode executions in this hour (filter: between_max_value) + */ + total_opcode_count_between_max_value?: number; + /** + * Total opcode executions in this hour (filter: in_values) (comma-separated list) + */ + total_opcode_count_in_values?: string; + /** + * Total opcode executions in this hour (filter: not_in_values) (comma-separated list) + */ + total_opcode_count_not_in_values?: string; + /** + * Total gas consumed by opcodes in this hour (filter: eq) + */ + total_gas_eq?: number; + /** + * Total gas consumed by opcodes in this hour (filter: ne) + */ + total_gas_ne?: number; + /** + * Total gas consumed by opcodes in this hour (filter: lt) + */ + total_gas_lt?: number; + /** + * Total gas consumed by opcodes in this hour (filter: lte) + */ + total_gas_lte?: number; + /** + * Total gas consumed by opcodes in this hour (filter: gt) + */ + total_gas_gt?: number; + /** + * Total gas consumed by opcodes in this hour (filter: gte) + */ + total_gas_gte?: number; + /** + * Total gas consumed by opcodes in this hour (filter: between_min) + */ + total_gas_between_min?: number; + /** + * Total gas consumed by opcodes in this hour (filter: between_max_value) + */ + total_gas_between_max_value?: number; + /** + * Total gas consumed by opcodes in this hour (filter: in_values) (comma-separated list) + */ + total_gas_in_values?: string; + /** + * Total gas consumed by opcodes in this hour (filter: not_in_values) (comma-separated list) + */ + total_gas_not_in_values?: string; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: eq) + */ + total_seconds_eq?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: ne) + */ + total_seconds_ne?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: lt) + */ + total_seconds_lt?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: lte) + */ + total_seconds_lte?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: gt) + */ + total_seconds_gt?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: gte) + */ + total_seconds_gte?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_min) + */ + total_seconds_between_min?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_max_value) + */ + total_seconds_between_max_value?: number; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: in_values) (comma-separated list) + */ + total_seconds_in_values?: string; + /** + * Total actual seconds covered by blocks (sum of block time gaps) (filter: not_in_values) (comma-separated list) + */ + total_seconds_not_in_values?: string; + /** + * Filter avg_ops using value + */ + avg_ops_value?: number; + /** + * Filter min_ops using value + */ + min_ops_value?: number; + /** + * Filter max_ops using value + */ + max_ops_value?: number; + /** + * Filter p05_ops using value + */ + p05_ops_value?: number; + /** + * Filter p50_ops using value + */ + p50_ops_value?: number; + /** + * Filter p95_ops using value + */ + p95_ops_value?: number; + /** + * Filter stddev_ops using value + */ + stddev_ops_value?: number; + /** + * Filter upper_band_ops using value + */ + upper_band_ops_value?: number; + /** + * Filter lower_band_ops using value + */ + lower_band_ops_value?: number; + /** + * Filter moving_avg_ops using value + */ + moving_avg_ops_value?: number; + /** + * The maximum number of fct_opcode_ops_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctOpcodeOpsHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_opcode_ops_hourly'; +}; + +export type FctOpcodeOpsHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctOpcodeOpsHourlyServiceListError = + FctOpcodeOpsHourlyServiceListErrors[keyof FctOpcodeOpsHourlyServiceListErrors]; + +export type FctOpcodeOpsHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctOpcodeOpsHourlyResponse; +}; + +export type FctOpcodeOpsHourlyServiceListResponse = + FctOpcodeOpsHourlyServiceListResponses[keyof FctOpcodeOpsHourlyServiceListResponses]; + +export type FctOpcodeOpsHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_opcode_ops_hourly/{hour_start_date_time}'; +}; + +export type FctOpcodeOpsHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctOpcodeOpsHourlyServiceGetError = + FctOpcodeOpsHourlyServiceGetErrors[keyof FctOpcodeOpsHourlyServiceGetErrors]; + +export type FctOpcodeOpsHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctOpcodeOpsHourlyResponse; +}; + +export type FctOpcodeOpsHourlyServiceGetResponse = + FctOpcodeOpsHourlyServiceGetResponses[keyof FctOpcodeOpsHourlyServiceGetResponses]; + +export type FctPayloadBidHighestValueByBuilderChunked50MsServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The start time for the slot that the bid is for (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The start time for the slot that the bid is for (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The start time for the slot that the bid is for (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The start time for the slot that the bid is for (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The start time for the slot that the bid is for (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The start time for the slot that the bid is for (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The start time for the slot that the bid is for (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The start time for the slot that the bid is for (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The start time for the slot that the bid is for (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The start time for the slot that the bid is for (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest observation of this bid was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: eq) + */ + chunk_slot_start_diff_eq?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest observation of this bid was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: ne) + */ + chunk_slot_start_diff_ne?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest observation of this bid was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: lt) + */ + chunk_slot_start_diff_lt?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest observation of this bid was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: lte) + */ + chunk_slot_start_diff_lte?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest observation of this bid was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: gt) + */ + chunk_slot_start_diff_gt?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest observation of this bid was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: gte) + */ + chunk_slot_start_diff_gte?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest observation of this bid was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: between_min) + */ + chunk_slot_start_diff_between_min?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest observation of this bid was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: between_max_value) + */ + chunk_slot_start_diff_between_max_value?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest observation of this bid was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: in_values) (comma-separated list) + */ + chunk_slot_start_diff_in_values?: string; + /** + * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest observation of this bid was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: not_in_values) (comma-separated list) + */ + chunk_slot_start_diff_not_in_values?: string; + /** + * Validator index of the builder that produced the bid (filter: eq) + */ + builder_index_eq?: number; + /** + * Validator index of the builder that produced the bid (filter: ne) + */ + builder_index_ne?: number; + /** + * Validator index of the builder that produced the bid (filter: lt) + */ + builder_index_lt?: number; + /** + * Validator index of the builder that produced the bid (filter: lte) + */ + builder_index_lte?: number; + /** + * Validator index of the builder that produced the bid (filter: gt) + */ + builder_index_gt?: number; + /** + * Validator index of the builder that produced the bid (filter: gte) + */ + builder_index_gte?: number; + /** + * Validator index of the builder that produced the bid (filter: between_min) + */ + builder_index_between_min?: number; + /** + * Validator index of the builder that produced the bid (filter: between_max_value) + */ + builder_index_between_max_value?: number; + /** + * Validator index of the builder that produced the bid (filter: in_values) (comma-separated list) + */ + builder_index_in_values?: string; + /** + * Validator index of the builder that produced the bid (filter: not_in_values) (comma-separated list) + */ + builder_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number the bid targets (filter: eq) + */ + slot_eq?: number; + /** + * Slot number the bid targets (filter: ne) + */ + slot_ne?: number; + /** + * Slot number the bid targets (filter: lt) + */ + slot_lt?: number; + /** + * Slot number the bid targets (filter: lte) + */ + slot_lte?: number; + /** + * Slot number the bid targets (filter: gt) + */ + slot_gt?: number; + /** + * Slot number the bid targets (filter: gte) + */ + slot_gte?: number; + /** + * Slot number the bid targets (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number the bid targets (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number the bid targets (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number the bid targets (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot that the bid is for (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot that the bid is for (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The start time for the epoch that the bid is for (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The start time for the epoch that the bid is for (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The start time for the epoch that the bid is for (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The start time for the epoch that the bid is for (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The start time for the epoch that the bid is for (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The start time for the epoch that the bid is for (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The start time for the epoch that the bid is for (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The start time for the epoch that the bid is for (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The start time for the epoch that the bid is for (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The start time for the epoch that the bid is for (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The timestamp of the earliest observation of the highest-value bid in this chunk (filter: eq) + */ + earliest_bid_date_time_eq?: number; + /** + * The timestamp of the earliest observation of the highest-value bid in this chunk (filter: ne) + */ + earliest_bid_date_time_ne?: number; + /** + * The timestamp of the earliest observation of the highest-value bid in this chunk (filter: lt) + */ + earliest_bid_date_time_lt?: number; + /** + * The timestamp of the earliest observation of the highest-value bid in this chunk (filter: lte) + */ + earliest_bid_date_time_lte?: number; + /** + * The timestamp of the earliest observation of the highest-value bid in this chunk (filter: gt) + */ + earliest_bid_date_time_gt?: number; + /** + * The timestamp of the earliest observation of the highest-value bid in this chunk (filter: gte) + */ + earliest_bid_date_time_gte?: number; + /** + * The timestamp of the earliest observation of the highest-value bid in this chunk (filter: between_min) + */ + earliest_bid_date_time_between_min?: number; + /** + * The timestamp of the earliest observation of the highest-value bid in this chunk (filter: between_max_value) + */ + earliest_bid_date_time_between_max_value?: number; + /** + * The timestamp of the earliest observation of the highest-value bid in this chunk (filter: in_values) (comma-separated list) + */ + earliest_bid_date_time_in_values?: string; + /** + * The timestamp of the earliest observation of the highest-value bid in this chunk (filter: not_in_values) (comma-separated list) + */ + earliest_bid_date_time_not_in_values?: string; + /** + * The execution block hash committed to in the bid (filter: eq) + */ + block_hash_eq?: string; + /** + * The execution block hash committed to in the bid (filter: ne) + */ + block_hash_ne?: string; + /** + * The execution block hash committed to in the bid (filter: contains) + */ + block_hash_contains?: string; + /** + * The execution block hash committed to in the bid (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * The execution block hash committed to in the bid (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * The execution block hash committed to in the bid (filter: like) + */ + block_hash_like?: string; + /** + * The execution block hash committed to in the bid (filter: not_like) + */ + block_hash_not_like?: string; + /** + * The execution block hash committed to in the bid (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * The execution block hash committed to in the bid (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * The bid value in wei (filter: eq) + */ + value_eq?: string; + /** + * The bid value in wei (filter: ne) + */ + value_ne?: string; + /** + * The bid value in wei (filter: contains) + */ + value_contains?: string; + /** + * The bid value in wei (filter: starts_with) + */ + value_starts_with?: string; + /** + * The bid value in wei (filter: ends_with) + */ + value_ends_with?: string; + /** + * The bid value in wei (filter: like) + */ + value_like?: string; + /** + * The bid value in wei (filter: not_like) + */ + value_not_like?: string; + /** + * The bid value in wei (filter: in_values) (comma-separated list) + */ + value_in_values?: string; + /** + * The bid value in wei (filter: not_in_values) (comma-separated list) + */ + value_not_in_values?: string; + /** + * The execution payment in wei (filter: eq) + */ + execution_payment_eq?: string; + /** + * The execution payment in wei (filter: ne) + */ + execution_payment_ne?: string; + /** + * The execution payment in wei (filter: contains) + */ + execution_payment_contains?: string; + /** + * The execution payment in wei (filter: starts_with) + */ + execution_payment_starts_with?: string; + /** + * The execution payment in wei (filter: ends_with) + */ + execution_payment_ends_with?: string; + /** + * The execution payment in wei (filter: like) + */ + execution_payment_like?: string; + /** + * The execution payment in wei (filter: not_like) + */ + execution_payment_not_like?: string; + /** + * The execution payment in wei (filter: in_values) (comma-separated list) + */ + execution_payment_in_values?: string; + /** + * The execution payment in wei (filter: not_in_values) (comma-separated list) + */ + execution_payment_not_in_values?: string; + /** + * The fee recipient address of the bid (filter: eq) + */ + fee_recipient_eq?: string; + /** + * The fee recipient address of the bid (filter: ne) + */ + fee_recipient_ne?: string; + /** + * The fee recipient address of the bid (filter: contains) + */ + fee_recipient_contains?: string; + /** + * The fee recipient address of the bid (filter: starts_with) + */ + fee_recipient_starts_with?: string; + /** + * The fee recipient address of the bid (filter: ends_with) + */ + fee_recipient_ends_with?: string; + /** + * The fee recipient address of the bid (filter: like) + */ + fee_recipient_like?: string; + /** + * The fee recipient address of the bid (filter: not_like) + */ + fee_recipient_not_like?: string; + /** + * The fee recipient address of the bid (filter: in_values) (comma-separated list) + */ + fee_recipient_in_values?: string; + /** + * The fee recipient address of the bid (filter: not_in_values) (comma-separated list) + */ + fee_recipient_not_in_values?: string; + /** + * The maximum number of fct_payload_bid_highest_value_by_builder_chunked_50ms to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctPayloadBidHighestValueByBuilderChunked50ms` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_payload_bid_highest_value_by_builder_chunked_50ms'; +}; + +export type FctPayloadBidHighestValueByBuilderChunked50MsServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctPayloadBidHighestValueByBuilderChunked50MsServiceListError = + FctPayloadBidHighestValueByBuilderChunked50MsServiceListErrors[keyof FctPayloadBidHighestValueByBuilderChunked50MsServiceListErrors]; + +export type FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponses = { + /** + * OK + */ + 200: ListFctPayloadBidHighestValueByBuilderChunked50MsResponse; +}; + +export type FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse = + FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponses[keyof FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponses]; + +export type FctPayloadBidHighestValueByBuilderChunked50MsServiceGetData = { + body?: never; + path: { + /** + * The start time for the slot that the bid is for + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_payload_bid_highest_value_by_builder_chunked_50ms/{slot_start_date_time}'; +}; + +export type FctPayloadBidHighestValueByBuilderChunked50MsServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctPayloadBidHighestValueByBuilderChunked50MsServiceGetError = + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetErrors[keyof FctPayloadBidHighestValueByBuilderChunked50MsServiceGetErrors]; + +export type FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponses = { + /** + * OK + */ + 200: GetFctPayloadBidHighestValueByBuilderChunked50MsResponse; +}; + +export type FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse = + FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponses[keyof FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponses]; + +export type FctPreparedBlockServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The slot number from beacon block (filter: eq) + */ + slot_eq?: number; + /** + * The slot number from beacon block (filter: ne) + */ + slot_ne?: number; + /** + * The slot number from beacon block (filter: lt) + */ + slot_lt?: number; + /** + * The slot number from beacon block (filter: lte) + */ + slot_lte?: number; + /** + * The slot number from beacon block (filter: gt) + */ + slot_gt?: number; + /** + * The slot number from beacon block (filter: gte) + */ + slot_gte?: number; + /** + * The slot number from beacon block (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number from beacon block (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number from beacon block (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number from beacon block (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Name of the client that generated the event (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client that generated the event (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client that generated the event (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client that generated the event (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client that generated the event (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client that generated the event (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client that generated the event (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * The wall clock time when the event was received (filter: eq) + */ + event_date_time_eq?: number; + /** + * The wall clock time when the event was received (filter: ne) + */ + event_date_time_ne?: number; + /** + * The wall clock time when the event was received (filter: lt) + */ + event_date_time_lt?: number; + /** + * The wall clock time when the event was received (filter: lte) + */ + event_date_time_lte?: number; + /** + * The wall clock time when the event was received (filter: gt) + */ + event_date_time_gt?: number; + /** + * The wall clock time when the event was received (filter: gte) + */ + event_date_time_gte?: number; + /** + * The wall clock time when the event was received (filter: between_min) + */ + event_date_time_between_min?: number; + /** + * The wall clock time when the event was received (filter: between_max_value) + */ + event_date_time_between_max_value?: number; + /** + * The wall clock time when the event was received (filter: in_values) (comma-separated list) + */ + event_date_time_in_values?: string; + /** + * The wall clock time when the event was received (filter: not_in_values) (comma-separated list) + */ + event_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Version of the client that generated the event (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client that generated the event (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client that generated the event (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client that generated the event (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client that generated the event (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client that generated the event (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client that generated the event (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client that generated the event (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client that generated the event (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client that generated the event (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client that generated the event (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client that generated the event (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client that generated the event (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client that generated the event (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * Consensus implementation of the validator (filter: eq) + */ + meta_consensus_implementation_eq?: string; + /** + * Consensus implementation of the validator (filter: ne) + */ + meta_consensus_implementation_ne?: string; + /** + * Consensus implementation of the validator (filter: contains) + */ + meta_consensus_implementation_contains?: string; + /** + * Consensus implementation of the validator (filter: starts_with) + */ + meta_consensus_implementation_starts_with?: string; + /** + * Consensus implementation of the validator (filter: ends_with) + */ + meta_consensus_implementation_ends_with?: string; + /** + * Consensus implementation of the validator (filter: like) + */ + meta_consensus_implementation_like?: string; + /** + * Consensus implementation of the validator (filter: not_like) + */ + meta_consensus_implementation_not_like?: string; + /** + * Consensus implementation of the validator (filter: in_values) (comma-separated list) + */ + meta_consensus_implementation_in_values?: string; + /** + * Consensus implementation of the validator (filter: not_in_values) (comma-separated list) + */ + meta_consensus_implementation_not_in_values?: string; + /** + * Consensus version of the validator (filter: eq) + */ + meta_consensus_version_eq?: string; + /** + * Consensus version of the validator (filter: ne) + */ + meta_consensus_version_ne?: string; + /** + * Consensus version of the validator (filter: contains) + */ + meta_consensus_version_contains?: string; + /** + * Consensus version of the validator (filter: starts_with) + */ + meta_consensus_version_starts_with?: string; + /** + * Consensus version of the validator (filter: ends_with) + */ + meta_consensus_version_ends_with?: string; + /** + * Consensus version of the validator (filter: like) + */ + meta_consensus_version_like?: string; + /** + * Consensus version of the validator (filter: not_like) + */ + meta_consensus_version_not_like?: string; + /** + * Consensus version of the validator (filter: in_values) (comma-separated list) + */ + meta_consensus_version_in_values?: string; + /** + * Consensus version of the validator (filter: not_in_values) (comma-separated list) + */ + meta_consensus_version_not_in_values?: string; + /** + * City of the client that generated the event (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client that generated the event (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client that generated the event (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client that generated the event (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client that generated the event (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client that generated the event (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client that generated the event (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client that generated the event (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client that generated the event (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client that generated the event (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client that generated the event (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client that generated the event (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client that generated the event (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client that generated the event (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client that generated the event (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client that generated the event (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client that generated the event (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client that generated the event (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client that generated the event (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client that generated the event (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client that generated the event (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * The version of the beacon block (filter: eq) + */ + block_version_eq?: string; + /** + * The version of the beacon block (filter: ne) + */ + block_version_ne?: string; + /** + * The version of the beacon block (filter: contains) + */ + block_version_contains?: string; + /** + * The version of the beacon block (filter: starts_with) + */ + block_version_starts_with?: string; + /** + * The version of the beacon block (filter: ends_with) + */ + block_version_ends_with?: string; + /** + * The version of the beacon block (filter: like) + */ + block_version_like?: string; + /** + * The version of the beacon block (filter: not_like) + */ + block_version_not_like?: string; + /** + * The version of the beacon block (filter: in_values) (comma-separated list) + */ + block_version_in_values?: string; + /** + * The version of the beacon block (filter: not_in_values) (comma-separated list) + */ + block_version_not_in_values?: string; + /** + * The total bytes of the beacon block payload (filter: eq) + */ + block_total_bytes_eq?: number; + /** + * The total bytes of the beacon block payload (filter: ne) + */ + block_total_bytes_ne?: number; + /** + * The total bytes of the beacon block payload (filter: lt) + */ + block_total_bytes_lt?: number; + /** + * The total bytes of the beacon block payload (filter: lte) + */ + block_total_bytes_lte?: number; + /** + * The total bytes of the beacon block payload (filter: gt) + */ + block_total_bytes_gt?: number; + /** + * The total bytes of the beacon block payload (filter: gte) + */ + block_total_bytes_gte?: number; + /** + * The total bytes of the beacon block payload (filter: between_min) + */ + block_total_bytes_between_min?: number; + /** + * The total bytes of the beacon block payload (filter: between_max_value) + */ + block_total_bytes_between_max_value?: number; + /** + * The total bytes of the beacon block payload (filter: in_values) (comma-separated list) + */ + block_total_bytes_in_values?: string; + /** + * The total bytes of the beacon block payload (filter: not_in_values) (comma-separated list) + */ + block_total_bytes_not_in_values?: string; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: eq) + */ + block_total_bytes_compressed_eq?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: ne) + */ + block_total_bytes_compressed_ne?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: lt) + */ + block_total_bytes_compressed_lt?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: lte) + */ + block_total_bytes_compressed_lte?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: gt) + */ + block_total_bytes_compressed_gt?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: gte) + */ + block_total_bytes_compressed_gte?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: between_min) + */ + block_total_bytes_compressed_between_min?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: between_max_value) + */ + block_total_bytes_compressed_between_max_value?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: in_values) (comma-separated list) + */ + block_total_bytes_compressed_in_values?: string; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: not_in_values) (comma-separated list) + */ + block_total_bytes_compressed_not_in_values?: string; + /** + * The value of the execution payload in wei (filter: eq) + */ + execution_payload_value_eq?: string; + /** + * The value of the execution payload in wei (filter: ne) + */ + execution_payload_value_ne?: string; + /** + * The value of the execution payload in wei (filter: contains) + */ + execution_payload_value_contains?: string; + /** + * The value of the execution payload in wei (filter: starts_with) + */ + execution_payload_value_starts_with?: string; + /** + * The value of the execution payload in wei (filter: ends_with) + */ + execution_payload_value_ends_with?: string; + /** + * The value of the execution payload in wei (filter: like) + */ + execution_payload_value_like?: string; + /** + * The value of the execution payload in wei (filter: not_like) + */ + execution_payload_value_not_like?: string; + /** + * The value of the execution payload in wei (filter: in_values) (comma-separated list) + */ + execution_payload_value_in_values?: string; + /** + * The value of the execution payload in wei (filter: not_in_values) (comma-separated list) + */ + execution_payload_value_not_in_values?: string; + /** + * The value of the consensus payload in wei (filter: eq) + */ + consensus_payload_value_eq?: string; + /** + * The value of the consensus payload in wei (filter: ne) + */ + consensus_payload_value_ne?: string; + /** + * The value of the consensus payload in wei (filter: contains) + */ + consensus_payload_value_contains?: string; + /** + * The value of the consensus payload in wei (filter: starts_with) + */ + consensus_payload_value_starts_with?: string; + /** + * The value of the consensus payload in wei (filter: ends_with) + */ + consensus_payload_value_ends_with?: string; + /** + * The value of the consensus payload in wei (filter: like) + */ + consensus_payload_value_like?: string; + /** + * The value of the consensus payload in wei (filter: not_like) + */ + consensus_payload_value_not_like?: string; + /** + * The value of the consensus payload in wei (filter: in_values) (comma-separated list) + */ + consensus_payload_value_in_values?: string; + /** + * The value of the consensus payload in wei (filter: not_in_values) (comma-separated list) + */ + consensus_payload_value_not_in_values?: string; + /** + * The block number of the execution payload (filter: eq) + */ + execution_payload_block_number_eq?: number; + /** + * The block number of the execution payload (filter: ne) + */ + execution_payload_block_number_ne?: number; + /** + * The block number of the execution payload (filter: lt) + */ + execution_payload_block_number_lt?: number; + /** + * The block number of the execution payload (filter: lte) + */ + execution_payload_block_number_lte?: number; + /** + * The block number of the execution payload (filter: gt) + */ + execution_payload_block_number_gt?: number; + /** + * The block number of the execution payload (filter: gte) + */ + execution_payload_block_number_gte?: number; + /** + * The block number of the execution payload (filter: between_min) + */ + execution_payload_block_number_between_min?: number; + /** + * The block number of the execution payload (filter: between_max_value) + */ + execution_payload_block_number_between_max_value?: number; + /** + * The block number of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_block_number_in_values?: string; + /** + * The block number of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_block_number_not_in_values?: string; + /** + * Gas limit for execution payload (filter: eq) + */ + execution_payload_gas_limit_eq?: number; + /** + * Gas limit for execution payload (filter: ne) + */ + execution_payload_gas_limit_ne?: number; + /** + * Gas limit for execution payload (filter: lt) + */ + execution_payload_gas_limit_lt?: number; + /** + * Gas limit for execution payload (filter: lte) + */ + execution_payload_gas_limit_lte?: number; + /** + * Gas limit for execution payload (filter: gt) + */ + execution_payload_gas_limit_gt?: number; + /** + * Gas limit for execution payload (filter: gte) + */ + execution_payload_gas_limit_gte?: number; + /** + * Gas limit for execution payload (filter: between_min) + */ + execution_payload_gas_limit_between_min?: number; + /** + * Gas limit for execution payload (filter: between_max_value) + */ + execution_payload_gas_limit_between_max_value?: number; + /** + * Gas limit for execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_gas_limit_in_values?: string; + /** + * Gas limit for execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_gas_limit_not_in_values?: string; + /** + * Gas used for execution payload (filter: eq) + */ + execution_payload_gas_used_eq?: number; + /** + * Gas used for execution payload (filter: ne) + */ + execution_payload_gas_used_ne?: number; + /** + * Gas used for execution payload (filter: lt) + */ + execution_payload_gas_used_lt?: number; + /** + * Gas used for execution payload (filter: lte) + */ + execution_payload_gas_used_lte?: number; + /** + * Gas used for execution payload (filter: gt) + */ + execution_payload_gas_used_gt?: number; + /** + * Gas used for execution payload (filter: gte) + */ + execution_payload_gas_used_gte?: number; + /** + * Gas used for execution payload (filter: between_min) + */ + execution_payload_gas_used_between_min?: number; + /** + * Gas used for execution payload (filter: between_max_value) + */ + execution_payload_gas_used_between_max_value?: number; + /** + * Gas used for execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_gas_used_in_values?: string; + /** + * Gas used for execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_gas_used_not_in_values?: string; + /** + * The transaction count of the execution payload (filter: eq) + */ + execution_payload_transactions_count_eq?: number; + /** + * The transaction count of the execution payload (filter: ne) + */ + execution_payload_transactions_count_ne?: number; + /** + * The transaction count of the execution payload (filter: lt) + */ + execution_payload_transactions_count_lt?: number; + /** + * The transaction count of the execution payload (filter: lte) + */ + execution_payload_transactions_count_lte?: number; + /** + * The transaction count of the execution payload (filter: gt) + */ + execution_payload_transactions_count_gt?: number; + /** + * The transaction count of the execution payload (filter: gte) + */ + execution_payload_transactions_count_gte?: number; + /** + * The transaction count of the execution payload (filter: between_min) + */ + execution_payload_transactions_count_between_min?: number; + /** + * The transaction count of the execution payload (filter: between_max_value) + */ + execution_payload_transactions_count_between_max_value?: number; + /** + * The transaction count of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_transactions_count_in_values?: string; + /** + * The transaction count of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_transactions_count_not_in_values?: string; + /** + * The transaction total bytes of the execution payload (filter: eq) + */ + execution_payload_transactions_total_bytes_eq?: number; + /** + * The transaction total bytes of the execution payload (filter: ne) + */ + execution_payload_transactions_total_bytes_ne?: number; + /** + * The transaction total bytes of the execution payload (filter: lt) + */ + execution_payload_transactions_total_bytes_lt?: number; + /** + * The transaction total bytes of the execution payload (filter: lte) + */ + execution_payload_transactions_total_bytes_lte?: number; + /** + * The transaction total bytes of the execution payload (filter: gt) + */ + execution_payload_transactions_total_bytes_gt?: number; + /** + * The transaction total bytes of the execution payload (filter: gte) + */ + execution_payload_transactions_total_bytes_gte?: number; + /** + * The transaction total bytes of the execution payload (filter: between_min) + */ + execution_payload_transactions_total_bytes_between_min?: number; + /** + * The transaction total bytes of the execution payload (filter: between_max_value) + */ + execution_payload_transactions_total_bytes_between_max_value?: number; + /** + * The transaction total bytes of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_in_values?: string; + /** + * The transaction total bytes of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_not_in_values?: string; + /** + * The maximum number of fct_prepared_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctPreparedBlock` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_prepared_block'; +}; + +export type FctPreparedBlockServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctPreparedBlockServiceListError = + FctPreparedBlockServiceListErrors[keyof FctPreparedBlockServiceListErrors]; + +export type FctPreparedBlockServiceListResponses = { + /** + * OK + */ + 200: ListFctPreparedBlockResponse; +}; + +export type FctPreparedBlockServiceListResponse = + FctPreparedBlockServiceListResponses[keyof FctPreparedBlockServiceListResponses]; + +export type FctPreparedBlockServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_prepared_block/{slot_start_date_time}'; +}; + +export type FctPreparedBlockServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctPreparedBlockServiceGetError = FctPreparedBlockServiceGetErrors[keyof FctPreparedBlockServiceGetErrors]; + +export type FctPreparedBlockServiceGetResponses = { + /** + * OK + */ + 200: GetFctPreparedBlockResponse; +}; + +export type FctPreparedBlockServiceGetResponse = + FctPreparedBlockServiceGetResponses[keyof FctPreparedBlockServiceGetResponses]; + +export type FctProposerRewardDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of MEV relay blocks in this day (filter: eq) + */ + block_count_eq?: number; + /** + * Number of MEV relay blocks in this day (filter: ne) + */ + block_count_ne?: number; + /** + * Number of MEV relay blocks in this day (filter: lt) + */ + block_count_lt?: number; + /** + * Number of MEV relay blocks in this day (filter: lte) + */ + block_count_lte?: number; + /** + * Number of MEV relay blocks in this day (filter: gt) + */ + block_count_gt?: number; + /** + * Number of MEV relay blocks in this day (filter: gte) + */ + block_count_gte?: number; + /** + * Number of MEV relay blocks in this day (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of MEV relay blocks in this day (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of MEV relay blocks in this day (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of MEV relay blocks in this day (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Filter total_reward_eth using value + */ + total_reward_eth_value?: number; + /** + * Filter avg_reward_eth using value + */ + avg_reward_eth_value?: number; + /** + * Filter min_reward_eth using value + */ + min_reward_eth_value?: number; + /** + * Filter max_reward_eth using value + */ + max_reward_eth_value?: number; + /** + * Filter p05_reward_eth using value + */ + p05_reward_eth_value?: number; + /** + * Filter p50_reward_eth using value + */ + p50_reward_eth_value?: number; + /** + * Filter p95_reward_eth using value + */ + p95_reward_eth_value?: number; + /** + * Filter stddev_reward_eth using value + */ + stddev_reward_eth_value?: number; + /** + * Filter upper_band_reward_eth using value + */ + upper_band_reward_eth_value?: number; + /** + * Filter lower_band_reward_eth using value + */ + lower_band_reward_eth_value?: number; + /** + * Filter moving_avg_reward_eth using value + */ + moving_avg_reward_eth_value?: number; + /** + * The maximum number of fct_proposer_reward_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctProposerRewardDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_proposer_reward_daily'; +}; + +export type FctProposerRewardDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctProposerRewardDailyServiceListError = + FctProposerRewardDailyServiceListErrors[keyof FctProposerRewardDailyServiceListErrors]; + +export type FctProposerRewardDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctProposerRewardDailyResponse; +}; + +export type FctProposerRewardDailyServiceListResponse = + FctProposerRewardDailyServiceListResponses[keyof FctProposerRewardDailyServiceListResponses]; + +export type FctProposerRewardDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_proposer_reward_daily/{day_start_date}'; +}; + +export type FctProposerRewardDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctProposerRewardDailyServiceGetError = + FctProposerRewardDailyServiceGetErrors[keyof FctProposerRewardDailyServiceGetErrors]; + +export type FctProposerRewardDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctProposerRewardDailyResponse; +}; + +export type FctProposerRewardDailyServiceGetResponse = + FctProposerRewardDailyServiceGetResponses[keyof FctProposerRewardDailyServiceGetResponses]; + +export type FctProposerRewardHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of MEV relay blocks in this hour (filter: eq) + */ + block_count_eq?: number; + /** + * Number of MEV relay blocks in this hour (filter: ne) + */ + block_count_ne?: number; + /** + * Number of MEV relay blocks in this hour (filter: lt) + */ + block_count_lt?: number; + /** + * Number of MEV relay blocks in this hour (filter: lte) + */ + block_count_lte?: number; + /** + * Number of MEV relay blocks in this hour (filter: gt) + */ + block_count_gt?: number; + /** + * Number of MEV relay blocks in this hour (filter: gte) + */ + block_count_gte?: number; + /** + * Number of MEV relay blocks in this hour (filter: between_min) + */ + block_count_between_min?: number; + /** + * Number of MEV relay blocks in this hour (filter: between_max_value) + */ + block_count_between_max_value?: number; + /** + * Number of MEV relay blocks in this hour (filter: in_values) (comma-separated list) + */ + block_count_in_values?: string; + /** + * Number of MEV relay blocks in this hour (filter: not_in_values) (comma-separated list) + */ + block_count_not_in_values?: string; + /** + * Filter total_reward_eth using value + */ + total_reward_eth_value?: number; + /** + * Filter avg_reward_eth using value + */ + avg_reward_eth_value?: number; + /** + * Filter min_reward_eth using value + */ + min_reward_eth_value?: number; + /** + * Filter max_reward_eth using value + */ + max_reward_eth_value?: number; + /** + * Filter p05_reward_eth using value + */ + p05_reward_eth_value?: number; + /** + * Filter p50_reward_eth using value + */ + p50_reward_eth_value?: number; + /** + * Filter p95_reward_eth using value + */ + p95_reward_eth_value?: number; + /** + * Filter stddev_reward_eth using value + */ + stddev_reward_eth_value?: number; + /** + * Filter upper_band_reward_eth using value + */ + upper_band_reward_eth_value?: number; + /** + * Filter lower_band_reward_eth using value + */ + lower_band_reward_eth_value?: number; + /** + * Filter moving_avg_reward_eth using value + */ + moving_avg_reward_eth_value?: number; + /** + * The maximum number of fct_proposer_reward_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctProposerRewardHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_proposer_reward_hourly'; +}; + +export type FctProposerRewardHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctProposerRewardHourlyServiceListError = + FctProposerRewardHourlyServiceListErrors[keyof FctProposerRewardHourlyServiceListErrors]; + +export type FctProposerRewardHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctProposerRewardHourlyResponse; +}; + +export type FctProposerRewardHourlyServiceListResponse = + FctProposerRewardHourlyServiceListResponses[keyof FctProposerRewardHourlyServiceListResponses]; + +export type FctProposerRewardHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_proposer_reward_hourly/{hour_start_date_time}'; +}; + +export type FctProposerRewardHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctProposerRewardHourlyServiceGetError = + FctProposerRewardHourlyServiceGetErrors[keyof FctProposerRewardHourlyServiceGetErrors]; + +export type FctProposerRewardHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctProposerRewardHourlyResponse; +}; + +export type FctProposerRewardHourlyServiceGetResponse = + FctProposerRewardHourlyServiceGetResponses[keyof FctProposerRewardHourlyServiceGetResponses]; + +export type FctReorgDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: eq) + */ + depth_eq?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: ne) + */ + depth_ne?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: lt) + */ + depth_lt?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: lte) + */ + depth_lte?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: gt) + */ + depth_gt?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: gte) + */ + depth_gte?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: between_min) + */ + depth_between_min?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: between_max_value) + */ + depth_between_max_value?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: in_values) (comma-separated list) + */ + depth_in_values?: string; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: not_in_values) (comma-separated list) + */ + depth_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of reorg events at this depth (filter: eq) + */ + reorg_count_eq?: number; + /** + * Number of reorg events at this depth (filter: ne) + */ + reorg_count_ne?: number; + /** + * Number of reorg events at this depth (filter: lt) + */ + reorg_count_lt?: number; + /** + * Number of reorg events at this depth (filter: lte) + */ + reorg_count_lte?: number; + /** + * Number of reorg events at this depth (filter: gt) + */ + reorg_count_gt?: number; + /** + * Number of reorg events at this depth (filter: gte) + */ + reorg_count_gte?: number; + /** + * Number of reorg events at this depth (filter: between_min) + */ + reorg_count_between_min?: number; + /** + * Number of reorg events at this depth (filter: between_max_value) + */ + reorg_count_between_max_value?: number; + /** + * Number of reorg events at this depth (filter: in_values) (comma-separated list) + */ + reorg_count_in_values?: string; + /** + * Number of reorg events at this depth (filter: not_in_values) (comma-separated list) + */ + reorg_count_not_in_values?: string; + /** + * The maximum number of fct_reorg_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctReorgDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_reorg_daily'; +}; + +export type FctReorgDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctReorgDailyServiceListError = FctReorgDailyServiceListErrors[keyof FctReorgDailyServiceListErrors]; + +export type FctReorgDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctReorgDailyResponse; +}; + +export type FctReorgDailyServiceListResponse = + FctReorgDailyServiceListResponses[keyof FctReorgDailyServiceListResponses]; + +export type FctReorgDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_reorg_daily/{day_start_date}'; +}; + +export type FctReorgDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctReorgDailyServiceGetError = FctReorgDailyServiceGetErrors[keyof FctReorgDailyServiceGetErrors]; + +export type FctReorgDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctReorgDailyResponse; +}; + +export type FctReorgDailyServiceGetResponse = FctReorgDailyServiceGetResponses[keyof FctReorgDailyServiceGetResponses]; + +export type FctReorgHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: eq) + */ + depth_eq?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: ne) + */ + depth_ne?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: lt) + */ + depth_lt?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: lte) + */ + depth_lte?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: gt) + */ + depth_gt?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: gte) + */ + depth_gte?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: between_min) + */ + depth_between_min?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: between_max_value) + */ + depth_between_max_value?: number; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: in_values) (comma-separated list) + */ + depth_in_values?: string; + /** + * Reorg depth (number of consecutive orphaned slots) (filter: not_in_values) (comma-separated list) + */ + depth_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of reorg events at this depth (filter: eq) + */ + reorg_count_eq?: number; + /** + * Number of reorg events at this depth (filter: ne) + */ + reorg_count_ne?: number; + /** + * Number of reorg events at this depth (filter: lt) + */ + reorg_count_lt?: number; + /** + * Number of reorg events at this depth (filter: lte) + */ + reorg_count_lte?: number; + /** + * Number of reorg events at this depth (filter: gt) + */ + reorg_count_gt?: number; + /** + * Number of reorg events at this depth (filter: gte) + */ + reorg_count_gte?: number; + /** + * Number of reorg events at this depth (filter: between_min) + */ + reorg_count_between_min?: number; + /** + * Number of reorg events at this depth (filter: between_max_value) + */ + reorg_count_between_max_value?: number; + /** + * Number of reorg events at this depth (filter: in_values) (comma-separated list) + */ + reorg_count_in_values?: string; + /** + * Number of reorg events at this depth (filter: not_in_values) (comma-separated list) + */ + reorg_count_not_in_values?: string; + /** + * The maximum number of fct_reorg_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctReorgHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_reorg_hourly'; +}; + +export type FctReorgHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctReorgHourlyServiceListError = FctReorgHourlyServiceListErrors[keyof FctReorgHourlyServiceListErrors]; + +export type FctReorgHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctReorgHourlyResponse; +}; + +export type FctReorgHourlyServiceListResponse = + FctReorgHourlyServiceListResponses[keyof FctReorgHourlyServiceListResponses]; + +export type FctReorgHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_reorg_hourly/{hour_start_date_time}'; +}; + +export type FctReorgHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctReorgHourlyServiceGetError = FctReorgHourlyServiceGetErrors[keyof FctReorgHourlyServiceGetErrors]; + +export type FctReorgHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctReorgHourlyResponse; +}; + +export type FctReorgHourlyServiceGetResponse = + FctReorgHourlyServiceGetResponses[keyof FctReorgHourlyServiceGetResponses]; + +export type FctRocketpoolValidatorServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The beacon chain validator index (filter: eq) + */ + validator_index_eq?: number; + /** + * The beacon chain validator index (filter: ne) + */ + validator_index_ne?: number; + /** + * The beacon chain validator index (filter: lt) + */ + validator_index_lt?: number; + /** + * The beacon chain validator index (filter: lte) + */ + validator_index_lte?: number; + /** + * The beacon chain validator index (filter: gt) + */ + validator_index_gt?: number; + /** + * The beacon chain validator index (filter: gte) + */ + validator_index_gte?: number; + /** + * The beacon chain validator index (filter: between_min) + */ + validator_index_between_min?: number; + /** + * The beacon chain validator index (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * The beacon chain validator index (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * The beacon chain validator index (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The validator BLS public key, lowercase 0x-prefixed (filter: eq) + */ + pubkey_eq?: string; + /** + * The validator BLS public key, lowercase 0x-prefixed (filter: ne) + */ + pubkey_ne?: string; + /** + * The validator BLS public key, lowercase 0x-prefixed (filter: contains) + */ + pubkey_contains?: string; + /** + * The validator BLS public key, lowercase 0x-prefixed (filter: starts_with) + */ + pubkey_starts_with?: string; + /** + * The validator BLS public key, lowercase 0x-prefixed (filter: ends_with) + */ + pubkey_ends_with?: string; + /** + * The validator BLS public key, lowercase 0x-prefixed (filter: like) + */ + pubkey_like?: string; + /** + * The validator BLS public key, lowercase 0x-prefixed (filter: not_like) + */ + pubkey_not_like?: string; + /** + * The validator BLS public key, lowercase 0x-prefixed (filter: in_values) (comma-separated list) + */ + pubkey_in_values?: string; + /** + * The validator BLS public key, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) + */ + pubkey_not_in_values?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: eq) + */ + node_operator_eq?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ne) + */ + node_operator_ne?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: contains) + */ + node_operator_contains?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: starts_with) + */ + node_operator_starts_with?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ends_with) + */ + node_operator_ends_with?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: like) + */ + node_operator_like?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_like) + */ + node_operator_not_like?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: in_values) (comma-separated list) + */ + node_operator_in_values?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) + */ + node_operator_not_in_values?: string; + /** + * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: eq) + */ + pool_type_eq?: string; + /** + * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: ne) + */ + pool_type_ne?: string; + /** + * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: contains) + */ + pool_type_contains?: string; + /** + * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: starts_with) + */ + pool_type_starts_with?: string; + /** + * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: ends_with) + */ + pool_type_ends_with?: string; + /** + * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: like) + */ + pool_type_like?: string; + /** + * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: not_like) + */ + pool_type_not_like?: string; + /** + * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: in_values) (comma-separated list) + */ + pool_type_in_values?: string; + /** + * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: not_in_values) (comma-separated list) + */ + pool_type_not_in_values?: string; + /** + * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: eq) + */ + pool_address_eq?: string; + /** + * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: ne) + */ + pool_address_ne?: string; + /** + * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: contains) + */ + pool_address_contains?: string; + /** + * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: starts_with) + */ + pool_address_starts_with?: string; + /** + * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: ends_with) + */ + pool_address_ends_with?: string; + /** + * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: like) + */ + pool_address_like?: string; + /** + * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: not_like) + */ + pool_address_not_like?: string; + /** + * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: in_values) (comma-separated list) + */ + pool_address_in_values?: string; + /** + * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) + */ + pool_address_not_in_values?: string; + /** + * Wall clock time the backing minipool was created or the megapool deposit was made (filter: eq) + */ + created_date_time_eq?: number; + /** + * Wall clock time the backing minipool was created or the megapool deposit was made (filter: ne) + */ + created_date_time_ne?: number; + /** + * Wall clock time the backing minipool was created or the megapool deposit was made (filter: lt) + */ + created_date_time_lt?: number; + /** + * Wall clock time the backing minipool was created or the megapool deposit was made (filter: lte) + */ + created_date_time_lte?: number; + /** + * Wall clock time the backing minipool was created or the megapool deposit was made (filter: gt) + */ + created_date_time_gt?: number; + /** + * Wall clock time the backing minipool was created or the megapool deposit was made (filter: gte) + */ + created_date_time_gte?: number; + /** + * Wall clock time the backing minipool was created or the megapool deposit was made (filter: between_min) + */ + created_date_time_between_min?: number; + /** + * Wall clock time the backing minipool was created or the megapool deposit was made (filter: between_max_value) + */ + created_date_time_between_max_value?: number; + /** + * Wall clock time the backing minipool was created or the megapool deposit was made (filter: in_values) (comma-separated list) + */ + created_date_time_in_values?: string; + /** + * Wall clock time the backing minipool was created or the megapool deposit was made (filter: not_in_values) (comma-separated list) + */ + created_date_time_not_in_values?: string; + /** + * The maximum number of fct_rocketpool_validator to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctRocketpoolValidator` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_rocketpool_validator'; +}; + +export type FctRocketpoolValidatorServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctRocketpoolValidatorServiceListError = + FctRocketpoolValidatorServiceListErrors[keyof FctRocketpoolValidatorServiceListErrors]; + +export type FctRocketpoolValidatorServiceListResponses = { + /** + * OK + */ + 200: ListFctRocketpoolValidatorResponse; +}; + +export type FctRocketpoolValidatorServiceListResponse = + FctRocketpoolValidatorServiceListResponses[keyof FctRocketpoolValidatorServiceListResponses]; + +export type FctRocketpoolValidatorServiceGetData = { + body?: never; + path: { + /** + * The beacon chain validator index + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/fct_rocketpool_validator/{validator_index}'; +}; + +export type FctRocketpoolValidatorServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctRocketpoolValidatorServiceGetError = + FctRocketpoolValidatorServiceGetErrors[keyof FctRocketpoolValidatorServiceGetErrors]; + +export type FctRocketpoolValidatorServiceGetResponses = { + /** + * OK + */ + 200: GetFctRocketpoolValidatorResponse; +}; + +export type FctRocketpoolValidatorServiceGetResponse = + FctRocketpoolValidatorServiceGetResponses[keyof FctRocketpoolValidatorServiceGetResponses]; + +export type FctStorageSlotStateByAddressDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative count of active storage slots at end of day (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at end of day (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at end of day (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at end of day (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at end of day (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at end of day (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at end of day (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at end of day (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at end of day (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at end of day (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes at end of day (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes at end of day (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of fct_storage_slot_state_by_address_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctStorageSlotStateByAddressDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_storage_slot_state_by_address_daily'; +}; + +export type FctStorageSlotStateByAddressDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateByAddressDailyServiceListError = + FctStorageSlotStateByAddressDailyServiceListErrors[keyof FctStorageSlotStateByAddressDailyServiceListErrors]; + +export type FctStorageSlotStateByAddressDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctStorageSlotStateByAddressDailyResponse; +}; + +export type FctStorageSlotStateByAddressDailyServiceListResponse = + FctStorageSlotStateByAddressDailyServiceListResponses[keyof FctStorageSlotStateByAddressDailyServiceListResponses]; + +export type FctStorageSlotStateByAddressDailyServiceGetData = { + body?: never; + path: { + /** + * The contract address + */ + address: string; + }; + query?: never; + url: '/api/v1/fct_storage_slot_state_by_address_daily/{address}'; +}; + +export type FctStorageSlotStateByAddressDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateByAddressDailyServiceGetError = + FctStorageSlotStateByAddressDailyServiceGetErrors[keyof FctStorageSlotStateByAddressDailyServiceGetErrors]; + +export type FctStorageSlotStateByAddressDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctStorageSlotStateByAddressDailyResponse; +}; + +export type FctStorageSlotStateByAddressDailyServiceGetResponse = + FctStorageSlotStateByAddressDailyServiceGetResponses[keyof FctStorageSlotStateByAddressDailyServiceGetResponses]; + +export type FctStorageSlotStateByAddressHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative count of active storage slots at end of hour (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at end of hour (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes at end of hour (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes at end of hour (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of fct_storage_slot_state_by_address_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctStorageSlotStateByAddressHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_storage_slot_state_by_address_hourly'; +}; + +export type FctStorageSlotStateByAddressHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateByAddressHourlyServiceListError = + FctStorageSlotStateByAddressHourlyServiceListErrors[keyof FctStorageSlotStateByAddressHourlyServiceListErrors]; + +export type FctStorageSlotStateByAddressHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctStorageSlotStateByAddressHourlyResponse; +}; + +export type FctStorageSlotStateByAddressHourlyServiceListResponse = + FctStorageSlotStateByAddressHourlyServiceListResponses[keyof FctStorageSlotStateByAddressHourlyServiceListResponses]; + +export type FctStorageSlotStateByAddressHourlyServiceGetData = { + body?: never; + path: { + /** + * The contract address + */ + address: string; + }; + query?: never; + url: '/api/v1/fct_storage_slot_state_by_address_hourly/{address}'; +}; + +export type FctStorageSlotStateByAddressHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateByAddressHourlyServiceGetError = + FctStorageSlotStateByAddressHourlyServiceGetErrors[keyof FctStorageSlotStateByAddressHourlyServiceGetErrors]; + +export type FctStorageSlotStateByAddressHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctStorageSlotStateByAddressHourlyResponse; +}; + +export type FctStorageSlotStateByAddressHourlyServiceGetResponse = + FctStorageSlotStateByAddressHourlyServiceGetResponses[keyof FctStorageSlotStateByAddressHourlyServiceGetResponses]; + +export type FctStorageSlotStateByBlockDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative count of active storage slots at end of day (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at end of day (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at end of day (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at end of day (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at end of day (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at end of day (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at end of day (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at end of day (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at end of day (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at end of day (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes at end of day (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes at end of day (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes at end of day (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of fct_storage_slot_state_by_block_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctStorageSlotStateByBlockDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_storage_slot_state_by_block_daily'; +}; + +export type FctStorageSlotStateByBlockDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateByBlockDailyServiceListError = + FctStorageSlotStateByBlockDailyServiceListErrors[keyof FctStorageSlotStateByBlockDailyServiceListErrors]; + +export type FctStorageSlotStateByBlockDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctStorageSlotStateByBlockDailyResponse; +}; + +export type FctStorageSlotStateByBlockDailyServiceListResponse = + FctStorageSlotStateByBlockDailyServiceListResponses[keyof FctStorageSlotStateByBlockDailyServiceListResponses]; + +export type FctStorageSlotStateByBlockDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_storage_slot_state_by_block_daily/{day_start_date}'; +}; + +export type FctStorageSlotStateByBlockDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateByBlockDailyServiceGetError = + FctStorageSlotStateByBlockDailyServiceGetErrors[keyof FctStorageSlotStateByBlockDailyServiceGetErrors]; + +export type FctStorageSlotStateByBlockDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctStorageSlotStateByBlockDailyResponse; +}; + +export type FctStorageSlotStateByBlockDailyServiceGetResponse = + FctStorageSlotStateByBlockDailyServiceGetResponses[keyof FctStorageSlotStateByBlockDailyServiceGetResponses]; + +export type FctStorageSlotStateByBlockHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative count of active storage slots at end of hour (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at end of hour (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at end of hour (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes at end of hour (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes at end of hour (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes at end of hour (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of fct_storage_slot_state_by_block_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctStorageSlotStateByBlockHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_storage_slot_state_by_block_hourly'; +}; + +export type FctStorageSlotStateByBlockHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateByBlockHourlyServiceListError = + FctStorageSlotStateByBlockHourlyServiceListErrors[keyof FctStorageSlotStateByBlockHourlyServiceListErrors]; + +export type FctStorageSlotStateByBlockHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctStorageSlotStateByBlockHourlyResponse; +}; + +export type FctStorageSlotStateByBlockHourlyServiceListResponse = + FctStorageSlotStateByBlockHourlyServiceListResponses[keyof FctStorageSlotStateByBlockHourlyServiceListResponses]; + +export type FctStorageSlotStateByBlockHourlyServiceGetData = { + body?: never; + path: { + /** + * Start of the hour period + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_storage_slot_state_by_block_hourly/{hour_start_date_time}'; +}; + +export type FctStorageSlotStateByBlockHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateByBlockHourlyServiceGetError = + FctStorageSlotStateByBlockHourlyServiceGetErrors[keyof FctStorageSlotStateByBlockHourlyServiceGetErrors]; + +export type FctStorageSlotStateByBlockHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctStorageSlotStateByBlockHourlyResponse; +}; + +export type FctStorageSlotStateByBlockHourlyServiceGetResponse = + FctStorageSlotStateByBlockHourlyServiceGetResponses[keyof FctStorageSlotStateByBlockHourlyServiceGetResponses]; + +export type FctStorageSlotStateWithExpiryByAddressDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of fct_storage_slot_state_with_expiry_by_address_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctStorageSlotStateWithExpiryByAddressDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_storage_slot_state_with_expiry_by_address_daily'; +}; + +export type FctStorageSlotStateWithExpiryByAddressDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateWithExpiryByAddressDailyServiceListError = + FctStorageSlotStateWithExpiryByAddressDailyServiceListErrors[keyof FctStorageSlotStateWithExpiryByAddressDailyServiceListErrors]; + +export type FctStorageSlotStateWithExpiryByAddressDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctStorageSlotStateWithExpiryByAddressDailyResponse; +}; + +export type FctStorageSlotStateWithExpiryByAddressDailyServiceListResponse = + FctStorageSlotStateWithExpiryByAddressDailyServiceListResponses[keyof FctStorageSlotStateWithExpiryByAddressDailyServiceListResponses]; + +export type FctStorageSlotStateWithExpiryByAddressDailyServiceGetData = { + body?: never; + path: { + /** + * The contract address + */ + address: string; + }; + query?: never; + url: '/api/v1/fct_storage_slot_state_with_expiry_by_address_daily/{address}'; +}; + +export type FctStorageSlotStateWithExpiryByAddressDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateWithExpiryByAddressDailyServiceGetError = + FctStorageSlotStateWithExpiryByAddressDailyServiceGetErrors[keyof FctStorageSlotStateWithExpiryByAddressDailyServiceGetErrors]; + +export type FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctStorageSlotStateWithExpiryByAddressDailyResponse; +}; + +export type FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse = + FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponses[keyof FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponses]; + +export type FctStorageSlotStateWithExpiryByAddressHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of fct_storage_slot_state_with_expiry_by_address_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctStorageSlotStateWithExpiryByAddressHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_storage_slot_state_with_expiry_by_address_hourly'; +}; + +export type FctStorageSlotStateWithExpiryByAddressHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateWithExpiryByAddressHourlyServiceListError = + FctStorageSlotStateWithExpiryByAddressHourlyServiceListErrors[keyof FctStorageSlotStateWithExpiryByAddressHourlyServiceListErrors]; + +export type FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctStorageSlotStateWithExpiryByAddressHourlyResponse; +}; + +export type FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse = + FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponses[keyof FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponses]; + +export type FctStorageSlotStateWithExpiryByAddressHourlyServiceGetData = { + body?: never; + path: { + /** + * The contract address + */ + address: string; + }; + query?: never; + url: '/api/v1/fct_storage_slot_state_with_expiry_by_address_hourly/{address}'; +}; + +export type FctStorageSlotStateWithExpiryByAddressHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateWithExpiryByAddressHourlyServiceGetError = + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetErrors[keyof FctStorageSlotStateWithExpiryByAddressHourlyServiceGetErrors]; + +export type FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctStorageSlotStateWithExpiryByAddressHourlyResponse; +}; + +export type FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse = + FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponses[keyof FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponses]; + +export type FctStorageSlotStateWithExpiryByBlockDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at end of day (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of fct_storage_slot_state_with_expiry_by_block_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctStorageSlotStateWithExpiryByBlockDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_storage_slot_state_with_expiry_by_block_daily'; +}; + +export type FctStorageSlotStateWithExpiryByBlockDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateWithExpiryByBlockDailyServiceListError = + FctStorageSlotStateWithExpiryByBlockDailyServiceListErrors[keyof FctStorageSlotStateWithExpiryByBlockDailyServiceListErrors]; + +export type FctStorageSlotStateWithExpiryByBlockDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctStorageSlotStateWithExpiryByBlockDailyResponse; +}; + +export type FctStorageSlotStateWithExpiryByBlockDailyServiceListResponse = + FctStorageSlotStateWithExpiryByBlockDailyServiceListResponses[keyof FctStorageSlotStateWithExpiryByBlockDailyServiceListResponses]; + +export type FctStorageSlotStateWithExpiryByBlockDailyServiceGetData = { + body?: never; + path: { + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy: string; + }; + query?: never; + url: '/api/v1/fct_storage_slot_state_with_expiry_by_block_daily/{expiry_policy}'; +}; + +export type FctStorageSlotStateWithExpiryByBlockDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateWithExpiryByBlockDailyServiceGetError = + FctStorageSlotStateWithExpiryByBlockDailyServiceGetErrors[keyof FctStorageSlotStateWithExpiryByBlockDailyServiceGetErrors]; + +export type FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctStorageSlotStateWithExpiryByBlockDailyResponse; +}; + +export type FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse = + FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponses[keyof FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponses]; + +export type FctStorageSlotStateWithExpiryByBlockHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * Start of the hour period (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * Start of the hour period (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * Start of the hour period (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * Start of the hour period (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * Start of the hour period (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * Start of the hour period (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * Start of the hour period (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * Start of the hour period (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * Start of the hour period (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * Start of the hour period (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of fct_storage_slot_state_with_expiry_by_block_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctStorageSlotStateWithExpiryByBlockHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_storage_slot_state_with_expiry_by_block_hourly'; +}; + +export type FctStorageSlotStateWithExpiryByBlockHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateWithExpiryByBlockHourlyServiceListError = + FctStorageSlotStateWithExpiryByBlockHourlyServiceListErrors[keyof FctStorageSlotStateWithExpiryByBlockHourlyServiceListErrors]; + +export type FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctStorageSlotStateWithExpiryByBlockHourlyResponse; +}; + +export type FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse = + FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponses[keyof FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponses]; + +export type FctStorageSlotStateWithExpiryByBlockHourlyServiceGetData = { + body?: never; + path: { + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy: string; + }; + query?: never; + url: '/api/v1/fct_storage_slot_state_with_expiry_by_block_hourly/{expiry_policy}'; +}; + +export type FctStorageSlotStateWithExpiryByBlockHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotStateWithExpiryByBlockHourlyServiceGetError = + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetErrors[keyof FctStorageSlotStateWithExpiryByBlockHourlyServiceGetErrors]; + +export type FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctStorageSlotStateWithExpiryByBlockHourlyResponse; +}; + +export type FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse = + FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponses[keyof FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponses]; + +export type FctStorageSlotTop100ByBytesServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Rank by effective bytes (1=highest), based on raw state (filter: eq) + */ + rank_eq?: number; + /** + * Rank by effective bytes (1=highest), based on raw state (filter: ne) + */ + rank_ne?: number; + /** + * Rank by effective bytes (1=highest), based on raw state (filter: lt) + */ + rank_lt?: number; + /** + * Rank by effective bytes (1=highest), based on raw state (filter: lte) + */ + rank_lte?: number; + /** + * Rank by effective bytes (1=highest), based on raw state (filter: gt) + */ + rank_gt?: number; + /** + * Rank by effective bytes (1=highest), based on raw state (filter: gte) + */ + rank_gte?: number; + /** + * Rank by effective bytes (1=highest), based on raw state (filter: between_min) + */ + rank_between_min?: number; + /** + * Rank by effective bytes (1=highest), based on raw state (filter: between_max_value) + */ + rank_between_max_value?: number; + /** + * Rank by effective bytes (1=highest), based on raw state (filter: in_values) (comma-separated list) + */ + rank_in_values?: string; + /** + * Rank by effective bytes (1=highest), based on raw state (filter: not_in_values) (comma-separated list) + */ + rank_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + contract_address_eq?: string; + /** + * The contract address (filter: ne) + */ + contract_address_ne?: string; + /** + * The contract address (filter: contains) + */ + contract_address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + contract_address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + contract_address_ends_with?: string; + /** + * The contract address (filter: like) + */ + contract_address_like?: string; + /** + * The contract address (filter: not_like) + */ + contract_address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + contract_address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + contract_address_not_in_values?: string; + /** + * Effective bytes of storage for this contract (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Effective bytes of storage for this contract (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Effective bytes of storage for this contract (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Effective bytes of storage for this contract (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Effective bytes of storage for this contract (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Effective bytes of storage for this contract (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Effective bytes of storage for this contract (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Effective bytes of storage for this contract (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Effective bytes of storage for this contract (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Effective bytes of storage for this contract (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * Number of active storage slots for this contract (filter: eq) + */ + active_slots_eq?: number; + /** + * Number of active storage slots for this contract (filter: ne) + */ + active_slots_ne?: number; + /** + * Number of active storage slots for this contract (filter: lt) + */ + active_slots_lt?: number; + /** + * Number of active storage slots for this contract (filter: lte) + */ + active_slots_lte?: number; + /** + * Number of active storage slots for this contract (filter: gt) + */ + active_slots_gt?: number; + /** + * Number of active storage slots for this contract (filter: gte) + */ + active_slots_gte?: number; + /** + * Number of active storage slots for this contract (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Number of active storage slots for this contract (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Number of active storage slots for this contract (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Number of active storage slots for this contract (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Owner key identifier (filter: eq) + */ + owner_key_eq?: string; + /** + * Owner key identifier (filter: ne) + */ + owner_key_ne?: string; + /** + * Owner key identifier (filter: contains) + */ + owner_key_contains?: string; + /** + * Owner key identifier (filter: starts_with) + */ + owner_key_starts_with?: string; + /** + * Owner key identifier (filter: ends_with) + */ + owner_key_ends_with?: string; + /** + * Owner key identifier (filter: like) + */ + owner_key_like?: string; + /** + * Owner key identifier (filter: not_like) + */ + owner_key_not_like?: string; + /** + * Owner key identifier (filter: in_values) (comma-separated list) + */ + owner_key_in_values?: string; + /** + * Owner key identifier (filter: not_in_values) (comma-separated list) + */ + owner_key_not_in_values?: string; + /** + * Account owner of the contract (filter: eq) + */ + account_owner_eq?: string; + /** + * Account owner of the contract (filter: ne) + */ + account_owner_ne?: string; + /** + * Account owner of the contract (filter: contains) + */ + account_owner_contains?: string; + /** + * Account owner of the contract (filter: starts_with) + */ + account_owner_starts_with?: string; + /** + * Account owner of the contract (filter: ends_with) + */ + account_owner_ends_with?: string; + /** + * Account owner of the contract (filter: like) + */ + account_owner_like?: string; + /** + * Account owner of the contract (filter: not_like) + */ + account_owner_not_like?: string; + /** + * Account owner of the contract (filter: in_values) (comma-separated list) + */ + account_owner_in_values?: string; + /** + * Account owner of the contract (filter: not_in_values) (comma-separated list) + */ + account_owner_not_in_values?: string; + /** + * Name of the contract (filter: eq) + */ + contract_name_eq?: string; + /** + * Name of the contract (filter: ne) + */ + contract_name_ne?: string; + /** + * Name of the contract (filter: contains) + */ + contract_name_contains?: string; + /** + * Name of the contract (filter: starts_with) + */ + contract_name_starts_with?: string; + /** + * Name of the contract (filter: ends_with) + */ + contract_name_ends_with?: string; + /** + * Name of the contract (filter: like) + */ + contract_name_like?: string; + /** + * Name of the contract (filter: not_like) + */ + contract_name_not_like?: string; + /** + * Name of the contract (filter: in_values) (comma-separated list) + */ + contract_name_in_values?: string; + /** + * Name of the contract (filter: not_in_values) (comma-separated list) + */ + contract_name_not_in_values?: string; + /** + * Factory contract or deployer address (filter: eq) + */ + factory_contract_eq?: string; + /** + * Factory contract or deployer address (filter: ne) + */ + factory_contract_ne?: string; + /** + * Factory contract or deployer address (filter: contains) + */ + factory_contract_contains?: string; + /** + * Factory contract or deployer address (filter: starts_with) + */ + factory_contract_starts_with?: string; + /** + * Factory contract or deployer address (filter: ends_with) + */ + factory_contract_ends_with?: string; + /** + * Factory contract or deployer address (filter: like) + */ + factory_contract_like?: string; + /** + * Factory contract or deployer address (filter: not_like) + */ + factory_contract_not_like?: string; + /** + * Factory contract or deployer address (filter: in_values) (comma-separated list) + */ + factory_contract_in_values?: string; + /** + * Factory contract or deployer address (filter: not_in_values) (comma-separated list) + */ + factory_contract_not_in_values?: string; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: has) + */ + labels_has?: string; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: has_all_values) + */ + labels_has_all_values?: Array; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: has_any_values) + */ + labels_has_any_values?: Array; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_eq) + */ + labels_length_eq?: number; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_gt) + */ + labels_length_gt?: number; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_gte) + */ + labels_length_gte?: number; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_lt) + */ + labels_length_lt?: number; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_lte) + */ + labels_length_lte?: number; + /** + * The maximum number of fct_storage_slot_top_100_by_bytes to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctStorageSlotTop100ByBytes` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_storage_slot_top_100_by_bytes'; +}; + +export type FctStorageSlotTop100ByBytesServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotTop100ByBytesServiceListError = + FctStorageSlotTop100ByBytesServiceListErrors[keyof FctStorageSlotTop100ByBytesServiceListErrors]; + +export type FctStorageSlotTop100ByBytesServiceListResponses = { + /** + * OK + */ + 200: ListFctStorageSlotTop100ByBytesResponse; +}; + +export type FctStorageSlotTop100ByBytesServiceListResponse = + FctStorageSlotTop100ByBytesServiceListResponses[keyof FctStorageSlotTop100ByBytesServiceListResponses]; + +export type FctStorageSlotTop100ByBytesServiceGetData = { + body?: never; + path: { + /** + * Rank by effective bytes (1=highest), based on raw state + */ + rank: number; + }; + query?: never; + url: '/api/v1/fct_storage_slot_top_100_by_bytes/{rank}'; +}; + +export type FctStorageSlotTop100ByBytesServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotTop100ByBytesServiceGetError = + FctStorageSlotTop100ByBytesServiceGetErrors[keyof FctStorageSlotTop100ByBytesServiceGetErrors]; + +export type FctStorageSlotTop100ByBytesServiceGetResponses = { + /** + * OK + */ + 200: GetFctStorageSlotTop100ByBytesResponse; +}; + +export type FctStorageSlotTop100ByBytesServiceGetResponse = + FctStorageSlotTop100ByBytesServiceGetResponses[keyof FctStorageSlotTop100ByBytesServiceGetResponses]; + +export type FctStorageSlotTop100BySlotsServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Rank by active slots (1=highest), based on raw state (filter: eq) + */ + rank_eq?: number; + /** + * Rank by active slots (1=highest), based on raw state (filter: ne) + */ + rank_ne?: number; + /** + * Rank by active slots (1=highest), based on raw state (filter: lt) + */ + rank_lt?: number; + /** + * Rank by active slots (1=highest), based on raw state (filter: lte) + */ + rank_lte?: number; + /** + * Rank by active slots (1=highest), based on raw state (filter: gt) + */ + rank_gt?: number; + /** + * Rank by active slots (1=highest), based on raw state (filter: gte) + */ + rank_gte?: number; + /** + * Rank by active slots (1=highest), based on raw state (filter: between_min) + */ + rank_between_min?: number; + /** + * Rank by active slots (1=highest), based on raw state (filter: between_max_value) + */ + rank_between_max_value?: number; + /** + * Rank by active slots (1=highest), based on raw state (filter: in_values) (comma-separated list) + */ + rank_in_values?: string; + /** + * Rank by active slots (1=highest), based on raw state (filter: not_in_values) (comma-separated list) + */ + rank_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + contract_address_eq?: string; + /** + * The contract address (filter: ne) + */ + contract_address_ne?: string; + /** + * The contract address (filter: contains) + */ + contract_address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + contract_address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + contract_address_ends_with?: string; + /** + * The contract address (filter: like) + */ + contract_address_like?: string; + /** + * The contract address (filter: not_like) + */ + contract_address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + contract_address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + contract_address_not_in_values?: string; + /** + * Number of active storage slots for this contract (filter: eq) + */ + active_slots_eq?: number; + /** + * Number of active storage slots for this contract (filter: ne) + */ + active_slots_ne?: number; + /** + * Number of active storage slots for this contract (filter: lt) + */ + active_slots_lt?: number; + /** + * Number of active storage slots for this contract (filter: lte) + */ + active_slots_lte?: number; + /** + * Number of active storage slots for this contract (filter: gt) + */ + active_slots_gt?: number; + /** + * Number of active storage slots for this contract (filter: gte) + */ + active_slots_gte?: number; + /** + * Number of active storage slots for this contract (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Number of active storage slots for this contract (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Number of active storage slots for this contract (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Number of active storage slots for this contract (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Effective bytes of storage for this contract (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Effective bytes of storage for this contract (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Effective bytes of storage for this contract (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Effective bytes of storage for this contract (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Effective bytes of storage for this contract (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Effective bytes of storage for this contract (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Effective bytes of storage for this contract (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Effective bytes of storage for this contract (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Effective bytes of storage for this contract (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Effective bytes of storage for this contract (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * Owner key identifier (filter: eq) + */ + owner_key_eq?: string; + /** + * Owner key identifier (filter: ne) + */ + owner_key_ne?: string; + /** + * Owner key identifier (filter: contains) + */ + owner_key_contains?: string; + /** + * Owner key identifier (filter: starts_with) + */ + owner_key_starts_with?: string; + /** + * Owner key identifier (filter: ends_with) + */ + owner_key_ends_with?: string; + /** + * Owner key identifier (filter: like) + */ + owner_key_like?: string; + /** + * Owner key identifier (filter: not_like) + */ + owner_key_not_like?: string; + /** + * Owner key identifier (filter: in_values) (comma-separated list) + */ + owner_key_in_values?: string; + /** + * Owner key identifier (filter: not_in_values) (comma-separated list) + */ + owner_key_not_in_values?: string; + /** + * Account owner of the contract (filter: eq) + */ + account_owner_eq?: string; + /** + * Account owner of the contract (filter: ne) + */ + account_owner_ne?: string; + /** + * Account owner of the contract (filter: contains) + */ + account_owner_contains?: string; + /** + * Account owner of the contract (filter: starts_with) + */ + account_owner_starts_with?: string; + /** + * Account owner of the contract (filter: ends_with) + */ + account_owner_ends_with?: string; + /** + * Account owner of the contract (filter: like) + */ + account_owner_like?: string; + /** + * Account owner of the contract (filter: not_like) + */ + account_owner_not_like?: string; + /** + * Account owner of the contract (filter: in_values) (comma-separated list) + */ + account_owner_in_values?: string; + /** + * Account owner of the contract (filter: not_in_values) (comma-separated list) + */ + account_owner_not_in_values?: string; + /** + * Name of the contract (filter: eq) + */ + contract_name_eq?: string; + /** + * Name of the contract (filter: ne) + */ + contract_name_ne?: string; + /** + * Name of the contract (filter: contains) + */ + contract_name_contains?: string; + /** + * Name of the contract (filter: starts_with) + */ + contract_name_starts_with?: string; + /** + * Name of the contract (filter: ends_with) + */ + contract_name_ends_with?: string; + /** + * Name of the contract (filter: like) + */ + contract_name_like?: string; + /** + * Name of the contract (filter: not_like) + */ + contract_name_not_like?: string; + /** + * Name of the contract (filter: in_values) (comma-separated list) + */ + contract_name_in_values?: string; + /** + * Name of the contract (filter: not_in_values) (comma-separated list) + */ + contract_name_not_in_values?: string; + /** + * Factory contract or deployer address (filter: eq) + */ + factory_contract_eq?: string; + /** + * Factory contract or deployer address (filter: ne) + */ + factory_contract_ne?: string; + /** + * Factory contract or deployer address (filter: contains) + */ + factory_contract_contains?: string; + /** + * Factory contract or deployer address (filter: starts_with) + */ + factory_contract_starts_with?: string; + /** + * Factory contract or deployer address (filter: ends_with) + */ + factory_contract_ends_with?: string; + /** + * Factory contract or deployer address (filter: like) + */ + factory_contract_like?: string; + /** + * Factory contract or deployer address (filter: not_like) + */ + factory_contract_not_like?: string; + /** + * Factory contract or deployer address (filter: in_values) (comma-separated list) + */ + factory_contract_in_values?: string; + /** + * Factory contract or deployer address (filter: not_in_values) (comma-separated list) + */ + factory_contract_not_in_values?: string; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: has) + */ + labels_has?: string; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: has_all_values) + */ + labels_has_all_values?: Array; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: has_any_values) + */ + labels_has_any_values?: Array; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_eq) + */ + labels_length_eq?: number; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_gt) + */ + labels_length_gt?: number; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_gte) + */ + labels_length_gte?: number; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_lt) + */ + labels_length_lt?: number; + /** + * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_lte) + */ + labels_length_lte?: number; + /** + * The maximum number of fct_storage_slot_top_100_by_slots to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctStorageSlotTop100BySlots` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_storage_slot_top_100_by_slots'; +}; + +export type FctStorageSlotTop100BySlotsServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotTop100BySlotsServiceListError = + FctStorageSlotTop100BySlotsServiceListErrors[keyof FctStorageSlotTop100BySlotsServiceListErrors]; + +export type FctStorageSlotTop100BySlotsServiceListResponses = { + /** + * OK + */ + 200: ListFctStorageSlotTop100BySlotsResponse; +}; + +export type FctStorageSlotTop100BySlotsServiceListResponse = + FctStorageSlotTop100BySlotsServiceListResponses[keyof FctStorageSlotTop100BySlotsServiceListResponses]; + +export type FctStorageSlotTop100BySlotsServiceGetData = { + body?: never; + path: { + /** + * Rank by active slots (1=highest), based on raw state + */ + rank: number; + }; + query?: never; + url: '/api/v1/fct_storage_slot_top_100_by_slots/{rank}'; +}; + +export type FctStorageSlotTop100BySlotsServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctStorageSlotTop100BySlotsServiceGetError = + FctStorageSlotTop100BySlotsServiceGetErrors[keyof FctStorageSlotTop100BySlotsServiceGetErrors]; + +export type FctStorageSlotTop100BySlotsServiceGetResponses = { + /** + * OK + */ + 200: GetFctStorageSlotTop100BySlotsResponse; +}; + +export type FctStorageSlotTop100BySlotsServiceGetResponse = + FctStorageSlotTop100BySlotsServiceGetResponses[keyof FctStorageSlotTop100BySlotsServiceGetResponses]; + +export type FctSyncCommitteeParticipationByValidatorServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Index of the validator (filter: eq) + */ + validator_index_eq?: number; + /** + * Index of the validator (filter: ne) + */ + validator_index_ne?: number; + /** + * Index of the validator (filter: lt) + */ + validator_index_lt?: number; + /** + * Index of the validator (filter: lte) + */ + validator_index_lte?: number; + /** + * Index of the validator (filter: gt) + */ + validator_index_gt?: number; + /** + * Index of the validator (filter: gte) + */ + validator_index_gte?: number; + /** + * Index of the validator (filter: between_min) + */ + validator_index_between_min?: number; + /** + * Index of the validator (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * Index of the validator (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * Index of the validator (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * The start time of the slot (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The start time of the slot (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The start time of the slot (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The start time of the slot (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The start time of the slot (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The start time of the slot (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The start time of the slot (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The start time of the slot (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The start time of the slot (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The start time of the slot (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Whether the validator participated in sync committee for this slot (filter: eq) + */ + participated_eq?: boolean; + /** + * Whether the validator participated in sync committee for this slot (filter: ne) + */ + participated_ne?: boolean; + /** + * The maximum number of fct_sync_committee_participation_by_validator to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctSyncCommitteeParticipationByValidator` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_sync_committee_participation_by_validator'; +}; + +export type FctSyncCommitteeParticipationByValidatorServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctSyncCommitteeParticipationByValidatorServiceListError = + FctSyncCommitteeParticipationByValidatorServiceListErrors[keyof FctSyncCommitteeParticipationByValidatorServiceListErrors]; + +export type FctSyncCommitteeParticipationByValidatorServiceListResponses = { + /** + * OK + */ + 200: ListFctSyncCommitteeParticipationByValidatorResponse; +}; + +export type FctSyncCommitteeParticipationByValidatorServiceListResponse = + FctSyncCommitteeParticipationByValidatorServiceListResponses[keyof FctSyncCommitteeParticipationByValidatorServiceListResponses]; + +export type FctSyncCommitteeParticipationByValidatorServiceGetData = { + body?: never; + path: { + /** + * Index of the validator + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/fct_sync_committee_participation_by_validator/{validator_index}'; +}; + +export type FctSyncCommitteeParticipationByValidatorServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctSyncCommitteeParticipationByValidatorServiceGetError = + FctSyncCommitteeParticipationByValidatorServiceGetErrors[keyof FctSyncCommitteeParticipationByValidatorServiceGetErrors]; + +export type FctSyncCommitteeParticipationByValidatorServiceGetResponses = { + /** + * OK + */ + 200: GetFctSyncCommitteeParticipationByValidatorResponse; +}; + +export type FctSyncCommitteeParticipationByValidatorServiceGetResponse = + FctSyncCommitteeParticipationByValidatorServiceGetResponses[keyof FctSyncCommitteeParticipationByValidatorServiceGetResponses]; + +export type FctSyncCommitteeParticipationByValidatorDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Index of the validator (filter: eq) + */ + validator_index_eq?: number; + /** + * Index of the validator (filter: ne) + */ + validator_index_ne?: number; + /** + * Index of the validator (filter: lt) + */ + validator_index_lt?: number; + /** + * Index of the validator (filter: lte) + */ + validator_index_lte?: number; + /** + * Index of the validator (filter: gt) + */ + validator_index_gt?: number; + /** + * Index of the validator (filter: gte) + */ + validator_index_gte?: number; + /** + * Index of the validator (filter: between_min) + */ + validator_index_between_min?: number; + /** + * Index of the validator (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * Index of the validator (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * Index of the validator (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * The start of the day for this aggregation (filter: eq) + */ + day_start_date_eq?: string; + /** + * The start of the day for this aggregation (filter: ne) + */ + day_start_date_ne?: string; + /** + * The start of the day for this aggregation (filter: contains) + */ + day_start_date_contains?: string; + /** + * The start of the day for this aggregation (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * The start of the day for this aggregation (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * The start of the day for this aggregation (filter: like) + */ + day_start_date_like?: string; + /** + * The start of the day for this aggregation (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * The start of the day for this aggregation (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * The start of the day for this aggregation (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total sync committee slots for the validator in this day (filter: eq) + */ + total_slots_eq?: number; + /** + * Total sync committee slots for the validator in this day (filter: ne) + */ + total_slots_ne?: number; + /** + * Total sync committee slots for the validator in this day (filter: lt) + */ + total_slots_lt?: number; + /** + * Total sync committee slots for the validator in this day (filter: lte) + */ + total_slots_lte?: number; + /** + * Total sync committee slots for the validator in this day (filter: gt) + */ + total_slots_gt?: number; + /** + * Total sync committee slots for the validator in this day (filter: gte) + */ + total_slots_gte?: number; + /** + * Total sync committee slots for the validator in this day (filter: between_min) + */ + total_slots_between_min?: number; + /** + * Total sync committee slots for the validator in this day (filter: between_max_value) + */ + total_slots_between_max_value?: number; + /** + * Total sync committee slots for the validator in this day (filter: in_values) (comma-separated list) + */ + total_slots_in_values?: string; + /** + * Total sync committee slots for the validator in this day (filter: not_in_values) (comma-separated list) + */ + total_slots_not_in_values?: string; + /** + * Number of slots where validator participated (filter: eq) + */ + participated_count_eq?: number; + /** + * Number of slots where validator participated (filter: ne) + */ + participated_count_ne?: number; + /** + * Number of slots where validator participated (filter: lt) + */ + participated_count_lt?: number; + /** + * Number of slots where validator participated (filter: lte) + */ + participated_count_lte?: number; + /** + * Number of slots where validator participated (filter: gt) + */ + participated_count_gt?: number; + /** + * Number of slots where validator participated (filter: gte) + */ + participated_count_gte?: number; + /** + * Number of slots where validator participated (filter: between_min) + */ + participated_count_between_min?: number; + /** + * Number of slots where validator participated (filter: between_max_value) + */ + participated_count_between_max_value?: number; + /** + * Number of slots where validator participated (filter: in_values) (comma-separated list) + */ + participated_count_in_values?: string; + /** + * Number of slots where validator participated (filter: not_in_values) (comma-separated list) + */ + participated_count_not_in_values?: string; + /** + * Number of slots where validator missed (filter: eq) + */ + missed_count_eq?: number; + /** + * Number of slots where validator missed (filter: ne) + */ + missed_count_ne?: number; + /** + * Number of slots where validator missed (filter: lt) + */ + missed_count_lt?: number; + /** + * Number of slots where validator missed (filter: lte) + */ + missed_count_lte?: number; + /** + * Number of slots where validator missed (filter: gt) + */ + missed_count_gt?: number; + /** + * Number of slots where validator missed (filter: gte) + */ + missed_count_gte?: number; + /** + * Number of slots where validator missed (filter: between_min) + */ + missed_count_between_min?: number; + /** + * Number of slots where validator missed (filter: between_max_value) + */ + missed_count_between_max_value?: number; + /** + * Number of slots where validator missed (filter: in_values) (comma-separated list) + */ + missed_count_in_values?: string; + /** + * Number of slots where validator missed (filter: not_in_values) (comma-separated list) + */ + missed_count_not_in_values?: string; + /** + * The maximum number of fct_sync_committee_participation_by_validator_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctSyncCommitteeParticipationByValidatorDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_sync_committee_participation_by_validator_daily'; +}; + +export type FctSyncCommitteeParticipationByValidatorDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctSyncCommitteeParticipationByValidatorDailyServiceListError = + FctSyncCommitteeParticipationByValidatorDailyServiceListErrors[keyof FctSyncCommitteeParticipationByValidatorDailyServiceListErrors]; + +export type FctSyncCommitteeParticipationByValidatorDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctSyncCommitteeParticipationByValidatorDailyResponse; +}; + +export type FctSyncCommitteeParticipationByValidatorDailyServiceListResponse = + FctSyncCommitteeParticipationByValidatorDailyServiceListResponses[keyof FctSyncCommitteeParticipationByValidatorDailyServiceListResponses]; + +export type FctSyncCommitteeParticipationByValidatorDailyServiceGetData = { + body?: never; + path: { + /** + * Index of the validator + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/fct_sync_committee_participation_by_validator_daily/{validator_index}'; +}; + +export type FctSyncCommitteeParticipationByValidatorDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctSyncCommitteeParticipationByValidatorDailyServiceGetError = + FctSyncCommitteeParticipationByValidatorDailyServiceGetErrors[keyof FctSyncCommitteeParticipationByValidatorDailyServiceGetErrors]; + +export type FctSyncCommitteeParticipationByValidatorDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctSyncCommitteeParticipationByValidatorDailyResponse; +}; + +export type FctSyncCommitteeParticipationByValidatorDailyServiceGetResponse = + FctSyncCommitteeParticipationByValidatorDailyServiceGetResponses[keyof FctSyncCommitteeParticipationByValidatorDailyServiceGetResponses]; + +export type FctSyncCommitteeParticipationByValidatorHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Index of the validator (filter: eq) + */ + validator_index_eq?: number; + /** + * Index of the validator (filter: ne) + */ + validator_index_ne?: number; + /** + * Index of the validator (filter: lt) + */ + validator_index_lt?: number; + /** + * Index of the validator (filter: lte) + */ + validator_index_lte?: number; + /** + * Index of the validator (filter: gt) + */ + validator_index_gt?: number; + /** + * Index of the validator (filter: gte) + */ + validator_index_gte?: number; + /** + * Index of the validator (filter: between_min) + */ + validator_index_between_min?: number; + /** + * Index of the validator (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * Index of the validator (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * Index of the validator (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * The start of the hour for this aggregation (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * The start of the hour for this aggregation (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * The start of the hour for this aggregation (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * The start of the hour for this aggregation (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * The start of the hour for this aggregation (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * The start of the hour for this aggregation (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * The start of the hour for this aggregation (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * The start of the hour for this aggregation (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * The start of the hour for this aggregation (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * The start of the hour for this aggregation (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total sync committee slots for the validator in this hour (filter: eq) + */ + total_slots_eq?: number; + /** + * Total sync committee slots for the validator in this hour (filter: ne) + */ + total_slots_ne?: number; + /** + * Total sync committee slots for the validator in this hour (filter: lt) + */ + total_slots_lt?: number; + /** + * Total sync committee slots for the validator in this hour (filter: lte) + */ + total_slots_lte?: number; + /** + * Total sync committee slots for the validator in this hour (filter: gt) + */ + total_slots_gt?: number; + /** + * Total sync committee slots for the validator in this hour (filter: gte) + */ + total_slots_gte?: number; + /** + * Total sync committee slots for the validator in this hour (filter: between_min) + */ + total_slots_between_min?: number; + /** + * Total sync committee slots for the validator in this hour (filter: between_max_value) + */ + total_slots_between_max_value?: number; + /** + * Total sync committee slots for the validator in this hour (filter: in_values) (comma-separated list) + */ + total_slots_in_values?: string; + /** + * Total sync committee slots for the validator in this hour (filter: not_in_values) (comma-separated list) + */ + total_slots_not_in_values?: string; + /** + * Number of slots where validator participated (filter: eq) + */ + participated_count_eq?: number; + /** + * Number of slots where validator participated (filter: ne) + */ + participated_count_ne?: number; + /** + * Number of slots where validator participated (filter: lt) + */ + participated_count_lt?: number; + /** + * Number of slots where validator participated (filter: lte) + */ + participated_count_lte?: number; + /** + * Number of slots where validator participated (filter: gt) + */ + participated_count_gt?: number; + /** + * Number of slots where validator participated (filter: gte) + */ + participated_count_gte?: number; + /** + * Number of slots where validator participated (filter: between_min) + */ + participated_count_between_min?: number; + /** + * Number of slots where validator participated (filter: between_max_value) + */ + participated_count_between_max_value?: number; + /** + * Number of slots where validator participated (filter: in_values) (comma-separated list) + */ + participated_count_in_values?: string; + /** + * Number of slots where validator participated (filter: not_in_values) (comma-separated list) + */ + participated_count_not_in_values?: string; + /** + * Number of slots where validator missed (filter: eq) + */ + missed_count_eq?: number; + /** + * Number of slots where validator missed (filter: ne) + */ + missed_count_ne?: number; + /** + * Number of slots where validator missed (filter: lt) + */ + missed_count_lt?: number; + /** + * Number of slots where validator missed (filter: lte) + */ + missed_count_lte?: number; + /** + * Number of slots where validator missed (filter: gt) + */ + missed_count_gt?: number; + /** + * Number of slots where validator missed (filter: gte) + */ + missed_count_gte?: number; + /** + * Number of slots where validator missed (filter: between_min) + */ + missed_count_between_min?: number; + /** + * Number of slots where validator missed (filter: between_max_value) + */ + missed_count_between_max_value?: number; + /** + * Number of slots where validator missed (filter: in_values) (comma-separated list) + */ + missed_count_in_values?: string; + /** + * Number of slots where validator missed (filter: not_in_values) (comma-separated list) + */ + missed_count_not_in_values?: string; + /** + * The maximum number of fct_sync_committee_participation_by_validator_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctSyncCommitteeParticipationByValidatorHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_sync_committee_participation_by_validator_hourly'; +}; + +export type FctSyncCommitteeParticipationByValidatorHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctSyncCommitteeParticipationByValidatorHourlyServiceListError = + FctSyncCommitteeParticipationByValidatorHourlyServiceListErrors[keyof FctSyncCommitteeParticipationByValidatorHourlyServiceListErrors]; + +export type FctSyncCommitteeParticipationByValidatorHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctSyncCommitteeParticipationByValidatorHourlyResponse; +}; + +export type FctSyncCommitteeParticipationByValidatorHourlyServiceListResponse = + FctSyncCommitteeParticipationByValidatorHourlyServiceListResponses[keyof FctSyncCommitteeParticipationByValidatorHourlyServiceListResponses]; + +export type FctSyncCommitteeParticipationByValidatorHourlyServiceGetData = { + body?: never; + path: { + /** + * Index of the validator + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/fct_sync_committee_participation_by_validator_hourly/{validator_index}'; +}; + +export type FctSyncCommitteeParticipationByValidatorHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctSyncCommitteeParticipationByValidatorHourlyServiceGetError = + FctSyncCommitteeParticipationByValidatorHourlyServiceGetErrors[keyof FctSyncCommitteeParticipationByValidatorHourlyServiceGetErrors]; + +export type FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctSyncCommitteeParticipationByValidatorHourlyResponse; +}; + +export type FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse = + FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponses[keyof FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponses]; + +export type FctTokenContractStorageStateByBlockDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Token standard: erc20 or erc721 (filter: eq) + */ + token_standard_eq?: string; + /** + * Token standard: erc20 or erc721 (filter: ne) + */ + token_standard_ne?: string; + /** + * Token standard: erc20 or erc721 (filter: contains) + */ + token_standard_contains?: string; + /** + * Token standard: erc20 or erc721 (filter: starts_with) + */ + token_standard_starts_with?: string; + /** + * Token standard: erc20 or erc721 (filter: ends_with) + */ + token_standard_ends_with?: string; + /** + * Token standard: erc20 or erc721 (filter: like) + */ + token_standard_like?: string; + /** + * Token standard: erc20 or erc721 (filter: not_like) + */ + token_standard_not_like?: string; + /** + * Token standard: erc20 or erc721 (filter: in_values) (comma-separated list) + */ + token_standard_in_values?: string; + /** + * Token standard: erc20 or erc721 (filter: not_in_values) (comma-separated list) + */ + token_standard_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative active storage slots owned by contracts of this standard at end of day (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative active storage slots owned by contracts of this standard at end of day (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative active storage slots owned by contracts of this standard at end of day (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative active storage slots owned by contracts of this standard at end of day (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative active storage slots owned by contracts of this standard at end of day (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative active storage slots owned by contracts of this standard at end of day (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative active storage slots owned by contracts of this standard at end of day (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative active storage slots owned by contracts of this standard at end of day (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative active storage slots owned by contracts of this standard at end of day (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative active storage slots owned by contracts of this standard at end of day (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * The maximum number of fct_token_contract_storage_state_by_block_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctTokenContractStorageStateByBlockDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_token_contract_storage_state_by_block_daily'; +}; + +export type FctTokenContractStorageStateByBlockDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctTokenContractStorageStateByBlockDailyServiceListError = + FctTokenContractStorageStateByBlockDailyServiceListErrors[keyof FctTokenContractStorageStateByBlockDailyServiceListErrors]; + +export type FctTokenContractStorageStateByBlockDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctTokenContractStorageStateByBlockDailyResponse; +}; + +export type FctTokenContractStorageStateByBlockDailyServiceListResponse = + FctTokenContractStorageStateByBlockDailyServiceListResponses[keyof FctTokenContractStorageStateByBlockDailyServiceListResponses]; + +export type FctTokenContractStorageStateByBlockDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_token_contract_storage_state_by_block_daily/{day_start_date}'; +}; + +export type FctTokenContractStorageStateByBlockDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctTokenContractStorageStateByBlockDailyServiceGetError = + FctTokenContractStorageStateByBlockDailyServiceGetErrors[keyof FctTokenContractStorageStateByBlockDailyServiceGetErrors]; + +export type FctTokenContractStorageStateByBlockDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctTokenContractStorageStateByBlockDailyResponse; +}; + +export type FctTokenContractStorageStateByBlockDailyServiceGetResponse = + FctTokenContractStorageStateByBlockDailyServiceGetResponses[keyof FctTokenContractStorageStateByBlockDailyServiceGetResponses]; + +export type FctValidatorBalanceServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The index of the validator (filter: eq) + */ + validator_index_eq?: number; + /** + * The index of the validator (filter: ne) + */ + validator_index_ne?: number; + /** + * The index of the validator (filter: lt) + */ + validator_index_lt?: number; + /** + * The index of the validator (filter: lte) + */ + validator_index_lte?: number; + /** + * The index of the validator (filter: gt) + */ + validator_index_gt?: number; + /** + * The index of the validator (filter: gte) + */ + validator_index_gte?: number; + /** + * The index of the validator (filter: between_min) + */ + validator_index_between_min?: number; + /** + * The index of the validator (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * The index of the validator (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * The index of the validator (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * The start time of the epoch (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The start time of the epoch (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The start time of the epoch (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The start time of the epoch (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The start time of the epoch (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The start time of the epoch (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The start time of the epoch (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The start time of the epoch (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The start time of the epoch (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The start time of the epoch (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The epoch number (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * Validator balance at this epoch in Gwei (filter: eq) + */ + balance_eq?: number; + /** + * Validator balance at this epoch in Gwei (filter: ne) + */ + balance_ne?: number; + /** + * Validator balance at this epoch in Gwei (filter: lt) + */ + balance_lt?: number; + /** + * Validator balance at this epoch in Gwei (filter: lte) + */ + balance_lte?: number; + /** + * Validator balance at this epoch in Gwei (filter: gt) + */ + balance_gt?: number; + /** + * Validator balance at this epoch in Gwei (filter: gte) + */ + balance_gte?: number; + /** + * Validator balance at this epoch in Gwei (filter: between_min) + */ + balance_between_min?: number; + /** + * Validator balance at this epoch in Gwei (filter: between_max_value) + */ + balance_between_max_value?: number; + /** + * Validator balance at this epoch in Gwei (filter: in_values) (comma-separated list) + */ + balance_in_values?: string; + /** + * Validator balance at this epoch in Gwei (filter: not_in_values) (comma-separated list) + */ + balance_not_in_values?: string; + /** + * Effective balance at this epoch in Gwei (filter: eq) + */ + effective_balance_eq?: number; + /** + * Effective balance at this epoch in Gwei (filter: ne) + */ + effective_balance_ne?: number; + /** + * Effective balance at this epoch in Gwei (filter: lt) + */ + effective_balance_lt?: number; + /** + * Effective balance at this epoch in Gwei (filter: lte) + */ + effective_balance_lte?: number; + /** + * Effective balance at this epoch in Gwei (filter: gt) + */ + effective_balance_gt?: number; + /** + * Effective balance at this epoch in Gwei (filter: gte) + */ + effective_balance_gte?: number; + /** + * Effective balance at this epoch in Gwei (filter: between_min) + */ + effective_balance_between_min?: number; + /** + * Effective balance at this epoch in Gwei (filter: between_max_value) + */ + effective_balance_between_max_value?: number; + /** + * Effective balance at this epoch in Gwei (filter: in_values) (comma-separated list) + */ + effective_balance_in_values?: string; + /** + * Effective balance at this epoch in Gwei (filter: not_in_values) (comma-separated list) + */ + effective_balance_not_in_values?: string; + /** + * Validator status at this epoch (filter: eq) + */ + status_eq?: string; + /** + * Validator status at this epoch (filter: ne) + */ + status_ne?: string; + /** + * Validator status at this epoch (filter: contains) + */ + status_contains?: string; + /** + * Validator status at this epoch (filter: starts_with) + */ + status_starts_with?: string; + /** + * Validator status at this epoch (filter: ends_with) + */ + status_ends_with?: string; + /** + * Validator status at this epoch (filter: like) + */ + status_like?: string; + /** + * Validator status at this epoch (filter: not_like) + */ + status_not_like?: string; + /** + * Validator status at this epoch (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Validator status at this epoch (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Whether the validator was slashed (as of this epoch) (filter: eq) + */ + slashed_eq?: boolean; + /** + * Whether the validator was slashed (as of this epoch) (filter: ne) + */ + slashed_ne?: boolean; + /** + * The maximum number of fct_validator_balance to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctValidatorBalance` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_validator_balance'; +}; + +export type FctValidatorBalanceServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctValidatorBalanceServiceListError = + FctValidatorBalanceServiceListErrors[keyof FctValidatorBalanceServiceListErrors]; + +export type FctValidatorBalanceServiceListResponses = { + /** + * OK + */ + 200: ListFctValidatorBalanceResponse; +}; + +export type FctValidatorBalanceServiceListResponse = + FctValidatorBalanceServiceListResponses[keyof FctValidatorBalanceServiceListResponses]; + +export type FctValidatorBalanceServiceGetData = { + body?: never; + path: { + /** + * The index of the validator + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/fct_validator_balance/{validator_index}'; +}; + +export type FctValidatorBalanceServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctValidatorBalanceServiceGetError = + FctValidatorBalanceServiceGetErrors[keyof FctValidatorBalanceServiceGetErrors]; + +export type FctValidatorBalanceServiceGetResponses = { + /** + * OK + */ + 200: GetFctValidatorBalanceResponse; +}; + +export type FctValidatorBalanceServiceGetResponse = + FctValidatorBalanceServiceGetResponses[keyof FctValidatorBalanceServiceGetResponses]; + +export type FctValidatorBalanceDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The index of the validator (filter: eq) + */ + validator_index_eq?: number; + /** + * The index of the validator (filter: ne) + */ + validator_index_ne?: number; + /** + * The index of the validator (filter: lt) + */ + validator_index_lt?: number; + /** + * The index of the validator (filter: lte) + */ + validator_index_lte?: number; + /** + * The index of the validator (filter: gt) + */ + validator_index_gt?: number; + /** + * The index of the validator (filter: gte) + */ + validator_index_gte?: number; + /** + * The index of the validator (filter: between_min) + */ + validator_index_between_min?: number; + /** + * The index of the validator (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * The index of the validator (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * The index of the validator (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * The start of the day for this aggregation (filter: eq) + */ + day_start_date_eq?: string; + /** + * The start of the day for this aggregation (filter: ne) + */ + day_start_date_ne?: string; + /** + * The start of the day for this aggregation (filter: contains) + */ + day_start_date_contains?: string; + /** + * The start of the day for this aggregation (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * The start of the day for this aggregation (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * The start of the day for this aggregation (filter: like) + */ + day_start_date_like?: string; + /** + * The start of the day for this aggregation (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * The start of the day for this aggregation (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * The start of the day for this aggregation (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * First epoch in this day for this validator (filter: eq) + */ + start_epoch_eq?: number; + /** + * First epoch in this day for this validator (filter: ne) + */ + start_epoch_ne?: number; + /** + * First epoch in this day for this validator (filter: lt) + */ + start_epoch_lt?: number; + /** + * First epoch in this day for this validator (filter: lte) + */ + start_epoch_lte?: number; + /** + * First epoch in this day for this validator (filter: gt) + */ + start_epoch_gt?: number; + /** + * First epoch in this day for this validator (filter: gte) + */ + start_epoch_gte?: number; + /** + * First epoch in this day for this validator (filter: between_min) + */ + start_epoch_between_min?: number; + /** + * First epoch in this day for this validator (filter: between_max_value) + */ + start_epoch_between_max_value?: number; + /** + * First epoch in this day for this validator (filter: in_values) (comma-separated list) + */ + start_epoch_in_values?: string; + /** + * First epoch in this day for this validator (filter: not_in_values) (comma-separated list) + */ + start_epoch_not_in_values?: string; + /** + * Last epoch in this day for this validator (filter: eq) + */ + end_epoch_eq?: number; + /** + * Last epoch in this day for this validator (filter: ne) + */ + end_epoch_ne?: number; + /** + * Last epoch in this day for this validator (filter: lt) + */ + end_epoch_lt?: number; + /** + * Last epoch in this day for this validator (filter: lte) + */ + end_epoch_lte?: number; + /** + * Last epoch in this day for this validator (filter: gt) + */ + end_epoch_gt?: number; + /** + * Last epoch in this day for this validator (filter: gte) + */ + end_epoch_gte?: number; + /** + * Last epoch in this day for this validator (filter: between_min) + */ + end_epoch_between_min?: number; + /** + * Last epoch in this day for this validator (filter: between_max_value) + */ + end_epoch_between_max_value?: number; + /** + * Last epoch in this day for this validator (filter: in_values) (comma-separated list) + */ + end_epoch_in_values?: string; + /** + * Last epoch in this day for this validator (filter: not_in_values) (comma-separated list) + */ + end_epoch_not_in_values?: string; + /** + * Balance at start of day (first epoch) in Gwei (filter: eq) + */ + start_balance_eq?: number; + /** + * Balance at start of day (first epoch) in Gwei (filter: ne) + */ + start_balance_ne?: number; + /** + * Balance at start of day (first epoch) in Gwei (filter: lt) + */ + start_balance_lt?: number; + /** + * Balance at start of day (first epoch) in Gwei (filter: lte) + */ + start_balance_lte?: number; + /** + * Balance at start of day (first epoch) in Gwei (filter: gt) + */ + start_balance_gt?: number; + /** + * Balance at start of day (first epoch) in Gwei (filter: gte) + */ + start_balance_gte?: number; + /** + * Balance at start of day (first epoch) in Gwei (filter: between_min) + */ + start_balance_between_min?: number; + /** + * Balance at start of day (first epoch) in Gwei (filter: between_max_value) + */ + start_balance_between_max_value?: number; + /** + * Balance at start of day (first epoch) in Gwei (filter: in_values) (comma-separated list) + */ + start_balance_in_values?: string; + /** + * Balance at start of day (first epoch) in Gwei (filter: not_in_values) (comma-separated list) + */ + start_balance_not_in_values?: string; + /** + * Balance at end of day (last epoch) in Gwei (filter: eq) + */ + end_balance_eq?: number; + /** + * Balance at end of day (last epoch) in Gwei (filter: ne) + */ + end_balance_ne?: number; + /** + * Balance at end of day (last epoch) in Gwei (filter: lt) + */ + end_balance_lt?: number; + /** + * Balance at end of day (last epoch) in Gwei (filter: lte) + */ + end_balance_lte?: number; + /** + * Balance at end of day (last epoch) in Gwei (filter: gt) + */ + end_balance_gt?: number; + /** + * Balance at end of day (last epoch) in Gwei (filter: gte) + */ + end_balance_gte?: number; + /** + * Balance at end of day (last epoch) in Gwei (filter: between_min) + */ + end_balance_between_min?: number; + /** + * Balance at end of day (last epoch) in Gwei (filter: between_max_value) + */ + end_balance_between_max_value?: number; + /** + * Balance at end of day (last epoch) in Gwei (filter: in_values) (comma-separated list) + */ + end_balance_in_values?: string; + /** + * Balance at end of day (last epoch) in Gwei (filter: not_in_values) (comma-separated list) + */ + end_balance_not_in_values?: string; + /** + * Minimum balance during the day in Gwei (filter: eq) + */ + min_balance_eq?: number; + /** + * Minimum balance during the day in Gwei (filter: ne) + */ + min_balance_ne?: number; + /** + * Minimum balance during the day in Gwei (filter: lt) + */ + min_balance_lt?: number; + /** + * Minimum balance during the day in Gwei (filter: lte) + */ + min_balance_lte?: number; + /** + * Minimum balance during the day in Gwei (filter: gt) + */ + min_balance_gt?: number; + /** + * Minimum balance during the day in Gwei (filter: gte) + */ + min_balance_gte?: number; + /** + * Minimum balance during the day in Gwei (filter: between_min) + */ + min_balance_between_min?: number; + /** + * Minimum balance during the day in Gwei (filter: between_max_value) + */ + min_balance_between_max_value?: number; + /** + * Minimum balance during the day in Gwei (filter: in_values) (comma-separated list) + */ + min_balance_in_values?: string; + /** + * Minimum balance during the day in Gwei (filter: not_in_values) (comma-separated list) + */ + min_balance_not_in_values?: string; + /** + * Maximum balance during the day in Gwei (filter: eq) + */ + max_balance_eq?: number; + /** + * Maximum balance during the day in Gwei (filter: ne) + */ + max_balance_ne?: number; + /** + * Maximum balance during the day in Gwei (filter: lt) + */ + max_balance_lt?: number; + /** + * Maximum balance during the day in Gwei (filter: lte) + */ + max_balance_lte?: number; + /** + * Maximum balance during the day in Gwei (filter: gt) + */ + max_balance_gt?: number; + /** + * Maximum balance during the day in Gwei (filter: gte) + */ + max_balance_gte?: number; + /** + * Maximum balance during the day in Gwei (filter: between_min) + */ + max_balance_between_min?: number; + /** + * Maximum balance during the day in Gwei (filter: between_max_value) + */ + max_balance_between_max_value?: number; + /** + * Maximum balance during the day in Gwei (filter: in_values) (comma-separated list) + */ + max_balance_in_values?: string; + /** + * Maximum balance during the day in Gwei (filter: not_in_values) (comma-separated list) + */ + max_balance_not_in_values?: string; + /** + * Effective balance at end of day in Gwei (filter: eq) + */ + effective_balance_eq?: number; + /** + * Effective balance at end of day in Gwei (filter: ne) + */ + effective_balance_ne?: number; + /** + * Effective balance at end of day in Gwei (filter: lt) + */ + effective_balance_lt?: number; + /** + * Effective balance at end of day in Gwei (filter: lte) + */ + effective_balance_lte?: number; + /** + * Effective balance at end of day in Gwei (filter: gt) + */ + effective_balance_gt?: number; + /** + * Effective balance at end of day in Gwei (filter: gte) + */ + effective_balance_gte?: number; + /** + * Effective balance at end of day in Gwei (filter: between_min) + */ + effective_balance_between_min?: number; + /** + * Effective balance at end of day in Gwei (filter: between_max_value) + */ + effective_balance_between_max_value?: number; + /** + * Effective balance at end of day in Gwei (filter: in_values) (comma-separated list) + */ + effective_balance_in_values?: string; + /** + * Effective balance at end of day in Gwei (filter: not_in_values) (comma-separated list) + */ + effective_balance_not_in_values?: string; + /** + * Validator status at end of day (filter: eq) + */ + status_eq?: string; + /** + * Validator status at end of day (filter: ne) + */ + status_ne?: string; + /** + * Validator status at end of day (filter: contains) + */ + status_contains?: string; + /** + * Validator status at end of day (filter: starts_with) + */ + status_starts_with?: string; + /** + * Validator status at end of day (filter: ends_with) + */ + status_ends_with?: string; + /** + * Validator status at end of day (filter: like) + */ + status_like?: string; + /** + * Validator status at end of day (filter: not_like) + */ + status_not_like?: string; + /** + * Validator status at end of day (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Validator status at end of day (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Whether the validator was slashed (as of end of day) (filter: eq) + */ + slashed_eq?: boolean; + /** + * Whether the validator was slashed (as of end of day) (filter: ne) + */ + slashed_ne?: boolean; + /** + * The maximum number of fct_validator_balance_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctValidatorBalanceDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_validator_balance_daily'; +}; + +export type FctValidatorBalanceDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctValidatorBalanceDailyServiceListError = + FctValidatorBalanceDailyServiceListErrors[keyof FctValidatorBalanceDailyServiceListErrors]; + +export type FctValidatorBalanceDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctValidatorBalanceDailyResponse; +}; + +export type FctValidatorBalanceDailyServiceListResponse = + FctValidatorBalanceDailyServiceListResponses[keyof FctValidatorBalanceDailyServiceListResponses]; + +export type FctValidatorBalanceDailyServiceGetData = { + body?: never; + path: { + /** + * The index of the validator + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/fct_validator_balance_daily/{validator_index}'; +}; + +export type FctValidatorBalanceDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctValidatorBalanceDailyServiceGetError = + FctValidatorBalanceDailyServiceGetErrors[keyof FctValidatorBalanceDailyServiceGetErrors]; + +export type FctValidatorBalanceDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctValidatorBalanceDailyResponse; +}; + +export type FctValidatorBalanceDailyServiceGetResponse = + FctValidatorBalanceDailyServiceGetResponses[keyof FctValidatorBalanceDailyServiceGetResponses]; + +export type FctValidatorBalanceHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The index of the validator (filter: eq) + */ + validator_index_eq?: number; + /** + * The index of the validator (filter: ne) + */ + validator_index_ne?: number; + /** + * The index of the validator (filter: lt) + */ + validator_index_lt?: number; + /** + * The index of the validator (filter: lte) + */ + validator_index_lte?: number; + /** + * The index of the validator (filter: gt) + */ + validator_index_gt?: number; + /** + * The index of the validator (filter: gte) + */ + validator_index_gte?: number; + /** + * The index of the validator (filter: between_min) + */ + validator_index_between_min?: number; + /** + * The index of the validator (filter: between_max_value) + */ + validator_index_between_max_value?: number; + /** + * The index of the validator (filter: in_values) (comma-separated list) + */ + validator_index_in_values?: string; + /** + * The index of the validator (filter: not_in_values) (comma-separated list) + */ + validator_index_not_in_values?: string; + /** + * The start of the hour for this aggregation (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * The start of the hour for this aggregation (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * The start of the hour for this aggregation (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * The start of the hour for this aggregation (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * The start of the hour for this aggregation (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * The start of the hour for this aggregation (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * The start of the hour for this aggregation (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * The start of the hour for this aggregation (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * The start of the hour for this aggregation (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * The start of the hour for this aggregation (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * First epoch in this hour for this validator (filter: eq) + */ + start_epoch_eq?: number; + /** + * First epoch in this hour for this validator (filter: ne) + */ + start_epoch_ne?: number; + /** + * First epoch in this hour for this validator (filter: lt) + */ + start_epoch_lt?: number; + /** + * First epoch in this hour for this validator (filter: lte) + */ + start_epoch_lte?: number; + /** + * First epoch in this hour for this validator (filter: gt) + */ + start_epoch_gt?: number; + /** + * First epoch in this hour for this validator (filter: gte) + */ + start_epoch_gte?: number; + /** + * First epoch in this hour for this validator (filter: between_min) + */ + start_epoch_between_min?: number; + /** + * First epoch in this hour for this validator (filter: between_max_value) + */ + start_epoch_between_max_value?: number; + /** + * First epoch in this hour for this validator (filter: in_values) (comma-separated list) + */ + start_epoch_in_values?: string; + /** + * First epoch in this hour for this validator (filter: not_in_values) (comma-separated list) + */ + start_epoch_not_in_values?: string; + /** + * Last epoch in this hour for this validator (filter: eq) + */ + end_epoch_eq?: number; + /** + * Last epoch in this hour for this validator (filter: ne) + */ + end_epoch_ne?: number; + /** + * Last epoch in this hour for this validator (filter: lt) + */ + end_epoch_lt?: number; + /** + * Last epoch in this hour for this validator (filter: lte) + */ + end_epoch_lte?: number; + /** + * Last epoch in this hour for this validator (filter: gt) + */ + end_epoch_gt?: number; + /** + * Last epoch in this hour for this validator (filter: gte) + */ + end_epoch_gte?: number; + /** + * Last epoch in this hour for this validator (filter: between_min) + */ + end_epoch_between_min?: number; + /** + * Last epoch in this hour for this validator (filter: between_max_value) + */ + end_epoch_between_max_value?: number; + /** + * Last epoch in this hour for this validator (filter: in_values) (comma-separated list) + */ + end_epoch_in_values?: string; + /** + * Last epoch in this hour for this validator (filter: not_in_values) (comma-separated list) + */ + end_epoch_not_in_values?: string; + /** + * Balance at start of hour (first epoch) in Gwei (filter: eq) + */ + start_balance_eq?: number; + /** + * Balance at start of hour (first epoch) in Gwei (filter: ne) + */ + start_balance_ne?: number; + /** + * Balance at start of hour (first epoch) in Gwei (filter: lt) + */ + start_balance_lt?: number; + /** + * Balance at start of hour (first epoch) in Gwei (filter: lte) + */ + start_balance_lte?: number; + /** + * Balance at start of hour (first epoch) in Gwei (filter: gt) + */ + start_balance_gt?: number; + /** + * Balance at start of hour (first epoch) in Gwei (filter: gte) + */ + start_balance_gte?: number; + /** + * Balance at start of hour (first epoch) in Gwei (filter: between_min) + */ + start_balance_between_min?: number; + /** + * Balance at start of hour (first epoch) in Gwei (filter: between_max_value) + */ + start_balance_between_max_value?: number; + /** + * Balance at start of hour (first epoch) in Gwei (filter: in_values) (comma-separated list) + */ + start_balance_in_values?: string; + /** + * Balance at start of hour (first epoch) in Gwei (filter: not_in_values) (comma-separated list) + */ + start_balance_not_in_values?: string; + /** + * Balance at end of hour (last epoch) in Gwei (filter: eq) + */ + end_balance_eq?: number; + /** + * Balance at end of hour (last epoch) in Gwei (filter: ne) + */ + end_balance_ne?: number; + /** + * Balance at end of hour (last epoch) in Gwei (filter: lt) + */ + end_balance_lt?: number; + /** + * Balance at end of hour (last epoch) in Gwei (filter: lte) + */ + end_balance_lte?: number; + /** + * Balance at end of hour (last epoch) in Gwei (filter: gt) + */ + end_balance_gt?: number; + /** + * Balance at end of hour (last epoch) in Gwei (filter: gte) + */ + end_balance_gte?: number; + /** + * Balance at end of hour (last epoch) in Gwei (filter: between_min) + */ + end_balance_between_min?: number; + /** + * Balance at end of hour (last epoch) in Gwei (filter: between_max_value) + */ + end_balance_between_max_value?: number; + /** + * Balance at end of hour (last epoch) in Gwei (filter: in_values) (comma-separated list) + */ + end_balance_in_values?: string; + /** + * Balance at end of hour (last epoch) in Gwei (filter: not_in_values) (comma-separated list) + */ + end_balance_not_in_values?: string; + /** + * Minimum balance during the hour in Gwei (filter: eq) + */ + min_balance_eq?: number; + /** + * Minimum balance during the hour in Gwei (filter: ne) + */ + min_balance_ne?: number; + /** + * Minimum balance during the hour in Gwei (filter: lt) + */ + min_balance_lt?: number; + /** + * Minimum balance during the hour in Gwei (filter: lte) + */ + min_balance_lte?: number; + /** + * Minimum balance during the hour in Gwei (filter: gt) + */ + min_balance_gt?: number; + /** + * Minimum balance during the hour in Gwei (filter: gte) + */ + min_balance_gte?: number; + /** + * Minimum balance during the hour in Gwei (filter: between_min) + */ + min_balance_between_min?: number; + /** + * Minimum balance during the hour in Gwei (filter: between_max_value) + */ + min_balance_between_max_value?: number; + /** + * Minimum balance during the hour in Gwei (filter: in_values) (comma-separated list) + */ + min_balance_in_values?: string; + /** + * Minimum balance during the hour in Gwei (filter: not_in_values) (comma-separated list) + */ + min_balance_not_in_values?: string; + /** + * Maximum balance during the hour in Gwei (filter: eq) + */ + max_balance_eq?: number; + /** + * Maximum balance during the hour in Gwei (filter: ne) + */ + max_balance_ne?: number; + /** + * Maximum balance during the hour in Gwei (filter: lt) + */ + max_balance_lt?: number; + /** + * Maximum balance during the hour in Gwei (filter: lte) + */ + max_balance_lte?: number; + /** + * Maximum balance during the hour in Gwei (filter: gt) + */ + max_balance_gt?: number; + /** + * Maximum balance during the hour in Gwei (filter: gte) + */ + max_balance_gte?: number; + /** + * Maximum balance during the hour in Gwei (filter: between_min) + */ + max_balance_between_min?: number; + /** + * Maximum balance during the hour in Gwei (filter: between_max_value) + */ + max_balance_between_max_value?: number; + /** + * Maximum balance during the hour in Gwei (filter: in_values) (comma-separated list) + */ + max_balance_in_values?: string; + /** + * Maximum balance during the hour in Gwei (filter: not_in_values) (comma-separated list) + */ + max_balance_not_in_values?: string; + /** + * Effective balance at end of hour in Gwei (filter: eq) + */ + effective_balance_eq?: number; + /** + * Effective balance at end of hour in Gwei (filter: ne) + */ + effective_balance_ne?: number; + /** + * Effective balance at end of hour in Gwei (filter: lt) + */ + effective_balance_lt?: number; + /** + * Effective balance at end of hour in Gwei (filter: lte) + */ + effective_balance_lte?: number; + /** + * Effective balance at end of hour in Gwei (filter: gt) + */ + effective_balance_gt?: number; + /** + * Effective balance at end of hour in Gwei (filter: gte) + */ + effective_balance_gte?: number; + /** + * Effective balance at end of hour in Gwei (filter: between_min) + */ + effective_balance_between_min?: number; + /** + * Effective balance at end of hour in Gwei (filter: between_max_value) + */ + effective_balance_between_max_value?: number; + /** + * Effective balance at end of hour in Gwei (filter: in_values) (comma-separated list) + */ + effective_balance_in_values?: string; + /** + * Effective balance at end of hour in Gwei (filter: not_in_values) (comma-separated list) + */ + effective_balance_not_in_values?: string; + /** + * Validator status at end of hour (filter: eq) + */ + status_eq?: string; + /** + * Validator status at end of hour (filter: ne) + */ + status_ne?: string; + /** + * Validator status at end of hour (filter: contains) + */ + status_contains?: string; + /** + * Validator status at end of hour (filter: starts_with) + */ + status_starts_with?: string; + /** + * Validator status at end of hour (filter: ends_with) + */ + status_ends_with?: string; + /** + * Validator status at end of hour (filter: like) + */ + status_like?: string; + /** + * Validator status at end of hour (filter: not_like) + */ + status_not_like?: string; + /** + * Validator status at end of hour (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Validator status at end of hour (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Whether the validator was slashed (as of end of hour) (filter: eq) + */ + slashed_eq?: boolean; + /** + * Whether the validator was slashed (as of end of hour) (filter: ne) + */ + slashed_ne?: boolean; + /** + * The maximum number of fct_validator_balance_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctValidatorBalanceHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_validator_balance_hourly'; +}; + +export type FctValidatorBalanceHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctValidatorBalanceHourlyServiceListError = + FctValidatorBalanceHourlyServiceListErrors[keyof FctValidatorBalanceHourlyServiceListErrors]; + +export type FctValidatorBalanceHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctValidatorBalanceHourlyResponse; +}; + +export type FctValidatorBalanceHourlyServiceListResponse = + FctValidatorBalanceHourlyServiceListResponses[keyof FctValidatorBalanceHourlyServiceListResponses]; + +export type FctValidatorBalanceHourlyServiceGetData = { + body?: never; + path: { + /** + * The index of the validator + */ + validator_index: number; + }; + query?: never; + url: '/api/v1/fct_validator_balance_hourly/{validator_index}'; +}; + +export type FctValidatorBalanceHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctValidatorBalanceHourlyServiceGetError = + FctValidatorBalanceHourlyServiceGetErrors[keyof FctValidatorBalanceHourlyServiceGetErrors]; + +export type FctValidatorBalanceHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctValidatorBalanceHourlyResponse; +}; + +export type FctValidatorBalanceHourlyServiceGetResponse = + FctValidatorBalanceHourlyServiceGetResponses[keyof FctValidatorBalanceHourlyServiceGetResponses]; + +export type FctValidatorCountByEntityByStatusDailyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start of the day period (filter: eq) + */ + day_start_date_eq?: string; + /** + * Start of the day period (filter: ne) + */ + day_start_date_ne?: string; + /** + * Start of the day period (filter: contains) + */ + day_start_date_contains?: string; + /** + * Start of the day period (filter: starts_with) + */ + day_start_date_starts_with?: string; + /** + * Start of the day period (filter: ends_with) + */ + day_start_date_ends_with?: string; + /** + * Start of the day period (filter: like) + */ + day_start_date_like?: string; + /** + * Start of the day period (filter: not_like) + */ + day_start_date_not_like?: string; + /** + * Start of the day period (filter: in_values) (comma-separated list) + */ + day_start_date_in_values?: string; + /** + * Start of the day period (filter: not_in_values) (comma-separated list) + */ + day_start_date_not_in_values?: string; + /** + * Entity name from dim_node mapping (filter: eq) + */ + entity_eq?: string; + /** + * Entity name from dim_node mapping (filter: ne) + */ + entity_ne?: string; + /** + * Entity name from dim_node mapping (filter: contains) + */ + entity_contains?: string; + /** + * Entity name from dim_node mapping (filter: starts_with) + */ + entity_starts_with?: string; + /** + * Entity name from dim_node mapping (filter: ends_with) + */ + entity_ends_with?: string; + /** + * Entity name from dim_node mapping (filter: like) + */ + entity_like?: string; + /** + * Entity name from dim_node mapping (filter: not_like) + */ + entity_not_like?: string; + /** + * Entity name from dim_node mapping (filter: in_values) (comma-separated list) + */ + entity_in_values?: string; + /** + * Entity name from dim_node mapping (filter: not_in_values) (comma-separated list) + */ + entity_not_in_values?: string; + /** + * Validator status (active_ongoing, pending_queued, etc) (filter: eq) + */ + status_eq?: string; + /** + * Validator status (active_ongoing, pending_queued, etc) (filter: ne) + */ + status_ne?: string; + /** + * Validator status (active_ongoing, pending_queued, etc) (filter: contains) + */ + status_contains?: string; + /** + * Validator status (active_ongoing, pending_queued, etc) (filter: starts_with) + */ + status_starts_with?: string; + /** + * Validator status (active_ongoing, pending_queued, etc) (filter: ends_with) + */ + status_ends_with?: string; + /** + * Validator status (active_ongoing, pending_queued, etc) (filter: like) + */ + status_like?: string; + /** + * Validator status (active_ongoing, pending_queued, etc) (filter: not_like) + */ + status_not_like?: string; + /** + * Validator status (active_ongoing, pending_queued, etc) (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Validator status (active_ongoing, pending_queued, etc) (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of validators with this status for this entity on this day (filter: eq) + */ + validator_count_eq?: number; + /** + * Number of validators with this status for this entity on this day (filter: ne) + */ + validator_count_ne?: number; + /** + * Number of validators with this status for this entity on this day (filter: lt) + */ + validator_count_lt?: number; + /** + * Number of validators with this status for this entity on this day (filter: lte) + */ + validator_count_lte?: number; + /** + * Number of validators with this status for this entity on this day (filter: gt) + */ + validator_count_gt?: number; + /** + * Number of validators with this status for this entity on this day (filter: gte) + */ + validator_count_gte?: number; + /** + * Number of validators with this status for this entity on this day (filter: between_min) + */ + validator_count_between_min?: number; + /** + * Number of validators with this status for this entity on this day (filter: between_max_value) + */ + validator_count_between_max_value?: number; + /** + * Number of validators with this status for this entity on this day (filter: in_values) (comma-separated list) + */ + validator_count_in_values?: string; + /** + * Number of validators with this status for this entity on this day (filter: not_in_values) (comma-separated list) + */ + validator_count_not_in_values?: string; + /** + * The maximum number of fct_validator_count_by_entity_by_status_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctValidatorCountByEntityByStatusDaily` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_validator_count_by_entity_by_status_daily'; +}; + +export type FctValidatorCountByEntityByStatusDailyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctValidatorCountByEntityByStatusDailyServiceListError = + FctValidatorCountByEntityByStatusDailyServiceListErrors[keyof FctValidatorCountByEntityByStatusDailyServiceListErrors]; + +export type FctValidatorCountByEntityByStatusDailyServiceListResponses = { + /** + * OK + */ + 200: ListFctValidatorCountByEntityByStatusDailyResponse; +}; + +export type FctValidatorCountByEntityByStatusDailyServiceListResponse = + FctValidatorCountByEntityByStatusDailyServiceListResponses[keyof FctValidatorCountByEntityByStatusDailyServiceListResponses]; + +export type FctValidatorCountByEntityByStatusDailyServiceGetData = { + body?: never; + path: { + /** + * Start of the day period + */ + day_start_date: string; + }; + query?: never; + url: '/api/v1/fct_validator_count_by_entity_by_status_daily/{day_start_date}'; +}; + +export type FctValidatorCountByEntityByStatusDailyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctValidatorCountByEntityByStatusDailyServiceGetError = + FctValidatorCountByEntityByStatusDailyServiceGetErrors[keyof FctValidatorCountByEntityByStatusDailyServiceGetErrors]; + +export type FctValidatorCountByEntityByStatusDailyServiceGetResponses = { + /** + * OK + */ + 200: GetFctValidatorCountByEntityByStatusDailyResponse; +}; + +export type FctValidatorCountByEntityByStatusDailyServiceGetResponse = + FctValidatorCountByEntityByStatusDailyServiceGetResponses[keyof FctValidatorCountByEntityByStatusDailyServiceGetResponses]; + +export type IntAttestationAttestedServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The index of the validator attesting (filter: eq) + */ + attesting_validator_index_eq?: number; + /** + * The index of the validator attesting (filter: ne) + */ + attesting_validator_index_ne?: number; + /** + * The index of the validator attesting (filter: lt) + */ + attesting_validator_index_lt?: number; + /** + * The index of the validator attesting (filter: lte) + */ + attesting_validator_index_lte?: number; + /** + * The index of the validator attesting (filter: gt) + */ + attesting_validator_index_gt?: number; + /** + * The index of the validator attesting (filter: gte) + */ + attesting_validator_index_gte?: number; + /** + * The index of the validator attesting (filter: between_min) + */ + attesting_validator_index_between_min?: number; + /** + * The index of the validator attesting (filter: between_max_value) + */ + attesting_validator_index_between_max_value?: number; + /** + * The index of the validator attesting (filter: in_values) (comma-separated list) + */ + attesting_validator_index_in_values?: string; + /** + * The index of the validator attesting (filter: not_in_values) (comma-separated list) + */ + attesting_validator_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The source epoch number in the attestation group (filter: eq) + */ + source_epoch_eq?: number; + /** + * The source epoch number in the attestation group (filter: ne) + */ + source_epoch_ne?: number; + /** + * The source epoch number in the attestation group (filter: lt) + */ + source_epoch_lt?: number; + /** + * The source epoch number in the attestation group (filter: lte) + */ + source_epoch_lte?: number; + /** + * The source epoch number in the attestation group (filter: gt) + */ + source_epoch_gt?: number; + /** + * The source epoch number in the attestation group (filter: gte) + */ + source_epoch_gte?: number; + /** + * The source epoch number in the attestation group (filter: between_min) + */ + source_epoch_between_min?: number; + /** + * The source epoch number in the attestation group (filter: between_max_value) + */ + source_epoch_between_max_value?: number; + /** + * The source epoch number in the attestation group (filter: in_values) (comma-separated list) + */ + source_epoch_in_values?: string; + /** + * The source epoch number in the attestation group (filter: not_in_values) (comma-separated list) + */ + source_epoch_not_in_values?: string; + /** + * The wall clock time when the source epoch started (filter: eq) + */ + source_epoch_start_date_time_eq?: number; + /** + * The wall clock time when the source epoch started (filter: ne) + */ + source_epoch_start_date_time_ne?: number; + /** + * The wall clock time when the source epoch started (filter: lt) + */ + source_epoch_start_date_time_lt?: number; + /** + * The wall clock time when the source epoch started (filter: lte) + */ + source_epoch_start_date_time_lte?: number; + /** + * The wall clock time when the source epoch started (filter: gt) + */ + source_epoch_start_date_time_gt?: number; + /** + * The wall clock time when the source epoch started (filter: gte) + */ + source_epoch_start_date_time_gte?: number; + /** + * The wall clock time when the source epoch started (filter: between_min) + */ + source_epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the source epoch started (filter: between_max_value) + */ + source_epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the source epoch started (filter: in_values) (comma-separated list) + */ + source_epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the source epoch started (filter: not_in_values) (comma-separated list) + */ + source_epoch_start_date_time_not_in_values?: string; + /** + * The source beacon block root hash in the attestation group (filter: eq) + */ + source_root_eq?: string; + /** + * The source beacon block root hash in the attestation group (filter: ne) + */ + source_root_ne?: string; + /** + * The source beacon block root hash in the attestation group (filter: contains) + */ + source_root_contains?: string; + /** + * The source beacon block root hash in the attestation group (filter: starts_with) + */ + source_root_starts_with?: string; + /** + * The source beacon block root hash in the attestation group (filter: ends_with) + */ + source_root_ends_with?: string; + /** + * The source beacon block root hash in the attestation group (filter: like) + */ + source_root_like?: string; + /** + * The source beacon block root hash in the attestation group (filter: not_like) + */ + source_root_not_like?: string; + /** + * The source beacon block root hash in the attestation group (filter: in_values) (comma-separated list) + */ + source_root_in_values?: string; + /** + * The source beacon block root hash in the attestation group (filter: not_in_values) (comma-separated list) + */ + source_root_not_in_values?: string; + /** + * The target epoch number in the attestation group (filter: eq) + */ + target_epoch_eq?: number; + /** + * The target epoch number in the attestation group (filter: ne) + */ + target_epoch_ne?: number; + /** + * The target epoch number in the attestation group (filter: lt) + */ + target_epoch_lt?: number; + /** + * The target epoch number in the attestation group (filter: lte) + */ + target_epoch_lte?: number; + /** + * The target epoch number in the attestation group (filter: gt) + */ + target_epoch_gt?: number; + /** + * The target epoch number in the attestation group (filter: gte) + */ + target_epoch_gte?: number; + /** + * The target epoch number in the attestation group (filter: between_min) + */ + target_epoch_between_min?: number; + /** + * The target epoch number in the attestation group (filter: between_max_value) + */ + target_epoch_between_max_value?: number; + /** + * The target epoch number in the attestation group (filter: in_values) (comma-separated list) + */ + target_epoch_in_values?: string; + /** + * The target epoch number in the attestation group (filter: not_in_values) (comma-separated list) + */ + target_epoch_not_in_values?: string; + /** + * The wall clock time when the target epoch started (filter: eq) + */ + target_epoch_start_date_time_eq?: number; + /** + * The wall clock time when the target epoch started (filter: ne) + */ + target_epoch_start_date_time_ne?: number; + /** + * The wall clock time when the target epoch started (filter: lt) + */ + target_epoch_start_date_time_lt?: number; + /** + * The wall clock time when the target epoch started (filter: lte) + */ + target_epoch_start_date_time_lte?: number; + /** + * The wall clock time when the target epoch started (filter: gt) + */ + target_epoch_start_date_time_gt?: number; + /** + * The wall clock time when the target epoch started (filter: gte) + */ + target_epoch_start_date_time_gte?: number; + /** + * The wall clock time when the target epoch started (filter: between_min) + */ + target_epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the target epoch started (filter: between_max_value) + */ + target_epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the target epoch started (filter: in_values) (comma-separated list) + */ + target_epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the target epoch started (filter: not_in_values) (comma-separated list) + */ + target_epoch_start_date_time_not_in_values?: string; + /** + * The target beacon block root hash in the attestation group (filter: eq) + */ + target_root_eq?: string; + /** + * The target beacon block root hash in the attestation group (filter: ne) + */ + target_root_ne?: string; + /** + * The target beacon block root hash in the attestation group (filter: contains) + */ + target_root_contains?: string; + /** + * The target beacon block root hash in the attestation group (filter: starts_with) + */ + target_root_starts_with?: string; + /** + * The target beacon block root hash in the attestation group (filter: ends_with) + */ + target_root_ends_with?: string; + /** + * The target beacon block root hash in the attestation group (filter: like) + */ + target_root_like?: string; + /** + * The target beacon block root hash in the attestation group (filter: not_like) + */ + target_root_not_like?: string; + /** + * The target beacon block root hash in the attestation group (filter: in_values) (comma-separated list) + */ + target_root_in_values?: string; + /** + * The target beacon block root hash in the attestation group (filter: not_in_values) (comma-separated list) + */ + target_root_not_in_values?: string; + /** + * The distance from the slot when the attestation was included on-chain. Taken from the canonical variant. Null when only the head variant recorded the attestation. (filter: eq) + */ + inclusion_distance_eq?: number; + /** + * The distance from the slot when the attestation was included on-chain. Taken from the canonical variant. Null when only the head variant recorded the attestation. (filter: ne) + */ + inclusion_distance_ne?: number; + /** + * The distance from the slot when the attestation was included on-chain. Taken from the canonical variant. Null when only the head variant recorded the attestation. (filter: lt) + */ + inclusion_distance_lt?: number; + /** + * The distance from the slot when the attestation was included on-chain. Taken from the canonical variant. Null when only the head variant recorded the attestation. (filter: lte) + */ + inclusion_distance_lte?: number; + /** + * The distance from the slot when the attestation was included on-chain. Taken from the canonical variant. Null when only the head variant recorded the attestation. (filter: gt) + */ + inclusion_distance_gt?: number; + /** + * The distance from the slot when the attestation was included on-chain. Taken from the canonical variant. Null when only the head variant recorded the attestation. (filter: gte) + */ + inclusion_distance_gte?: number; + /** + * The distance from the slot when the attestation was included on-chain. Taken from the canonical variant. Null when only the head variant recorded the attestation. (filter: between_min) + */ + inclusion_distance_between_min?: number; + /** + * The distance from the slot when the attestation was included on-chain. Taken from the canonical variant. Null when only the head variant recorded the attestation. (filter: between_max_value) + */ + inclusion_distance_between_max_value?: number; + /** + * The distance from the slot when the attestation was included on-chain. Taken from the canonical variant. Null when only the head variant recorded the attestation. (filter: in_values) (comma-separated list) + */ + inclusion_distance_in_values?: string; + /** + * The distance from the slot when the attestation was included on-chain. Taken from the canonical variant. Null when only the head variant recorded the attestation. (filter: not_in_values) (comma-separated list) + */ + inclusion_distance_not_in_values?: string; + /** + * The distance from the slot when the attestation was propagated over gossip. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the next slot, etc. Taken from the head variant. Null when only the canonical variant recorded the attestation. (filter: eq) + */ + propagation_distance_eq?: number; + /** + * The distance from the slot when the attestation was propagated over gossip. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the next slot, etc. Taken from the head variant. Null when only the canonical variant recorded the attestation. (filter: ne) + */ + propagation_distance_ne?: number; + /** + * The distance from the slot when the attestation was propagated over gossip. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the next slot, etc. Taken from the head variant. Null when only the canonical variant recorded the attestation. (filter: lt) + */ + propagation_distance_lt?: number; + /** + * The distance from the slot when the attestation was propagated over gossip. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the next slot, etc. Taken from the head variant. Null when only the canonical variant recorded the attestation. (filter: lte) + */ + propagation_distance_lte?: number; + /** + * The distance from the slot when the attestation was propagated over gossip. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the next slot, etc. Taken from the head variant. Null when only the canonical variant recorded the attestation. (filter: gt) + */ + propagation_distance_gt?: number; + /** + * The distance from the slot when the attestation was propagated over gossip. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the next slot, etc. Taken from the head variant. Null when only the canonical variant recorded the attestation. (filter: gte) + */ + propagation_distance_gte?: number; + /** + * The distance from the slot when the attestation was propagated over gossip. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the next slot, etc. Taken from the head variant. Null when only the canonical variant recorded the attestation. (filter: between_min) + */ + propagation_distance_between_min?: number; + /** + * The distance from the slot when the attestation was propagated over gossip. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the next slot, etc. Taken from the head variant. Null when only the canonical variant recorded the attestation. (filter: between_max_value) + */ + propagation_distance_between_max_value?: number; + /** + * The distance from the slot when the attestation was propagated over gossip. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the next slot, etc. Taken from the head variant. Null when only the canonical variant recorded the attestation. (filter: in_values) (comma-separated list) + */ + propagation_distance_in_values?: string; + /** + * The distance from the slot when the attestation was propagated over gossip. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the next slot, etc. Taken from the head variant. Null when only the canonical variant recorded the attestation. (filter: not_in_values) (comma-separated list) + */ + propagation_distance_not_in_values?: string; + /** + * The maximum number of int_attestation_attested to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntAttestationAttested` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_attestation_attested'; +}; + +export type IntAttestationAttestedServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntAttestationAttestedServiceListError = + IntAttestationAttestedServiceListErrors[keyof IntAttestationAttestedServiceListErrors]; + +export type IntAttestationAttestedServiceListResponses = { + /** + * OK + */ + 200: ListIntAttestationAttestedResponse; +}; + +export type IntAttestationAttestedServiceListResponse = + IntAttestationAttestedServiceListResponses[keyof IntAttestationAttestedServiceListResponses]; + +export type IntAttestationAttestedServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_attestation_attested/{slot_start_date_time}'; +}; + +export type IntAttestationAttestedServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntAttestationAttestedServiceGetError = + IntAttestationAttestedServiceGetErrors[keyof IntAttestationAttestedServiceGetErrors]; + +export type IntAttestationAttestedServiceGetResponses = { + /** + * OK + */ + 200: GetIntAttestationAttestedResponse; +}; + +export type IntAttestationAttestedServiceGetResponse = + IntAttestationAttestedServiceGetResponses[keyof IntAttestationAttestedServiceGetResponses]; + +export type IntAttestationAttestedCanonicalServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The index of the validator attesting (filter: eq) + */ + attesting_validator_index_eq?: number; + /** + * The index of the validator attesting (filter: ne) + */ + attesting_validator_index_ne?: number; + /** + * The index of the validator attesting (filter: lt) + */ + attesting_validator_index_lt?: number; + /** + * The index of the validator attesting (filter: lte) + */ + attesting_validator_index_lte?: number; + /** + * The index of the validator attesting (filter: gt) + */ + attesting_validator_index_gt?: number; + /** + * The index of the validator attesting (filter: gte) + */ + attesting_validator_index_gte?: number; + /** + * The index of the validator attesting (filter: between_min) + */ + attesting_validator_index_between_min?: number; + /** + * The index of the validator attesting (filter: between_max_value) + */ + attesting_validator_index_between_max_value?: number; + /** + * The index of the validator attesting (filter: in_values) (comma-separated list) + */ + attesting_validator_index_in_values?: string; + /** + * The index of the validator attesting (filter: not_in_values) (comma-separated list) + */ + attesting_validator_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The source epoch number in the attestation group (filter: eq) + */ + source_epoch_eq?: number; + /** + * The source epoch number in the attestation group (filter: ne) + */ + source_epoch_ne?: number; + /** + * The source epoch number in the attestation group (filter: lt) + */ + source_epoch_lt?: number; + /** + * The source epoch number in the attestation group (filter: lte) + */ + source_epoch_lte?: number; + /** + * The source epoch number in the attestation group (filter: gt) + */ + source_epoch_gt?: number; + /** + * The source epoch number in the attestation group (filter: gte) + */ + source_epoch_gte?: number; + /** + * The source epoch number in the attestation group (filter: between_min) + */ + source_epoch_between_min?: number; + /** + * The source epoch number in the attestation group (filter: between_max_value) + */ + source_epoch_between_max_value?: number; + /** + * The source epoch number in the attestation group (filter: in_values) (comma-separated list) + */ + source_epoch_in_values?: string; + /** + * The source epoch number in the attestation group (filter: not_in_values) (comma-separated list) + */ + source_epoch_not_in_values?: string; + /** + * The wall clock time when the source epoch started (filter: eq) + */ + source_epoch_start_date_time_eq?: number; + /** + * The wall clock time when the source epoch started (filter: ne) + */ + source_epoch_start_date_time_ne?: number; + /** + * The wall clock time when the source epoch started (filter: lt) + */ + source_epoch_start_date_time_lt?: number; + /** + * The wall clock time when the source epoch started (filter: lte) + */ + source_epoch_start_date_time_lte?: number; + /** + * The wall clock time when the source epoch started (filter: gt) + */ + source_epoch_start_date_time_gt?: number; + /** + * The wall clock time when the source epoch started (filter: gte) + */ + source_epoch_start_date_time_gte?: number; + /** + * The wall clock time when the source epoch started (filter: between_min) + */ + source_epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the source epoch started (filter: between_max_value) + */ + source_epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the source epoch started (filter: in_values) (comma-separated list) + */ + source_epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the source epoch started (filter: not_in_values) (comma-separated list) + */ + source_epoch_start_date_time_not_in_values?: string; + /** + * The source beacon block root hash in the attestation group (filter: eq) + */ + source_root_eq?: string; + /** + * The source beacon block root hash in the attestation group (filter: ne) + */ + source_root_ne?: string; + /** + * The source beacon block root hash in the attestation group (filter: contains) + */ + source_root_contains?: string; + /** + * The source beacon block root hash in the attestation group (filter: starts_with) + */ + source_root_starts_with?: string; + /** + * The source beacon block root hash in the attestation group (filter: ends_with) + */ + source_root_ends_with?: string; + /** + * The source beacon block root hash in the attestation group (filter: like) + */ + source_root_like?: string; + /** + * The source beacon block root hash in the attestation group (filter: not_like) + */ + source_root_not_like?: string; + /** + * The source beacon block root hash in the attestation group (filter: in_values) (comma-separated list) + */ + source_root_in_values?: string; + /** + * The source beacon block root hash in the attestation group (filter: not_in_values) (comma-separated list) + */ + source_root_not_in_values?: string; + /** + * The target epoch number in the attestation group (filter: eq) + */ + target_epoch_eq?: number; + /** + * The target epoch number in the attestation group (filter: ne) + */ + target_epoch_ne?: number; + /** + * The target epoch number in the attestation group (filter: lt) + */ + target_epoch_lt?: number; + /** + * The target epoch number in the attestation group (filter: lte) + */ + target_epoch_lte?: number; + /** + * The target epoch number in the attestation group (filter: gt) + */ + target_epoch_gt?: number; + /** + * The target epoch number in the attestation group (filter: gte) + */ + target_epoch_gte?: number; + /** + * The target epoch number in the attestation group (filter: between_min) + */ + target_epoch_between_min?: number; + /** + * The target epoch number in the attestation group (filter: between_max_value) + */ + target_epoch_between_max_value?: number; + /** + * The target epoch number in the attestation group (filter: in_values) (comma-separated list) + */ + target_epoch_in_values?: string; + /** + * The target epoch number in the attestation group (filter: not_in_values) (comma-separated list) + */ + target_epoch_not_in_values?: string; + /** + * The wall clock time when the target epoch started (filter: eq) + */ + target_epoch_start_date_time_eq?: number; + /** + * The wall clock time when the target epoch started (filter: ne) + */ + target_epoch_start_date_time_ne?: number; + /** + * The wall clock time when the target epoch started (filter: lt) + */ + target_epoch_start_date_time_lt?: number; + /** + * The wall clock time when the target epoch started (filter: lte) + */ + target_epoch_start_date_time_lte?: number; + /** + * The wall clock time when the target epoch started (filter: gt) + */ + target_epoch_start_date_time_gt?: number; + /** + * The wall clock time when the target epoch started (filter: gte) + */ + target_epoch_start_date_time_gte?: number; + /** + * The wall clock time when the target epoch started (filter: between_min) + */ + target_epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the target epoch started (filter: between_max_value) + */ + target_epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the target epoch started (filter: in_values) (comma-separated list) + */ + target_epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the target epoch started (filter: not_in_values) (comma-separated list) + */ + target_epoch_start_date_time_not_in_values?: string; + /** + * The target beacon block root hash in the attestation group (filter: eq) + */ + target_root_eq?: string; + /** + * The target beacon block root hash in the attestation group (filter: ne) + */ + target_root_ne?: string; + /** + * The target beacon block root hash in the attestation group (filter: contains) + */ + target_root_contains?: string; + /** + * The target beacon block root hash in the attestation group (filter: starts_with) + */ + target_root_starts_with?: string; + /** + * The target beacon block root hash in the attestation group (filter: ends_with) + */ + target_root_ends_with?: string; + /** + * The target beacon block root hash in the attestation group (filter: like) + */ + target_root_like?: string; + /** + * The target beacon block root hash in the attestation group (filter: not_like) + */ + target_root_not_like?: string; + /** + * The target beacon block root hash in the attestation group (filter: in_values) (comma-separated list) + */ + target_root_in_values?: string; + /** + * The target beacon block root hash in the attestation group (filter: not_in_values) (comma-separated list) + */ + target_root_not_in_values?: string; + /** + * The distance from the slot when the attestation was included (filter: eq) + */ + inclusion_distance_eq?: number; + /** + * The distance from the slot when the attestation was included (filter: ne) + */ + inclusion_distance_ne?: number; + /** + * The distance from the slot when the attestation was included (filter: lt) + */ + inclusion_distance_lt?: number; + /** + * The distance from the slot when the attestation was included (filter: lte) + */ + inclusion_distance_lte?: number; + /** + * The distance from the slot when the attestation was included (filter: gt) + */ + inclusion_distance_gt?: number; + /** + * The distance from the slot when the attestation was included (filter: gte) + */ + inclusion_distance_gte?: number; + /** + * The distance from the slot when the attestation was included (filter: between_min) + */ + inclusion_distance_between_min?: number; + /** + * The distance from the slot when the attestation was included (filter: between_max_value) + */ + inclusion_distance_between_max_value?: number; + /** + * The distance from the slot when the attestation was included (filter: in_values) (comma-separated list) + */ + inclusion_distance_in_values?: string; + /** + * The distance from the slot when the attestation was included (filter: not_in_values) (comma-separated list) + */ + inclusion_distance_not_in_values?: string; + /** + * The maximum number of int_attestation_attested_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntAttestationAttestedCanonical` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_attestation_attested_canonical'; +}; + +export type IntAttestationAttestedCanonicalServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntAttestationAttestedCanonicalServiceListError = + IntAttestationAttestedCanonicalServiceListErrors[keyof IntAttestationAttestedCanonicalServiceListErrors]; + +export type IntAttestationAttestedCanonicalServiceListResponses = { + /** + * OK + */ + 200: ListIntAttestationAttestedCanonicalResponse; +}; + +export type IntAttestationAttestedCanonicalServiceListResponse = + IntAttestationAttestedCanonicalServiceListResponses[keyof IntAttestationAttestedCanonicalServiceListResponses]; + +export type IntAttestationAttestedCanonicalServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_attestation_attested_canonical/{slot_start_date_time}'; +}; + +export type IntAttestationAttestedCanonicalServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntAttestationAttestedCanonicalServiceGetError = + IntAttestationAttestedCanonicalServiceGetErrors[keyof IntAttestationAttestedCanonicalServiceGetErrors]; + +export type IntAttestationAttestedCanonicalServiceGetResponses = { + /** + * OK + */ + 200: GetIntAttestationAttestedCanonicalResponse; +}; + +export type IntAttestationAttestedCanonicalServiceGetResponse = + IntAttestationAttestedCanonicalServiceGetResponses[keyof IntAttestationAttestedCanonicalServiceGetResponses]; + +export type IntAttestationAttestedHeadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The index of the validator attesting (filter: eq) + */ + attesting_validator_index_eq?: number; + /** + * The index of the validator attesting (filter: ne) + */ + attesting_validator_index_ne?: number; + /** + * The index of the validator attesting (filter: lt) + */ + attesting_validator_index_lt?: number; + /** + * The index of the validator attesting (filter: lte) + */ + attesting_validator_index_lte?: number; + /** + * The index of the validator attesting (filter: gt) + */ + attesting_validator_index_gt?: number; + /** + * The index of the validator attesting (filter: gte) + */ + attesting_validator_index_gte?: number; + /** + * The index of the validator attesting (filter: between_min) + */ + attesting_validator_index_between_min?: number; + /** + * The index of the validator attesting (filter: between_max_value) + */ + attesting_validator_index_between_max_value?: number; + /** + * The index of the validator attesting (filter: in_values) (comma-separated list) + */ + attesting_validator_index_in_values?: string; + /** + * The index of the validator attesting (filter: not_in_values) (comma-separated list) + */ + attesting_validator_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The source epoch number in the attestation group (filter: eq) + */ + source_epoch_eq?: number; + /** + * The source epoch number in the attestation group (filter: ne) + */ + source_epoch_ne?: number; + /** + * The source epoch number in the attestation group (filter: lt) + */ + source_epoch_lt?: number; + /** + * The source epoch number in the attestation group (filter: lte) + */ + source_epoch_lte?: number; + /** + * The source epoch number in the attestation group (filter: gt) + */ + source_epoch_gt?: number; + /** + * The source epoch number in the attestation group (filter: gte) + */ + source_epoch_gte?: number; + /** + * The source epoch number in the attestation group (filter: between_min) + */ + source_epoch_between_min?: number; + /** + * The source epoch number in the attestation group (filter: between_max_value) + */ + source_epoch_between_max_value?: number; + /** + * The source epoch number in the attestation group (filter: in_values) (comma-separated list) + */ + source_epoch_in_values?: string; + /** + * The source epoch number in the attestation group (filter: not_in_values) (comma-separated list) + */ + source_epoch_not_in_values?: string; + /** + * The wall clock time when the source epoch started (filter: eq) + */ + source_epoch_start_date_time_eq?: number; + /** + * The wall clock time when the source epoch started (filter: ne) + */ + source_epoch_start_date_time_ne?: number; + /** + * The wall clock time when the source epoch started (filter: lt) + */ + source_epoch_start_date_time_lt?: number; + /** + * The wall clock time when the source epoch started (filter: lte) + */ + source_epoch_start_date_time_lte?: number; + /** + * The wall clock time when the source epoch started (filter: gt) + */ + source_epoch_start_date_time_gt?: number; + /** + * The wall clock time when the source epoch started (filter: gte) + */ + source_epoch_start_date_time_gte?: number; + /** + * The wall clock time when the source epoch started (filter: between_min) + */ + source_epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the source epoch started (filter: between_max_value) + */ + source_epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the source epoch started (filter: in_values) (comma-separated list) + */ + source_epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the source epoch started (filter: not_in_values) (comma-separated list) + */ + source_epoch_start_date_time_not_in_values?: string; + /** + * The source beacon block root hash in the attestation group (filter: eq) + */ + source_root_eq?: string; + /** + * The source beacon block root hash in the attestation group (filter: ne) + */ + source_root_ne?: string; + /** + * The source beacon block root hash in the attestation group (filter: contains) + */ + source_root_contains?: string; + /** + * The source beacon block root hash in the attestation group (filter: starts_with) + */ + source_root_starts_with?: string; + /** + * The source beacon block root hash in the attestation group (filter: ends_with) + */ + source_root_ends_with?: string; + /** + * The source beacon block root hash in the attestation group (filter: like) + */ + source_root_like?: string; + /** + * The source beacon block root hash in the attestation group (filter: not_like) + */ + source_root_not_like?: string; + /** + * The source beacon block root hash in the attestation group (filter: in_values) (comma-separated list) + */ + source_root_in_values?: string; + /** + * The source beacon block root hash in the attestation group (filter: not_in_values) (comma-separated list) + */ + source_root_not_in_values?: string; + /** + * The target epoch number in the attestation group (filter: eq) + */ + target_epoch_eq?: number; + /** + * The target epoch number in the attestation group (filter: ne) + */ + target_epoch_ne?: number; + /** + * The target epoch number in the attestation group (filter: lt) + */ + target_epoch_lt?: number; + /** + * The target epoch number in the attestation group (filter: lte) + */ + target_epoch_lte?: number; + /** + * The target epoch number in the attestation group (filter: gt) + */ + target_epoch_gt?: number; + /** + * The target epoch number in the attestation group (filter: gte) + */ + target_epoch_gte?: number; + /** + * The target epoch number in the attestation group (filter: between_min) + */ + target_epoch_between_min?: number; + /** + * The target epoch number in the attestation group (filter: between_max_value) + */ + target_epoch_between_max_value?: number; + /** + * The target epoch number in the attestation group (filter: in_values) (comma-separated list) + */ + target_epoch_in_values?: string; + /** + * The target epoch number in the attestation group (filter: not_in_values) (comma-separated list) + */ + target_epoch_not_in_values?: string; + /** + * The wall clock time when the target epoch started (filter: eq) + */ + target_epoch_start_date_time_eq?: number; + /** + * The wall clock time when the target epoch started (filter: ne) + */ + target_epoch_start_date_time_ne?: number; + /** + * The wall clock time when the target epoch started (filter: lt) + */ + target_epoch_start_date_time_lt?: number; + /** + * The wall clock time when the target epoch started (filter: lte) + */ + target_epoch_start_date_time_lte?: number; + /** + * The wall clock time when the target epoch started (filter: gt) + */ + target_epoch_start_date_time_gt?: number; + /** + * The wall clock time when the target epoch started (filter: gte) + */ + target_epoch_start_date_time_gte?: number; + /** + * The wall clock time when the target epoch started (filter: between_min) + */ + target_epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the target epoch started (filter: between_max_value) + */ + target_epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the target epoch started (filter: in_values) (comma-separated list) + */ + target_epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the target epoch started (filter: not_in_values) (comma-separated list) + */ + target_epoch_start_date_time_not_in_values?: string; + /** + * The target beacon block root hash in the attestation group (filter: eq) + */ + target_root_eq?: string; + /** + * The target beacon block root hash in the attestation group (filter: ne) + */ + target_root_ne?: string; + /** + * The target beacon block root hash in the attestation group (filter: contains) + */ + target_root_contains?: string; + /** + * The target beacon block root hash in the attestation group (filter: starts_with) + */ + target_root_starts_with?: string; + /** + * The target beacon block root hash in the attestation group (filter: ends_with) + */ + target_root_ends_with?: string; + /** + * The target beacon block root hash in the attestation group (filter: like) + */ + target_root_like?: string; + /** + * The target beacon block root hash in the attestation group (filter: not_like) + */ + target_root_not_like?: string; + /** + * The target beacon block root hash in the attestation group (filter: in_values) (comma-separated list) + */ + target_root_in_values?: string; + /** + * The target beacon block root hash in the attestation group (filter: not_in_values) (comma-separated list) + */ + target_root_not_in_values?: string; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: eq) + */ + propagation_distance_eq?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: ne) + */ + propagation_distance_ne?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: lt) + */ + propagation_distance_lt?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: lte) + */ + propagation_distance_lte?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: gt) + */ + propagation_distance_gt?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: gte) + */ + propagation_distance_gte?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: between_min) + */ + propagation_distance_between_min?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: between_max_value) + */ + propagation_distance_between_max_value?: number; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: in_values) (comma-separated list) + */ + propagation_distance_in_values?: string; + /** + * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: not_in_values) (comma-separated list) + */ + propagation_distance_not_in_values?: string; + /** + * The maximum number of int_attestation_attested_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntAttestationAttestedHead` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_attestation_attested_head'; +}; + +export type IntAttestationAttestedHeadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntAttestationAttestedHeadServiceListError = + IntAttestationAttestedHeadServiceListErrors[keyof IntAttestationAttestedHeadServiceListErrors]; + +export type IntAttestationAttestedHeadServiceListResponses = { + /** + * OK + */ + 200: ListIntAttestationAttestedHeadResponse; +}; + +export type IntAttestationAttestedHeadServiceListResponse = + IntAttestationAttestedHeadServiceListResponses[keyof IntAttestationAttestedHeadServiceListResponses]; + +export type IntAttestationAttestedHeadServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_attestation_attested_head/{slot_start_date_time}'; +}; + +export type IntAttestationAttestedHeadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntAttestationAttestedHeadServiceGetError = + IntAttestationAttestedHeadServiceGetErrors[keyof IntAttestationAttestedHeadServiceGetErrors]; + +export type IntAttestationAttestedHeadServiceGetResponses = { + /** + * OK + */ + 200: GetIntAttestationAttestedHeadResponse; +}; + +export type IntAttestationAttestedHeadServiceGetResponse = + IntAttestationAttestedHeadServiceGetResponses[keyof IntAttestationAttestedHeadServiceGetResponses]; + +export type IntAttestationFirstSeenServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The index of the validator attesting (filter: eq) + */ + attesting_validator_index_eq?: number; + /** + * The index of the validator attesting (filter: ne) + */ + attesting_validator_index_ne?: number; + /** + * The index of the validator attesting (filter: lt) + */ + attesting_validator_index_lt?: number; + /** + * The index of the validator attesting (filter: lte) + */ + attesting_validator_index_lte?: number; + /** + * The index of the validator attesting (filter: gt) + */ + attesting_validator_index_gt?: number; + /** + * The index of the validator attesting (filter: gte) + */ + attesting_validator_index_gte?: number; + /** + * The index of the validator attesting (filter: between_min) + */ + attesting_validator_index_between_min?: number; + /** + * The index of the validator attesting (filter: between_max_value) + */ + attesting_validator_index_between_max_value?: number; + /** + * The index of the validator attesting (filter: in_values) (comma-separated list) + */ + attesting_validator_index_in_values?: string; + /** + * The index of the validator attesting (filter: not_in_values) (comma-separated list) + */ + attesting_validator_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Source of the event (filter: eq) + */ + source_eq?: string; + /** + * Source of the event (filter: ne) + */ + source_ne?: string; + /** + * Source of the event (filter: contains) + */ + source_contains?: string; + /** + * Source of the event (filter: starts_with) + */ + source_starts_with?: string; + /** + * Source of the event (filter: ends_with) + */ + source_ends_with?: string; + /** + * Source of the event (filter: like) + */ + source_like?: string; + /** + * Source of the event (filter: not_like) + */ + source_not_like?: string; + /** + * Source of the event (filter: in_values) (comma-separated list) + */ + source_in_values?: string; + /** + * Source of the event (filter: not_in_values) (comma-separated list) + */ + source_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The time from slot start for the client to see the block (filter: eq) + */ + seen_slot_start_diff_eq?: number; + /** + * The time from slot start for the client to see the block (filter: ne) + */ + seen_slot_start_diff_ne?: number; + /** + * The time from slot start for the client to see the block (filter: lt) + */ + seen_slot_start_diff_lt?: number; + /** + * The time from slot start for the client to see the block (filter: lte) + */ + seen_slot_start_diff_lte?: number; + /** + * The time from slot start for the client to see the block (filter: gt) + */ + seen_slot_start_diff_gt?: number; + /** + * The time from slot start for the client to see the block (filter: gte) + */ + seen_slot_start_diff_gte?: number; + /** + * The time from slot start for the client to see the block (filter: between_min) + */ + seen_slot_start_diff_between_min?: number; + /** + * The time from slot start for the client to see the block (filter: between_max_value) + */ + seen_slot_start_diff_between_max_value?: number; + /** + * The time from slot start for the client to see the block (filter: in_values) (comma-separated list) + */ + seen_slot_start_diff_in_values?: string; + /** + * The time from slot start for the client to see the block (filter: not_in_values) (comma-separated list) + */ + seen_slot_start_diff_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The committee index of the attesting validator (filter: eq) + */ + attesting_validator_committee_index_eq?: string; + /** + * The committee index of the attesting validator (filter: ne) + */ + attesting_validator_committee_index_ne?: string; + /** + * The committee index of the attesting validator (filter: contains) + */ + attesting_validator_committee_index_contains?: string; + /** + * The committee index of the attesting validator (filter: starts_with) + */ + attesting_validator_committee_index_starts_with?: string; + /** + * The committee index of the attesting validator (filter: ends_with) + */ + attesting_validator_committee_index_ends_with?: string; + /** + * The committee index of the attesting validator (filter: like) + */ + attesting_validator_committee_index_like?: string; + /** + * The committee index of the attesting validator (filter: not_like) + */ + attesting_validator_committee_index_not_like?: string; + /** + * The committee index of the attesting validator (filter: in_values) (comma-separated list) + */ + attesting_validator_committee_index_in_values?: string; + /** + * The committee index of the attesting validator (filter: not_in_values) (comma-separated list) + */ + attesting_validator_committee_index_not_in_values?: string; + /** + * Source checkpoint epoch of the attestation (filter: eq) + */ + source_epoch_eq?: number; + /** + * Source checkpoint epoch of the attestation (filter: ne) + */ + source_epoch_ne?: number; + /** + * Source checkpoint epoch of the attestation (filter: lt) + */ + source_epoch_lt?: number; + /** + * Source checkpoint epoch of the attestation (filter: lte) + */ + source_epoch_lte?: number; + /** + * Source checkpoint epoch of the attestation (filter: gt) + */ + source_epoch_gt?: number; + /** + * Source checkpoint epoch of the attestation (filter: gte) + */ + source_epoch_gte?: number; + /** + * Source checkpoint epoch of the attestation (filter: between_min) + */ + source_epoch_between_min?: number; + /** + * Source checkpoint epoch of the attestation (filter: between_max_value) + */ + source_epoch_between_max_value?: number; + /** + * Source checkpoint epoch of the attestation (filter: in_values) (comma-separated list) + */ + source_epoch_in_values?: string; + /** + * Source checkpoint epoch of the attestation (filter: not_in_values) (comma-separated list) + */ + source_epoch_not_in_values?: string; + /** + * Source checkpoint root of the attestation (filter: eq) + */ + source_root_eq?: string; + /** + * Source checkpoint root of the attestation (filter: ne) + */ + source_root_ne?: string; + /** + * Source checkpoint root of the attestation (filter: contains) + */ + source_root_contains?: string; + /** + * Source checkpoint root of the attestation (filter: starts_with) + */ + source_root_starts_with?: string; + /** + * Source checkpoint root of the attestation (filter: ends_with) + */ + source_root_ends_with?: string; + /** + * Source checkpoint root of the attestation (filter: like) + */ + source_root_like?: string; + /** + * Source checkpoint root of the attestation (filter: not_like) + */ + source_root_not_like?: string; + /** + * Source checkpoint root of the attestation (filter: in_values) (comma-separated list) + */ + source_root_in_values?: string; + /** + * Source checkpoint root of the attestation (filter: not_in_values) (comma-separated list) + */ + source_root_not_in_values?: string; + /** + * Target checkpoint epoch of the attestation (filter: eq) + */ + target_epoch_eq?: number; + /** + * Target checkpoint epoch of the attestation (filter: ne) + */ + target_epoch_ne?: number; + /** + * Target checkpoint epoch of the attestation (filter: lt) + */ + target_epoch_lt?: number; + /** + * Target checkpoint epoch of the attestation (filter: lte) + */ + target_epoch_lte?: number; + /** + * Target checkpoint epoch of the attestation (filter: gt) + */ + target_epoch_gt?: number; + /** + * Target checkpoint epoch of the attestation (filter: gte) + */ + target_epoch_gte?: number; + /** + * Target checkpoint epoch of the attestation (filter: between_min) + */ + target_epoch_between_min?: number; + /** + * Target checkpoint epoch of the attestation (filter: between_max_value) + */ + target_epoch_between_max_value?: number; + /** + * Target checkpoint epoch of the attestation (filter: in_values) (comma-separated list) + */ + target_epoch_in_values?: string; + /** + * Target checkpoint epoch of the attestation (filter: not_in_values) (comma-separated list) + */ + target_epoch_not_in_values?: string; + /** + * Target checkpoint root of the attestation (filter: eq) + */ + target_root_eq?: string; + /** + * Target checkpoint root of the attestation (filter: ne) + */ + target_root_ne?: string; + /** + * Target checkpoint root of the attestation (filter: contains) + */ + target_root_contains?: string; + /** + * Target checkpoint root of the attestation (filter: starts_with) + */ + target_root_starts_with?: string; + /** + * Target checkpoint root of the attestation (filter: ends_with) + */ + target_root_ends_with?: string; + /** + * Target checkpoint root of the attestation (filter: like) + */ + target_root_like?: string; + /** + * Target checkpoint root of the attestation (filter: not_like) + */ + target_root_not_like?: string; + /** + * Target checkpoint root of the attestation (filter: in_values) (comma-separated list) + */ + target_root_in_values?: string; + /** + * Target checkpoint root of the attestation (filter: not_in_values) (comma-separated list) + */ + target_root_not_in_values?: string; + /** + * Username of the node (filter: eq) + */ + username_eq?: string; + /** + * Username of the node (filter: ne) + */ + username_ne?: string; + /** + * Username of the node (filter: contains) + */ + username_contains?: string; + /** + * Username of the node (filter: starts_with) + */ + username_starts_with?: string; + /** + * Username of the node (filter: ends_with) + */ + username_ends_with?: string; + /** + * Username of the node (filter: like) + */ + username_like?: string; + /** + * Username of the node (filter: not_like) + */ + username_not_like?: string; + /** + * Username of the node (filter: in_values) (comma-separated list) + */ + username_in_values?: string; + /** + * Username of the node (filter: not_in_values) (comma-separated list) + */ + username_not_in_values?: string; + /** + * ID of the node (filter: eq) + */ + node_id_eq?: string; + /** + * ID of the node (filter: ne) + */ + node_id_ne?: string; + /** + * ID of the node (filter: contains) + */ + node_id_contains?: string; + /** + * ID of the node (filter: starts_with) + */ + node_id_starts_with?: string; + /** + * ID of the node (filter: ends_with) + */ + node_id_ends_with?: string; + /** + * ID of the node (filter: like) + */ + node_id_like?: string; + /** + * ID of the node (filter: not_like) + */ + node_id_not_like?: string; + /** + * ID of the node (filter: in_values) (comma-separated list) + */ + node_id_in_values?: string; + /** + * ID of the node (filter: not_in_values) (comma-separated list) + */ + node_id_not_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) + */ + classification_eq?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) + */ + classification_ne?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) + */ + classification_contains?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) + */ + classification_starts_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) + */ + classification_ends_with?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) + */ + classification_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) + */ + classification_not_like?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) + */ + classification_in_values?: string; + /** + * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) + */ + classification_not_in_values?: string; + /** + * Name of the client (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * Version of the client (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * City of the client (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Autonomous system number of the client (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * Ethereum consensus client version (filter: eq) + */ + meta_consensus_version_eq?: string; + /** + * Ethereum consensus client version (filter: ne) + */ + meta_consensus_version_ne?: string; + /** + * Ethereum consensus client version (filter: contains) + */ + meta_consensus_version_contains?: string; + /** + * Ethereum consensus client version (filter: starts_with) + */ + meta_consensus_version_starts_with?: string; + /** + * Ethereum consensus client version (filter: ends_with) + */ + meta_consensus_version_ends_with?: string; + /** + * Ethereum consensus client version (filter: like) + */ + meta_consensus_version_like?: string; + /** + * Ethereum consensus client version (filter: not_like) + */ + meta_consensus_version_not_like?: string; + /** + * Ethereum consensus client version (filter: in_values) (comma-separated list) + */ + meta_consensus_version_in_values?: string; + /** + * Ethereum consensus client version (filter: not_in_values) (comma-separated list) + */ + meta_consensus_version_not_in_values?: string; + /** + * Ethereum consensus client implementation (filter: eq) + */ + meta_consensus_implementation_eq?: string; + /** + * Ethereum consensus client implementation (filter: ne) + */ + meta_consensus_implementation_ne?: string; + /** + * Ethereum consensus client implementation (filter: contains) + */ + meta_consensus_implementation_contains?: string; + /** + * Ethereum consensus client implementation (filter: starts_with) + */ + meta_consensus_implementation_starts_with?: string; + /** + * Ethereum consensus client implementation (filter: ends_with) + */ + meta_consensus_implementation_ends_with?: string; + /** + * Ethereum consensus client implementation (filter: like) + */ + meta_consensus_implementation_like?: string; + /** + * Ethereum consensus client implementation (filter: not_like) + */ + meta_consensus_implementation_not_like?: string; + /** + * Ethereum consensus client implementation (filter: in_values) (comma-separated list) + */ + meta_consensus_implementation_in_values?: string; + /** + * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) + */ + meta_consensus_implementation_not_in_values?: string; + /** + * The maximum number of int_attestation_first_seen to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntAttestationFirstSeen` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_attestation_first_seen'; +}; + +export type IntAttestationFirstSeenServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntAttestationFirstSeenServiceListError = + IntAttestationFirstSeenServiceListErrors[keyof IntAttestationFirstSeenServiceListErrors]; + +export type IntAttestationFirstSeenServiceListResponses = { + /** + * OK + */ + 200: ListIntAttestationFirstSeenResponse; +}; + +export type IntAttestationFirstSeenServiceListResponse = + IntAttestationFirstSeenServiceListResponses[keyof IntAttestationFirstSeenServiceListResponses]; + +export type IntAttestationFirstSeenServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_attestation_first_seen/{slot_start_date_time}'; +}; + +export type IntAttestationFirstSeenServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntAttestationFirstSeenServiceGetError = + IntAttestationFirstSeenServiceGetErrors[keyof IntAttestationFirstSeenServiceGetErrors]; + +export type IntAttestationFirstSeenServiceGetResponses = { + /** + * OK + */ + 200: GetIntAttestationFirstSeenResponse; +}; + +export type IntAttestationFirstSeenServiceGetResponse = + IntAttestationFirstSeenServiceGetResponses[keyof IntAttestationFirstSeenServiceGetResponses]; + +export type IntAttestationFirstSeenAggregateServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The index of the validator attesting (filter: eq) + */ + attesting_validator_index_eq?: number; + /** + * The index of the validator attesting (filter: ne) + */ + attesting_validator_index_ne?: number; + /** + * The index of the validator attesting (filter: lt) + */ + attesting_validator_index_lt?: number; + /** + * The index of the validator attesting (filter: lte) + */ + attesting_validator_index_lte?: number; + /** + * The index of the validator attesting (filter: gt) + */ + attesting_validator_index_gt?: number; + /** + * The index of the validator attesting (filter: gte) + */ + attesting_validator_index_gte?: number; + /** + * The index of the validator attesting (filter: between_min) + */ + attesting_validator_index_between_min?: number; + /** + * The index of the validator attesting (filter: between_max_value) + */ + attesting_validator_index_between_max_value?: number; + /** + * The index of the validator attesting (filter: in_values) (comma-separated list) + */ + attesting_validator_index_in_values?: string; + /** + * The index of the validator attesting (filter: not_in_values) (comma-separated list) + */ + attesting_validator_index_not_in_values?: string; + /** + * The head vote (beacon block root) from this aggregate (filter: eq) + */ + block_root_eq?: string; + /** + * The head vote (beacon block root) from this aggregate (filter: ne) + */ + block_root_ne?: string; + /** + * The head vote (beacon block root) from this aggregate (filter: contains) + */ + block_root_contains?: string; + /** + * The head vote (beacon block root) from this aggregate (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The head vote (beacon block root) from this aggregate (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The head vote (beacon block root) from this aggregate (filter: like) + */ + block_root_like?: string; + /** + * The head vote (beacon block root) from this aggregate (filter: not_like) + */ + block_root_not_like?: string; + /** + * The head vote (beacon block root) from this aggregate (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The head vote (beacon block root) from this aggregate (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Source checkpoint epoch from this aggregate (filter: eq) + */ + source_epoch_eq?: number; + /** + * Source checkpoint epoch from this aggregate (filter: ne) + */ + source_epoch_ne?: number; + /** + * Source checkpoint epoch from this aggregate (filter: lt) + */ + source_epoch_lt?: number; + /** + * Source checkpoint epoch from this aggregate (filter: lte) + */ + source_epoch_lte?: number; + /** + * Source checkpoint epoch from this aggregate (filter: gt) + */ + source_epoch_gt?: number; + /** + * Source checkpoint epoch from this aggregate (filter: gte) + */ + source_epoch_gte?: number; + /** + * Source checkpoint epoch from this aggregate (filter: between_min) + */ + source_epoch_between_min?: number; + /** + * Source checkpoint epoch from this aggregate (filter: between_max_value) + */ + source_epoch_between_max_value?: number; + /** + * Source checkpoint epoch from this aggregate (filter: in_values) (comma-separated list) + */ + source_epoch_in_values?: string; + /** + * Source checkpoint epoch from this aggregate (filter: not_in_values) (comma-separated list) + */ + source_epoch_not_in_values?: string; + /** + * Source checkpoint root from this aggregate (filter: eq) + */ + source_root_eq?: string; + /** + * Source checkpoint root from this aggregate (filter: ne) + */ + source_root_ne?: string; + /** + * Source checkpoint root from this aggregate (filter: contains) + */ + source_root_contains?: string; + /** + * Source checkpoint root from this aggregate (filter: starts_with) + */ + source_root_starts_with?: string; + /** + * Source checkpoint root from this aggregate (filter: ends_with) + */ + source_root_ends_with?: string; + /** + * Source checkpoint root from this aggregate (filter: like) + */ + source_root_like?: string; + /** + * Source checkpoint root from this aggregate (filter: not_like) + */ + source_root_not_like?: string; + /** + * Source checkpoint root from this aggregate (filter: in_values) (comma-separated list) + */ + source_root_in_values?: string; + /** + * Source checkpoint root from this aggregate (filter: not_in_values) (comma-separated list) + */ + source_root_not_in_values?: string; + /** + * Target checkpoint epoch from this aggregate (filter: eq) + */ + target_epoch_eq?: number; + /** + * Target checkpoint epoch from this aggregate (filter: ne) + */ + target_epoch_ne?: number; + /** + * Target checkpoint epoch from this aggregate (filter: lt) + */ + target_epoch_lt?: number; + /** + * Target checkpoint epoch from this aggregate (filter: lte) + */ + target_epoch_lte?: number; + /** + * Target checkpoint epoch from this aggregate (filter: gt) + */ + target_epoch_gt?: number; + /** + * Target checkpoint epoch from this aggregate (filter: gte) + */ + target_epoch_gte?: number; + /** + * Target checkpoint epoch from this aggregate (filter: between_min) + */ + target_epoch_between_min?: number; + /** + * Target checkpoint epoch from this aggregate (filter: between_max_value) + */ + target_epoch_between_max_value?: number; + /** + * Target checkpoint epoch from this aggregate (filter: in_values) (comma-separated list) + */ + target_epoch_in_values?: string; + /** + * Target checkpoint epoch from this aggregate (filter: not_in_values) (comma-separated list) + */ + target_epoch_not_in_values?: string; + /** + * Target checkpoint root from this aggregate (filter: eq) + */ + target_root_eq?: string; + /** + * Target checkpoint root from this aggregate (filter: ne) + */ + target_root_ne?: string; + /** + * Target checkpoint root from this aggregate (filter: contains) + */ + target_root_contains?: string; + /** + * Target checkpoint root from this aggregate (filter: starts_with) + */ + target_root_starts_with?: string; + /** + * Target checkpoint root from this aggregate (filter: ends_with) + */ + target_root_ends_with?: string; + /** + * Target checkpoint root from this aggregate (filter: like) + */ + target_root_like?: string; + /** + * Target checkpoint root from this aggregate (filter: not_like) + */ + target_root_not_like?: string; + /** + * Target checkpoint root from this aggregate (filter: in_values) (comma-separated list) + */ + target_root_in_values?: string; + /** + * Target checkpoint root from this aggregate (filter: not_in_values) (comma-separated list) + */ + target_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The committee index the validator is assigned to (filter: eq) + */ + committee_index_eq?: string; + /** + * The committee index the validator is assigned to (filter: ne) + */ + committee_index_ne?: string; + /** + * The committee index the validator is assigned to (filter: contains) + */ + committee_index_contains?: string; + /** + * The committee index the validator is assigned to (filter: starts_with) + */ + committee_index_starts_with?: string; + /** + * The committee index the validator is assigned to (filter: ends_with) + */ + committee_index_ends_with?: string; + /** + * The committee index the validator is assigned to (filter: like) + */ + committee_index_like?: string; + /** + * The committee index the validator is assigned to (filter: not_like) + */ + committee_index_not_like?: string; + /** + * The committee index the validator is assigned to (filter: in_values) (comma-separated list) + */ + committee_index_in_values?: string; + /** + * The committee index the validator is assigned to (filter: not_in_values) (comma-separated list) + */ + committee_index_not_in_values?: string; + /** + * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: eq) + */ + seen_slot_start_diff_eq?: number; + /** + * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: ne) + */ + seen_slot_start_diff_ne?: number; + /** + * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: lt) + */ + seen_slot_start_diff_lt?: number; + /** + * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: lte) + */ + seen_slot_start_diff_lte?: number; + /** + * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: gt) + */ + seen_slot_start_diff_gt?: number; + /** + * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: gte) + */ + seen_slot_start_diff_gte?: number; + /** + * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: between_min) + */ + seen_slot_start_diff_between_min?: number; + /** + * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: between_max_value) + */ + seen_slot_start_diff_between_max_value?: number; + /** + * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: in_values) (comma-separated list) + */ + seen_slot_start_diff_in_values?: string; + /** + * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: not_in_values) (comma-separated list) + */ + seen_slot_start_diff_not_in_values?: string; + /** + * The first source this aggregate was observed from (beacon_api or libp2p) (filter: eq) + */ + source_eq?: string; + /** + * The first source this aggregate was observed from (beacon_api or libp2p) (filter: ne) + */ + source_ne?: string; + /** + * The first source this aggregate was observed from (beacon_api or libp2p) (filter: contains) + */ + source_contains?: string; + /** + * The first source this aggregate was observed from (beacon_api or libp2p) (filter: starts_with) + */ + source_starts_with?: string; + /** + * The first source this aggregate was observed from (beacon_api or libp2p) (filter: ends_with) + */ + source_ends_with?: string; + /** + * The first source this aggregate was observed from (beacon_api or libp2p) (filter: like) + */ + source_like?: string; + /** + * The first source this aggregate was observed from (beacon_api or libp2p) (filter: not_like) + */ + source_not_like?: string; + /** + * The first source this aggregate was observed from (beacon_api or libp2p) (filter: in_values) (comma-separated list) + */ + source_in_values?: string; + /** + * The first source this aggregate was observed from (beacon_api or libp2p) (filter: not_in_values) (comma-separated list) + */ + source_not_in_values?: string; + /** + * The maximum number of int_attestation_first_seen_aggregate to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntAttestationFirstSeenAggregate` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_attestation_first_seen_aggregate'; +}; + +export type IntAttestationFirstSeenAggregateServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntAttestationFirstSeenAggregateServiceListError = + IntAttestationFirstSeenAggregateServiceListErrors[keyof IntAttestationFirstSeenAggregateServiceListErrors]; + +export type IntAttestationFirstSeenAggregateServiceListResponses = { + /** + * OK + */ + 200: ListIntAttestationFirstSeenAggregateResponse; +}; + +export type IntAttestationFirstSeenAggregateServiceListResponse = + IntAttestationFirstSeenAggregateServiceListResponses[keyof IntAttestationFirstSeenAggregateServiceListResponses]; + +export type IntAttestationFirstSeenAggregateServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_attestation_first_seen_aggregate/{slot_start_date_time}'; +}; + +export type IntAttestationFirstSeenAggregateServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntAttestationFirstSeenAggregateServiceGetError = + IntAttestationFirstSeenAggregateServiceGetErrors[keyof IntAttestationFirstSeenAggregateServiceGetErrors]; + +export type IntAttestationFirstSeenAggregateServiceGetResponses = { + /** + * OK + */ + 200: GetIntAttestationFirstSeenAggregateResponse; +}; + +export type IntAttestationFirstSeenAggregateServiceGetResponse = + IntAttestationFirstSeenAggregateServiceGetResponses[keyof IntAttestationFirstSeenAggregateServiceGetResponses]; + +export type IntBeaconCommitteeServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The committee index in the beacon API committee payload (filter: eq) + */ + committee_index_eq?: string; + /** + * The committee index in the beacon API committee payload (filter: ne) + */ + committee_index_ne?: string; + /** + * The committee index in the beacon API committee payload (filter: contains) + */ + committee_index_contains?: string; + /** + * The committee index in the beacon API committee payload (filter: starts_with) + */ + committee_index_starts_with?: string; + /** + * The committee index in the beacon API committee payload (filter: ends_with) + */ + committee_index_ends_with?: string; + /** + * The committee index in the beacon API committee payload (filter: like) + */ + committee_index_like?: string; + /** + * The committee index in the beacon API committee payload (filter: not_like) + */ + committee_index_not_like?: string; + /** + * The committee index in the beacon API committee payload (filter: in_values) (comma-separated list) + */ + committee_index_in_values?: string; + /** + * The committee index in the beacon API committee payload (filter: not_in_values) (comma-separated list) + */ + committee_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The validator indices in the beacon API committee payload (filter: has) + */ + validators_has?: number; + /** + * The validator indices in the beacon API committee payload (filter: has_all_values) + */ + validators_has_all_values?: Array; + /** + * The validator indices in the beacon API committee payload (filter: has_any_values) + */ + validators_has_any_values?: Array; + /** + * The validator indices in the beacon API committee payload (filter: length_eq) + */ + validators_length_eq?: number; + /** + * The validator indices in the beacon API committee payload (filter: length_gt) + */ + validators_length_gt?: number; + /** + * The validator indices in the beacon API committee payload (filter: length_gte) + */ + validators_length_gte?: number; + /** + * The validator indices in the beacon API committee payload (filter: length_lt) + */ + validators_length_lt?: number; + /** + * The validator indices in the beacon API committee payload (filter: length_lte) + */ + validators_length_lte?: number; + /** + * The maximum number of int_beacon_committee to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntBeaconCommittee` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_beacon_committee'; +}; + +export type IntBeaconCommitteeServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBeaconCommitteeServiceListError = + IntBeaconCommitteeServiceListErrors[keyof IntBeaconCommitteeServiceListErrors]; + +export type IntBeaconCommitteeServiceListResponses = { + /** + * OK + */ + 200: ListIntBeaconCommitteeResponse; +}; + +export type IntBeaconCommitteeServiceListResponse = + IntBeaconCommitteeServiceListResponses[keyof IntBeaconCommitteeServiceListResponses]; + +export type IntBeaconCommitteeServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_beacon_committee/{slot_start_date_time}'; +}; + +export type IntBeaconCommitteeServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBeaconCommitteeServiceGetError = + IntBeaconCommitteeServiceGetErrors[keyof IntBeaconCommitteeServiceGetErrors]; + +export type IntBeaconCommitteeServiceGetResponses = { + /** + * OK + */ + 200: GetIntBeaconCommitteeResponse; +}; + +export type IntBeaconCommitteeServiceGetResponse = + IntBeaconCommitteeServiceGetResponses[keyof IntBeaconCommitteeServiceGetResponses]; + +export type IntBeaconCommitteeHeadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The committee index in the beacon API committee payload (filter: eq) + */ + committee_index_eq?: string; + /** + * The committee index in the beacon API committee payload (filter: ne) + */ + committee_index_ne?: string; + /** + * The committee index in the beacon API committee payload (filter: contains) + */ + committee_index_contains?: string; + /** + * The committee index in the beacon API committee payload (filter: starts_with) + */ + committee_index_starts_with?: string; + /** + * The committee index in the beacon API committee payload (filter: ends_with) + */ + committee_index_ends_with?: string; + /** + * The committee index in the beacon API committee payload (filter: like) + */ + committee_index_like?: string; + /** + * The committee index in the beacon API committee payload (filter: not_like) + */ + committee_index_not_like?: string; + /** + * The committee index in the beacon API committee payload (filter: in_values) (comma-separated list) + */ + committee_index_in_values?: string; + /** + * The committee index in the beacon API committee payload (filter: not_in_values) (comma-separated list) + */ + committee_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The validator indices in the beacon API committee payload (filter: has) + */ + validators_has?: number; + /** + * The validator indices in the beacon API committee payload (filter: has_all_values) + */ + validators_has_all_values?: Array; + /** + * The validator indices in the beacon API committee payload (filter: has_any_values) + */ + validators_has_any_values?: Array; + /** + * The validator indices in the beacon API committee payload (filter: length_eq) + */ + validators_length_eq?: number; + /** + * The validator indices in the beacon API committee payload (filter: length_gt) + */ + validators_length_gt?: number; + /** + * The validator indices in the beacon API committee payload (filter: length_gte) + */ + validators_length_gte?: number; + /** + * The validator indices in the beacon API committee payload (filter: length_lt) + */ + validators_length_lt?: number; + /** + * The validator indices in the beacon API committee payload (filter: length_lte) + */ + validators_length_lte?: number; + /** + * The maximum number of int_beacon_committee_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntBeaconCommitteeHead` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_beacon_committee_head'; +}; + +export type IntBeaconCommitteeHeadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBeaconCommitteeHeadServiceListError = + IntBeaconCommitteeHeadServiceListErrors[keyof IntBeaconCommitteeHeadServiceListErrors]; + +export type IntBeaconCommitteeHeadServiceListResponses = { + /** + * OK + */ + 200: ListIntBeaconCommitteeHeadResponse; +}; + +export type IntBeaconCommitteeHeadServiceListResponse = + IntBeaconCommitteeHeadServiceListResponses[keyof IntBeaconCommitteeHeadServiceListResponses]; + +export type IntBeaconCommitteeHeadServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_beacon_committee_head/{slot_start_date_time}'; +}; + +export type IntBeaconCommitteeHeadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBeaconCommitteeHeadServiceGetError = + IntBeaconCommitteeHeadServiceGetErrors[keyof IntBeaconCommitteeHeadServiceGetErrors]; + +export type IntBeaconCommitteeHeadServiceGetResponses = { + /** + * OK + */ + 200: GetIntBeaconCommitteeHeadResponse; +}; + +export type IntBeaconCommitteeHeadServiceGetResponse = + IntBeaconCommitteeHeadServiceGetResponses[keyof IntBeaconCommitteeHeadServiceGetResponses]; + +export type IntBlockBlobCountCanonicalServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root hash (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The number of blobs in the block (filter: eq) + */ + blob_count_eq?: number; + /** + * The number of blobs in the block (filter: ne) + */ + blob_count_ne?: number; + /** + * The number of blobs in the block (filter: lt) + */ + blob_count_lt?: number; + /** + * The number of blobs in the block (filter: lte) + */ + blob_count_lte?: number; + /** + * The number of blobs in the block (filter: gt) + */ + blob_count_gt?: number; + /** + * The number of blobs in the block (filter: gte) + */ + blob_count_gte?: number; + /** + * The number of blobs in the block (filter: between_min) + */ + blob_count_between_min?: number; + /** + * The number of blobs in the block (filter: between_max_value) + */ + blob_count_between_max_value?: number; + /** + * The number of blobs in the block (filter: in_values) (comma-separated list) + */ + blob_count_in_values?: string; + /** + * The number of blobs in the block (filter: not_in_values) (comma-separated list) + */ + blob_count_not_in_values?: string; + /** + * The maximum number of int_block_blob_count_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntBlockBlobCountCanonical` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_block_blob_count_canonical'; +}; + +export type IntBlockBlobCountCanonicalServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockBlobCountCanonicalServiceListError = + IntBlockBlobCountCanonicalServiceListErrors[keyof IntBlockBlobCountCanonicalServiceListErrors]; + +export type IntBlockBlobCountCanonicalServiceListResponses = { + /** + * OK + */ + 200: ListIntBlockBlobCountCanonicalResponse; +}; + +export type IntBlockBlobCountCanonicalServiceListResponse = + IntBlockBlobCountCanonicalServiceListResponses[keyof IntBlockBlobCountCanonicalServiceListResponses]; + +export type IntBlockBlobCountCanonicalServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_block_blob_count_canonical/{slot_start_date_time}'; +}; + +export type IntBlockBlobCountCanonicalServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockBlobCountCanonicalServiceGetError = + IntBlockBlobCountCanonicalServiceGetErrors[keyof IntBlockBlobCountCanonicalServiceGetErrors]; + +export type IntBlockBlobCountCanonicalServiceGetResponses = { + /** + * OK + */ + 200: GetIntBlockBlobCountCanonicalResponse; +}; + +export type IntBlockBlobCountCanonicalServiceGetResponse = + IntBlockBlobCountCanonicalServiceGetResponses[keyof IntBlockBlobCountCanonicalServiceGetResponses]; + +export type IntBlockCanonicalServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the reorg slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the reorg slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the reorg slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the reorg slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the reorg slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the reorg slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the reorg slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the reorg slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the reorg slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the reorg slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The root hash of the beacon block (filter: eq) + */ + block_root_eq?: string; + /** + * The root hash of the beacon block (filter: ne) + */ + block_root_ne?: string; + /** + * The root hash of the beacon block (filter: contains) + */ + block_root_contains?: string; + /** + * The root hash of the beacon block (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The root hash of the beacon block (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The root hash of the beacon block (filter: like) + */ + block_root_like?: string; + /** + * The root hash of the beacon block (filter: not_like) + */ + block_root_not_like?: string; + /** + * The root hash of the beacon block (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The root hash of the beacon block (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number from beacon block payload (filter: eq) + */ + slot_eq?: number; + /** + * The slot number from beacon block payload (filter: ne) + */ + slot_ne?: number; + /** + * The slot number from beacon block payload (filter: lt) + */ + slot_lt?: number; + /** + * The slot number from beacon block payload (filter: lte) + */ + slot_lte?: number; + /** + * The slot number from beacon block payload (filter: gt) + */ + slot_gt?: number; + /** + * The slot number from beacon block payload (filter: gte) + */ + slot_gte?: number; + /** + * The slot number from beacon block payload (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number from beacon block payload (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number from beacon block payload (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number from beacon block payload (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number from beacon block payload (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number from beacon block payload (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number from beacon block payload (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number from beacon block payload (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number from beacon block payload (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number from beacon block payload (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number from beacon block payload (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number from beacon block payload (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number from beacon block payload (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number from beacon block payload (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The version of the beacon block (filter: eq) + */ + block_version_eq?: string; + /** + * The version of the beacon block (filter: ne) + */ + block_version_ne?: string; + /** + * The version of the beacon block (filter: contains) + */ + block_version_contains?: string; + /** + * The version of the beacon block (filter: starts_with) + */ + block_version_starts_with?: string; + /** + * The version of the beacon block (filter: ends_with) + */ + block_version_ends_with?: string; + /** + * The version of the beacon block (filter: like) + */ + block_version_like?: string; + /** + * The version of the beacon block (filter: not_like) + */ + block_version_not_like?: string; + /** + * The version of the beacon block (filter: in_values) (comma-separated list) + */ + block_version_in_values?: string; + /** + * The version of the beacon block (filter: not_in_values) (comma-separated list) + */ + block_version_not_in_values?: string; + /** + * The total bytes of the beacon block payload (filter: eq) + */ + block_total_bytes_eq?: number; + /** + * The total bytes of the beacon block payload (filter: ne) + */ + block_total_bytes_ne?: number; + /** + * The total bytes of the beacon block payload (filter: lt) + */ + block_total_bytes_lt?: number; + /** + * The total bytes of the beacon block payload (filter: lte) + */ + block_total_bytes_lte?: number; + /** + * The total bytes of the beacon block payload (filter: gt) + */ + block_total_bytes_gt?: number; + /** + * The total bytes of the beacon block payload (filter: gte) + */ + block_total_bytes_gte?: number; + /** + * The total bytes of the beacon block payload (filter: between_min) + */ + block_total_bytes_between_min?: number; + /** + * The total bytes of the beacon block payload (filter: between_max_value) + */ + block_total_bytes_between_max_value?: number; + /** + * The total bytes of the beacon block payload (filter: in_values) (comma-separated list) + */ + block_total_bytes_in_values?: string; + /** + * The total bytes of the beacon block payload (filter: not_in_values) (comma-separated list) + */ + block_total_bytes_not_in_values?: string; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: eq) + */ + block_total_bytes_compressed_eq?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: ne) + */ + block_total_bytes_compressed_ne?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: lt) + */ + block_total_bytes_compressed_lt?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: lte) + */ + block_total_bytes_compressed_lte?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: gt) + */ + block_total_bytes_compressed_gt?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: gte) + */ + block_total_bytes_compressed_gte?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: between_min) + */ + block_total_bytes_compressed_between_min?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: between_max_value) + */ + block_total_bytes_compressed_between_max_value?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: in_values) (comma-separated list) + */ + block_total_bytes_compressed_in_values?: string; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: not_in_values) (comma-separated list) + */ + block_total_bytes_compressed_not_in_values?: string; + /** + * The root hash of the parent beacon block (filter: eq) + */ + parent_root_eq?: string; + /** + * The root hash of the parent beacon block (filter: ne) + */ + parent_root_ne?: string; + /** + * The root hash of the parent beacon block (filter: contains) + */ + parent_root_contains?: string; + /** + * The root hash of the parent beacon block (filter: starts_with) + */ + parent_root_starts_with?: string; + /** + * The root hash of the parent beacon block (filter: ends_with) + */ + parent_root_ends_with?: string; + /** + * The root hash of the parent beacon block (filter: like) + */ + parent_root_like?: string; + /** + * The root hash of the parent beacon block (filter: not_like) + */ + parent_root_not_like?: string; + /** + * The root hash of the parent beacon block (filter: in_values) (comma-separated list) + */ + parent_root_in_values?: string; + /** + * The root hash of the parent beacon block (filter: not_in_values) (comma-separated list) + */ + parent_root_not_in_values?: string; + /** + * The root hash of the beacon state at this block (filter: eq) + */ + state_root_eq?: string; + /** + * The root hash of the beacon state at this block (filter: ne) + */ + state_root_ne?: string; + /** + * The root hash of the beacon state at this block (filter: contains) + */ + state_root_contains?: string; + /** + * The root hash of the beacon state at this block (filter: starts_with) + */ + state_root_starts_with?: string; + /** + * The root hash of the beacon state at this block (filter: ends_with) + */ + state_root_ends_with?: string; + /** + * The root hash of the beacon state at this block (filter: like) + */ + state_root_like?: string; + /** + * The root hash of the beacon state at this block (filter: not_like) + */ + state_root_not_like?: string; + /** + * The root hash of the beacon state at this block (filter: in_values) (comma-separated list) + */ + state_root_in_values?: string; + /** + * The root hash of the beacon state at this block (filter: not_in_values) (comma-separated list) + */ + state_root_not_in_values?: string; + /** + * The index of the validator that proposed the beacon block (filter: eq) + */ + proposer_index_eq?: number; + /** + * The index of the validator that proposed the beacon block (filter: ne) + */ + proposer_index_ne?: number; + /** + * The index of the validator that proposed the beacon block (filter: lt) + */ + proposer_index_lt?: number; + /** + * The index of the validator that proposed the beacon block (filter: lte) + */ + proposer_index_lte?: number; + /** + * The index of the validator that proposed the beacon block (filter: gt) + */ + proposer_index_gt?: number; + /** + * The index of the validator that proposed the beacon block (filter: gte) + */ + proposer_index_gte?: number; + /** + * The index of the validator that proposed the beacon block (filter: between_min) + */ + proposer_index_between_min?: number; + /** + * The index of the validator that proposed the beacon block (filter: between_max_value) + */ + proposer_index_between_max_value?: number; + /** + * The index of the validator that proposed the beacon block (filter: in_values) (comma-separated list) + */ + proposer_index_in_values?: string; + /** + * The index of the validator that proposed the beacon block (filter: not_in_values) (comma-separated list) + */ + proposer_index_not_in_values?: string; + /** + * The block hash of the associated execution block (filter: eq) + */ + eth1_data_block_hash_eq?: string; + /** + * The block hash of the associated execution block (filter: ne) + */ + eth1_data_block_hash_ne?: string; + /** + * The block hash of the associated execution block (filter: contains) + */ + eth1_data_block_hash_contains?: string; + /** + * The block hash of the associated execution block (filter: starts_with) + */ + eth1_data_block_hash_starts_with?: string; + /** + * The block hash of the associated execution block (filter: ends_with) + */ + eth1_data_block_hash_ends_with?: string; + /** + * The block hash of the associated execution block (filter: like) + */ + eth1_data_block_hash_like?: string; + /** + * The block hash of the associated execution block (filter: not_like) + */ + eth1_data_block_hash_not_like?: string; + /** + * The block hash of the associated execution block (filter: in_values) (comma-separated list) + */ + eth1_data_block_hash_in_values?: string; + /** + * The block hash of the associated execution block (filter: not_in_values) (comma-separated list) + */ + eth1_data_block_hash_not_in_values?: string; + /** + * The root of the deposit tree in the associated execution block (filter: eq) + */ + eth1_data_deposit_root_eq?: string; + /** + * The root of the deposit tree in the associated execution block (filter: ne) + */ + eth1_data_deposit_root_ne?: string; + /** + * The root of the deposit tree in the associated execution block (filter: contains) + */ + eth1_data_deposit_root_contains?: string; + /** + * The root of the deposit tree in the associated execution block (filter: starts_with) + */ + eth1_data_deposit_root_starts_with?: string; + /** + * The root of the deposit tree in the associated execution block (filter: ends_with) + */ + eth1_data_deposit_root_ends_with?: string; + /** + * The root of the deposit tree in the associated execution block (filter: like) + */ + eth1_data_deposit_root_like?: string; + /** + * The root of the deposit tree in the associated execution block (filter: not_like) + */ + eth1_data_deposit_root_not_like?: string; + /** + * The root of the deposit tree in the associated execution block (filter: in_values) (comma-separated list) + */ + eth1_data_deposit_root_in_values?: string; + /** + * The root of the deposit tree in the associated execution block (filter: not_in_values) (comma-separated list) + */ + eth1_data_deposit_root_not_in_values?: string; + /** + * The block hash of the execution payload (filter: eq) + */ + execution_payload_block_hash_eq?: string; + /** + * The block hash of the execution payload (filter: ne) + */ + execution_payload_block_hash_ne?: string; + /** + * The block hash of the execution payload (filter: contains) + */ + execution_payload_block_hash_contains?: string; + /** + * The block hash of the execution payload (filter: starts_with) + */ + execution_payload_block_hash_starts_with?: string; + /** + * The block hash of the execution payload (filter: ends_with) + */ + execution_payload_block_hash_ends_with?: string; + /** + * The block hash of the execution payload (filter: like) + */ + execution_payload_block_hash_like?: string; + /** + * The block hash of the execution payload (filter: not_like) + */ + execution_payload_block_hash_not_like?: string; + /** + * The block hash of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_block_hash_in_values?: string; + /** + * The block hash of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_block_hash_not_in_values?: string; + /** + * The block number of the execution payload (filter: eq) + */ + execution_payload_block_number_eq?: number; + /** + * The block number of the execution payload (filter: ne) + */ + execution_payload_block_number_ne?: number; + /** + * The block number of the execution payload (filter: lt) + */ + execution_payload_block_number_lt?: number; + /** + * The block number of the execution payload (filter: lte) + */ + execution_payload_block_number_lte?: number; + /** + * The block number of the execution payload (filter: gt) + */ + execution_payload_block_number_gt?: number; + /** + * The block number of the execution payload (filter: gte) + */ + execution_payload_block_number_gte?: number; + /** + * The block number of the execution payload (filter: between_min) + */ + execution_payload_block_number_between_min?: number; + /** + * The block number of the execution payload (filter: between_max_value) + */ + execution_payload_block_number_between_max_value?: number; + /** + * The block number of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_block_number_in_values?: string; + /** + * The block number of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_block_number_not_in_values?: string; + /** + * The recipient of the fee for this execution payload (filter: eq) + */ + execution_payload_fee_recipient_eq?: string; + /** + * The recipient of the fee for this execution payload (filter: ne) + */ + execution_payload_fee_recipient_ne?: string; + /** + * The recipient of the fee for this execution payload (filter: contains) + */ + execution_payload_fee_recipient_contains?: string; + /** + * The recipient of the fee for this execution payload (filter: starts_with) + */ + execution_payload_fee_recipient_starts_with?: string; + /** + * The recipient of the fee for this execution payload (filter: ends_with) + */ + execution_payload_fee_recipient_ends_with?: string; + /** + * The recipient of the fee for this execution payload (filter: like) + */ + execution_payload_fee_recipient_like?: string; + /** + * The recipient of the fee for this execution payload (filter: not_like) + */ + execution_payload_fee_recipient_not_like?: string; + /** + * The recipient of the fee for this execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_fee_recipient_in_values?: string; + /** + * The recipient of the fee for this execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_fee_recipient_not_in_values?: string; + /** + * Base fee per gas for execution payload (filter: eq) + */ + execution_payload_base_fee_per_gas_eq?: string; + /** + * Base fee per gas for execution payload (filter: ne) + */ + execution_payload_base_fee_per_gas_ne?: string; + /** + * Base fee per gas for execution payload (filter: contains) + */ + execution_payload_base_fee_per_gas_contains?: string; + /** + * Base fee per gas for execution payload (filter: starts_with) + */ + execution_payload_base_fee_per_gas_starts_with?: string; + /** + * Base fee per gas for execution payload (filter: ends_with) + */ + execution_payload_base_fee_per_gas_ends_with?: string; + /** + * Base fee per gas for execution payload (filter: like) + */ + execution_payload_base_fee_per_gas_like?: string; + /** + * Base fee per gas for execution payload (filter: not_like) + */ + execution_payload_base_fee_per_gas_not_like?: string; + /** + * Base fee per gas for execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_base_fee_per_gas_in_values?: string; + /** + * Base fee per gas for execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_base_fee_per_gas_not_in_values?: string; + /** + * Gas used for blobs in execution payload (filter: eq) + */ + execution_payload_blob_gas_used_eq?: number; + /** + * Gas used for blobs in execution payload (filter: ne) + */ + execution_payload_blob_gas_used_ne?: number; + /** + * Gas used for blobs in execution payload (filter: lt) + */ + execution_payload_blob_gas_used_lt?: number; + /** + * Gas used for blobs in execution payload (filter: lte) + */ + execution_payload_blob_gas_used_lte?: number; + /** + * Gas used for blobs in execution payload (filter: gt) + */ + execution_payload_blob_gas_used_gt?: number; + /** + * Gas used for blobs in execution payload (filter: gte) + */ + execution_payload_blob_gas_used_gte?: number; + /** + * Gas used for blobs in execution payload (filter: between_min) + */ + execution_payload_blob_gas_used_between_min?: number; + /** + * Gas used for blobs in execution payload (filter: between_max_value) + */ + execution_payload_blob_gas_used_between_max_value?: number; + /** + * Gas used for blobs in execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_blob_gas_used_in_values?: string; + /** + * Gas used for blobs in execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_blob_gas_used_not_in_values?: string; + /** + * Excess gas used for blobs in execution payload (filter: eq) + */ + execution_payload_excess_blob_gas_eq?: number; + /** + * Excess gas used for blobs in execution payload (filter: ne) + */ + execution_payload_excess_blob_gas_ne?: number; + /** + * Excess gas used for blobs in execution payload (filter: lt) + */ + execution_payload_excess_blob_gas_lt?: number; + /** + * Excess gas used for blobs in execution payload (filter: lte) + */ + execution_payload_excess_blob_gas_lte?: number; + /** + * Excess gas used for blobs in execution payload (filter: gt) + */ + execution_payload_excess_blob_gas_gt?: number; + /** + * Excess gas used for blobs in execution payload (filter: gte) + */ + execution_payload_excess_blob_gas_gte?: number; + /** + * Excess gas used for blobs in execution payload (filter: between_min) + */ + execution_payload_excess_blob_gas_between_min?: number; + /** + * Excess gas used for blobs in execution payload (filter: between_max_value) + */ + execution_payload_excess_blob_gas_between_max_value?: number; + /** + * Excess gas used for blobs in execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_excess_blob_gas_in_values?: string; + /** + * Excess gas used for blobs in execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_excess_blob_gas_not_in_values?: string; + /** + * Gas limit for execution payload (filter: eq) + */ + execution_payload_gas_limit_eq?: number; + /** + * Gas limit for execution payload (filter: ne) + */ + execution_payload_gas_limit_ne?: number; + /** + * Gas limit for execution payload (filter: lt) + */ + execution_payload_gas_limit_lt?: number; + /** + * Gas limit for execution payload (filter: lte) + */ + execution_payload_gas_limit_lte?: number; + /** + * Gas limit for execution payload (filter: gt) + */ + execution_payload_gas_limit_gt?: number; + /** + * Gas limit for execution payload (filter: gte) + */ + execution_payload_gas_limit_gte?: number; + /** + * Gas limit for execution payload (filter: between_min) + */ + execution_payload_gas_limit_between_min?: number; + /** + * Gas limit for execution payload (filter: between_max_value) + */ + execution_payload_gas_limit_between_max_value?: number; + /** + * Gas limit for execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_gas_limit_in_values?: string; + /** + * Gas limit for execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_gas_limit_not_in_values?: string; + /** + * Gas used for execution payload (filter: eq) + */ + execution_payload_gas_used_eq?: number; + /** + * Gas used for execution payload (filter: ne) + */ + execution_payload_gas_used_ne?: number; + /** + * Gas used for execution payload (filter: lt) + */ + execution_payload_gas_used_lt?: number; + /** + * Gas used for execution payload (filter: lte) + */ + execution_payload_gas_used_lte?: number; + /** + * Gas used for execution payload (filter: gt) + */ + execution_payload_gas_used_gt?: number; + /** + * Gas used for execution payload (filter: gte) + */ + execution_payload_gas_used_gte?: number; + /** + * Gas used for execution payload (filter: between_min) + */ + execution_payload_gas_used_between_min?: number; + /** + * Gas used for execution payload (filter: between_max_value) + */ + execution_payload_gas_used_between_max_value?: number; + /** + * Gas used for execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_gas_used_in_values?: string; + /** + * Gas used for execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_gas_used_not_in_values?: string; + /** + * The state root of the execution payload (filter: eq) + */ + execution_payload_state_root_eq?: string; + /** + * The state root of the execution payload (filter: ne) + */ + execution_payload_state_root_ne?: string; + /** + * The state root of the execution payload (filter: contains) + */ + execution_payload_state_root_contains?: string; + /** + * The state root of the execution payload (filter: starts_with) + */ + execution_payload_state_root_starts_with?: string; + /** + * The state root of the execution payload (filter: ends_with) + */ + execution_payload_state_root_ends_with?: string; + /** + * The state root of the execution payload (filter: like) + */ + execution_payload_state_root_like?: string; + /** + * The state root of the execution payload (filter: not_like) + */ + execution_payload_state_root_not_like?: string; + /** + * The state root of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_state_root_in_values?: string; + /** + * The state root of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_state_root_not_in_values?: string; + /** + * The parent hash of the execution payload (filter: eq) + */ + execution_payload_parent_hash_eq?: string; + /** + * The parent hash of the execution payload (filter: ne) + */ + execution_payload_parent_hash_ne?: string; + /** + * The parent hash of the execution payload (filter: contains) + */ + execution_payload_parent_hash_contains?: string; + /** + * The parent hash of the execution payload (filter: starts_with) + */ + execution_payload_parent_hash_starts_with?: string; + /** + * The parent hash of the execution payload (filter: ends_with) + */ + execution_payload_parent_hash_ends_with?: string; + /** + * The parent hash of the execution payload (filter: like) + */ + execution_payload_parent_hash_like?: string; + /** + * The parent hash of the execution payload (filter: not_like) + */ + execution_payload_parent_hash_not_like?: string; + /** + * The parent hash of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_parent_hash_in_values?: string; + /** + * The parent hash of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_parent_hash_not_in_values?: string; + /** + * The transaction count of the execution payload (filter: eq) + */ + execution_payload_transactions_count_eq?: number; + /** + * The transaction count of the execution payload (filter: ne) + */ + execution_payload_transactions_count_ne?: number; + /** + * The transaction count of the execution payload (filter: lt) + */ + execution_payload_transactions_count_lt?: number; + /** + * The transaction count of the execution payload (filter: lte) + */ + execution_payload_transactions_count_lte?: number; + /** + * The transaction count of the execution payload (filter: gt) + */ + execution_payload_transactions_count_gt?: number; + /** + * The transaction count of the execution payload (filter: gte) + */ + execution_payload_transactions_count_gte?: number; + /** + * The transaction count of the execution payload (filter: between_min) + */ + execution_payload_transactions_count_between_min?: number; + /** + * The transaction count of the execution payload (filter: between_max_value) + */ + execution_payload_transactions_count_between_max_value?: number; + /** + * The transaction count of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_transactions_count_in_values?: string; + /** + * The transaction count of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_transactions_count_not_in_values?: string; + /** + * The transaction total bytes of the execution payload (filter: eq) + */ + execution_payload_transactions_total_bytes_eq?: number; + /** + * The transaction total bytes of the execution payload (filter: ne) + */ + execution_payload_transactions_total_bytes_ne?: number; + /** + * The transaction total bytes of the execution payload (filter: lt) + */ + execution_payload_transactions_total_bytes_lt?: number; + /** + * The transaction total bytes of the execution payload (filter: lte) + */ + execution_payload_transactions_total_bytes_lte?: number; + /** + * The transaction total bytes of the execution payload (filter: gt) + */ + execution_payload_transactions_total_bytes_gt?: number; + /** + * The transaction total bytes of the execution payload (filter: gte) + */ + execution_payload_transactions_total_bytes_gte?: number; + /** + * The transaction total bytes of the execution payload (filter: between_min) + */ + execution_payload_transactions_total_bytes_between_min?: number; + /** + * The transaction total bytes of the execution payload (filter: between_max_value) + */ + execution_payload_transactions_total_bytes_between_max_value?: number; + /** + * The transaction total bytes of the execution payload (filter: in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_in_values?: string; + /** + * The transaction total bytes of the execution payload (filter: not_in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_not_in_values?: string; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: eq) + */ + execution_payload_transactions_total_bytes_compressed_eq?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: ne) + */ + execution_payload_transactions_total_bytes_compressed_ne?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: lt) + */ + execution_payload_transactions_total_bytes_compressed_lt?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: lte) + */ + execution_payload_transactions_total_bytes_compressed_lte?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: gt) + */ + execution_payload_transactions_total_bytes_compressed_gt?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: gte) + */ + execution_payload_transactions_total_bytes_compressed_gte?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: between_min) + */ + execution_payload_transactions_total_bytes_compressed_between_min?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: between_max_value) + */ + execution_payload_transactions_total_bytes_compressed_between_max_value?: number; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_compressed_in_values?: string; + /** + * The transaction total bytes of the execution payload when compressed using snappy (filter: not_in_values) (comma-separated list) + */ + execution_payload_transactions_total_bytes_compressed_not_in_values?: string; + /** + * The maximum number of int_block_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntBlockCanonical` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_block_canonical'; +}; + +export type IntBlockCanonicalServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockCanonicalServiceListError = + IntBlockCanonicalServiceListErrors[keyof IntBlockCanonicalServiceListErrors]; + +export type IntBlockCanonicalServiceListResponses = { + /** + * OK + */ + 200: ListIntBlockCanonicalResponse; +}; + +export type IntBlockCanonicalServiceListResponse = + IntBlockCanonicalServiceListResponses[keyof IntBlockCanonicalServiceListResponses]; + +export type IntBlockCanonicalServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the reorg slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_block_canonical/{slot_start_date_time}'; +}; + +export type IntBlockCanonicalServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockCanonicalServiceGetError = + IntBlockCanonicalServiceGetErrors[keyof IntBlockCanonicalServiceGetErrors]; + +export type IntBlockCanonicalServiceGetResponses = { + /** + * OK + */ + 200: GetIntBlockCanonicalResponse; +}; + +export type IntBlockCanonicalServiceGetResponse = + IntBlockCanonicalServiceGetResponses[keyof IntBlockCanonicalServiceGetResponses]; + +export type IntBlockMevCanonicalServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The start time for the slot that the proposer payload is for (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The start time for the slot that the proposer payload is for (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The start time for the slot that the proposer payload is for (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The start time for the slot that the proposer payload is for (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The start time for the slot that the proposer payload is for (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The start time for the slot that the proposer payload is for (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The start time for the slot that the proposer payload is for (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The start time for the slot that the proposer payload is for (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The start time for the slot that the proposer payload is for (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The start time for the slot that the proposer payload is for (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The root hash of the beacon block (filter: eq) + */ + block_root_eq?: string; + /** + * The root hash of the beacon block (filter: ne) + */ + block_root_ne?: string; + /** + * The root hash of the beacon block (filter: contains) + */ + block_root_contains?: string; + /** + * The root hash of the beacon block (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The root hash of the beacon block (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The root hash of the beacon block (filter: like) + */ + block_root_like?: string; + /** + * The root hash of the beacon block (filter: not_like) + */ + block_root_not_like?: string; + /** + * The root hash of the beacon block (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The root hash of the beacon block (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number within the block proposer payload (filter: eq) + */ + slot_eq?: number; + /** + * Slot number within the block proposer payload (filter: ne) + */ + slot_ne?: number; + /** + * Slot number within the block proposer payload (filter: lt) + */ + slot_lt?: number; + /** + * Slot number within the block proposer payload (filter: lte) + */ + slot_lte?: number; + /** + * Slot number within the block proposer payload (filter: gt) + */ + slot_gt?: number; + /** + * Slot number within the block proposer payload (filter: gte) + */ + slot_gte?: number; + /** + * Slot number within the block proposer payload (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number within the block proposer payload (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number within the block proposer payload (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number within the block proposer payload (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot that the proposer payload is for (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The start time for the epoch that the proposer payload is for (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The start time for the epoch that the proposer payload is for (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The start time for the epoch that the proposer payload is for (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: eq) + */ + earliest_bid_date_time_eq?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: ne) + */ + earliest_bid_date_time_ne?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: lt) + */ + earliest_bid_date_time_lt?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: lte) + */ + earliest_bid_date_time_lte?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: gt) + */ + earliest_bid_date_time_gt?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: gte) + */ + earliest_bid_date_time_gte?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: between_min) + */ + earliest_bid_date_time_between_min?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: between_max_value) + */ + earliest_bid_date_time_between_max_value?: number; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: in_values) (comma-separated list) + */ + earliest_bid_date_time_in_values?: string; + /** + * The earliest timestamp of the accepted bid in milliseconds (filter: not_in_values) (comma-separated list) + */ + earliest_bid_date_time_not_in_values?: string; + /** + * The relay names that delivered the proposer payload (filter: has) + */ + relay_names_has?: string; + /** + * The relay names that delivered the proposer payload (filter: has_all_values) + */ + relay_names_has_all_values?: Array; + /** + * The relay names that delivered the proposer payload (filter: has_any_values) + */ + relay_names_has_any_values?: Array; + /** + * The relay names that delivered the proposer payload (filter: length_eq) + */ + relay_names_length_eq?: number; + /** + * The relay names that delivered the proposer payload (filter: length_gt) + */ + relay_names_length_gt?: number; + /** + * The relay names that delivered the proposer payload (filter: length_gte) + */ + relay_names_length_gte?: number; + /** + * The relay names that delivered the proposer payload (filter: length_lt) + */ + relay_names_length_lt?: number; + /** + * The relay names that delivered the proposer payload (filter: length_lte) + */ + relay_names_length_lte?: number; + /** + * The parent hash of the proposer payload (filter: eq) + */ + parent_hash_eq?: string; + /** + * The parent hash of the proposer payload (filter: ne) + */ + parent_hash_ne?: string; + /** + * The parent hash of the proposer payload (filter: contains) + */ + parent_hash_contains?: string; + /** + * The parent hash of the proposer payload (filter: starts_with) + */ + parent_hash_starts_with?: string; + /** + * The parent hash of the proposer payload (filter: ends_with) + */ + parent_hash_ends_with?: string; + /** + * The parent hash of the proposer payload (filter: like) + */ + parent_hash_like?: string; + /** + * The parent hash of the proposer payload (filter: not_like) + */ + parent_hash_not_like?: string; + /** + * The parent hash of the proposer payload (filter: in_values) (comma-separated list) + */ + parent_hash_in_values?: string; + /** + * The parent hash of the proposer payload (filter: not_in_values) (comma-separated list) + */ + parent_hash_not_in_values?: string; + /** + * The block number of the proposer payload (filter: eq) + */ + block_number_eq?: number; + /** + * The block number of the proposer payload (filter: ne) + */ + block_number_ne?: number; + /** + * The block number of the proposer payload (filter: lt) + */ + block_number_lt?: number; + /** + * The block number of the proposer payload (filter: lte) + */ + block_number_lte?: number; + /** + * The block number of the proposer payload (filter: gt) + */ + block_number_gt?: number; + /** + * The block number of the proposer payload (filter: gte) + */ + block_number_gte?: number; + /** + * The block number of the proposer payload (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number of the proposer payload (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number of the proposer payload (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number of the proposer payload (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The block hash of the proposer payload (filter: eq) + */ + block_hash_eq?: string; + /** + * The block hash of the proposer payload (filter: ne) + */ + block_hash_ne?: string; + /** + * The block hash of the proposer payload (filter: contains) + */ + block_hash_contains?: string; + /** + * The block hash of the proposer payload (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * The block hash of the proposer payload (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * The block hash of the proposer payload (filter: like) + */ + block_hash_like?: string; + /** + * The block hash of the proposer payload (filter: not_like) + */ + block_hash_not_like?: string; + /** + * The block hash of the proposer payload (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * The block hash of the proposer payload (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * The builder pubkey of the proposer payload (filter: eq) + */ + builder_pubkey_eq?: string; + /** + * The builder pubkey of the proposer payload (filter: ne) + */ + builder_pubkey_ne?: string; + /** + * The builder pubkey of the proposer payload (filter: contains) + */ + builder_pubkey_contains?: string; + /** + * The builder pubkey of the proposer payload (filter: starts_with) + */ + builder_pubkey_starts_with?: string; + /** + * The builder pubkey of the proposer payload (filter: ends_with) + */ + builder_pubkey_ends_with?: string; + /** + * The builder pubkey of the proposer payload (filter: like) + */ + builder_pubkey_like?: string; + /** + * The builder pubkey of the proposer payload (filter: not_like) + */ + builder_pubkey_not_like?: string; + /** + * The builder pubkey of the proposer payload (filter: in_values) (comma-separated list) + */ + builder_pubkey_in_values?: string; + /** + * The builder pubkey of the proposer payload (filter: not_in_values) (comma-separated list) + */ + builder_pubkey_not_in_values?: string; + /** + * The proposer pubkey of the proposer payload (filter: eq) + */ + proposer_pubkey_eq?: string; + /** + * The proposer pubkey of the proposer payload (filter: ne) + */ + proposer_pubkey_ne?: string; + /** + * The proposer pubkey of the proposer payload (filter: contains) + */ + proposer_pubkey_contains?: string; + /** + * The proposer pubkey of the proposer payload (filter: starts_with) + */ + proposer_pubkey_starts_with?: string; + /** + * The proposer pubkey of the proposer payload (filter: ends_with) + */ + proposer_pubkey_ends_with?: string; + /** + * The proposer pubkey of the proposer payload (filter: like) + */ + proposer_pubkey_like?: string; + /** + * The proposer pubkey of the proposer payload (filter: not_like) + */ + proposer_pubkey_not_like?: string; + /** + * The proposer pubkey of the proposer payload (filter: in_values) (comma-separated list) + */ + proposer_pubkey_in_values?: string; + /** + * The proposer pubkey of the proposer payload (filter: not_in_values) (comma-separated list) + */ + proposer_pubkey_not_in_values?: string; + /** + * The proposer fee recipient of the proposer payload (filter: eq) + */ + proposer_fee_recipient_eq?: string; + /** + * The proposer fee recipient of the proposer payload (filter: ne) + */ + proposer_fee_recipient_ne?: string; + /** + * The proposer fee recipient of the proposer payload (filter: contains) + */ + proposer_fee_recipient_contains?: string; + /** + * The proposer fee recipient of the proposer payload (filter: starts_with) + */ + proposer_fee_recipient_starts_with?: string; + /** + * The proposer fee recipient of the proposer payload (filter: ends_with) + */ + proposer_fee_recipient_ends_with?: string; + /** + * The proposer fee recipient of the proposer payload (filter: like) + */ + proposer_fee_recipient_like?: string; + /** + * The proposer fee recipient of the proposer payload (filter: not_like) + */ + proposer_fee_recipient_not_like?: string; + /** + * The proposer fee recipient of the proposer payload (filter: in_values) (comma-separated list) + */ + proposer_fee_recipient_in_values?: string; + /** + * The proposer fee recipient of the proposer payload (filter: not_in_values) (comma-separated list) + */ + proposer_fee_recipient_not_in_values?: string; + /** + * The gas limit of the proposer payload (filter: eq) + */ + gas_limit_eq?: number; + /** + * The gas limit of the proposer payload (filter: ne) + */ + gas_limit_ne?: number; + /** + * The gas limit of the proposer payload (filter: lt) + */ + gas_limit_lt?: number; + /** + * The gas limit of the proposer payload (filter: lte) + */ + gas_limit_lte?: number; + /** + * The gas limit of the proposer payload (filter: gt) + */ + gas_limit_gt?: number; + /** + * The gas limit of the proposer payload (filter: gte) + */ + gas_limit_gte?: number; + /** + * The gas limit of the proposer payload (filter: between_min) + */ + gas_limit_between_min?: number; + /** + * The gas limit of the proposer payload (filter: between_max_value) + */ + gas_limit_between_max_value?: number; + /** + * The gas limit of the proposer payload (filter: in_values) (comma-separated list) + */ + gas_limit_in_values?: string; + /** + * The gas limit of the proposer payload (filter: not_in_values) (comma-separated list) + */ + gas_limit_not_in_values?: string; + /** + * The gas used of the proposer payload (filter: eq) + */ + gas_used_eq?: number; + /** + * The gas used of the proposer payload (filter: ne) + */ + gas_used_ne?: number; + /** + * The gas used of the proposer payload (filter: lt) + */ + gas_used_lt?: number; + /** + * The gas used of the proposer payload (filter: lte) + */ + gas_used_lte?: number; + /** + * The gas used of the proposer payload (filter: gt) + */ + gas_used_gt?: number; + /** + * The gas used of the proposer payload (filter: gte) + */ + gas_used_gte?: number; + /** + * The gas used of the proposer payload (filter: between_min) + */ + gas_used_between_min?: number; + /** + * The gas used of the proposer payload (filter: between_max_value) + */ + gas_used_between_max_value?: number; + /** + * The gas used of the proposer payload (filter: in_values) (comma-separated list) + */ + gas_used_in_values?: string; + /** + * The gas used of the proposer payload (filter: not_in_values) (comma-separated list) + */ + gas_used_not_in_values?: string; + /** + * The transaction value in wei (filter: eq) + */ + value_eq?: string; + /** + * The transaction value in wei (filter: ne) + */ + value_ne?: string; + /** + * The transaction value in wei (filter: contains) + */ + value_contains?: string; + /** + * The transaction value in wei (filter: starts_with) + */ + value_starts_with?: string; + /** + * The transaction value in wei (filter: ends_with) + */ + value_ends_with?: string; + /** + * The transaction value in wei (filter: like) + */ + value_like?: string; + /** + * The transaction value in wei (filter: not_like) + */ + value_not_like?: string; + /** + * The transaction value in wei (filter: in_values) (comma-separated list) + */ + value_in_values?: string; + /** + * The transaction value in wei (filter: not_in_values) (comma-separated list) + */ + value_not_in_values?: string; + /** + * The number of transactions in the proposer payload (filter: eq) + */ + transaction_count_eq?: number; + /** + * The number of transactions in the proposer payload (filter: ne) + */ + transaction_count_ne?: number; + /** + * The number of transactions in the proposer payload (filter: lt) + */ + transaction_count_lt?: number; + /** + * The number of transactions in the proposer payload (filter: lte) + */ + transaction_count_lte?: number; + /** + * The number of transactions in the proposer payload (filter: gt) + */ + transaction_count_gt?: number; + /** + * The number of transactions in the proposer payload (filter: gte) + */ + transaction_count_gte?: number; + /** + * The number of transactions in the proposer payload (filter: between_min) + */ + transaction_count_between_min?: number; + /** + * The number of transactions in the proposer payload (filter: between_max_value) + */ + transaction_count_between_max_value?: number; + /** + * The number of transactions in the proposer payload (filter: in_values) (comma-separated list) + */ + transaction_count_in_values?: string; + /** + * The number of transactions in the proposer payload (filter: not_in_values) (comma-separated list) + */ + transaction_count_not_in_values?: string; + /** + * The maximum number of int_block_mev_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntBlockMevCanonical` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_block_mev_canonical'; +}; + +export type IntBlockMevCanonicalServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockMevCanonicalServiceListError = + IntBlockMevCanonicalServiceListErrors[keyof IntBlockMevCanonicalServiceListErrors]; + +export type IntBlockMevCanonicalServiceListResponses = { + /** + * OK + */ + 200: ListIntBlockMevCanonicalResponse; +}; + +export type IntBlockMevCanonicalServiceListResponse = + IntBlockMevCanonicalServiceListResponses[keyof IntBlockMevCanonicalServiceListResponses]; + +export type IntBlockMevCanonicalServiceGetData = { + body?: never; + path: { + /** + * The start time for the slot that the proposer payload is for + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_block_mev_canonical/{slot_start_date_time}'; +}; + +export type IntBlockMevCanonicalServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockMevCanonicalServiceGetError = + IntBlockMevCanonicalServiceGetErrors[keyof IntBlockMevCanonicalServiceGetErrors]; + +export type IntBlockMevCanonicalServiceGetResponses = { + /** + * OK + */ + 200: GetIntBlockMevCanonicalResponse; +}; + +export type IntBlockMevCanonicalServiceGetResponse = + IntBlockMevCanonicalServiceGetResponses[keyof IntBlockMevCanonicalServiceGetResponses]; + +export type IntBlockOpcodeGasServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: eq) + */ + opcode_eq?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ne) + */ + opcode_ne?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: contains) + */ + opcode_contains?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: starts_with) + */ + opcode_starts_with?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ends_with) + */ + opcode_ends_with?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: like) + */ + opcode_like?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_like) + */ + opcode_not_like?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: in_values) (comma-separated list) + */ + opcode_in_values?: string; + /** + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_in_values) (comma-separated list) + */ + opcode_not_in_values?: string; + /** + * The name of the network (filter: eq) + */ + meta_network_name_eq?: string; + /** + * The name of the network (filter: ne) + */ + meta_network_name_ne?: string; + /** + * The name of the network (filter: contains) + */ + meta_network_name_contains?: string; + /** + * The name of the network (filter: starts_with) + */ + meta_network_name_starts_with?: string; + /** + * The name of the network (filter: ends_with) + */ + meta_network_name_ends_with?: string; + /** + * The name of the network (filter: like) + */ + meta_network_name_like?: string; + /** + * The name of the network (filter: not_like) + */ + meta_network_name_not_like?: string; + /** + * The name of the network (filter: in_values) (comma-separated list) + */ + meta_network_name_in_values?: string; + /** + * The name of the network (filter: not_in_values) (comma-separated list) + */ + meta_network_name_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total execution count of this opcode across all transactions in the block (filter: eq) + */ + count_eq?: number; + /** + * Total execution count of this opcode across all transactions in the block (filter: ne) + */ + count_ne?: number; + /** + * Total execution count of this opcode across all transactions in the block (filter: lt) + */ + count_lt?: number; + /** + * Total execution count of this opcode across all transactions in the block (filter: lte) + */ + count_lte?: number; + /** + * Total execution count of this opcode across all transactions in the block (filter: gt) + */ + count_gt?: number; + /** + * Total execution count of this opcode across all transactions in the block (filter: gte) + */ + count_gte?: number; + /** + * Total execution count of this opcode across all transactions in the block (filter: between_min) + */ + count_between_min?: number; + /** + * Total execution count of this opcode across all transactions in the block (filter: between_max_value) + */ + count_between_max_value?: number; + /** + * Total execution count of this opcode across all transactions in the block (filter: in_values) (comma-separated list) + */ + count_in_values?: string; + /** + * Total execution count of this opcode across all transactions in the block (filter: not_in_values) (comma-separated list) + */ + count_not_in_values?: string; + /** + * Total gas consumed by this opcode across all transactions in the block (filter: eq) + */ + gas_eq?: number; + /** + * Total gas consumed by this opcode across all transactions in the block (filter: ne) + */ + gas_ne?: number; + /** + * Total gas consumed by this opcode across all transactions in the block (filter: lt) + */ + gas_lt?: number; + /** + * Total gas consumed by this opcode across all transactions in the block (filter: lte) + */ + gas_lte?: number; + /** + * Total gas consumed by this opcode across all transactions in the block (filter: gt) + */ + gas_gt?: number; + /** + * Total gas consumed by this opcode across all transactions in the block (filter: gte) + */ + gas_gte?: number; + /** + * Total gas consumed by this opcode across all transactions in the block (filter: between_min) + */ + gas_between_min?: number; + /** + * Total gas consumed by this opcode across all transactions in the block (filter: between_max_value) + */ + gas_between_max_value?: number; + /** + * Total gas consumed by this opcode across all transactions in the block (filter: in_values) (comma-separated list) + */ + gas_in_values?: string; + /** + * Total gas consumed by this opcode across all transactions in the block (filter: not_in_values) (comma-separated list) + */ + gas_not_in_values?: string; + /** + * Number of times this opcode resulted in an error across all transactions (filter: eq) + */ + error_count_eq?: number; + /** + * Number of times this opcode resulted in an error across all transactions (filter: ne) + */ + error_count_ne?: number; + /** + * Number of times this opcode resulted in an error across all transactions (filter: lt) + */ + error_count_lt?: number; + /** + * Number of times this opcode resulted in an error across all transactions (filter: lte) + */ + error_count_lte?: number; + /** + * Number of times this opcode resulted in an error across all transactions (filter: gt) + */ + error_count_gt?: number; + /** + * Number of times this opcode resulted in an error across all transactions (filter: gte) + */ + error_count_gte?: number; + /** + * Number of times this opcode resulted in an error across all transactions (filter: between_min) + */ + error_count_between_min?: number; + /** + * Number of times this opcode resulted in an error across all transactions (filter: between_max_value) + */ + error_count_between_max_value?: number; + /** + * Number of times this opcode resulted in an error across all transactions (filter: in_values) (comma-separated list) + */ + error_count_in_values?: string; + /** + * Number of times this opcode resulted in an error across all transactions (filter: not_in_values) (comma-separated list) + */ + error_count_not_in_values?: string; + /** + * The maximum number of int_block_opcode_gas to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntBlockOpcodeGas` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_block_opcode_gas'; +}; + +export type IntBlockOpcodeGasServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockOpcodeGasServiceListError = + IntBlockOpcodeGasServiceListErrors[keyof IntBlockOpcodeGasServiceListErrors]; + +export type IntBlockOpcodeGasServiceListResponses = { + /** + * OK + */ + 200: ListIntBlockOpcodeGasResponse; +}; + +export type IntBlockOpcodeGasServiceListResponse = + IntBlockOpcodeGasServiceListResponses[keyof IntBlockOpcodeGasServiceListResponses]; + +export type IntBlockOpcodeGasServiceGetData = { + body?: never; + path: { + /** + * The block number + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_block_opcode_gas/{block_number}'; +}; + +export type IntBlockOpcodeGasServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockOpcodeGasServiceGetError = + IntBlockOpcodeGasServiceGetErrors[keyof IntBlockOpcodeGasServiceGetErrors]; + +export type IntBlockOpcodeGasServiceGetResponses = { + /** + * OK + */ + 200: GetIntBlockOpcodeGasResponse; +}; + +export type IntBlockOpcodeGasServiceGetResponse = + IntBlockOpcodeGasServiceGetResponses[keyof IntBlockOpcodeGasServiceGetResponses]; + +export type IntBlockPayloadPtcVoteCanonicalServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the attested slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the attested slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the attested slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the attested slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the attested slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the attested slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the attested slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the attested slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the attested slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the attested slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root being attested by the PTC (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root being attested by the PTC (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root being attested by the PTC (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root being attested by the PTC (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root being attested by the PTC (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root being attested by the PTC (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root being attested by the PTC (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root being attested by the PTC (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root being attested by the PTC (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The attested slot number (filter: eq) + */ + slot_eq?: number; + /** + * The attested slot number (filter: ne) + */ + slot_ne?: number; + /** + * The attested slot number (filter: lt) + */ + slot_lt?: number; + /** + * The attested slot number (filter: lte) + */ + slot_lte?: number; + /** + * The attested slot number (filter: gt) + */ + slot_gt?: number; + /** + * The attested slot number (filter: gte) + */ + slot_gte?: number; + /** + * The attested slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The attested slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The attested slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The attested slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the attested slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the attested slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the attested slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the attested slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the attested slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the attested slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the attested slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the attested slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the attested slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the attested slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The beacon block version of the containing block (filter: eq) + */ + block_version_eq?: string; + /** + * The beacon block version of the containing block (filter: ne) + */ + block_version_ne?: string; + /** + * The beacon block version of the containing block (filter: contains) + */ + block_version_contains?: string; + /** + * The beacon block version of the containing block (filter: starts_with) + */ + block_version_starts_with?: string; + /** + * The beacon block version of the containing block (filter: ends_with) + */ + block_version_ends_with?: string; + /** + * The beacon block version of the containing block (filter: like) + */ + block_version_like?: string; + /** + * The beacon block version of the containing block (filter: not_like) + */ + block_version_not_like?: string; + /** + * The beacon block version of the containing block (filter: in_values) (comma-separated list) + */ + block_version_in_values?: string; + /** + * The beacon block version of the containing block (filter: not_in_values) (comma-separated list) + */ + block_version_not_in_values?: string; + /** + * Slot of the canonical block that included the payload attestations (filter: eq) + */ + included_in_slot_eq?: number; + /** + * Slot of the canonical block that included the payload attestations (filter: ne) + */ + included_in_slot_ne?: number; + /** + * Slot of the canonical block that included the payload attestations (filter: lt) + */ + included_in_slot_lt?: number; + /** + * Slot of the canonical block that included the payload attestations (filter: lte) + */ + included_in_slot_lte?: number; + /** + * Slot of the canonical block that included the payload attestations (filter: gt) + */ + included_in_slot_gt?: number; + /** + * Slot of the canonical block that included the payload attestations (filter: gte) + */ + included_in_slot_gte?: number; + /** + * Slot of the canonical block that included the payload attestations (filter: between_min) + */ + included_in_slot_between_min?: number; + /** + * Slot of the canonical block that included the payload attestations (filter: between_max_value) + */ + included_in_slot_between_max_value?: number; + /** + * Slot of the canonical block that included the payload attestations (filter: in_values) (comma-separated list) + */ + included_in_slot_in_values?: string; + /** + * Slot of the canonical block that included the payload attestations (filter: not_in_values) (comma-separated list) + */ + included_in_slot_not_in_values?: string; + /** + * Root of the canonical block that included the payload attestations (filter: eq) + */ + included_in_block_root_eq?: string; + /** + * Root of the canonical block that included the payload attestations (filter: ne) + */ + included_in_block_root_ne?: string; + /** + * Root of the canonical block that included the payload attestations (filter: contains) + */ + included_in_block_root_contains?: string; + /** + * Root of the canonical block that included the payload attestations (filter: starts_with) + */ + included_in_block_root_starts_with?: string; + /** + * Root of the canonical block that included the payload attestations (filter: ends_with) + */ + included_in_block_root_ends_with?: string; + /** + * Root of the canonical block that included the payload attestations (filter: like) + */ + included_in_block_root_like?: string; + /** + * Root of the canonical block that included the payload attestations (filter: not_like) + */ + included_in_block_root_not_like?: string; + /** + * Root of the canonical block that included the payload attestations (filter: in_values) (comma-separated list) + */ + included_in_block_root_in_values?: string; + /** + * Root of the canonical block that included the payload attestations (filter: not_in_values) (comma-separated list) + */ + included_in_block_root_not_in_values?: string; + /** + * Total PTC validators covered by the included payload attestation aggregates (filter: eq) + */ + ptc_validators_eq?: number; + /** + * Total PTC validators covered by the included payload attestation aggregates (filter: ne) + */ + ptc_validators_ne?: number; + /** + * Total PTC validators covered by the included payload attestation aggregates (filter: lt) + */ + ptc_validators_lt?: number; + /** + * Total PTC validators covered by the included payload attestation aggregates (filter: lte) + */ + ptc_validators_lte?: number; + /** + * Total PTC validators covered by the included payload attestation aggregates (filter: gt) + */ + ptc_validators_gt?: number; + /** + * Total PTC validators covered by the included payload attestation aggregates (filter: gte) + */ + ptc_validators_gte?: number; + /** + * Total PTC validators covered by the included payload attestation aggregates (filter: between_min) + */ + ptc_validators_between_min?: number; + /** + * Total PTC validators covered by the included payload attestation aggregates (filter: between_max_value) + */ + ptc_validators_between_max_value?: number; + /** + * Total PTC validators covered by the included payload attestation aggregates (filter: in_values) (comma-separated list) + */ + ptc_validators_in_values?: string; + /** + * Total PTC validators covered by the included payload attestation aggregates (filter: not_in_values) (comma-separated list) + */ + ptc_validators_not_in_values?: string; + /** + * PTC validators attesting the payload was present (filter: eq) + */ + payload_present_votes_eq?: number; + /** + * PTC validators attesting the payload was present (filter: ne) + */ + payload_present_votes_ne?: number; + /** + * PTC validators attesting the payload was present (filter: lt) + */ + payload_present_votes_lt?: number; + /** + * PTC validators attesting the payload was present (filter: lte) + */ + payload_present_votes_lte?: number; + /** + * PTC validators attesting the payload was present (filter: gt) + */ + payload_present_votes_gt?: number; + /** + * PTC validators attesting the payload was present (filter: gte) + */ + payload_present_votes_gte?: number; + /** + * PTC validators attesting the payload was present (filter: between_min) + */ + payload_present_votes_between_min?: number; + /** + * PTC validators attesting the payload was present (filter: between_max_value) + */ + payload_present_votes_between_max_value?: number; + /** + * PTC validators attesting the payload was present (filter: in_values) (comma-separated list) + */ + payload_present_votes_in_values?: string; + /** + * PTC validators attesting the payload was present (filter: not_in_values) (comma-separated list) + */ + payload_present_votes_not_in_values?: string; + /** + * PTC validators attesting blob data was available (filter: eq) + */ + blob_data_available_votes_eq?: number; + /** + * PTC validators attesting blob data was available (filter: ne) + */ + blob_data_available_votes_ne?: number; + /** + * PTC validators attesting blob data was available (filter: lt) + */ + blob_data_available_votes_lt?: number; + /** + * PTC validators attesting blob data was available (filter: lte) + */ + blob_data_available_votes_lte?: number; + /** + * PTC validators attesting blob data was available (filter: gt) + */ + blob_data_available_votes_gt?: number; + /** + * PTC validators attesting blob data was available (filter: gte) + */ + blob_data_available_votes_gte?: number; + /** + * PTC validators attesting blob data was available (filter: between_min) + */ + blob_data_available_votes_between_min?: number; + /** + * PTC validators attesting blob data was available (filter: between_max_value) + */ + blob_data_available_votes_between_max_value?: number; + /** + * PTC validators attesting blob data was available (filter: in_values) (comma-separated list) + */ + blob_data_available_votes_in_values?: string; + /** + * PTC validators attesting blob data was available (filter: not_in_values) (comma-separated list) + */ + blob_data_available_votes_not_in_values?: string; + /** + * The maximum number of int_block_payload_ptc_vote_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntBlockPayloadPtcVoteCanonical` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_block_payload_ptc_vote_canonical'; +}; + +export type IntBlockPayloadPtcVoteCanonicalServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockPayloadPtcVoteCanonicalServiceListError = + IntBlockPayloadPtcVoteCanonicalServiceListErrors[keyof IntBlockPayloadPtcVoteCanonicalServiceListErrors]; + +export type IntBlockPayloadPtcVoteCanonicalServiceListResponses = { + /** + * OK + */ + 200: ListIntBlockPayloadPtcVoteCanonicalResponse; +}; + +export type IntBlockPayloadPtcVoteCanonicalServiceListResponse = + IntBlockPayloadPtcVoteCanonicalServiceListResponses[keyof IntBlockPayloadPtcVoteCanonicalServiceListResponses]; + +export type IntBlockPayloadPtcVoteCanonicalServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the attested slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_block_payload_ptc_vote_canonical/{slot_start_date_time}'; +}; + +export type IntBlockPayloadPtcVoteCanonicalServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockPayloadPtcVoteCanonicalServiceGetError = + IntBlockPayloadPtcVoteCanonicalServiceGetErrors[keyof IntBlockPayloadPtcVoteCanonicalServiceGetErrors]; + +export type IntBlockPayloadPtcVoteCanonicalServiceGetResponses = { + /** + * OK + */ + 200: GetIntBlockPayloadPtcVoteCanonicalResponse; +}; + +export type IntBlockPayloadPtcVoteCanonicalServiceGetResponse = + IntBlockPayloadPtcVoteCanonicalServiceGetResponses[keyof IntBlockPayloadPtcVoteCanonicalServiceGetResponses]; + +export type IntBlockProposerCanonicalServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number (filter: eq) + */ + slot_eq?: number; + /** + * The slot number (filter: ne) + */ + slot_ne?: number; + /** + * The slot number (filter: lt) + */ + slot_lt?: number; + /** + * The slot number (filter: lte) + */ + slot_lte?: number; + /** + * The slot number (filter: gt) + */ + slot_gt?: number; + /** + * The slot number (filter: gte) + */ + slot_gte?: number; + /** + * The slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The validator index of the proposer for the slot (filter: eq) + */ + proposer_validator_index_eq?: number; + /** + * The validator index of the proposer for the slot (filter: ne) + */ + proposer_validator_index_ne?: number; + /** + * The validator index of the proposer for the slot (filter: lt) + */ + proposer_validator_index_lt?: number; + /** + * The validator index of the proposer for the slot (filter: lte) + */ + proposer_validator_index_lte?: number; + /** + * The validator index of the proposer for the slot (filter: gt) + */ + proposer_validator_index_gt?: number; + /** + * The validator index of the proposer for the slot (filter: gte) + */ + proposer_validator_index_gte?: number; + /** + * The validator index of the proposer for the slot (filter: between_min) + */ + proposer_validator_index_between_min?: number; + /** + * The validator index of the proposer for the slot (filter: between_max_value) + */ + proposer_validator_index_between_max_value?: number; + /** + * The validator index of the proposer for the slot (filter: in_values) (comma-separated list) + */ + proposer_validator_index_in_values?: string; + /** + * The validator index of the proposer for the slot (filter: not_in_values) (comma-separated list) + */ + proposer_validator_index_not_in_values?: string; + /** + * The public key of the validator proposer (filter: eq) + */ + proposer_pubkey_eq?: string; + /** + * The public key of the validator proposer (filter: ne) + */ + proposer_pubkey_ne?: string; + /** + * The public key of the validator proposer (filter: contains) + */ + proposer_pubkey_contains?: string; + /** + * The public key of the validator proposer (filter: starts_with) + */ + proposer_pubkey_starts_with?: string; + /** + * The public key of the validator proposer (filter: ends_with) + */ + proposer_pubkey_ends_with?: string; + /** + * The public key of the validator proposer (filter: like) + */ + proposer_pubkey_like?: string; + /** + * The public key of the validator proposer (filter: not_like) + */ + proposer_pubkey_not_like?: string; + /** + * The public key of the validator proposer (filter: in_values) (comma-separated list) + */ + proposer_pubkey_in_values?: string; + /** + * The public key of the validator proposer (filter: not_in_values) (comma-separated list) + */ + proposer_pubkey_not_in_values?: string; + /** + * The beacon block root hash. Null if a slot was missed (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root hash. Null if a slot was missed (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root hash. Null if a slot was missed (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root hash. Null if a slot was missed (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root hash. Null if a slot was missed (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root hash. Null if a slot was missed (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root hash. Null if a slot was missed (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root hash. Null if a slot was missed (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root hash. Null if a slot was missed (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The maximum number of int_block_proposer_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntBlockProposerCanonical` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_block_proposer_canonical'; +}; + +export type IntBlockProposerCanonicalServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockProposerCanonicalServiceListError = + IntBlockProposerCanonicalServiceListErrors[keyof IntBlockProposerCanonicalServiceListErrors]; + +export type IntBlockProposerCanonicalServiceListResponses = { + /** + * OK + */ + 200: ListIntBlockProposerCanonicalResponse; +}; + +export type IntBlockProposerCanonicalServiceListResponse = + IntBlockProposerCanonicalServiceListResponses[keyof IntBlockProposerCanonicalServiceListResponses]; + +export type IntBlockProposerCanonicalServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_block_proposer_canonical/{slot_start_date_time}'; +}; + +export type IntBlockProposerCanonicalServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockProposerCanonicalServiceGetError = + IntBlockProposerCanonicalServiceGetErrors[keyof IntBlockProposerCanonicalServiceGetErrors]; + +export type IntBlockProposerCanonicalServiceGetResponses = { + /** + * OK + */ + 200: GetIntBlockProposerCanonicalResponse; +}; + +export type IntBlockProposerCanonicalServiceGetResponse = + IntBlockProposerCanonicalServiceGetResponses[keyof IntBlockProposerCanonicalServiceGetResponses]; + +export type IntBlockReceiptSizeServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The name of the network (filter: eq) + */ + meta_network_name_eq?: string; + /** + * The name of the network (filter: ne) + */ + meta_network_name_ne?: string; + /** + * The name of the network (filter: contains) + */ + meta_network_name_contains?: string; + /** + * The name of the network (filter: starts_with) + */ + meta_network_name_starts_with?: string; + /** + * The name of the network (filter: ends_with) + */ + meta_network_name_ends_with?: string; + /** + * The name of the network (filter: like) + */ + meta_network_name_like?: string; + /** + * The name of the network (filter: not_like) + */ + meta_network_name_not_like?: string; + /** + * The name of the network (filter: in_values) (comma-separated list) + */ + meta_network_name_in_values?: string; + /** + * The name of the network (filter: not_in_values) (comma-separated list) + */ + meta_network_name_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total RLP-encoded receipt bytes across all transactions in the block (filter: eq) + */ + receipt_bytes_eq?: number; + /** + * Total RLP-encoded receipt bytes across all transactions in the block (filter: ne) + */ + receipt_bytes_ne?: number; + /** + * Total RLP-encoded receipt bytes across all transactions in the block (filter: lt) + */ + receipt_bytes_lt?: number; + /** + * Total RLP-encoded receipt bytes across all transactions in the block (filter: lte) + */ + receipt_bytes_lte?: number; + /** + * Total RLP-encoded receipt bytes across all transactions in the block (filter: gt) + */ + receipt_bytes_gt?: number; + /** + * Total RLP-encoded receipt bytes across all transactions in the block (filter: gte) + */ + receipt_bytes_gte?: number; + /** + * Total RLP-encoded receipt bytes across all transactions in the block (filter: between_min) + */ + receipt_bytes_between_min?: number; + /** + * Total RLP-encoded receipt bytes across all transactions in the block (filter: between_max_value) + */ + receipt_bytes_between_max_value?: number; + /** + * Total RLP-encoded receipt bytes across all transactions in the block (filter: in_values) (comma-separated list) + */ + receipt_bytes_in_values?: string; + /** + * Total RLP-encoded receipt bytes across all transactions in the block (filter: not_in_values) (comma-separated list) + */ + receipt_bytes_not_in_values?: string; + /** + * Number of transactions in the block (filter: eq) + */ + transaction_count_eq?: number; + /** + * Number of transactions in the block (filter: ne) + */ + transaction_count_ne?: number; + /** + * Number of transactions in the block (filter: lt) + */ + transaction_count_lt?: number; + /** + * Number of transactions in the block (filter: lte) + */ + transaction_count_lte?: number; + /** + * Number of transactions in the block (filter: gt) + */ + transaction_count_gt?: number; + /** + * Number of transactions in the block (filter: gte) + */ + transaction_count_gte?: number; + /** + * Number of transactions in the block (filter: between_min) + */ + transaction_count_between_min?: number; + /** + * Number of transactions in the block (filter: between_max_value) + */ + transaction_count_between_max_value?: number; + /** + * Number of transactions in the block (filter: in_values) (comma-separated list) + */ + transaction_count_in_values?: string; + /** + * Number of transactions in the block (filter: not_in_values) (comma-separated list) + */ + transaction_count_not_in_values?: string; + /** + * Total logs emitted across all transactions in the block (filter: eq) + */ + log_count_eq?: number; + /** + * Total logs emitted across all transactions in the block (filter: ne) + */ + log_count_ne?: number; + /** + * Total logs emitted across all transactions in the block (filter: lt) + */ + log_count_lt?: number; + /** + * Total logs emitted across all transactions in the block (filter: lte) + */ + log_count_lte?: number; + /** + * Total logs emitted across all transactions in the block (filter: gt) + */ + log_count_gt?: number; + /** + * Total logs emitted across all transactions in the block (filter: gte) + */ + log_count_gte?: number; + /** + * Total logs emitted across all transactions in the block (filter: between_min) + */ + log_count_between_min?: number; + /** + * Total logs emitted across all transactions in the block (filter: between_max_value) + */ + log_count_between_max_value?: number; + /** + * Total logs emitted across all transactions in the block (filter: in_values) (comma-separated list) + */ + log_count_in_values?: string; + /** + * Total logs emitted across all transactions in the block (filter: not_in_values) (comma-separated list) + */ + log_count_not_in_values?: string; + /** + * Total raw bytes of log data fields across all transactions (filter: eq) + */ + log_data_bytes_eq?: number; + /** + * Total raw bytes of log data fields across all transactions (filter: ne) + */ + log_data_bytes_ne?: number; + /** + * Total raw bytes of log data fields across all transactions (filter: lt) + */ + log_data_bytes_lt?: number; + /** + * Total raw bytes of log data fields across all transactions (filter: lte) + */ + log_data_bytes_lte?: number; + /** + * Total raw bytes of log data fields across all transactions (filter: gt) + */ + log_data_bytes_gt?: number; + /** + * Total raw bytes of log data fields across all transactions (filter: gte) + */ + log_data_bytes_gte?: number; + /** + * Total raw bytes of log data fields across all transactions (filter: between_min) + */ + log_data_bytes_between_min?: number; + /** + * Total raw bytes of log data fields across all transactions (filter: between_max_value) + */ + log_data_bytes_between_max_value?: number; + /** + * Total raw bytes of log data fields across all transactions (filter: in_values) (comma-separated list) + */ + log_data_bytes_in_values?: string; + /** + * Total raw bytes of log data fields across all transactions (filter: not_in_values) (comma-separated list) + */ + log_data_bytes_not_in_values?: string; + /** + * Total number of topics across all logs in the block (filter: eq) + */ + log_topic_count_eq?: number; + /** + * Total number of topics across all logs in the block (filter: ne) + */ + log_topic_count_ne?: number; + /** + * Total number of topics across all logs in the block (filter: lt) + */ + log_topic_count_lt?: number; + /** + * Total number of topics across all logs in the block (filter: lte) + */ + log_topic_count_lte?: number; + /** + * Total number of topics across all logs in the block (filter: gt) + */ + log_topic_count_gt?: number; + /** + * Total number of topics across all logs in the block (filter: gte) + */ + log_topic_count_gte?: number; + /** + * Total number of topics across all logs in the block (filter: between_min) + */ + log_topic_count_between_min?: number; + /** + * Total number of topics across all logs in the block (filter: between_max_value) + */ + log_topic_count_between_max_value?: number; + /** + * Total number of topics across all logs in the block (filter: in_values) (comma-separated list) + */ + log_topic_count_in_values?: string; + /** + * Total number of topics across all logs in the block (filter: not_in_values) (comma-separated list) + */ + log_topic_count_not_in_values?: string; + /** + * Filter avg_receipt_bytes_per_transaction using value + */ + avg_receipt_bytes_per_transaction_value?: number; + /** + * Largest single transaction receipt in this block (filter: eq) + */ + max_receipt_bytes_per_transaction_eq?: number; + /** + * Largest single transaction receipt in this block (filter: ne) + */ + max_receipt_bytes_per_transaction_ne?: number; + /** + * Largest single transaction receipt in this block (filter: lt) + */ + max_receipt_bytes_per_transaction_lt?: number; + /** + * Largest single transaction receipt in this block (filter: lte) + */ + max_receipt_bytes_per_transaction_lte?: number; + /** + * Largest single transaction receipt in this block (filter: gt) + */ + max_receipt_bytes_per_transaction_gt?: number; + /** + * Largest single transaction receipt in this block (filter: gte) + */ + max_receipt_bytes_per_transaction_gte?: number; + /** + * Largest single transaction receipt in this block (filter: between_min) + */ + max_receipt_bytes_per_transaction_between_min?: number; + /** + * Largest single transaction receipt in this block (filter: between_max_value) + */ + max_receipt_bytes_per_transaction_between_max_value?: number; + /** + * Largest single transaction receipt in this block (filter: in_values) (comma-separated list) + */ + max_receipt_bytes_per_transaction_in_values?: string; + /** + * Largest single transaction receipt in this block (filter: not_in_values) (comma-separated list) + */ + max_receipt_bytes_per_transaction_not_in_values?: string; + /** + * 50th percentile of receipt bytes per transaction (filter: eq) + */ + p50_receipt_bytes_per_transaction_eq?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: ne) + */ + p50_receipt_bytes_per_transaction_ne?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: lt) + */ + p50_receipt_bytes_per_transaction_lt?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: lte) + */ + p50_receipt_bytes_per_transaction_lte?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: gt) + */ + p50_receipt_bytes_per_transaction_gt?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: gte) + */ + p50_receipt_bytes_per_transaction_gte?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: between_min) + */ + p50_receipt_bytes_per_transaction_between_min?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: between_max_value) + */ + p50_receipt_bytes_per_transaction_between_max_value?: number; + /** + * 50th percentile of receipt bytes per transaction (filter: in_values) (comma-separated list) + */ + p50_receipt_bytes_per_transaction_in_values?: string; + /** + * 50th percentile of receipt bytes per transaction (filter: not_in_values) (comma-separated list) + */ + p50_receipt_bytes_per_transaction_not_in_values?: string; + /** + * 95th percentile of receipt bytes per transaction (filter: eq) + */ + p95_receipt_bytes_per_transaction_eq?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: ne) + */ + p95_receipt_bytes_per_transaction_ne?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: lt) + */ + p95_receipt_bytes_per_transaction_lt?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: lte) + */ + p95_receipt_bytes_per_transaction_lte?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: gt) + */ + p95_receipt_bytes_per_transaction_gt?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: gte) + */ + p95_receipt_bytes_per_transaction_gte?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: between_min) + */ + p95_receipt_bytes_per_transaction_between_min?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: between_max_value) + */ + p95_receipt_bytes_per_transaction_between_max_value?: number; + /** + * 95th percentile of receipt bytes per transaction (filter: in_values) (comma-separated list) + */ + p95_receipt_bytes_per_transaction_in_values?: string; + /** + * 95th percentile of receipt bytes per transaction (filter: not_in_values) (comma-separated list) + */ + p95_receipt_bytes_per_transaction_not_in_values?: string; + /** + * The maximum number of int_block_receipt_size to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntBlockReceiptSize` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_block_receipt_size'; +}; + +export type IntBlockReceiptSizeServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockReceiptSizeServiceListError = + IntBlockReceiptSizeServiceListErrors[keyof IntBlockReceiptSizeServiceListErrors]; + +export type IntBlockReceiptSizeServiceListResponses = { + /** + * OK + */ + 200: ListIntBlockReceiptSizeResponse; +}; + +export type IntBlockReceiptSizeServiceListResponse = + IntBlockReceiptSizeServiceListResponses[keyof IntBlockReceiptSizeServiceListResponses]; + +export type IntBlockReceiptSizeServiceGetData = { + body?: never; + path: { + /** + * The block number + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_block_receipt_size/{block_number}'; +}; + +export type IntBlockReceiptSizeServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockReceiptSizeServiceGetError = + IntBlockReceiptSizeServiceGetErrors[keyof IntBlockReceiptSizeServiceGetErrors]; + +export type IntBlockReceiptSizeServiceGetResponses = { + /** + * OK + */ + 200: GetIntBlockReceiptSizeResponse; +}; + +export type IntBlockReceiptSizeServiceGetResponse = + IntBlockReceiptSizeServiceGetResponses[keyof IntBlockReceiptSizeServiceGetResponses]; + +export type IntBlockResourceGasServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The name of the network (filter: eq) + */ + meta_network_name_eq?: string; + /** + * The name of the network (filter: ne) + */ + meta_network_name_ne?: string; + /** + * The name of the network (filter: contains) + */ + meta_network_name_contains?: string; + /** + * The name of the network (filter: starts_with) + */ + meta_network_name_starts_with?: string; + /** + * The name of the network (filter: ends_with) + */ + meta_network_name_ends_with?: string; + /** + * The name of the network (filter: like) + */ + meta_network_name_like?: string; + /** + * The name of the network (filter: not_like) + */ + meta_network_name_not_like?: string; + /** + * The name of the network (filter: in_values) (comma-separated list) + */ + meta_network_name_in_values?: string; + /** + * The name of the network (filter: not_in_values) (comma-separated list) + */ + meta_network_name_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total compute gas across all transactions (filter: eq) + */ + gas_compute_eq?: number; + /** + * Total compute gas across all transactions (filter: ne) + */ + gas_compute_ne?: number; + /** + * Total compute gas across all transactions (filter: lt) + */ + gas_compute_lt?: number; + /** + * Total compute gas across all transactions (filter: lte) + */ + gas_compute_lte?: number; + /** + * Total compute gas across all transactions (filter: gt) + */ + gas_compute_gt?: number; + /** + * Total compute gas across all transactions (filter: gte) + */ + gas_compute_gte?: number; + /** + * Total compute gas across all transactions (filter: between_min) + */ + gas_compute_between_min?: number; + /** + * Total compute gas across all transactions (filter: between_max_value) + */ + gas_compute_between_max_value?: number; + /** + * Total compute gas across all transactions (filter: in_values) (comma-separated list) + */ + gas_compute_in_values?: string; + /** + * Total compute gas across all transactions (filter: not_in_values) (comma-separated list) + */ + gas_compute_not_in_values?: string; + /** + * Total memory expansion gas across all transactions (filter: eq) + */ + gas_memory_eq?: number; + /** + * Total memory expansion gas across all transactions (filter: ne) + */ + gas_memory_ne?: number; + /** + * Total memory expansion gas across all transactions (filter: lt) + */ + gas_memory_lt?: number; + /** + * Total memory expansion gas across all transactions (filter: lte) + */ + gas_memory_lte?: number; + /** + * Total memory expansion gas across all transactions (filter: gt) + */ + gas_memory_gt?: number; + /** + * Total memory expansion gas across all transactions (filter: gte) + */ + gas_memory_gte?: number; + /** + * Total memory expansion gas across all transactions (filter: between_min) + */ + gas_memory_between_min?: number; + /** + * Total memory expansion gas across all transactions (filter: between_max_value) + */ + gas_memory_between_max_value?: number; + /** + * Total memory expansion gas across all transactions (filter: in_values) (comma-separated list) + */ + gas_memory_in_values?: string; + /** + * Total memory expansion gas across all transactions (filter: not_in_values) (comma-separated list) + */ + gas_memory_not_in_values?: string; + /** + * Total cold address/storage access gas across all transactions (filter: eq) + */ + gas_address_access_eq?: number; + /** + * Total cold address/storage access gas across all transactions (filter: ne) + */ + gas_address_access_ne?: number; + /** + * Total cold address/storage access gas across all transactions (filter: lt) + */ + gas_address_access_lt?: number; + /** + * Total cold address/storage access gas across all transactions (filter: lte) + */ + gas_address_access_lte?: number; + /** + * Total cold address/storage access gas across all transactions (filter: gt) + */ + gas_address_access_gt?: number; + /** + * Total cold address/storage access gas across all transactions (filter: gte) + */ + gas_address_access_gte?: number; + /** + * Total cold address/storage access gas across all transactions (filter: between_min) + */ + gas_address_access_between_min?: number; + /** + * Total cold address/storage access gas across all transactions (filter: between_max_value) + */ + gas_address_access_between_max_value?: number; + /** + * Total cold address/storage access gas across all transactions (filter: in_values) (comma-separated list) + */ + gas_address_access_in_values?: string; + /** + * Total cold address/storage access gas across all transactions (filter: not_in_values) (comma-separated list) + */ + gas_address_access_not_in_values?: string; + /** + * Total state growth gas across all transactions (filter: eq) + */ + gas_state_growth_eq?: number; + /** + * Total state growth gas across all transactions (filter: ne) + */ + gas_state_growth_ne?: number; + /** + * Total state growth gas across all transactions (filter: lt) + */ + gas_state_growth_lt?: number; + /** + * Total state growth gas across all transactions (filter: lte) + */ + gas_state_growth_lte?: number; + /** + * Total state growth gas across all transactions (filter: gt) + */ + gas_state_growth_gt?: number; + /** + * Total state growth gas across all transactions (filter: gte) + */ + gas_state_growth_gte?: number; + /** + * Total state growth gas across all transactions (filter: between_min) + */ + gas_state_growth_between_min?: number; + /** + * Total state growth gas across all transactions (filter: between_max_value) + */ + gas_state_growth_between_max_value?: number; + /** + * Total state growth gas across all transactions (filter: in_values) (comma-separated list) + */ + gas_state_growth_in_values?: string; + /** + * Total state growth gas across all transactions (filter: not_in_values) (comma-separated list) + */ + gas_state_growth_not_in_values?: string; + /** + * Total history/log data gas across all transactions (filter: eq) + */ + gas_history_eq?: number; + /** + * Total history/log data gas across all transactions (filter: ne) + */ + gas_history_ne?: number; + /** + * Total history/log data gas across all transactions (filter: lt) + */ + gas_history_lt?: number; + /** + * Total history/log data gas across all transactions (filter: lte) + */ + gas_history_lte?: number; + /** + * Total history/log data gas across all transactions (filter: gt) + */ + gas_history_gt?: number; + /** + * Total history/log data gas across all transactions (filter: gte) + */ + gas_history_gte?: number; + /** + * Total history/log data gas across all transactions (filter: between_min) + */ + gas_history_between_min?: number; + /** + * Total history/log data gas across all transactions (filter: between_max_value) + */ + gas_history_between_max_value?: number; + /** + * Total history/log data gas across all transactions (filter: in_values) (comma-separated list) + */ + gas_history_in_values?: string; + /** + * Total history/log data gas across all transactions (filter: not_in_values) (comma-separated list) + */ + gas_history_not_in_values?: string; + /** + * Total bloom filter topic gas across all transactions (filter: eq) + */ + gas_bloom_topics_eq?: number; + /** + * Total bloom filter topic gas across all transactions (filter: ne) + */ + gas_bloom_topics_ne?: number; + /** + * Total bloom filter topic gas across all transactions (filter: lt) + */ + gas_bloom_topics_lt?: number; + /** + * Total bloom filter topic gas across all transactions (filter: lte) + */ + gas_bloom_topics_lte?: number; + /** + * Total bloom filter topic gas across all transactions (filter: gt) + */ + gas_bloom_topics_gt?: number; + /** + * Total bloom filter topic gas across all transactions (filter: gte) + */ + gas_bloom_topics_gte?: number; + /** + * Total bloom filter topic gas across all transactions (filter: between_min) + */ + gas_bloom_topics_between_min?: number; + /** + * Total bloom filter topic gas across all transactions (filter: between_max_value) + */ + gas_bloom_topics_between_max_value?: number; + /** + * Total bloom filter topic gas across all transactions (filter: in_values) (comma-separated list) + */ + gas_bloom_topics_in_values?: string; + /** + * Total bloom filter topic gas across all transactions (filter: not_in_values) (comma-separated list) + */ + gas_bloom_topics_not_in_values?: string; + /** + * Total block size gas across all transactions (filter: eq) + */ + gas_block_size_eq?: number; + /** + * Total block size gas across all transactions (filter: ne) + */ + gas_block_size_ne?: number; + /** + * Total block size gas across all transactions (filter: lt) + */ + gas_block_size_lt?: number; + /** + * Total block size gas across all transactions (filter: lte) + */ + gas_block_size_lte?: number; + /** + * Total block size gas across all transactions (filter: gt) + */ + gas_block_size_gt?: number; + /** + * Total block size gas across all transactions (filter: gte) + */ + gas_block_size_gte?: number; + /** + * Total block size gas across all transactions (filter: between_min) + */ + gas_block_size_between_min?: number; + /** + * Total block size gas across all transactions (filter: between_max_value) + */ + gas_block_size_between_max_value?: number; + /** + * Total block size gas across all transactions (filter: in_values) (comma-separated list) + */ + gas_block_size_in_values?: string; + /** + * Total block size gas across all transactions (filter: not_in_values) (comma-separated list) + */ + gas_block_size_not_in_values?: string; + /** + * Total gas refund across all transactions (filter: eq) + */ + gas_refund_eq?: number; + /** + * Total gas refund across all transactions (filter: ne) + */ + gas_refund_ne?: number; + /** + * Total gas refund across all transactions (filter: lt) + */ + gas_refund_lt?: number; + /** + * Total gas refund across all transactions (filter: lte) + */ + gas_refund_lte?: number; + /** + * Total gas refund across all transactions (filter: gt) + */ + gas_refund_gt?: number; + /** + * Total gas refund across all transactions (filter: gte) + */ + gas_refund_gte?: number; + /** + * Total gas refund across all transactions (filter: between_min) + */ + gas_refund_between_min?: number; + /** + * Total gas refund across all transactions (filter: between_max_value) + */ + gas_refund_between_max_value?: number; + /** + * Total gas refund across all transactions (filter: in_values) (comma-separated list) + */ + gas_refund_in_values?: string; + /** + * Total gas refund across all transactions (filter: not_in_values) (comma-separated list) + */ + gas_refund_not_in_values?: string; + /** + * The maximum number of int_block_resource_gas to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntBlockResourceGas` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_block_resource_gas'; +}; + +export type IntBlockResourceGasServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockResourceGasServiceListError = + IntBlockResourceGasServiceListErrors[keyof IntBlockResourceGasServiceListErrors]; + +export type IntBlockResourceGasServiceListResponses = { + /** + * OK + */ + 200: ListIntBlockResourceGasResponse; +}; + +export type IntBlockResourceGasServiceListResponse = + IntBlockResourceGasServiceListResponses[keyof IntBlockResourceGasServiceListResponses]; + +export type IntBlockResourceGasServiceGetData = { + body?: never; + path: { + /** + * The block number + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_block_resource_gas/{block_number}'; +}; + +export type IntBlockResourceGasServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntBlockResourceGasServiceGetError = + IntBlockResourceGasServiceGetErrors[keyof IntBlockResourceGasServiceGetErrors]; + +export type IntBlockResourceGasServiceGetResponses = { + /** + * OK + */ + 200: GetIntBlockResourceGasResponse; +}; + +export type IntBlockResourceGasServiceGetResponse = + IntBlockResourceGasServiceGetResponses[keyof IntBlockResourceGasServiceGetResponses]; + +export type IntContractCreationServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Block where contract was created (filter: eq) + */ + block_number_eq?: number; + /** + * Block where contract was created (filter: ne) + */ + block_number_ne?: number; + /** + * Block where contract was created (filter: lt) + */ + block_number_lt?: number; + /** + * Block where contract was created (filter: lte) + */ + block_number_lte?: number; + /** + * Block where contract was created (filter: gt) + */ + block_number_gt?: number; + /** + * Block where contract was created (filter: gte) + */ + block_number_gte?: number; + /** + * Block where contract was created (filter: between_min) + */ + block_number_between_min?: number; + /** + * Block where contract was created (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * Block where contract was created (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * Block where contract was created (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * Address of created contract (filter: eq) + */ + contract_address_eq?: string; + /** + * Address of created contract (filter: ne) + */ + contract_address_ne?: string; + /** + * Address of created contract (filter: contains) + */ + contract_address_contains?: string; + /** + * Address of created contract (filter: starts_with) + */ + contract_address_starts_with?: string; + /** + * Address of created contract (filter: ends_with) + */ + contract_address_ends_with?: string; + /** + * Address of created contract (filter: like) + */ + contract_address_like?: string; + /** + * Address of created contract (filter: not_like) + */ + contract_address_not_like?: string; + /** + * Address of created contract (filter: in_values) (comma-separated list) + */ + contract_address_in_values?: string; + /** + * Address of created contract (filter: not_in_values) (comma-separated list) + */ + contract_address_not_in_values?: string; + /** + * Transaction hash (filter: eq) + */ + transaction_hash_eq?: string; + /** + * Transaction hash (filter: ne) + */ + transaction_hash_ne?: string; + /** + * Transaction hash (filter: contains) + */ + transaction_hash_contains?: string; + /** + * Transaction hash (filter: starts_with) + */ + transaction_hash_starts_with?: string; + /** + * Transaction hash (filter: ends_with) + */ + transaction_hash_ends_with?: string; + /** + * Transaction hash (filter: like) + */ + transaction_hash_like?: string; + /** + * Transaction hash (filter: not_like) + */ + transaction_hash_not_like?: string; + /** + * Transaction hash (filter: in_values) (comma-separated list) + */ + transaction_hash_in_values?: string; + /** + * Transaction hash (filter: not_in_values) (comma-separated list) + */ + transaction_hash_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Position in block (filter: eq) + */ + transaction_index_eq?: number; + /** + * Position in block (filter: ne) + */ + transaction_index_ne?: number; + /** + * Position in block (filter: lt) + */ + transaction_index_lt?: number; + /** + * Position in block (filter: lte) + */ + transaction_index_lte?: number; + /** + * Position in block (filter: gt) + */ + transaction_index_gt?: number; + /** + * Position in block (filter: gte) + */ + transaction_index_gte?: number; + /** + * Position in block (filter: between_min) + */ + transaction_index_between_min?: number; + /** + * Position in block (filter: between_max_value) + */ + transaction_index_between_max_value?: number; + /** + * Position in block (filter: in_values) (comma-separated list) + */ + transaction_index_in_values?: string; + /** + * Position in block (filter: not_in_values) (comma-separated list) + */ + transaction_index_not_in_values?: string; + /** + * Position within transaction (filter: eq) + */ + internal_index_eq?: number; + /** + * Position within transaction (filter: ne) + */ + internal_index_ne?: number; + /** + * Position within transaction (filter: lt) + */ + internal_index_lt?: number; + /** + * Position within transaction (filter: lte) + */ + internal_index_lte?: number; + /** + * Position within transaction (filter: gt) + */ + internal_index_gt?: number; + /** + * Position within transaction (filter: gte) + */ + internal_index_gte?: number; + /** + * Position within transaction (filter: between_min) + */ + internal_index_between_min?: number; + /** + * Position within transaction (filter: between_max_value) + */ + internal_index_between_max_value?: number; + /** + * Position within transaction (filter: in_values) (comma-separated list) + */ + internal_index_in_values?: string; + /** + * Position within transaction (filter: not_in_values) (comma-separated list) + */ + internal_index_not_in_values?: string; + /** + * Address that deployed the contract (filter: eq) + */ + deployer_eq?: string; + /** + * Address that deployed the contract (filter: ne) + */ + deployer_ne?: string; + /** + * Address that deployed the contract (filter: contains) + */ + deployer_contains?: string; + /** + * Address that deployed the contract (filter: starts_with) + */ + deployer_starts_with?: string; + /** + * Address that deployed the contract (filter: ends_with) + */ + deployer_ends_with?: string; + /** + * Address that deployed the contract (filter: like) + */ + deployer_like?: string; + /** + * Address that deployed the contract (filter: not_like) + */ + deployer_not_like?: string; + /** + * Address that deployed the contract (filter: in_values) (comma-separated list) + */ + deployer_in_values?: string; + /** + * Address that deployed the contract (filter: not_in_values) (comma-separated list) + */ + deployer_not_in_values?: string; + /** + * Factory contract address if applicable (filter: eq) + */ + factory_eq?: string; + /** + * Factory contract address if applicable (filter: ne) + */ + factory_ne?: string; + /** + * Factory contract address if applicable (filter: contains) + */ + factory_contains?: string; + /** + * Factory contract address if applicable (filter: starts_with) + */ + factory_starts_with?: string; + /** + * Factory contract address if applicable (filter: ends_with) + */ + factory_ends_with?: string; + /** + * Factory contract address if applicable (filter: like) + */ + factory_like?: string; + /** + * Factory contract address if applicable (filter: not_like) + */ + factory_not_like?: string; + /** + * Factory contract address if applicable (filter: in_values) (comma-separated list) + */ + factory_in_values?: string; + /** + * Factory contract address if applicable (filter: not_in_values) (comma-separated list) + */ + factory_not_in_values?: string; + /** + * Hash of the initialization code (filter: eq) + */ + init_code_hash_eq?: string; + /** + * Hash of the initialization code (filter: ne) + */ + init_code_hash_ne?: string; + /** + * Hash of the initialization code (filter: contains) + */ + init_code_hash_contains?: string; + /** + * Hash of the initialization code (filter: starts_with) + */ + init_code_hash_starts_with?: string; + /** + * Hash of the initialization code (filter: ends_with) + */ + init_code_hash_ends_with?: string; + /** + * Hash of the initialization code (filter: like) + */ + init_code_hash_like?: string; + /** + * Hash of the initialization code (filter: not_like) + */ + init_code_hash_not_like?: string; + /** + * Hash of the initialization code (filter: in_values) (comma-separated list) + */ + init_code_hash_in_values?: string; + /** + * Hash of the initialization code (filter: not_in_values) (comma-separated list) + */ + init_code_hash_not_in_values?: string; + /** + * The maximum number of int_contract_creation to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractCreation` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_creation'; +}; + +export type IntContractCreationServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractCreationServiceListError = + IntContractCreationServiceListErrors[keyof IntContractCreationServiceListErrors]; + +export type IntContractCreationServiceListResponses = { + /** + * OK + */ + 200: ListIntContractCreationResponse; +}; + +export type IntContractCreationServiceListResponse = + IntContractCreationServiceListResponses[keyof IntContractCreationServiceListResponses]; + +export type IntContractCreationServiceGetData = { + body?: never; + path: { + /** + * Block where contract was created + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_creation/{block_number}'; +}; + +export type IntContractCreationServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractCreationServiceGetError = + IntContractCreationServiceGetErrors[keyof IntContractCreationServiceGetErrors]; + +export type IntContractCreationServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractCreationResponse; +}; + +export type IntContractCreationServiceGetResponse = + IntContractCreationServiceGetResponses[keyof IntContractCreationServiceGetResponses]; + +export type IntContractSelfdestructServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Block where SELFDESTRUCT occurred (filter: eq) + */ + block_number_eq?: number; + /** + * Block where SELFDESTRUCT occurred (filter: ne) + */ + block_number_ne?: number; + /** + * Block where SELFDESTRUCT occurred (filter: lt) + */ + block_number_lt?: number; + /** + * Block where SELFDESTRUCT occurred (filter: lte) + */ + block_number_lte?: number; + /** + * Block where SELFDESTRUCT occurred (filter: gt) + */ + block_number_gt?: number; + /** + * Block where SELFDESTRUCT occurred (filter: gte) + */ + block_number_gte?: number; + /** + * Block where SELFDESTRUCT occurred (filter: between_min) + */ + block_number_between_min?: number; + /** + * Block where SELFDESTRUCT occurred (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * Block where SELFDESTRUCT occurred (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * Block where SELFDESTRUCT occurred (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * Position in block (filter: eq) + */ + transaction_index_eq?: number; + /** + * Position in block (filter: ne) + */ + transaction_index_ne?: number; + /** + * Position in block (filter: lt) + */ + transaction_index_lt?: number; + /** + * Position in block (filter: lte) + */ + transaction_index_lte?: number; + /** + * Position in block (filter: gt) + */ + transaction_index_gt?: number; + /** + * Position in block (filter: gte) + */ + transaction_index_gte?: number; + /** + * Position in block (filter: between_min) + */ + transaction_index_between_min?: number; + /** + * Position in block (filter: between_max_value) + */ + transaction_index_between_max_value?: number; + /** + * Position in block (filter: in_values) (comma-separated list) + */ + transaction_index_in_values?: string; + /** + * Position in block (filter: not_in_values) (comma-separated list) + */ + transaction_index_not_in_values?: string; + /** + * Position within transaction traces (filter: eq) + */ + internal_index_eq?: number; + /** + * Position within transaction traces (filter: ne) + */ + internal_index_ne?: number; + /** + * Position within transaction traces (filter: lt) + */ + internal_index_lt?: number; + /** + * Position within transaction traces (filter: lte) + */ + internal_index_lte?: number; + /** + * Position within transaction traces (filter: gt) + */ + internal_index_gt?: number; + /** + * Position within transaction traces (filter: gte) + */ + internal_index_gte?: number; + /** + * Position within transaction traces (filter: between_min) + */ + internal_index_between_min?: number; + /** + * Position within transaction traces (filter: between_max_value) + */ + internal_index_between_max_value?: number; + /** + * Position within transaction traces (filter: in_values) (comma-separated list) + */ + internal_index_in_values?: string; + /** + * Position within transaction traces (filter: not_in_values) (comma-separated list) + */ + internal_index_not_in_values?: string; + /** + * Contract that was destroyed (filter: eq) + */ + address_eq?: string; + /** + * Contract that was destroyed (filter: ne) + */ + address_ne?: string; + /** + * Contract that was destroyed (filter: contains) + */ + address_contains?: string; + /** + * Contract that was destroyed (filter: starts_with) + */ + address_starts_with?: string; + /** + * Contract that was destroyed (filter: ends_with) + */ + address_ends_with?: string; + /** + * Contract that was destroyed (filter: like) + */ + address_like?: string; + /** + * Contract that was destroyed (filter: not_like) + */ + address_not_like?: string; + /** + * Contract that was destroyed (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * Contract that was destroyed (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Transaction hash (filter: eq) + */ + transaction_hash_eq?: string; + /** + * Transaction hash (filter: ne) + */ + transaction_hash_ne?: string; + /** + * Transaction hash (filter: contains) + */ + transaction_hash_contains?: string; + /** + * Transaction hash (filter: starts_with) + */ + transaction_hash_starts_with?: string; + /** + * Transaction hash (filter: ends_with) + */ + transaction_hash_ends_with?: string; + /** + * Transaction hash (filter: like) + */ + transaction_hash_like?: string; + /** + * Transaction hash (filter: not_like) + */ + transaction_hash_not_like?: string; + /** + * Transaction hash (filter: in_values) (comma-separated list) + */ + transaction_hash_in_values?: string; + /** + * Transaction hash (filter: not_in_values) (comma-separated list) + */ + transaction_hash_not_in_values?: string; + /** + * Address receiving the ETH (filter: eq) + */ + beneficiary_eq?: string; + /** + * Address receiving the ETH (filter: ne) + */ + beneficiary_ne?: string; + /** + * Address receiving the ETH (filter: contains) + */ + beneficiary_contains?: string; + /** + * Address receiving the ETH (filter: starts_with) + */ + beneficiary_starts_with?: string; + /** + * Address receiving the ETH (filter: ends_with) + */ + beneficiary_ends_with?: string; + /** + * Address receiving the ETH (filter: like) + */ + beneficiary_like?: string; + /** + * Address receiving the ETH (filter: not_like) + */ + beneficiary_not_like?: string; + /** + * Address receiving the ETH (filter: in_values) (comma-separated list) + */ + beneficiary_in_values?: string; + /** + * Address receiving the ETH (filter: not_in_values) (comma-separated list) + */ + beneficiary_not_in_values?: string; + /** + * Amount of ETH sent to beneficiary (filter: eq) + */ + value_transferred_eq?: string; + /** + * Amount of ETH sent to beneficiary (filter: ne) + */ + value_transferred_ne?: string; + /** + * Amount of ETH sent to beneficiary (filter: contains) + */ + value_transferred_contains?: string; + /** + * Amount of ETH sent to beneficiary (filter: starts_with) + */ + value_transferred_starts_with?: string; + /** + * Amount of ETH sent to beneficiary (filter: ends_with) + */ + value_transferred_ends_with?: string; + /** + * Amount of ETH sent to beneficiary (filter: like) + */ + value_transferred_like?: string; + /** + * Amount of ETH sent to beneficiary (filter: not_like) + */ + value_transferred_not_like?: string; + /** + * Amount of ETH sent to beneficiary (filter: in_values) (comma-separated list) + */ + value_transferred_in_values?: string; + /** + * Amount of ETH sent to beneficiary (filter: not_in_values) (comma-separated list) + */ + value_transferred_not_in_values?: string; + /** + * True if contract was created and destroyed in the same transaction - storage always cleared per EIP-6780 (filter: eq) + */ + ephemeral_eq?: boolean; + /** + * True if contract was created and destroyed in the same transaction - storage always cleared per EIP-6780 (filter: ne) + */ + ephemeral_ne?: boolean; + /** + * True if storage was cleared (pre-Shanghai OR ephemeral) (filter: eq) + */ + storage_cleared_eq?: boolean; + /** + * True if storage was cleared (pre-Shanghai OR ephemeral) (filter: ne) + */ + storage_cleared_ne?: boolean; + /** + * Block where contract was created (if known) (filter: eq) + */ + creation_block_eq?: number; + /** + * Block where contract was created (if known) (filter: ne) + */ + creation_block_ne?: number; + /** + * Block where contract was created (if known) (filter: lt) + */ + creation_block_lt?: number; + /** + * Block where contract was created (if known) (filter: lte) + */ + creation_block_lte?: number; + /** + * Block where contract was created (if known) (filter: gt) + */ + creation_block_gt?: number; + /** + * Block where contract was created (if known) (filter: gte) + */ + creation_block_gte?: number; + /** + * Block where contract was created (if known) (filter: between_min) + */ + creation_block_between_min?: number; + /** + * Block where contract was created (if known) (filter: between_max_value) + */ + creation_block_between_max_value?: number; + /** + * Block where contract was created (if known) (filter: in_values) (comma-separated list) + */ + creation_block_in_values?: string; + /** + * Block where contract was created (if known) (filter: not_in_values) (comma-separated list) + */ + creation_block_not_in_values?: string; + /** + * Transaction that created the contract (if known) (filter: eq) + */ + creation_transaction_hash_eq?: string; + /** + * Transaction that created the contract (if known) (filter: ne) + */ + creation_transaction_hash_ne?: string; + /** + * Transaction that created the contract (if known) (filter: contains) + */ + creation_transaction_hash_contains?: string; + /** + * Transaction that created the contract (if known) (filter: starts_with) + */ + creation_transaction_hash_starts_with?: string; + /** + * Transaction that created the contract (if known) (filter: ends_with) + */ + creation_transaction_hash_ends_with?: string; + /** + * Transaction that created the contract (if known) (filter: like) + */ + creation_transaction_hash_like?: string; + /** + * Transaction that created the contract (if known) (filter: not_like) + */ + creation_transaction_hash_not_like?: string; + /** + * Transaction that created the contract (if known) (filter: in_values) (comma-separated list) + */ + creation_transaction_hash_in_values?: string; + /** + * Transaction that created the contract (if known) (filter: not_in_values) (comma-separated list) + */ + creation_transaction_hash_not_in_values?: string; + /** + * The maximum number of int_contract_selfdestruct to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractSelfdestruct` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_selfdestruct'; +}; + +export type IntContractSelfdestructServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractSelfdestructServiceListError = + IntContractSelfdestructServiceListErrors[keyof IntContractSelfdestructServiceListErrors]; + +export type IntContractSelfdestructServiceListResponses = { + /** + * OK + */ + 200: ListIntContractSelfdestructResponse; +}; + +export type IntContractSelfdestructServiceListResponse = + IntContractSelfdestructServiceListResponses[keyof IntContractSelfdestructServiceListResponses]; + +export type IntContractSelfdestructServiceGetData = { + body?: never; + path: { + /** + * Block where SELFDESTRUCT occurred + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_selfdestruct/{block_number}'; +}; + +export type IntContractSelfdestructServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractSelfdestructServiceGetError = + IntContractSelfdestructServiceGetErrors[keyof IntContractSelfdestructServiceGetErrors]; + +export type IntContractSelfdestructServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractSelfdestructResponse; +}; + +export type IntContractSelfdestructServiceGetResponse = + IntContractSelfdestructServiceGetResponses[keyof IntContractSelfdestructServiceGetResponses]; + +export type IntContractStorageExpiry1mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this contract expiry is recorded (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this contract expiry is recorded (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this contract expiry is recorded (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this contract expiry is recorded (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this contract expiry is recorded (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this contract expiry is recorded (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this contract expiry is recorded (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this contract expiry is recorded (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this contract expiry is recorded (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this contract expiry is recorded (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Count of slots in the contract at expiry time (filter: eq) + */ + active_slots_eq?: number; + /** + * Count of slots in the contract at expiry time (filter: ne) + */ + active_slots_ne?: number; + /** + * Count of slots in the contract at expiry time (filter: lt) + */ + active_slots_lt?: number; + /** + * Count of slots in the contract at expiry time (filter: lte) + */ + active_slots_lte?: number; + /** + * Count of slots in the contract at expiry time (filter: gt) + */ + active_slots_gt?: number; + /** + * Count of slots in the contract at expiry time (filter: gte) + */ + active_slots_gte?: number; + /** + * Count of slots in the contract at expiry time (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Count of slots in the contract at expiry time (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Count of slots in the contract at expiry time (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Count of slots in the contract at expiry time (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_expiry_1m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageExpiry1m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_expiry_1m'; +}; + +export type IntContractStorageExpiry1mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageExpiry1mServiceListError = + IntContractStorageExpiry1mServiceListErrors[keyof IntContractStorageExpiry1mServiceListErrors]; + +export type IntContractStorageExpiry1mServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageExpiry1mResponse; +}; + +export type IntContractStorageExpiry1mServiceListResponse = + IntContractStorageExpiry1mServiceListResponses[keyof IntContractStorageExpiry1mServiceListResponses]; + +export type IntContractStorageExpiry1mServiceGetData = { + body?: never; + path: { + /** + * The block number where this contract expiry is recorded + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_expiry_1m/{block_number}'; +}; + +export type IntContractStorageExpiry1mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageExpiry1mServiceGetError = + IntContractStorageExpiry1mServiceGetErrors[keyof IntContractStorageExpiry1mServiceGetErrors]; + +export type IntContractStorageExpiry1mServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageExpiry1mResponse; +}; + +export type IntContractStorageExpiry1mServiceGetResponse = + IntContractStorageExpiry1mServiceGetResponses[keyof IntContractStorageExpiry1mServiceGetResponses]; + +export type IntContractStorageExpiry6mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this contract expiry is recorded (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this contract expiry is recorded (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this contract expiry is recorded (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this contract expiry is recorded (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this contract expiry is recorded (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this contract expiry is recorded (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this contract expiry is recorded (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this contract expiry is recorded (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this contract expiry is recorded (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this contract expiry is recorded (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Count of slots in the contract at expiry time (filter: eq) + */ + active_slots_eq?: number; + /** + * Count of slots in the contract at expiry time (filter: ne) + */ + active_slots_ne?: number; + /** + * Count of slots in the contract at expiry time (filter: lt) + */ + active_slots_lt?: number; + /** + * Count of slots in the contract at expiry time (filter: lte) + */ + active_slots_lte?: number; + /** + * Count of slots in the contract at expiry time (filter: gt) + */ + active_slots_gt?: number; + /** + * Count of slots in the contract at expiry time (filter: gte) + */ + active_slots_gte?: number; + /** + * Count of slots in the contract at expiry time (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Count of slots in the contract at expiry time (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Count of slots in the contract at expiry time (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Count of slots in the contract at expiry time (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_expiry_6m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageExpiry6m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_expiry_6m'; +}; + +export type IntContractStorageExpiry6mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageExpiry6mServiceListError = + IntContractStorageExpiry6mServiceListErrors[keyof IntContractStorageExpiry6mServiceListErrors]; + +export type IntContractStorageExpiry6mServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageExpiry6mResponse; +}; + +export type IntContractStorageExpiry6mServiceListResponse = + IntContractStorageExpiry6mServiceListResponses[keyof IntContractStorageExpiry6mServiceListResponses]; + +export type IntContractStorageExpiry6mServiceGetData = { + body?: never; + path: { + /** + * The block number where this contract expiry is recorded + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_expiry_6m/{block_number}'; +}; + +export type IntContractStorageExpiry6mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageExpiry6mServiceGetError = + IntContractStorageExpiry6mServiceGetErrors[keyof IntContractStorageExpiry6mServiceGetErrors]; + +export type IntContractStorageExpiry6mServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageExpiry6mResponse; +}; + +export type IntContractStorageExpiry6mServiceGetResponse = + IntContractStorageExpiry6mServiceGetResponses[keyof IntContractStorageExpiry6mServiceGetResponses]; + +export type IntContractStorageExpiry12mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this contract expiry is recorded (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this contract expiry is recorded (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this contract expiry is recorded (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this contract expiry is recorded (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this contract expiry is recorded (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this contract expiry is recorded (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this contract expiry is recorded (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this contract expiry is recorded (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this contract expiry is recorded (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this contract expiry is recorded (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Count of slots in the contract at expiry time (filter: eq) + */ + active_slots_eq?: number; + /** + * Count of slots in the contract at expiry time (filter: ne) + */ + active_slots_ne?: number; + /** + * Count of slots in the contract at expiry time (filter: lt) + */ + active_slots_lt?: number; + /** + * Count of slots in the contract at expiry time (filter: lte) + */ + active_slots_lte?: number; + /** + * Count of slots in the contract at expiry time (filter: gt) + */ + active_slots_gt?: number; + /** + * Count of slots in the contract at expiry time (filter: gte) + */ + active_slots_gte?: number; + /** + * Count of slots in the contract at expiry time (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Count of slots in the contract at expiry time (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Count of slots in the contract at expiry time (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Count of slots in the contract at expiry time (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_expiry_12m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageExpiry12m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_expiry_12m'; +}; + +export type IntContractStorageExpiry12mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageExpiry12mServiceListError = + IntContractStorageExpiry12mServiceListErrors[keyof IntContractStorageExpiry12mServiceListErrors]; + +export type IntContractStorageExpiry12mServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageExpiry12mResponse; +}; + +export type IntContractStorageExpiry12mServiceListResponse = + IntContractStorageExpiry12mServiceListResponses[keyof IntContractStorageExpiry12mServiceListResponses]; + +export type IntContractStorageExpiry12mServiceGetData = { + body?: never; + path: { + /** + * The block number where this contract expiry is recorded + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_expiry_12m/{block_number}'; +}; + +export type IntContractStorageExpiry12mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageExpiry12mServiceGetError = + IntContractStorageExpiry12mServiceGetErrors[keyof IntContractStorageExpiry12mServiceGetErrors]; + +export type IntContractStorageExpiry12mServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageExpiry12mResponse; +}; + +export type IntContractStorageExpiry12mServiceGetResponse = + IntContractStorageExpiry12mServiceGetResponses[keyof IntContractStorageExpiry12mServiceGetResponses]; + +export type IntContractStorageExpiry18mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this contract expiry is recorded (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this contract expiry is recorded (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this contract expiry is recorded (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this contract expiry is recorded (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this contract expiry is recorded (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this contract expiry is recorded (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this contract expiry is recorded (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this contract expiry is recorded (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this contract expiry is recorded (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this contract expiry is recorded (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Count of slots in the contract at expiry time (filter: eq) + */ + active_slots_eq?: number; + /** + * Count of slots in the contract at expiry time (filter: ne) + */ + active_slots_ne?: number; + /** + * Count of slots in the contract at expiry time (filter: lt) + */ + active_slots_lt?: number; + /** + * Count of slots in the contract at expiry time (filter: lte) + */ + active_slots_lte?: number; + /** + * Count of slots in the contract at expiry time (filter: gt) + */ + active_slots_gt?: number; + /** + * Count of slots in the contract at expiry time (filter: gte) + */ + active_slots_gte?: number; + /** + * Count of slots in the contract at expiry time (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Count of slots in the contract at expiry time (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Count of slots in the contract at expiry time (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Count of slots in the contract at expiry time (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_expiry_18m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageExpiry18m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_expiry_18m'; +}; + +export type IntContractStorageExpiry18mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageExpiry18mServiceListError = + IntContractStorageExpiry18mServiceListErrors[keyof IntContractStorageExpiry18mServiceListErrors]; + +export type IntContractStorageExpiry18mServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageExpiry18mResponse; +}; + +export type IntContractStorageExpiry18mServiceListResponse = + IntContractStorageExpiry18mServiceListResponses[keyof IntContractStorageExpiry18mServiceListResponses]; + +export type IntContractStorageExpiry18mServiceGetData = { + body?: never; + path: { + /** + * The block number where this contract expiry is recorded + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_expiry_18m/{block_number}'; +}; + +export type IntContractStorageExpiry18mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageExpiry18mServiceGetError = + IntContractStorageExpiry18mServiceGetErrors[keyof IntContractStorageExpiry18mServiceGetErrors]; + +export type IntContractStorageExpiry18mServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageExpiry18mResponse; +}; + +export type IntContractStorageExpiry18mServiceGetResponse = + IntContractStorageExpiry18mServiceGetResponses[keyof IntContractStorageExpiry18mServiceGetResponses]; + +export type IntContractStorageExpiry24mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this contract expiry is recorded (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this contract expiry is recorded (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this contract expiry is recorded (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this contract expiry is recorded (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this contract expiry is recorded (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this contract expiry is recorded (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this contract expiry is recorded (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this contract expiry is recorded (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this contract expiry is recorded (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this contract expiry is recorded (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Count of slots in the contract at expiry time (filter: eq) + */ + active_slots_eq?: number; + /** + * Count of slots in the contract at expiry time (filter: ne) + */ + active_slots_ne?: number; + /** + * Count of slots in the contract at expiry time (filter: lt) + */ + active_slots_lt?: number; + /** + * Count of slots in the contract at expiry time (filter: lte) + */ + active_slots_lte?: number; + /** + * Count of slots in the contract at expiry time (filter: gt) + */ + active_slots_gt?: number; + /** + * Count of slots in the contract at expiry time (filter: gte) + */ + active_slots_gte?: number; + /** + * Count of slots in the contract at expiry time (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Count of slots in the contract at expiry time (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Count of slots in the contract at expiry time (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Count of slots in the contract at expiry time (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Sum of effective bytes across all slots in the contract at expiry time (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_expiry_24m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageExpiry24m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_expiry_24m'; +}; + +export type IntContractStorageExpiry24mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageExpiry24mServiceListError = + IntContractStorageExpiry24mServiceListErrors[keyof IntContractStorageExpiry24mServiceListErrors]; + +export type IntContractStorageExpiry24mServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageExpiry24mResponse; +}; + +export type IntContractStorageExpiry24mServiceListResponse = + IntContractStorageExpiry24mServiceListResponses[keyof IntContractStorageExpiry24mServiceListResponses]; + +export type IntContractStorageExpiry24mServiceGetData = { + body?: never; + path: { + /** + * The block number where this contract expiry is recorded + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_expiry_24m/{block_number}'; +}; + +export type IntContractStorageExpiry24mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageExpiry24mServiceGetError = + IntContractStorageExpiry24mServiceGetErrors[keyof IntContractStorageExpiry24mServiceGetErrors]; + +export type IntContractStorageExpiry24mServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageExpiry24mResponse; +}; + +export type IntContractStorageExpiry24mServiceGetResponse = + IntContractStorageExpiry24mServiceGetResponses[keyof IntContractStorageExpiry24mServiceGetResponses]; + +export type IntContractStorageNextTouchServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this contract was touched (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this contract was touched (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this contract was touched (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this contract was touched (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this contract was touched (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this contract was touched (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this contract was touched (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this contract was touched (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this contract was touched (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this contract was touched (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The next block number where this contract was touched (NULL if no subsequent touch) (filter: eq) + */ + next_touch_block_eq?: number; + /** + * The next block number where this contract was touched (NULL if no subsequent touch) (filter: ne) + */ + next_touch_block_ne?: number; + /** + * The next block number where this contract was touched (NULL if no subsequent touch) (filter: lt) + */ + next_touch_block_lt?: number; + /** + * The next block number where this contract was touched (NULL if no subsequent touch) (filter: lte) + */ + next_touch_block_lte?: number; + /** + * The next block number where this contract was touched (NULL if no subsequent touch) (filter: gt) + */ + next_touch_block_gt?: number; + /** + * The next block number where this contract was touched (NULL if no subsequent touch) (filter: gte) + */ + next_touch_block_gte?: number; + /** + * The next block number where this contract was touched (NULL if no subsequent touch) (filter: between_min) + */ + next_touch_block_between_min?: number; + /** + * The next block number where this contract was touched (NULL if no subsequent touch) (filter: between_max_value) + */ + next_touch_block_between_max_value?: number; + /** + * The next block number where this contract was touched (NULL if no subsequent touch) (filter: in_values) (comma-separated list) + */ + next_touch_block_in_values?: string; + /** + * The next block number where this contract was touched (NULL if no subsequent touch) (filter: not_in_values) (comma-separated list) + */ + next_touch_block_not_in_values?: string; + /** + * The maximum number of int_contract_storage_next_touch to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageNextTouch` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_next_touch'; +}; + +export type IntContractStorageNextTouchServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageNextTouchServiceListError = + IntContractStorageNextTouchServiceListErrors[keyof IntContractStorageNextTouchServiceListErrors]; + +export type IntContractStorageNextTouchServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageNextTouchResponse; +}; + +export type IntContractStorageNextTouchServiceListResponse = + IntContractStorageNextTouchServiceListResponses[keyof IntContractStorageNextTouchServiceListResponses]; + +export type IntContractStorageNextTouchServiceGetData = { + body?: never; + path: { + /** + * The block number where this contract was touched + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_next_touch/{block_number}'; +}; + +export type IntContractStorageNextTouchServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageNextTouchServiceGetError = + IntContractStorageNextTouchServiceGetErrors[keyof IntContractStorageNextTouchServiceGetErrors]; + +export type IntContractStorageNextTouchServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageNextTouchResponse; +}; + +export type IntContractStorageNextTouchServiceGetResponse = + IntContractStorageNextTouchServiceGetResponses[keyof IntContractStorageNextTouchServiceGetResponses]; + +export type IntContractStorageReactivation1mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this contract was reactivated (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this contract was reactivated (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this contract was reactivated (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this contract was reactivated (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this contract was reactivated (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this contract was reactivated (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this contract was reactivated (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this contract was reactivated (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this contract was reactivated (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this contract was reactivated (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The original touch block that expired (for matching with expiry records) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Count of slots being reactivated (filter: eq) + */ + active_slots_eq?: number; + /** + * Count of slots being reactivated (filter: ne) + */ + active_slots_ne?: number; + /** + * Count of slots being reactivated (filter: lt) + */ + active_slots_lt?: number; + /** + * Count of slots being reactivated (filter: lte) + */ + active_slots_lte?: number; + /** + * Count of slots being reactivated (filter: gt) + */ + active_slots_gt?: number; + /** + * Count of slots being reactivated (filter: gte) + */ + active_slots_gte?: number; + /** + * Count of slots being reactivated (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Count of slots being reactivated (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Count of slots being reactivated (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Count of slots being reactivated (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Sum of effective bytes being reactivated (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Sum of effective bytes being reactivated (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Sum of effective bytes being reactivated (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Sum of effective bytes being reactivated (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Sum of effective bytes being reactivated (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Sum of effective bytes being reactivated (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Sum of effective bytes being reactivated (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Sum of effective bytes being reactivated (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Sum of effective bytes being reactivated (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Sum of effective bytes being reactivated (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_reactivation_1m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageReactivation1m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_reactivation_1m'; +}; + +export type IntContractStorageReactivation1mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageReactivation1mServiceListError = + IntContractStorageReactivation1mServiceListErrors[keyof IntContractStorageReactivation1mServiceListErrors]; + +export type IntContractStorageReactivation1mServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageReactivation1mResponse; +}; + +export type IntContractStorageReactivation1mServiceListResponse = + IntContractStorageReactivation1mServiceListResponses[keyof IntContractStorageReactivation1mServiceListResponses]; + +export type IntContractStorageReactivation1mServiceGetData = { + body?: never; + path: { + /** + * The block number where this contract was reactivated + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_reactivation_1m/{block_number}'; +}; + +export type IntContractStorageReactivation1mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageReactivation1mServiceGetError = + IntContractStorageReactivation1mServiceGetErrors[keyof IntContractStorageReactivation1mServiceGetErrors]; + +export type IntContractStorageReactivation1mServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageReactivation1mResponse; +}; + +export type IntContractStorageReactivation1mServiceGetResponse = + IntContractStorageReactivation1mServiceGetResponses[keyof IntContractStorageReactivation1mServiceGetResponses]; + +export type IntContractStorageReactivation6mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this contract was reactivated (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this contract was reactivated (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this contract was reactivated (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this contract was reactivated (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this contract was reactivated (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this contract was reactivated (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this contract was reactivated (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this contract was reactivated (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this contract was reactivated (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this contract was reactivated (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The original touch block that expired (for matching with expiry records) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Count of slots being reactivated (filter: eq) + */ + active_slots_eq?: number; + /** + * Count of slots being reactivated (filter: ne) + */ + active_slots_ne?: number; + /** + * Count of slots being reactivated (filter: lt) + */ + active_slots_lt?: number; + /** + * Count of slots being reactivated (filter: lte) + */ + active_slots_lte?: number; + /** + * Count of slots being reactivated (filter: gt) + */ + active_slots_gt?: number; + /** + * Count of slots being reactivated (filter: gte) + */ + active_slots_gte?: number; + /** + * Count of slots being reactivated (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Count of slots being reactivated (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Count of slots being reactivated (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Count of slots being reactivated (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Sum of effective bytes being reactivated (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Sum of effective bytes being reactivated (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Sum of effective bytes being reactivated (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Sum of effective bytes being reactivated (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Sum of effective bytes being reactivated (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Sum of effective bytes being reactivated (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Sum of effective bytes being reactivated (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Sum of effective bytes being reactivated (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Sum of effective bytes being reactivated (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Sum of effective bytes being reactivated (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_reactivation_6m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageReactivation6m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_reactivation_6m'; +}; + +export type IntContractStorageReactivation6mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageReactivation6mServiceListError = + IntContractStorageReactivation6mServiceListErrors[keyof IntContractStorageReactivation6mServiceListErrors]; + +export type IntContractStorageReactivation6mServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageReactivation6mResponse; +}; + +export type IntContractStorageReactivation6mServiceListResponse = + IntContractStorageReactivation6mServiceListResponses[keyof IntContractStorageReactivation6mServiceListResponses]; + +export type IntContractStorageReactivation6mServiceGetData = { + body?: never; + path: { + /** + * The block number where this contract was reactivated + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_reactivation_6m/{block_number}'; +}; + +export type IntContractStorageReactivation6mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageReactivation6mServiceGetError = + IntContractStorageReactivation6mServiceGetErrors[keyof IntContractStorageReactivation6mServiceGetErrors]; + +export type IntContractStorageReactivation6mServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageReactivation6mResponse; +}; + +export type IntContractStorageReactivation6mServiceGetResponse = + IntContractStorageReactivation6mServiceGetResponses[keyof IntContractStorageReactivation6mServiceGetResponses]; + +export type IntContractStorageReactivation12mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this contract was reactivated (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this contract was reactivated (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this contract was reactivated (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this contract was reactivated (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this contract was reactivated (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this contract was reactivated (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this contract was reactivated (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this contract was reactivated (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this contract was reactivated (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this contract was reactivated (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The original touch block that expired (for matching with expiry records) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Count of slots being reactivated (filter: eq) + */ + active_slots_eq?: number; + /** + * Count of slots being reactivated (filter: ne) + */ + active_slots_ne?: number; + /** + * Count of slots being reactivated (filter: lt) + */ + active_slots_lt?: number; + /** + * Count of slots being reactivated (filter: lte) + */ + active_slots_lte?: number; + /** + * Count of slots being reactivated (filter: gt) + */ + active_slots_gt?: number; + /** + * Count of slots being reactivated (filter: gte) + */ + active_slots_gte?: number; + /** + * Count of slots being reactivated (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Count of slots being reactivated (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Count of slots being reactivated (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Count of slots being reactivated (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Sum of effective bytes being reactivated (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Sum of effective bytes being reactivated (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Sum of effective bytes being reactivated (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Sum of effective bytes being reactivated (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Sum of effective bytes being reactivated (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Sum of effective bytes being reactivated (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Sum of effective bytes being reactivated (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Sum of effective bytes being reactivated (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Sum of effective bytes being reactivated (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Sum of effective bytes being reactivated (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_reactivation_12m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageReactivation12m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_reactivation_12m'; +}; + +export type IntContractStorageReactivation12mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageReactivation12mServiceListError = + IntContractStorageReactivation12mServiceListErrors[keyof IntContractStorageReactivation12mServiceListErrors]; + +export type IntContractStorageReactivation12mServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageReactivation12mResponse; +}; + +export type IntContractStorageReactivation12mServiceListResponse = + IntContractStorageReactivation12mServiceListResponses[keyof IntContractStorageReactivation12mServiceListResponses]; + +export type IntContractStorageReactivation12mServiceGetData = { + body?: never; + path: { + /** + * The block number where this contract was reactivated + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_reactivation_12m/{block_number}'; +}; + +export type IntContractStorageReactivation12mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageReactivation12mServiceGetError = + IntContractStorageReactivation12mServiceGetErrors[keyof IntContractStorageReactivation12mServiceGetErrors]; + +export type IntContractStorageReactivation12mServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageReactivation12mResponse; +}; + +export type IntContractStorageReactivation12mServiceGetResponse = + IntContractStorageReactivation12mServiceGetResponses[keyof IntContractStorageReactivation12mServiceGetResponses]; + +export type IntContractStorageReactivation18mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this contract was reactivated (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this contract was reactivated (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this contract was reactivated (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this contract was reactivated (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this contract was reactivated (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this contract was reactivated (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this contract was reactivated (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this contract was reactivated (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this contract was reactivated (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this contract was reactivated (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The original touch block that expired (for matching with expiry records) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Count of slots being reactivated (filter: eq) + */ + active_slots_eq?: number; + /** + * Count of slots being reactivated (filter: ne) + */ + active_slots_ne?: number; + /** + * Count of slots being reactivated (filter: lt) + */ + active_slots_lt?: number; + /** + * Count of slots being reactivated (filter: lte) + */ + active_slots_lte?: number; + /** + * Count of slots being reactivated (filter: gt) + */ + active_slots_gt?: number; + /** + * Count of slots being reactivated (filter: gte) + */ + active_slots_gte?: number; + /** + * Count of slots being reactivated (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Count of slots being reactivated (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Count of slots being reactivated (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Count of slots being reactivated (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Sum of effective bytes being reactivated (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Sum of effective bytes being reactivated (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Sum of effective bytes being reactivated (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Sum of effective bytes being reactivated (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Sum of effective bytes being reactivated (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Sum of effective bytes being reactivated (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Sum of effective bytes being reactivated (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Sum of effective bytes being reactivated (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Sum of effective bytes being reactivated (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Sum of effective bytes being reactivated (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_reactivation_18m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageReactivation18m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_reactivation_18m'; +}; + +export type IntContractStorageReactivation18mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageReactivation18mServiceListError = + IntContractStorageReactivation18mServiceListErrors[keyof IntContractStorageReactivation18mServiceListErrors]; + +export type IntContractStorageReactivation18mServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageReactivation18mResponse; +}; + +export type IntContractStorageReactivation18mServiceListResponse = + IntContractStorageReactivation18mServiceListResponses[keyof IntContractStorageReactivation18mServiceListResponses]; + +export type IntContractStorageReactivation18mServiceGetData = { + body?: never; + path: { + /** + * The block number where this contract was reactivated + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_reactivation_18m/{block_number}'; +}; + +export type IntContractStorageReactivation18mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageReactivation18mServiceGetError = + IntContractStorageReactivation18mServiceGetErrors[keyof IntContractStorageReactivation18mServiceGetErrors]; + +export type IntContractStorageReactivation18mServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageReactivation18mResponse; +}; + +export type IntContractStorageReactivation18mServiceGetResponse = + IntContractStorageReactivation18mServiceGetResponses[keyof IntContractStorageReactivation18mServiceGetResponses]; + +export type IntContractStorageReactivation24mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this contract was reactivated (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this contract was reactivated (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this contract was reactivated (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this contract was reactivated (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this contract was reactivated (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this contract was reactivated (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this contract was reactivated (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this contract was reactivated (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this contract was reactivated (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this contract was reactivated (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The original touch block that expired (for matching with expiry records) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Count of slots being reactivated (filter: eq) + */ + active_slots_eq?: number; + /** + * Count of slots being reactivated (filter: ne) + */ + active_slots_ne?: number; + /** + * Count of slots being reactivated (filter: lt) + */ + active_slots_lt?: number; + /** + * Count of slots being reactivated (filter: lte) + */ + active_slots_lte?: number; + /** + * Count of slots being reactivated (filter: gt) + */ + active_slots_gt?: number; + /** + * Count of slots being reactivated (filter: gte) + */ + active_slots_gte?: number; + /** + * Count of slots being reactivated (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Count of slots being reactivated (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Count of slots being reactivated (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Count of slots being reactivated (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Sum of effective bytes being reactivated (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Sum of effective bytes being reactivated (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Sum of effective bytes being reactivated (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Sum of effective bytes being reactivated (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Sum of effective bytes being reactivated (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Sum of effective bytes being reactivated (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Sum of effective bytes being reactivated (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Sum of effective bytes being reactivated (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Sum of effective bytes being reactivated (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Sum of effective bytes being reactivated (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_reactivation_24m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageReactivation24m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_reactivation_24m'; +}; + +export type IntContractStorageReactivation24mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageReactivation24mServiceListError = + IntContractStorageReactivation24mServiceListErrors[keyof IntContractStorageReactivation24mServiceListErrors]; + +export type IntContractStorageReactivation24mServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageReactivation24mResponse; +}; + +export type IntContractStorageReactivation24mServiceListResponse = + IntContractStorageReactivation24mServiceListResponses[keyof IntContractStorageReactivation24mServiceListResponses]; + +export type IntContractStorageReactivation24mServiceGetData = { + body?: never; + path: { + /** + * The block number where this contract was reactivated + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_reactivation_24m/{block_number}'; +}; + +export type IntContractStorageReactivation24mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageReactivation24mServiceGetError = + IntContractStorageReactivation24mServiceGetErrors[keyof IntContractStorageReactivation24mServiceGetErrors]; + +export type IntContractStorageReactivation24mServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageReactivation24mResponse; +}; + +export type IntContractStorageReactivation24mServiceGetResponse = + IntContractStorageReactivation24mServiceGetResponses[keyof IntContractStorageReactivation24mServiceGetResponses]; + +export type IntContractStorageStateServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: eq) + */ + slots_delta_eq?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: ne) + */ + slots_delta_ne?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lt) + */ + slots_delta_lt?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lte) + */ + slots_delta_lte?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gt) + */ + slots_delta_gt?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gte) + */ + slots_delta_gte?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_min) + */ + slots_delta_between_min?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_max_value) + */ + slots_delta_between_max_value?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) + */ + slots_delta_in_values?: string; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) + */ + slots_delta_not_in_values?: string; + /** + * Change in effective bytes for this block (filter: eq) + */ + bytes_delta_eq?: number; + /** + * Change in effective bytes for this block (filter: ne) + */ + bytes_delta_ne?: number; + /** + * Change in effective bytes for this block (filter: lt) + */ + bytes_delta_lt?: number; + /** + * Change in effective bytes for this block (filter: lte) + */ + bytes_delta_lte?: number; + /** + * Change in effective bytes for this block (filter: gt) + */ + bytes_delta_gt?: number; + /** + * Change in effective bytes for this block (filter: gte) + */ + bytes_delta_gte?: number; + /** + * Change in effective bytes for this block (filter: between_min) + */ + bytes_delta_between_min?: number; + /** + * Change in effective bytes for this block (filter: between_max_value) + */ + bytes_delta_between_max_value?: number; + /** + * Change in effective bytes for this block (filter: in_values) (comma-separated list) + */ + bytes_delta_in_values?: string; + /** + * Change in effective bytes for this block (filter: not_in_values) (comma-separated list) + */ + bytes_delta_not_in_values?: string; + /** + * Cumulative count of active storage slots for this contract at this block (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots for this contract at this block (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_state to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageState` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_state'; +}; + +export type IntContractStorageStateServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageStateServiceListError = + IntContractStorageStateServiceListErrors[keyof IntContractStorageStateServiceListErrors]; + +export type IntContractStorageStateServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageStateResponse; +}; + +export type IntContractStorageStateServiceListResponse = + IntContractStorageStateServiceListResponses[keyof IntContractStorageStateServiceListResponses]; + +export type IntContractStorageStateServiceGetData = { + body?: never; + path: { + /** + * The block number + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_state/{block_number}'; +}; + +export type IntContractStorageStateServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageStateServiceGetError = + IntContractStorageStateServiceGetErrors[keyof IntContractStorageStateServiceGetErrors]; + +export type IntContractStorageStateServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageStateResponse; +}; + +export type IntContractStorageStateServiceGetResponse = + IntContractStorageStateServiceGetResponses[keyof IntContractStorageStateServiceGetResponses]; + +export type IntContractStorageStateByAddressServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: eq) + */ + slots_delta_eq?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: ne) + */ + slots_delta_ne?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lt) + */ + slots_delta_lt?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lte) + */ + slots_delta_lte?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gt) + */ + slots_delta_gt?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gte) + */ + slots_delta_gte?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_min) + */ + slots_delta_between_min?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_max_value) + */ + slots_delta_between_max_value?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) + */ + slots_delta_in_values?: string; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) + */ + slots_delta_not_in_values?: string; + /** + * Change in effective bytes for this block (filter: eq) + */ + bytes_delta_eq?: number; + /** + * Change in effective bytes for this block (filter: ne) + */ + bytes_delta_ne?: number; + /** + * Change in effective bytes for this block (filter: lt) + */ + bytes_delta_lt?: number; + /** + * Change in effective bytes for this block (filter: lte) + */ + bytes_delta_lte?: number; + /** + * Change in effective bytes for this block (filter: gt) + */ + bytes_delta_gt?: number; + /** + * Change in effective bytes for this block (filter: gte) + */ + bytes_delta_gte?: number; + /** + * Change in effective bytes for this block (filter: between_min) + */ + bytes_delta_between_min?: number; + /** + * Change in effective bytes for this block (filter: between_max_value) + */ + bytes_delta_between_max_value?: number; + /** + * Change in effective bytes for this block (filter: in_values) (comma-separated list) + */ + bytes_delta_in_values?: string; + /** + * Change in effective bytes for this block (filter: not_in_values) (comma-separated list) + */ + bytes_delta_not_in_values?: string; + /** + * Cumulative count of active storage slots for this contract at this block (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots for this contract at this block (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots for this contract at this block (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes for this contract at this block (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_state_by_address to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageStateByAddress` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_state_by_address'; +}; + +export type IntContractStorageStateByAddressServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageStateByAddressServiceListError = + IntContractStorageStateByAddressServiceListErrors[keyof IntContractStorageStateByAddressServiceListErrors]; + +export type IntContractStorageStateByAddressServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageStateByAddressResponse; +}; + +export type IntContractStorageStateByAddressServiceListResponse = + IntContractStorageStateByAddressServiceListResponses[keyof IntContractStorageStateByAddressServiceListResponses]; + +export type IntContractStorageStateByAddressServiceGetData = { + body?: never; + path: { + /** + * The contract address + */ + address: string; + }; + query?: never; + url: '/api/v1/int_contract_storage_state_by_address/{address}'; +}; + +export type IntContractStorageStateByAddressServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageStateByAddressServiceGetError = + IntContractStorageStateByAddressServiceGetErrors[keyof IntContractStorageStateByAddressServiceGetErrors]; + +export type IntContractStorageStateByAddressServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageStateByAddressResponse; +}; + +export type IntContractStorageStateByAddressServiceGetResponse = + IntContractStorageStateByAddressServiceGetResponses[keyof IntContractStorageStateByAddressServiceGetResponses]; + +export type IntContractStorageStateByBlockServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: eq) + */ + slots_delta_eq?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: ne) + */ + slots_delta_ne?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lt) + */ + slots_delta_lt?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lte) + */ + slots_delta_lte?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gt) + */ + slots_delta_gt?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gte) + */ + slots_delta_gte?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_min) + */ + slots_delta_between_min?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_max_value) + */ + slots_delta_between_max_value?: number; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) + */ + slots_delta_in_values?: string; + /** + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) + */ + slots_delta_not_in_values?: string; + /** + * Change in effective bytes for this block (filter: eq) + */ + bytes_delta_eq?: number; + /** + * Change in effective bytes for this block (filter: ne) + */ + bytes_delta_ne?: number; + /** + * Change in effective bytes for this block (filter: lt) + */ + bytes_delta_lt?: number; + /** + * Change in effective bytes for this block (filter: lte) + */ + bytes_delta_lte?: number; + /** + * Change in effective bytes for this block (filter: gt) + */ + bytes_delta_gt?: number; + /** + * Change in effective bytes for this block (filter: gte) + */ + bytes_delta_gte?: number; + /** + * Change in effective bytes for this block (filter: between_min) + */ + bytes_delta_between_min?: number; + /** + * Change in effective bytes for this block (filter: between_max_value) + */ + bytes_delta_between_max_value?: number; + /** + * Change in effective bytes for this block (filter: in_values) (comma-separated list) + */ + bytes_delta_in_values?: string; + /** + * Change in effective bytes for this block (filter: not_in_values) (comma-separated list) + */ + bytes_delta_not_in_values?: string; + /** + * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: eq) + */ + contracts_delta_eq?: number; + /** + * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: ne) + */ + contracts_delta_ne?: number; + /** + * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: lt) + */ + contracts_delta_lt?: number; + /** + * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: lte) + */ + contracts_delta_lte?: number; + /** + * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: gt) + */ + contracts_delta_gt?: number; + /** + * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: gte) + */ + contracts_delta_gte?: number; + /** + * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: between_min) + */ + contracts_delta_between_min?: number; + /** + * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: between_max_value) + */ + contracts_delta_between_max_value?: number; + /** + * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) + */ + contracts_delta_in_values?: string; + /** + * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) + */ + contracts_delta_not_in_values?: string; + /** + * Cumulative count of active storage slots at this block (filter: eq) + */ + active_slots_eq?: number; + /** + * Cumulative count of active storage slots at this block (filter: ne) + */ + active_slots_ne?: number; + /** + * Cumulative count of active storage slots at this block (filter: lt) + */ + active_slots_lt?: number; + /** + * Cumulative count of active storage slots at this block (filter: lte) + */ + active_slots_lte?: number; + /** + * Cumulative count of active storage slots at this block (filter: gt) + */ + active_slots_gt?: number; + /** + * Cumulative count of active storage slots at this block (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots at this block (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Cumulative count of active storage slots at this block (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Cumulative count of active storage slots at this block (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Cumulative count of active storage slots at this block (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Cumulative sum of effective bytes across all active slots at this block (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Cumulative sum of effective bytes across all active slots at this block (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Cumulative sum of effective bytes across all active slots at this block (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Cumulative sum of effective bytes across all active slots at this block (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Cumulative sum of effective bytes across all active slots at this block (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Cumulative sum of effective bytes across all active slots at this block (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Cumulative sum of effective bytes across all active slots at this block (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Cumulative sum of effective bytes across all active slots at this block (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Cumulative sum of effective bytes across all active slots at this block (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Cumulative sum of effective bytes across all active slots at this block (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * Cumulative count of contracts with at least one active slot at this block (filter: eq) + */ + active_contracts_eq?: number; + /** + * Cumulative count of contracts with at least one active slot at this block (filter: ne) + */ + active_contracts_ne?: number; + /** + * Cumulative count of contracts with at least one active slot at this block (filter: lt) + */ + active_contracts_lt?: number; + /** + * Cumulative count of contracts with at least one active slot at this block (filter: lte) + */ + active_contracts_lte?: number; + /** + * Cumulative count of contracts with at least one active slot at this block (filter: gt) + */ + active_contracts_gt?: number; + /** + * Cumulative count of contracts with at least one active slot at this block (filter: gte) + */ + active_contracts_gte?: number; + /** + * Cumulative count of contracts with at least one active slot at this block (filter: between_min) + */ + active_contracts_between_min?: number; + /** + * Cumulative count of contracts with at least one active slot at this block (filter: between_max_value) + */ + active_contracts_between_max_value?: number; + /** + * Cumulative count of contracts with at least one active slot at this block (filter: in_values) (comma-separated list) + */ + active_contracts_in_values?: string; + /** + * Cumulative count of contracts with at least one active slot at this block (filter: not_in_values) (comma-separated list) + */ + active_contracts_not_in_values?: string; + /** + * The maximum number of int_contract_storage_state_by_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageStateByBlock` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_state_by_block'; +}; + +export type IntContractStorageStateByBlockServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageStateByBlockServiceListError = + IntContractStorageStateByBlockServiceListErrors[keyof IntContractStorageStateByBlockServiceListErrors]; + +export type IntContractStorageStateByBlockServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageStateByBlockResponse; +}; + +export type IntContractStorageStateByBlockServiceListResponse = + IntContractStorageStateByBlockServiceListResponses[keyof IntContractStorageStateByBlockServiceListResponses]; + +export type IntContractStorageStateByBlockServiceGetData = { + body?: never; + path: { + /** + * The block number + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_contract_storage_state_by_block/{block_number}'; +}; + +export type IntContractStorageStateByBlockServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageStateByBlockServiceGetError = + IntContractStorageStateByBlockServiceGetErrors[keyof IntContractStorageStateByBlockServiceGetErrors]; + +export type IntContractStorageStateByBlockServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageStateByBlockResponse; +}; + +export type IntContractStorageStateByBlockServiceGetResponse = + IntContractStorageStateByBlockServiceGetResponses[keyof IntContractStorageStateByBlockServiceGetResponses]; + +export type IntContractStorageStateWithExpiryServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: eq) + */ + net_slots_delta_eq?: number; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: ne) + */ + net_slots_delta_ne?: number; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lt) + */ + net_slots_delta_lt?: number; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lte) + */ + net_slots_delta_lte?: number; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gt) + */ + net_slots_delta_gt?: number; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gte) + */ + net_slots_delta_gte?: number; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) + */ + net_slots_delta_between_min?: number; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) + */ + net_slots_delta_between_max_value?: number; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) + */ + net_slots_delta_in_values?: string; + /** + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) + */ + net_slots_delta_not_in_values?: string; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: eq) + */ + net_bytes_delta_eq?: number; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: ne) + */ + net_bytes_delta_ne?: number; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lt) + */ + net_bytes_delta_lt?: number; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lte) + */ + net_bytes_delta_lte?: number; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gt) + */ + net_bytes_delta_gt?: number; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gte) + */ + net_bytes_delta_gte?: number; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) + */ + net_bytes_delta_between_min?: number; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) + */ + net_bytes_delta_between_max_value?: number; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) + */ + net_bytes_delta_in_values?: string; + /** + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) + */ + net_bytes_delta_not_in_values?: string; + /** + * Cumulative net slot adjustment up to this block (filter: eq) + */ + cumulative_net_slots_eq?: number; + /** + * Cumulative net slot adjustment up to this block (filter: ne) + */ + cumulative_net_slots_ne?: number; + /** + * Cumulative net slot adjustment up to this block (filter: lt) + */ + cumulative_net_slots_lt?: number; + /** + * Cumulative net slot adjustment up to this block (filter: lte) + */ + cumulative_net_slots_lte?: number; + /** + * Cumulative net slot adjustment up to this block (filter: gt) + */ + cumulative_net_slots_gt?: number; + /** + * Cumulative net slot adjustment up to this block (filter: gte) + */ + cumulative_net_slots_gte?: number; + /** + * Cumulative net slot adjustment up to this block (filter: between_min) + */ + cumulative_net_slots_between_min?: number; + /** + * Cumulative net slot adjustment up to this block (filter: between_max_value) + */ + cumulative_net_slots_between_max_value?: number; + /** + * Cumulative net slot adjustment up to this block (filter: in_values) (comma-separated list) + */ + cumulative_net_slots_in_values?: string; + /** + * Cumulative net slot adjustment up to this block (filter: not_in_values) (comma-separated list) + */ + cumulative_net_slots_not_in_values?: string; + /** + * Cumulative net bytes adjustment up to this block (filter: eq) + */ + cumulative_net_bytes_eq?: number; + /** + * Cumulative net bytes adjustment up to this block (filter: ne) + */ + cumulative_net_bytes_ne?: number; + /** + * Cumulative net bytes adjustment up to this block (filter: lt) + */ + cumulative_net_bytes_lt?: number; + /** + * Cumulative net bytes adjustment up to this block (filter: lte) + */ + cumulative_net_bytes_lte?: number; + /** + * Cumulative net bytes adjustment up to this block (filter: gt) + */ + cumulative_net_bytes_gt?: number; + /** + * Cumulative net bytes adjustment up to this block (filter: gte) + */ + cumulative_net_bytes_gte?: number; + /** + * Cumulative net bytes adjustment up to this block (filter: between_min) + */ + cumulative_net_bytes_between_min?: number; + /** + * Cumulative net bytes adjustment up to this block (filter: between_max_value) + */ + cumulative_net_bytes_between_max_value?: number; + /** + * Cumulative net bytes adjustment up to this block (filter: in_values) (comma-separated list) + */ + cumulative_net_bytes_in_values?: string; + /** + * Cumulative net bytes adjustment up to this block (filter: not_in_values) (comma-separated list) + */ + cumulative_net_bytes_not_in_values?: string; + /** + * Number of active storage slots in this contract (with expiry applied) (filter: eq) + */ + active_slots_eq?: number; + /** + * Number of active storage slots in this contract (with expiry applied) (filter: ne) + */ + active_slots_ne?: number; + /** + * Number of active storage slots in this contract (with expiry applied) (filter: lt) + */ + active_slots_lt?: number; + /** + * Number of active storage slots in this contract (with expiry applied) (filter: lte) + */ + active_slots_lte?: number; + /** + * Number of active storage slots in this contract (with expiry applied) (filter: gt) + */ + active_slots_gt?: number; + /** + * Number of active storage slots in this contract (with expiry applied) (filter: gte) + */ + active_slots_gte?: number; + /** + * Number of active storage slots in this contract (with expiry applied) (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Number of active storage slots in this contract (with expiry applied) (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Number of active storage slots in this contract (with expiry applied) (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Number of active storage slots in this contract (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Effective bytes for this contract (with expiry applied) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Effective bytes for this contract (with expiry applied) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Effective bytes for this contract (with expiry applied) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Effective bytes for this contract (with expiry applied) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Effective bytes for this contract (with expiry applied) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Effective bytes for this contract (with expiry applied) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Effective bytes for this contract (with expiry applied) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Effective bytes for this contract (with expiry applied) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Effective bytes for this contract (with expiry applied) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Effective bytes for this contract (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * Previous block active_slots for this address (for transition detection) (filter: eq) + */ + prev_active_slots_eq?: number; + /** + * Previous block active_slots for this address (for transition detection) (filter: ne) + */ + prev_active_slots_ne?: number; + /** + * Previous block active_slots for this address (for transition detection) (filter: lt) + */ + prev_active_slots_lt?: number; + /** + * Previous block active_slots for this address (for transition detection) (filter: lte) + */ + prev_active_slots_lte?: number; + /** + * Previous block active_slots for this address (for transition detection) (filter: gt) + */ + prev_active_slots_gt?: number; + /** + * Previous block active_slots for this address (for transition detection) (filter: gte) + */ + prev_active_slots_gte?: number; + /** + * Previous block active_slots for this address (for transition detection) (filter: between_min) + */ + prev_active_slots_between_min?: number; + /** + * Previous block active_slots for this address (for transition detection) (filter: between_max_value) + */ + prev_active_slots_between_max_value?: number; + /** + * Previous block active_slots for this address (for transition detection) (filter: in_values) (comma-separated list) + */ + prev_active_slots_in_values?: string; + /** + * Previous block active_slots for this address (for transition detection) (filter: not_in_values) (comma-separated list) + */ + prev_active_slots_not_in_values?: string; + /** + * Previous block effective_bytes for this address (for delta calculation) (filter: eq) + */ + prev_effective_bytes_eq?: number; + /** + * Previous block effective_bytes for this address (for delta calculation) (filter: ne) + */ + prev_effective_bytes_ne?: number; + /** + * Previous block effective_bytes for this address (for delta calculation) (filter: lt) + */ + prev_effective_bytes_lt?: number; + /** + * Previous block effective_bytes for this address (for delta calculation) (filter: lte) + */ + prev_effective_bytes_lte?: number; + /** + * Previous block effective_bytes for this address (for delta calculation) (filter: gt) + */ + prev_effective_bytes_gt?: number; + /** + * Previous block effective_bytes for this address (for delta calculation) (filter: gte) + */ + prev_effective_bytes_gte?: number; + /** + * Previous block effective_bytes for this address (for delta calculation) (filter: between_min) + */ + prev_effective_bytes_between_min?: number; + /** + * Previous block effective_bytes for this address (for delta calculation) (filter: between_max_value) + */ + prev_effective_bytes_between_max_value?: number; + /** + * Previous block effective_bytes for this address (for delta calculation) (filter: in_values) (comma-separated list) + */ + prev_effective_bytes_in_values?: string; + /** + * Previous block effective_bytes for this address (for delta calculation) (filter: not_in_values) (comma-separated list) + */ + prev_effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_state_with_expiry to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageStateWithExpiry` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_state_with_expiry'; +}; + +export type IntContractStorageStateWithExpiryServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageStateWithExpiryServiceListError = + IntContractStorageStateWithExpiryServiceListErrors[keyof IntContractStorageStateWithExpiryServiceListErrors]; + +export type IntContractStorageStateWithExpiryServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageStateWithExpiryResponse; +}; + +export type IntContractStorageStateWithExpiryServiceListResponse = + IntContractStorageStateWithExpiryServiceListResponses[keyof IntContractStorageStateWithExpiryServiceListResponses]; + +export type IntContractStorageStateWithExpiryServiceGetData = { + body?: never; + path: { + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy: string; + }; + query?: never; + url: '/api/v1/int_contract_storage_state_with_expiry/{expiry_policy}'; +}; + +export type IntContractStorageStateWithExpiryServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageStateWithExpiryServiceGetError = + IntContractStorageStateWithExpiryServiceGetErrors[keyof IntContractStorageStateWithExpiryServiceGetErrors]; + +export type IntContractStorageStateWithExpiryServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageStateWithExpiryResponse; +}; + +export type IntContractStorageStateWithExpiryServiceGetResponse = + IntContractStorageStateWithExpiryServiceGetResponses[keyof IntContractStorageStateWithExpiryServiceGetResponses]; + +export type IntContractStorageStateWithExpiryByAddressServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of active storage slots in this contract (0 if expired) (filter: eq) + */ + active_slots_eq?: number; + /** + * Number of active storage slots in this contract (0 if expired) (filter: ne) + */ + active_slots_ne?: number; + /** + * Number of active storage slots in this contract (0 if expired) (filter: lt) + */ + active_slots_lt?: number; + /** + * Number of active storage slots in this contract (0 if expired) (filter: lte) + */ + active_slots_lte?: number; + /** + * Number of active storage slots in this contract (0 if expired) (filter: gt) + */ + active_slots_gt?: number; + /** + * Number of active storage slots in this contract (0 if expired) (filter: gte) + */ + active_slots_gte?: number; + /** + * Number of active storage slots in this contract (0 if expired) (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Number of active storage slots in this contract (0 if expired) (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Number of active storage slots in this contract (0 if expired) (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Number of active storage slots in this contract (0 if expired) (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Effective bytes for this contract (0 if expired) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Effective bytes for this contract (0 if expired) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Effective bytes for this contract (0 if expired) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Effective bytes for this contract (0 if expired) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Effective bytes for this contract (0 if expired) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Effective bytes for this contract (0 if expired) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Effective bytes for this contract (0 if expired) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Effective bytes for this contract (0 if expired) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Effective bytes for this contract (0 if expired) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Effective bytes for this contract (0 if expired) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_contract_storage_state_with_expiry_by_address to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageStateWithExpiryByAddress` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_state_with_expiry_by_address'; +}; + +export type IntContractStorageStateWithExpiryByAddressServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageStateWithExpiryByAddressServiceListError = + IntContractStorageStateWithExpiryByAddressServiceListErrors[keyof IntContractStorageStateWithExpiryByAddressServiceListErrors]; + +export type IntContractStorageStateWithExpiryByAddressServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageStateWithExpiryByAddressResponse; +}; + +export type IntContractStorageStateWithExpiryByAddressServiceListResponse = + IntContractStorageStateWithExpiryByAddressServiceListResponses[keyof IntContractStorageStateWithExpiryByAddressServiceListResponses]; + +export type IntContractStorageStateWithExpiryByAddressServiceGetData = { + body?: never; + path: { + /** + * The contract address + */ + address: string; + }; + query?: never; + url: '/api/v1/int_contract_storage_state_with_expiry_by_address/{address}'; +}; + +export type IntContractStorageStateWithExpiryByAddressServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageStateWithExpiryByAddressServiceGetError = + IntContractStorageStateWithExpiryByAddressServiceGetErrors[keyof IntContractStorageStateWithExpiryByAddressServiceGetErrors]; + +export type IntContractStorageStateWithExpiryByAddressServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageStateWithExpiryByAddressResponse; +}; + +export type IntContractStorageStateWithExpiryByAddressServiceGetResponse = + IntContractStorageStateWithExpiryByAddressServiceGetResponses[keyof IntContractStorageStateWithExpiryByAddressServiceGetResponses]; + +export type IntContractStorageStateWithExpiryByBlockServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) + */ + expiry_policy_eq?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) + */ + expiry_policy_ne?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) + */ + expiry_policy_contains?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) + */ + expiry_policy_starts_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) + */ + expiry_policy_ends_with?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) + */ + expiry_policy_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) + */ + expiry_policy_not_like?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) + */ + expiry_policy_in_values?: string; + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) + */ + expiry_policy_not_in_values?: string; + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Total active storage slots network-wide (with expiry applied) (filter: eq) + */ + active_slots_eq?: number; + /** + * Total active storage slots network-wide (with expiry applied) (filter: ne) + */ + active_slots_ne?: number; + /** + * Total active storage slots network-wide (with expiry applied) (filter: lt) + */ + active_slots_lt?: number; + /** + * Total active storage slots network-wide (with expiry applied) (filter: lte) + */ + active_slots_lte?: number; + /** + * Total active storage slots network-wide (with expiry applied) (filter: gt) + */ + active_slots_gt?: number; + /** + * Total active storage slots network-wide (with expiry applied) (filter: gte) + */ + active_slots_gte?: number; + /** + * Total active storage slots network-wide (with expiry applied) (filter: between_min) + */ + active_slots_between_min?: number; + /** + * Total active storage slots network-wide (with expiry applied) (filter: between_max_value) + */ + active_slots_between_max_value?: number; + /** + * Total active storage slots network-wide (with expiry applied) (filter: in_values) (comma-separated list) + */ + active_slots_in_values?: string; + /** + * Total active storage slots network-wide (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + active_slots_not_in_values?: string; + /** + * Total effective bytes network-wide (with expiry applied) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Total effective bytes network-wide (with expiry applied) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Total effective bytes network-wide (with expiry applied) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Total effective bytes network-wide (with expiry applied) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Total effective bytes network-wide (with expiry applied) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Total effective bytes network-wide (with expiry applied) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Total effective bytes network-wide (with expiry applied) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Total effective bytes network-wide (with expiry applied) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Total effective bytes network-wide (with expiry applied) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Total effective bytes network-wide (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * Count of contracts with active_slots > 0 (with expiry applied) (filter: eq) + */ + active_contracts_eq?: number; + /** + * Count of contracts with active_slots > 0 (with expiry applied) (filter: ne) + */ + active_contracts_ne?: number; + /** + * Count of contracts with active_slots > 0 (with expiry applied) (filter: lt) + */ + active_contracts_lt?: number; + /** + * Count of contracts with active_slots > 0 (with expiry applied) (filter: lte) + */ + active_contracts_lte?: number; + /** + * Count of contracts with active_slots > 0 (with expiry applied) (filter: gt) + */ + active_contracts_gt?: number; + /** + * Count of contracts with active_slots > 0 (with expiry applied) (filter: gte) + */ + active_contracts_gte?: number; + /** + * Count of contracts with active_slots > 0 (with expiry applied) (filter: between_min) + */ + active_contracts_between_min?: number; + /** + * Count of contracts with active_slots > 0 (with expiry applied) (filter: between_max_value) + */ + active_contracts_between_max_value?: number; + /** + * Count of contracts with active_slots > 0 (with expiry applied) (filter: in_values) (comma-separated list) + */ + active_contracts_in_values?: string; + /** + * Count of contracts with active_slots > 0 (with expiry applied) (filter: not_in_values) (comma-separated list) + */ + active_contracts_not_in_values?: string; + /** + * The maximum number of int_contract_storage_state_with_expiry_by_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntContractStorageStateWithExpiryByBlock` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_contract_storage_state_with_expiry_by_block'; +}; + +export type IntContractStorageStateWithExpiryByBlockServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageStateWithExpiryByBlockServiceListError = + IntContractStorageStateWithExpiryByBlockServiceListErrors[keyof IntContractStorageStateWithExpiryByBlockServiceListErrors]; + +export type IntContractStorageStateWithExpiryByBlockServiceListResponses = { + /** + * OK + */ + 200: ListIntContractStorageStateWithExpiryByBlockResponse; +}; + +export type IntContractStorageStateWithExpiryByBlockServiceListResponse = + IntContractStorageStateWithExpiryByBlockServiceListResponses[keyof IntContractStorageStateWithExpiryByBlockServiceListResponses]; + +export type IntContractStorageStateWithExpiryByBlockServiceGetData = { + body?: never; + path: { + /** + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + */ + expiry_policy: string; + }; + query?: never; + url: '/api/v1/int_contract_storage_state_with_expiry_by_block/{expiry_policy}'; +}; + +export type IntContractStorageStateWithExpiryByBlockServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntContractStorageStateWithExpiryByBlockServiceGetError = + IntContractStorageStateWithExpiryByBlockServiceGetErrors[keyof IntContractStorageStateWithExpiryByBlockServiceGetErrors]; + +export type IntContractStorageStateWithExpiryByBlockServiceGetResponses = { + /** + * OK + */ + 200: GetIntContractStorageStateWithExpiryByBlockResponse; +}; + +export type IntContractStorageStateWithExpiryByBlockServiceGetResponse = + IntContractStorageStateWithExpiryByBlockServiceGetResponses[keyof IntContractStorageStateWithExpiryByBlockServiceGetResponses]; + +export type IntCustodyProbeServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Earliest event time for this probe batch (filter: eq) + */ + probe_date_time_eq?: number; + /** + * Earliest event time for this probe batch (filter: ne) + */ + probe_date_time_ne?: number; + /** + * Earliest event time for this probe batch (filter: lt) + */ + probe_date_time_lt?: number; + /** + * Earliest event time for this probe batch (filter: lte) + */ + probe_date_time_lte?: number; + /** + * Earliest event time for this probe batch (filter: gt) + */ + probe_date_time_gt?: number; + /** + * Earliest event time for this probe batch (filter: gte) + */ + probe_date_time_gte?: number; + /** + * Earliest event time for this probe batch (filter: between_min) + */ + probe_date_time_between_min?: number; + /** + * Earliest event time for this probe batch (filter: between_max_value) + */ + probe_date_time_between_max_value?: number; + /** + * Earliest event time for this probe batch (filter: in_values) (comma-separated list) + */ + probe_date_time_in_values?: string; + /** + * Earliest event time for this probe batch (filter: not_in_values) (comma-separated list) + */ + probe_date_time_not_in_values?: string; + /** + * Slot number (filter: eq) + */ + slot_eq?: number; + /** + * Slot number (filter: ne) + */ + slot_ne?: number; + /** + * Slot number (filter: lt) + */ + slot_lt?: number; + /** + * Slot number (filter: lte) + */ + slot_lte?: number; + /** + * Slot number (filter: gt) + */ + slot_gt?: number; + /** + * Slot number (filter: gte) + */ + slot_gte?: number; + /** + * Slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Unique key associated with the identifier of the peer (filter: eq) + */ + peer_id_unique_key_eq?: number; + /** + * Unique key associated with the identifier of the peer (filter: ne) + */ + peer_id_unique_key_ne?: number; + /** + * Unique key associated with the identifier of the peer (filter: lt) + */ + peer_id_unique_key_lt?: number; + /** + * Unique key associated with the identifier of the peer (filter: lte) + */ + peer_id_unique_key_lte?: number; + /** + * Unique key associated with the identifier of the peer (filter: gt) + */ + peer_id_unique_key_gt?: number; + /** + * Unique key associated with the identifier of the peer (filter: gte) + */ + peer_id_unique_key_gte?: number; + /** + * Unique key associated with the identifier of the peer (filter: between_min) + */ + peer_id_unique_key_between_min?: number; + /** + * Unique key associated with the identifier of the peer (filter: between_max_value) + */ + peer_id_unique_key_between_max_value?: number; + /** + * Unique key associated with the identifier of the peer (filter: in_values) (comma-separated list) + */ + peer_id_unique_key_in_values?: string; + /** + * Unique key associated with the identifier of the peer (filter: not_in_values) (comma-separated list) + */ + peer_id_unique_key_not_in_values?: string; + /** + * Result of the probe (success, failure, missing) (filter: eq) + */ + result_eq?: string; + /** + * Result of the probe (success, failure, missing) (filter: ne) + */ + result_ne?: string; + /** + * Result of the probe (success, failure, missing) (filter: contains) + */ + result_contains?: string; + /** + * Result of the probe (success, failure, missing) (filter: starts_with) + */ + result_starts_with?: string; + /** + * Result of the probe (success, failure, missing) (filter: ends_with) + */ + result_ends_with?: string; + /** + * Result of the probe (success, failure, missing) (filter: like) + */ + result_like?: string; + /** + * Result of the probe (success, failure, missing) (filter: not_like) + */ + result_not_like?: string; + /** + * Result of the probe (success, failure, missing) (filter: in_values) (comma-separated list) + */ + result_in_values?: string; + /** + * Result of the probe (success, failure, missing) (filter: not_in_values) (comma-separated list) + */ + result_not_in_values?: string; + /** + * Error message if probe failed (filter: eq) + */ + error_eq?: string; + /** + * Error message if probe failed (filter: ne) + */ + error_ne?: string; + /** + * Error message if probe failed (filter: contains) + */ + error_contains?: string; + /** + * Error message if probe failed (filter: starts_with) + */ + error_starts_with?: string; + /** + * Error message if probe failed (filter: ends_with) + */ + error_ends_with?: string; + /** + * Error message if probe failed (filter: like) + */ + error_like?: string; + /** + * Error message if probe failed (filter: not_like) + */ + error_not_like?: string; + /** + * Error message if probe failed (filter: in_values) (comma-separated list) + */ + error_in_values?: string; + /** + * Error message if probe failed (filter: not_in_values) (comma-separated list) + */ + error_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Start date time of the slot (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * Start date time of the slot (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * Start date time of the slot (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * Start date time of the slot (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * Start date time of the slot (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * Start date time of the slot (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * Start date time of the slot (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * Start date time of the slot (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * Start date time of the slot (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * Start date time of the slot (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Array of column indices probed (filter: has) + */ + column_indices_has?: number; + /** + * Array of column indices probed (filter: has_all_values) + */ + column_indices_has_all_values?: Array; + /** + * Array of column indices probed (filter: has_any_values) + */ + column_indices_has_any_values?: Array; + /** + * Array of column indices probed (filter: length_eq) + */ + column_indices_length_eq?: number; + /** + * Array of column indices probed (filter: length_gt) + */ + column_indices_length_gt?: number; + /** + * Array of column indices probed (filter: length_gte) + */ + column_indices_length_gte?: number; + /** + * Array of column indices probed (filter: length_lt) + */ + column_indices_length_lt?: number; + /** + * Array of column indices probed (filter: length_lte) + */ + column_indices_length_lte?: number; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: has) + */ + blob_submitters_has?: string; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: has_all_values) + */ + blob_submitters_has_all_values?: Array; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: has_any_values) + */ + blob_submitters_has_any_values?: Array; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: length_eq) + */ + blob_submitters_length_eq?: number; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: length_gt) + */ + blob_submitters_length_gt?: number; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: length_gte) + */ + blob_submitters_length_gte?: number; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: length_lt) + */ + blob_submitters_length_lt?: number; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: length_lte) + */ + blob_submitters_length_lte?: number; + /** + * Response time in milliseconds (filter: eq) + */ + response_time_ms_eq?: number; + /** + * Response time in milliseconds (filter: ne) + */ + response_time_ms_ne?: number; + /** + * Response time in milliseconds (filter: lt) + */ + response_time_ms_lt?: number; + /** + * Response time in milliseconds (filter: lte) + */ + response_time_ms_lte?: number; + /** + * Response time in milliseconds (filter: gt) + */ + response_time_ms_gt?: number; + /** + * Response time in milliseconds (filter: gte) + */ + response_time_ms_gte?: number; + /** + * Response time in milliseconds (filter: between_min) + */ + response_time_ms_between_min?: number; + /** + * Response time in milliseconds (filter: between_max_value) + */ + response_time_ms_between_max_value?: number; + /** + * Response time in milliseconds (filter: in_values) (comma-separated list) + */ + response_time_ms_in_values?: string; + /** + * Response time in milliseconds (filter: not_in_values) (comma-separated list) + */ + response_time_ms_not_in_values?: string; + /** + * Username extracted from client name (filter: eq) + */ + username_eq?: string; + /** + * Username extracted from client name (filter: ne) + */ + username_ne?: string; + /** + * Username extracted from client name (filter: contains) + */ + username_contains?: string; + /** + * Username extracted from client name (filter: starts_with) + */ + username_starts_with?: string; + /** + * Username extracted from client name (filter: ends_with) + */ + username_ends_with?: string; + /** + * Username extracted from client name (filter: like) + */ + username_like?: string; + /** + * Username extracted from client name (filter: not_like) + */ + username_not_like?: string; + /** + * Username extracted from client name (filter: in_values) (comma-separated list) + */ + username_in_values?: string; + /** + * Username extracted from client name (filter: not_in_values) (comma-separated list) + */ + username_not_in_values?: string; + /** + * Node ID extracted from client name (filter: eq) + */ + node_id_eq?: string; + /** + * Node ID extracted from client name (filter: ne) + */ + node_id_ne?: string; + /** + * Node ID extracted from client name (filter: contains) + */ + node_id_contains?: string; + /** + * Node ID extracted from client name (filter: starts_with) + */ + node_id_starts_with?: string; + /** + * Node ID extracted from client name (filter: ends_with) + */ + node_id_ends_with?: string; + /** + * Node ID extracted from client name (filter: like) + */ + node_id_like?: string; + /** + * Node ID extracted from client name (filter: not_like) + */ + node_id_not_like?: string; + /** + * Node ID extracted from client name (filter: in_values) (comma-separated list) + */ + node_id_in_values?: string; + /** + * Node ID extracted from client name (filter: not_in_values) (comma-separated list) + */ + node_id_not_in_values?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: eq) + */ + classification_eq?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: ne) + */ + classification_ne?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: contains) + */ + classification_contains?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: starts_with) + */ + classification_starts_with?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: ends_with) + */ + classification_ends_with?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: like) + */ + classification_like?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: not_like) + */ + classification_not_like?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: in_values) (comma-separated list) + */ + classification_in_values?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: not_in_values) (comma-separated list) + */ + classification_not_in_values?: string; + /** + * Version of the client (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * Operating system of the client (filter: eq) + */ + meta_client_os_eq?: string; + /** + * Operating system of the client (filter: ne) + */ + meta_client_os_ne?: string; + /** + * Operating system of the client (filter: contains) + */ + meta_client_os_contains?: string; + /** + * Operating system of the client (filter: starts_with) + */ + meta_client_os_starts_with?: string; + /** + * Operating system of the client (filter: ends_with) + */ + meta_client_os_ends_with?: string; + /** + * Operating system of the client (filter: like) + */ + meta_client_os_like?: string; + /** + * Operating system of the client (filter: not_like) + */ + meta_client_os_not_like?: string; + /** + * Operating system of the client (filter: in_values) (comma-separated list) + */ + meta_client_os_in_values?: string; + /** + * Operating system of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_os_not_in_values?: string; + /** + * City of the client (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Autonomous system number of the client (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * Implementation of the probed peer (filter: eq) + */ + meta_peer_implementation_eq?: string; + /** + * Implementation of the probed peer (filter: ne) + */ + meta_peer_implementation_ne?: string; + /** + * Implementation of the probed peer (filter: contains) + */ + meta_peer_implementation_contains?: string; + /** + * Implementation of the probed peer (filter: starts_with) + */ + meta_peer_implementation_starts_with?: string; + /** + * Implementation of the probed peer (filter: ends_with) + */ + meta_peer_implementation_ends_with?: string; + /** + * Implementation of the probed peer (filter: like) + */ + meta_peer_implementation_like?: string; + /** + * Implementation of the probed peer (filter: not_like) + */ + meta_peer_implementation_not_like?: string; + /** + * Implementation of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_implementation_in_values?: string; + /** + * Implementation of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_implementation_not_in_values?: string; + /** + * Version of the probed peer (filter: eq) + */ + meta_peer_version_eq?: string; + /** + * Version of the probed peer (filter: ne) + */ + meta_peer_version_ne?: string; + /** + * Version of the probed peer (filter: contains) + */ + meta_peer_version_contains?: string; + /** + * Version of the probed peer (filter: starts_with) + */ + meta_peer_version_starts_with?: string; + /** + * Version of the probed peer (filter: ends_with) + */ + meta_peer_version_ends_with?: string; + /** + * Version of the probed peer (filter: like) + */ + meta_peer_version_like?: string; + /** + * Version of the probed peer (filter: not_like) + */ + meta_peer_version_not_like?: string; + /** + * Version of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_version_in_values?: string; + /** + * Version of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_version_not_in_values?: string; + /** + * Platform of the probed peer (filter: eq) + */ + meta_peer_platform_eq?: string; + /** + * Platform of the probed peer (filter: ne) + */ + meta_peer_platform_ne?: string; + /** + * Platform of the probed peer (filter: contains) + */ + meta_peer_platform_contains?: string; + /** + * Platform of the probed peer (filter: starts_with) + */ + meta_peer_platform_starts_with?: string; + /** + * Platform of the probed peer (filter: ends_with) + */ + meta_peer_platform_ends_with?: string; + /** + * Platform of the probed peer (filter: like) + */ + meta_peer_platform_like?: string; + /** + * Platform of the probed peer (filter: not_like) + */ + meta_peer_platform_not_like?: string; + /** + * Platform of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_platform_in_values?: string; + /** + * Platform of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_platform_not_in_values?: string; + /** + * City of the probed peer (filter: eq) + */ + meta_peer_geo_city_eq?: string; + /** + * City of the probed peer (filter: ne) + */ + meta_peer_geo_city_ne?: string; + /** + * City of the probed peer (filter: contains) + */ + meta_peer_geo_city_contains?: string; + /** + * City of the probed peer (filter: starts_with) + */ + meta_peer_geo_city_starts_with?: string; + /** + * City of the probed peer (filter: ends_with) + */ + meta_peer_geo_city_ends_with?: string; + /** + * City of the probed peer (filter: like) + */ + meta_peer_geo_city_like?: string; + /** + * City of the probed peer (filter: not_like) + */ + meta_peer_geo_city_not_like?: string; + /** + * City of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_geo_city_in_values?: string; + /** + * City of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_geo_city_not_in_values?: string; + /** + * Country of the probed peer (filter: eq) + */ + meta_peer_geo_country_eq?: string; + /** + * Country of the probed peer (filter: ne) + */ + meta_peer_geo_country_ne?: string; + /** + * Country of the probed peer (filter: contains) + */ + meta_peer_geo_country_contains?: string; + /** + * Country of the probed peer (filter: starts_with) + */ + meta_peer_geo_country_starts_with?: string; + /** + * Country of the probed peer (filter: ends_with) + */ + meta_peer_geo_country_ends_with?: string; + /** + * Country of the probed peer (filter: like) + */ + meta_peer_geo_country_like?: string; + /** + * Country of the probed peer (filter: not_like) + */ + meta_peer_geo_country_not_like?: string; + /** + * Country of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_geo_country_in_values?: string; + /** + * Country of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_geo_country_not_in_values?: string; + /** + * Country code of the probed peer (filter: eq) + */ + meta_peer_geo_country_code_eq?: string; + /** + * Country code of the probed peer (filter: ne) + */ + meta_peer_geo_country_code_ne?: string; + /** + * Country code of the probed peer (filter: contains) + */ + meta_peer_geo_country_code_contains?: string; + /** + * Country code of the probed peer (filter: starts_with) + */ + meta_peer_geo_country_code_starts_with?: string; + /** + * Country code of the probed peer (filter: ends_with) + */ + meta_peer_geo_country_code_ends_with?: string; + /** + * Country code of the probed peer (filter: like) + */ + meta_peer_geo_country_code_like?: string; + /** + * Country code of the probed peer (filter: not_like) + */ + meta_peer_geo_country_code_not_like?: string; + /** + * Country code of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_geo_country_code_in_values?: string; + /** + * Country code of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_geo_country_code_not_in_values?: string; + /** + * Continent code of the probed peer (filter: eq) + */ + meta_peer_geo_continent_code_eq?: string; + /** + * Continent code of the probed peer (filter: ne) + */ + meta_peer_geo_continent_code_ne?: string; + /** + * Continent code of the probed peer (filter: contains) + */ + meta_peer_geo_continent_code_contains?: string; + /** + * Continent code of the probed peer (filter: starts_with) + */ + meta_peer_geo_continent_code_starts_with?: string; + /** + * Continent code of the probed peer (filter: ends_with) + */ + meta_peer_geo_continent_code_ends_with?: string; + /** + * Continent code of the probed peer (filter: like) + */ + meta_peer_geo_continent_code_like?: string; + /** + * Continent code of the probed peer (filter: not_like) + */ + meta_peer_geo_continent_code_not_like?: string; + /** + * Continent code of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_geo_continent_code_in_values?: string; + /** + * Continent code of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_geo_continent_code_not_in_values?: string; + /** + * Filter meta_peer_geo_longitude using value + */ + meta_peer_geo_longitude_value?: number; + /** + * Filter meta_peer_geo_latitude using value + */ + meta_peer_geo_latitude_value?: number; + /** + * Autonomous system number of the probed peer (filter: eq) + */ + meta_peer_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the probed peer (filter: ne) + */ + meta_peer_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the probed peer (filter: lt) + */ + meta_peer_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the probed peer (filter: lte) + */ + meta_peer_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the probed peer (filter: gt) + */ + meta_peer_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the probed peer (filter: gte) + */ + meta_peer_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the probed peer (filter: between_min) + */ + meta_peer_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the probed peer (filter: between_max_value) + */ + meta_peer_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the probed peer (filter: eq) + */ + meta_peer_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the probed peer (filter: ne) + */ + meta_peer_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the probed peer (filter: contains) + */ + meta_peer_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the probed peer (filter: starts_with) + */ + meta_peer_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the probed peer (filter: ends_with) + */ + meta_peer_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the probed peer (filter: like) + */ + meta_peer_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the probed peer (filter: not_like) + */ + meta_peer_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_geo_autonomous_system_organization_not_in_values?: string; + /** + * The maximum number of int_custody_probe to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntCustodyProbe` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_custody_probe'; +}; + +export type IntCustodyProbeServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntCustodyProbeServiceListError = IntCustodyProbeServiceListErrors[keyof IntCustodyProbeServiceListErrors]; + +export type IntCustodyProbeServiceListResponses = { + /** + * OK + */ + 200: ListIntCustodyProbeResponse; +}; + +export type IntCustodyProbeServiceListResponse = + IntCustodyProbeServiceListResponses[keyof IntCustodyProbeServiceListResponses]; + +export type IntCustodyProbeServiceGetData = { + body?: never; + path: { + /** + * Earliest event time for this probe batch + */ + probe_date_time: number; + }; + query?: never; + url: '/api/v1/int_custody_probe/{probe_date_time}'; +}; + +export type IntCustodyProbeServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntCustodyProbeServiceGetError = IntCustodyProbeServiceGetErrors[keyof IntCustodyProbeServiceGetErrors]; + +export type IntCustodyProbeServiceGetResponses = { + /** + * OK + */ + 200: GetIntCustodyProbeResponse; +}; + +export type IntCustodyProbeServiceGetResponse = + IntCustodyProbeServiceGetResponses[keyof IntCustodyProbeServiceGetResponses]; + +export type IntCustodyProbeOrderBySlotServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Start date time of the slot (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * Start date time of the slot (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * Start date time of the slot (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * Start date time of the slot (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * Start date time of the slot (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * Start date time of the slot (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * Start date time of the slot (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * Start date time of the slot (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * Start date time of the slot (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * Start date time of the slot (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Slot number (filter: eq) + */ + slot_eq?: number; + /** + * Slot number (filter: ne) + */ + slot_ne?: number; + /** + * Slot number (filter: lt) + */ + slot_lt?: number; + /** + * Slot number (filter: lte) + */ + slot_lte?: number; + /** + * Slot number (filter: gt) + */ + slot_gt?: number; + /** + * Slot number (filter: gte) + */ + slot_gte?: number; + /** + * Slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Unique key associated with the identifier of the peer (filter: eq) + */ + peer_id_unique_key_eq?: number; + /** + * Unique key associated with the identifier of the peer (filter: ne) + */ + peer_id_unique_key_ne?: number; + /** + * Unique key associated with the identifier of the peer (filter: lt) + */ + peer_id_unique_key_lt?: number; + /** + * Unique key associated with the identifier of the peer (filter: lte) + */ + peer_id_unique_key_lte?: number; + /** + * Unique key associated with the identifier of the peer (filter: gt) + */ + peer_id_unique_key_gt?: number; + /** + * Unique key associated with the identifier of the peer (filter: gte) + */ + peer_id_unique_key_gte?: number; + /** + * Unique key associated with the identifier of the peer (filter: between_min) + */ + peer_id_unique_key_between_min?: number; + /** + * Unique key associated with the identifier of the peer (filter: between_max_value) + */ + peer_id_unique_key_between_max_value?: number; + /** + * Unique key associated with the identifier of the peer (filter: in_values) (comma-separated list) + */ + peer_id_unique_key_in_values?: string; + /** + * Unique key associated with the identifier of the peer (filter: not_in_values) (comma-separated list) + */ + peer_id_unique_key_not_in_values?: string; + /** + * Result of the probe (success, failure, missing) (filter: eq) + */ + result_eq?: string; + /** + * Result of the probe (success, failure, missing) (filter: ne) + */ + result_ne?: string; + /** + * Result of the probe (success, failure, missing) (filter: contains) + */ + result_contains?: string; + /** + * Result of the probe (success, failure, missing) (filter: starts_with) + */ + result_starts_with?: string; + /** + * Result of the probe (success, failure, missing) (filter: ends_with) + */ + result_ends_with?: string; + /** + * Result of the probe (success, failure, missing) (filter: like) + */ + result_like?: string; + /** + * Result of the probe (success, failure, missing) (filter: not_like) + */ + result_not_like?: string; + /** + * Result of the probe (success, failure, missing) (filter: in_values) (comma-separated list) + */ + result_in_values?: string; + /** + * Result of the probe (success, failure, missing) (filter: not_in_values) (comma-separated list) + */ + result_not_in_values?: string; + /** + * Error message if probe failed (filter: eq) + */ + error_eq?: string; + /** + * Error message if probe failed (filter: ne) + */ + error_ne?: string; + /** + * Error message if probe failed (filter: contains) + */ + error_contains?: string; + /** + * Error message if probe failed (filter: starts_with) + */ + error_starts_with?: string; + /** + * Error message if probe failed (filter: ends_with) + */ + error_ends_with?: string; + /** + * Error message if probe failed (filter: like) + */ + error_like?: string; + /** + * Error message if probe failed (filter: not_like) + */ + error_not_like?: string; + /** + * Error message if probe failed (filter: in_values) (comma-separated list) + */ + error_in_values?: string; + /** + * Error message if probe failed (filter: not_in_values) (comma-separated list) + */ + error_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Earliest event time for this probe batch (filter: eq) + */ + probe_date_time_eq?: number; + /** + * Earliest event time for this probe batch (filter: ne) + */ + probe_date_time_ne?: number; + /** + * Earliest event time for this probe batch (filter: lt) + */ + probe_date_time_lt?: number; + /** + * Earliest event time for this probe batch (filter: lte) + */ + probe_date_time_lte?: number; + /** + * Earliest event time for this probe batch (filter: gt) + */ + probe_date_time_gt?: number; + /** + * Earliest event time for this probe batch (filter: gte) + */ + probe_date_time_gte?: number; + /** + * Earliest event time for this probe batch (filter: between_min) + */ + probe_date_time_between_min?: number; + /** + * Earliest event time for this probe batch (filter: between_max_value) + */ + probe_date_time_between_max_value?: number; + /** + * Earliest event time for this probe batch (filter: in_values) (comma-separated list) + */ + probe_date_time_in_values?: string; + /** + * Earliest event time for this probe batch (filter: not_in_values) (comma-separated list) + */ + probe_date_time_not_in_values?: string; + /** + * Array of column indices probed (filter: has) + */ + column_indices_has?: number; + /** + * Array of column indices probed (filter: has_all_values) + */ + column_indices_has_all_values?: Array; + /** + * Array of column indices probed (filter: has_any_values) + */ + column_indices_has_any_values?: Array; + /** + * Array of column indices probed (filter: length_eq) + */ + column_indices_length_eq?: number; + /** + * Array of column indices probed (filter: length_gt) + */ + column_indices_length_gt?: number; + /** + * Array of column indices probed (filter: length_gte) + */ + column_indices_length_gte?: number; + /** + * Array of column indices probed (filter: length_lt) + */ + column_indices_length_lt?: number; + /** + * Array of column indices probed (filter: length_lte) + */ + column_indices_length_lte?: number; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: has) + */ + blob_submitters_has?: string; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: has_all_values) + */ + blob_submitters_has_all_values?: Array; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: has_any_values) + */ + blob_submitters_has_any_values?: Array; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: length_eq) + */ + blob_submitters_length_eq?: number; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: length_gt) + */ + blob_submitters_length_gt?: number; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: length_gte) + */ + blob_submitters_length_gte?: number; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: length_lt) + */ + blob_submitters_length_lt?: number; + /** + * Array of blob submitter names for this slot (Unknown if not found) (filter: length_lte) + */ + blob_submitters_length_lte?: number; + /** + * Response time in milliseconds (filter: eq) + */ + response_time_ms_eq?: number; + /** + * Response time in milliseconds (filter: ne) + */ + response_time_ms_ne?: number; + /** + * Response time in milliseconds (filter: lt) + */ + response_time_ms_lt?: number; + /** + * Response time in milliseconds (filter: lte) + */ + response_time_ms_lte?: number; + /** + * Response time in milliseconds (filter: gt) + */ + response_time_ms_gt?: number; + /** + * Response time in milliseconds (filter: gte) + */ + response_time_ms_gte?: number; + /** + * Response time in milliseconds (filter: between_min) + */ + response_time_ms_between_min?: number; + /** + * Response time in milliseconds (filter: between_max_value) + */ + response_time_ms_between_max_value?: number; + /** + * Response time in milliseconds (filter: in_values) (comma-separated list) + */ + response_time_ms_in_values?: string; + /** + * Response time in milliseconds (filter: not_in_values) (comma-separated list) + */ + response_time_ms_not_in_values?: string; + /** + * Username extracted from client name (filter: eq) + */ + username_eq?: string; + /** + * Username extracted from client name (filter: ne) + */ + username_ne?: string; + /** + * Username extracted from client name (filter: contains) + */ + username_contains?: string; + /** + * Username extracted from client name (filter: starts_with) + */ + username_starts_with?: string; + /** + * Username extracted from client name (filter: ends_with) + */ + username_ends_with?: string; + /** + * Username extracted from client name (filter: like) + */ + username_like?: string; + /** + * Username extracted from client name (filter: not_like) + */ + username_not_like?: string; + /** + * Username extracted from client name (filter: in_values) (comma-separated list) + */ + username_in_values?: string; + /** + * Username extracted from client name (filter: not_in_values) (comma-separated list) + */ + username_not_in_values?: string; + /** + * Node ID extracted from client name (filter: eq) + */ + node_id_eq?: string; + /** + * Node ID extracted from client name (filter: ne) + */ + node_id_ne?: string; + /** + * Node ID extracted from client name (filter: contains) + */ + node_id_contains?: string; + /** + * Node ID extracted from client name (filter: starts_with) + */ + node_id_starts_with?: string; + /** + * Node ID extracted from client name (filter: ends_with) + */ + node_id_ends_with?: string; + /** + * Node ID extracted from client name (filter: like) + */ + node_id_like?: string; + /** + * Node ID extracted from client name (filter: not_like) + */ + node_id_not_like?: string; + /** + * Node ID extracted from client name (filter: in_values) (comma-separated list) + */ + node_id_in_values?: string; + /** + * Node ID extracted from client name (filter: not_in_values) (comma-separated list) + */ + node_id_not_in_values?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: eq) + */ + classification_eq?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: ne) + */ + classification_ne?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: contains) + */ + classification_contains?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: starts_with) + */ + classification_starts_with?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: ends_with) + */ + classification_ends_with?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: like) + */ + classification_like?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: not_like) + */ + classification_not_like?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: in_values) (comma-separated list) + */ + classification_in_values?: string; + /** + * Classification of client (individual, corporate, internal, unclassified) (filter: not_in_values) (comma-separated list) + */ + classification_not_in_values?: string; + /** + * Version of the client (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * Implementation of the client (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * Operating system of the client (filter: eq) + */ + meta_client_os_eq?: string; + /** + * Operating system of the client (filter: ne) + */ + meta_client_os_ne?: string; + /** + * Operating system of the client (filter: contains) + */ + meta_client_os_contains?: string; + /** + * Operating system of the client (filter: starts_with) + */ + meta_client_os_starts_with?: string; + /** + * Operating system of the client (filter: ends_with) + */ + meta_client_os_ends_with?: string; + /** + * Operating system of the client (filter: like) + */ + meta_client_os_like?: string; + /** + * Operating system of the client (filter: not_like) + */ + meta_client_os_not_like?: string; + /** + * Operating system of the client (filter: in_values) (comma-separated list) + */ + meta_client_os_in_values?: string; + /** + * Operating system of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_os_not_in_values?: string; + /** + * City of the client (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Autonomous system number of the client (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * Implementation of the probed peer (filter: eq) + */ + meta_peer_implementation_eq?: string; + /** + * Implementation of the probed peer (filter: ne) + */ + meta_peer_implementation_ne?: string; + /** + * Implementation of the probed peer (filter: contains) + */ + meta_peer_implementation_contains?: string; + /** + * Implementation of the probed peer (filter: starts_with) + */ + meta_peer_implementation_starts_with?: string; + /** + * Implementation of the probed peer (filter: ends_with) + */ + meta_peer_implementation_ends_with?: string; + /** + * Implementation of the probed peer (filter: like) + */ + meta_peer_implementation_like?: string; + /** + * Implementation of the probed peer (filter: not_like) + */ + meta_peer_implementation_not_like?: string; + /** + * Implementation of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_implementation_in_values?: string; + /** + * Implementation of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_implementation_not_in_values?: string; + /** + * Version of the probed peer (filter: eq) + */ + meta_peer_version_eq?: string; + /** + * Version of the probed peer (filter: ne) + */ + meta_peer_version_ne?: string; + /** + * Version of the probed peer (filter: contains) + */ + meta_peer_version_contains?: string; + /** + * Version of the probed peer (filter: starts_with) + */ + meta_peer_version_starts_with?: string; + /** + * Version of the probed peer (filter: ends_with) + */ + meta_peer_version_ends_with?: string; + /** + * Version of the probed peer (filter: like) + */ + meta_peer_version_like?: string; + /** + * Version of the probed peer (filter: not_like) + */ + meta_peer_version_not_like?: string; + /** + * Version of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_version_in_values?: string; + /** + * Version of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_version_not_in_values?: string; + /** + * Platform of the probed peer (filter: eq) + */ + meta_peer_platform_eq?: string; + /** + * Platform of the probed peer (filter: ne) + */ + meta_peer_platform_ne?: string; + /** + * Platform of the probed peer (filter: contains) + */ + meta_peer_platform_contains?: string; + /** + * Platform of the probed peer (filter: starts_with) + */ + meta_peer_platform_starts_with?: string; + /** + * Platform of the probed peer (filter: ends_with) + */ + meta_peer_platform_ends_with?: string; + /** + * Platform of the probed peer (filter: like) + */ + meta_peer_platform_like?: string; + /** + * Platform of the probed peer (filter: not_like) + */ + meta_peer_platform_not_like?: string; + /** + * Platform of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_platform_in_values?: string; + /** + * Platform of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_platform_not_in_values?: string; + /** + * City of the probed peer (filter: eq) + */ + meta_peer_geo_city_eq?: string; + /** + * City of the probed peer (filter: ne) + */ + meta_peer_geo_city_ne?: string; + /** + * City of the probed peer (filter: contains) + */ + meta_peer_geo_city_contains?: string; + /** + * City of the probed peer (filter: starts_with) + */ + meta_peer_geo_city_starts_with?: string; + /** + * City of the probed peer (filter: ends_with) + */ + meta_peer_geo_city_ends_with?: string; + /** + * City of the probed peer (filter: like) + */ + meta_peer_geo_city_like?: string; + /** + * City of the probed peer (filter: not_like) + */ + meta_peer_geo_city_not_like?: string; + /** + * City of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_geo_city_in_values?: string; + /** + * City of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_geo_city_not_in_values?: string; + /** + * Country of the probed peer (filter: eq) + */ + meta_peer_geo_country_eq?: string; + /** + * Country of the probed peer (filter: ne) + */ + meta_peer_geo_country_ne?: string; + /** + * Country of the probed peer (filter: contains) + */ + meta_peer_geo_country_contains?: string; + /** + * Country of the probed peer (filter: starts_with) + */ + meta_peer_geo_country_starts_with?: string; + /** + * Country of the probed peer (filter: ends_with) + */ + meta_peer_geo_country_ends_with?: string; + /** + * Country of the probed peer (filter: like) + */ + meta_peer_geo_country_like?: string; + /** + * Country of the probed peer (filter: not_like) + */ + meta_peer_geo_country_not_like?: string; + /** + * Country of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_geo_country_in_values?: string; + /** + * Country of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_geo_country_not_in_values?: string; + /** + * Country code of the probed peer (filter: eq) + */ + meta_peer_geo_country_code_eq?: string; + /** + * Country code of the probed peer (filter: ne) + */ + meta_peer_geo_country_code_ne?: string; + /** + * Country code of the probed peer (filter: contains) + */ + meta_peer_geo_country_code_contains?: string; + /** + * Country code of the probed peer (filter: starts_with) + */ + meta_peer_geo_country_code_starts_with?: string; + /** + * Country code of the probed peer (filter: ends_with) + */ + meta_peer_geo_country_code_ends_with?: string; + /** + * Country code of the probed peer (filter: like) + */ + meta_peer_geo_country_code_like?: string; + /** + * Country code of the probed peer (filter: not_like) + */ + meta_peer_geo_country_code_not_like?: string; + /** + * Country code of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_geo_country_code_in_values?: string; + /** + * Country code of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_geo_country_code_not_in_values?: string; + /** + * Continent code of the probed peer (filter: eq) + */ + meta_peer_geo_continent_code_eq?: string; + /** + * Continent code of the probed peer (filter: ne) + */ + meta_peer_geo_continent_code_ne?: string; + /** + * Continent code of the probed peer (filter: contains) + */ + meta_peer_geo_continent_code_contains?: string; + /** + * Continent code of the probed peer (filter: starts_with) + */ + meta_peer_geo_continent_code_starts_with?: string; + /** + * Continent code of the probed peer (filter: ends_with) + */ + meta_peer_geo_continent_code_ends_with?: string; + /** + * Continent code of the probed peer (filter: like) + */ + meta_peer_geo_continent_code_like?: string; + /** + * Continent code of the probed peer (filter: not_like) + */ + meta_peer_geo_continent_code_not_like?: string; + /** + * Continent code of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_geo_continent_code_in_values?: string; + /** + * Continent code of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_geo_continent_code_not_in_values?: string; + /** + * Filter meta_peer_geo_longitude using value + */ + meta_peer_geo_longitude_value?: number; + /** + * Filter meta_peer_geo_latitude using value + */ + meta_peer_geo_latitude_value?: number; + /** + * Autonomous system number of the probed peer (filter: eq) + */ + meta_peer_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the probed peer (filter: ne) + */ + meta_peer_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the probed peer (filter: lt) + */ + meta_peer_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the probed peer (filter: lte) + */ + meta_peer_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the probed peer (filter: gt) + */ + meta_peer_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the probed peer (filter: gte) + */ + meta_peer_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the probed peer (filter: between_min) + */ + meta_peer_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the probed peer (filter: between_max_value) + */ + meta_peer_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the probed peer (filter: eq) + */ + meta_peer_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the probed peer (filter: ne) + */ + meta_peer_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the probed peer (filter: contains) + */ + meta_peer_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the probed peer (filter: starts_with) + */ + meta_peer_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the probed peer (filter: ends_with) + */ + meta_peer_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the probed peer (filter: like) + */ + meta_peer_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the probed peer (filter: not_like) + */ + meta_peer_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the probed peer (filter: in_values) (comma-separated list) + */ + meta_peer_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the probed peer (filter: not_in_values) (comma-separated list) + */ + meta_peer_geo_autonomous_system_organization_not_in_values?: string; + /** + * The maximum number of int_custody_probe_order_by_slot to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntCustodyProbeOrderBySlot` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_custody_probe_order_by_slot'; +}; + +export type IntCustodyProbeOrderBySlotServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntCustodyProbeOrderBySlotServiceListError = + IntCustodyProbeOrderBySlotServiceListErrors[keyof IntCustodyProbeOrderBySlotServiceListErrors]; + +export type IntCustodyProbeOrderBySlotServiceListResponses = { + /** + * OK + */ + 200: ListIntCustodyProbeOrderBySlotResponse; +}; + +export type IntCustodyProbeOrderBySlotServiceListResponse = + IntCustodyProbeOrderBySlotServiceListResponses[keyof IntCustodyProbeOrderBySlotServiceListResponses]; + +export type IntCustodyProbeOrderBySlotServiceGetData = { + body?: never; + path: { + /** + * Start date time of the slot + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_custody_probe_order_by_slot/{slot_start_date_time}'; +}; + +export type IntCustodyProbeOrderBySlotServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntCustodyProbeOrderBySlotServiceGetError = + IntCustodyProbeOrderBySlotServiceGetErrors[keyof IntCustodyProbeOrderBySlotServiceGetErrors]; + +export type IntCustodyProbeOrderBySlotServiceGetResponses = { + /** + * OK + */ + 200: GetIntCustodyProbeOrderBySlotResponse; +}; + +export type IntCustodyProbeOrderBySlotServiceGetResponse = + IntCustodyProbeOrderBySlotServiceGetResponses[keyof IntCustodyProbeOrderBySlotServiceGetResponses]; + +export type IntEngineGetBlobsServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) + */ + block_root_eq?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) + */ + block_root_ne?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) + */ + block_root_contains?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: like) + */ + block_root_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) + */ + block_root_not_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Name of the client that generated the event (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client that generated the event (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client that generated the event (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client that generated the event (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client that generated the event (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client that generated the event (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client that generated the event (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * When the sentry received the event (filter: eq) + */ + event_date_time_eq?: number; + /** + * When the sentry received the event (filter: ne) + */ + event_date_time_ne?: number; + /** + * When the sentry received the event (filter: lt) + */ + event_date_time_lt?: number; + /** + * When the sentry received the event (filter: lte) + */ + event_date_time_lte?: number; + /** + * When the sentry received the event (filter: gt) + */ + event_date_time_gt?: number; + /** + * When the sentry received the event (filter: gte) + */ + event_date_time_gte?: number; + /** + * When the sentry received the event (filter: between_min) + */ + event_date_time_between_min?: number; + /** + * When the sentry received the event (filter: between_max_value) + */ + event_date_time_between_max_value?: number; + /** + * When the sentry received the event (filter: in_values) (comma-separated list) + */ + event_date_time_in_values?: string; + /** + * When the sentry received the event (filter: not_in_values) (comma-separated list) + */ + event_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * When the engine_getBlobs call was initiated (filter: eq) + */ + requested_date_time_eq?: number; + /** + * When the engine_getBlobs call was initiated (filter: ne) + */ + requested_date_time_ne?: number; + /** + * When the engine_getBlobs call was initiated (filter: lt) + */ + requested_date_time_lt?: number; + /** + * When the engine_getBlobs call was initiated (filter: lte) + */ + requested_date_time_lte?: number; + /** + * When the engine_getBlobs call was initiated (filter: gt) + */ + requested_date_time_gt?: number; + /** + * When the engine_getBlobs call was initiated (filter: gte) + */ + requested_date_time_gte?: number; + /** + * When the engine_getBlobs call was initiated (filter: between_min) + */ + requested_date_time_between_min?: number; + /** + * When the engine_getBlobs call was initiated (filter: between_max_value) + */ + requested_date_time_between_max_value?: number; + /** + * When the engine_getBlobs call was initiated (filter: in_values) (comma-separated list) + */ + requested_date_time_in_values?: string; + /** + * When the engine_getBlobs call was initiated (filter: not_in_values) (comma-separated list) + */ + requested_date_time_not_in_values?: string; + /** + * How long the engine_getBlobs call took in milliseconds (filter: eq) + */ + duration_ms_eq?: number; + /** + * How long the engine_getBlobs call took in milliseconds (filter: ne) + */ + duration_ms_ne?: number; + /** + * How long the engine_getBlobs call took in milliseconds (filter: lt) + */ + duration_ms_lt?: number; + /** + * How long the engine_getBlobs call took in milliseconds (filter: lte) + */ + duration_ms_lte?: number; + /** + * How long the engine_getBlobs call took in milliseconds (filter: gt) + */ + duration_ms_gt?: number; + /** + * How long the engine_getBlobs call took in milliseconds (filter: gte) + */ + duration_ms_gte?: number; + /** + * How long the engine_getBlobs call took in milliseconds (filter: between_min) + */ + duration_ms_between_min?: number; + /** + * How long the engine_getBlobs call took in milliseconds (filter: between_max_value) + */ + duration_ms_between_max_value?: number; + /** + * How long the engine_getBlobs call took in milliseconds (filter: in_values) (comma-separated list) + */ + duration_ms_in_values?: string; + /** + * How long the engine_getBlobs call took in milliseconds (filter: not_in_values) (comma-separated list) + */ + duration_ms_not_in_values?: string; + /** + * Slot number of the beacon block containing the blobs (filter: eq) + */ + slot_eq?: number; + /** + * Slot number of the beacon block containing the blobs (filter: ne) + */ + slot_ne?: number; + /** + * Slot number of the beacon block containing the blobs (filter: lt) + */ + slot_lt?: number; + /** + * Slot number of the beacon block containing the blobs (filter: lte) + */ + slot_lte?: number; + /** + * Slot number of the beacon block containing the blobs (filter: gt) + */ + slot_gt?: number; + /** + * Slot number of the beacon block containing the blobs (filter: gte) + */ + slot_gte?: number; + /** + * Slot number of the beacon block containing the blobs (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number of the beacon block containing the blobs (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number of the beacon block containing the blobs (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number of the beacon block containing the blobs (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: eq) + */ + block_parent_root_eq?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: ne) + */ + block_parent_root_ne?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: contains) + */ + block_parent_root_contains?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: starts_with) + */ + block_parent_root_starts_with?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: ends_with) + */ + block_parent_root_ends_with?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: like) + */ + block_parent_root_like?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: not_like) + */ + block_parent_root_not_like?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_parent_root_in_values?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_parent_root_not_in_values?: string; + /** + * Validator index of the block proposer (filter: eq) + */ + proposer_index_eq?: number; + /** + * Validator index of the block proposer (filter: ne) + */ + proposer_index_ne?: number; + /** + * Validator index of the block proposer (filter: lt) + */ + proposer_index_lt?: number; + /** + * Validator index of the block proposer (filter: lte) + */ + proposer_index_lte?: number; + /** + * Validator index of the block proposer (filter: gt) + */ + proposer_index_gt?: number; + /** + * Validator index of the block proposer (filter: gte) + */ + proposer_index_gte?: number; + /** + * Validator index of the block proposer (filter: between_min) + */ + proposer_index_between_min?: number; + /** + * Validator index of the block proposer (filter: between_max_value) + */ + proposer_index_between_max_value?: number; + /** + * Validator index of the block proposer (filter: in_values) (comma-separated list) + */ + proposer_index_in_values?: string; + /** + * Validator index of the block proposer (filter: not_in_values) (comma-separated list) + */ + proposer_index_not_in_values?: string; + /** + * Number of blobs requested (length of versioned_hashes array) (filter: eq) + */ + requested_count_eq?: number; + /** + * Number of blobs requested (length of versioned_hashes array) (filter: ne) + */ + requested_count_ne?: number; + /** + * Number of blobs requested (length of versioned_hashes array) (filter: lt) + */ + requested_count_lt?: number; + /** + * Number of blobs requested (length of versioned_hashes array) (filter: lte) + */ + requested_count_lte?: number; + /** + * Number of blobs requested (length of versioned_hashes array) (filter: gt) + */ + requested_count_gt?: number; + /** + * Number of blobs requested (length of versioned_hashes array) (filter: gte) + */ + requested_count_gte?: number; + /** + * Number of blobs requested (length of versioned_hashes array) (filter: between_min) + */ + requested_count_between_min?: number; + /** + * Number of blobs requested (length of versioned_hashes array) (filter: between_max_value) + */ + requested_count_between_max_value?: number; + /** + * Number of blobs requested (length of versioned_hashes array) (filter: in_values) (comma-separated list) + */ + requested_count_in_values?: string; + /** + * Number of blobs requested (length of versioned_hashes array) (filter: not_in_values) (comma-separated list) + */ + requested_count_not_in_values?: string; + /** + * Versioned hashes of the requested blobs (filter: has) + */ + versioned_hashes_has?: string; + /** + * Versioned hashes of the requested blobs (filter: has_all_values) + */ + versioned_hashes_has_all_values?: Array; + /** + * Versioned hashes of the requested blobs (filter: has_any_values) + */ + versioned_hashes_has_any_values?: Array; + /** + * Versioned hashes of the requested blobs (filter: length_eq) + */ + versioned_hashes_length_eq?: number; + /** + * Versioned hashes of the requested blobs (filter: length_gt) + */ + versioned_hashes_length_gt?: number; + /** + * Versioned hashes of the requested blobs (filter: length_gte) + */ + versioned_hashes_length_gte?: number; + /** + * Versioned hashes of the requested blobs (filter: length_lt) + */ + versioned_hashes_length_lt?: number; + /** + * Versioned hashes of the requested blobs (filter: length_lte) + */ + versioned_hashes_length_lte?: number; + /** + * Number of blobs actually returned (filter: eq) + */ + returned_count_eq?: number; + /** + * Number of blobs actually returned (filter: ne) + */ + returned_count_ne?: number; + /** + * Number of blobs actually returned (filter: lt) + */ + returned_count_lt?: number; + /** + * Number of blobs actually returned (filter: lte) + */ + returned_count_lte?: number; + /** + * Number of blobs actually returned (filter: gt) + */ + returned_count_gt?: number; + /** + * Number of blobs actually returned (filter: gte) + */ + returned_count_gte?: number; + /** + * Number of blobs actually returned (filter: between_min) + */ + returned_count_between_min?: number; + /** + * Number of blobs actually returned (filter: between_max_value) + */ + returned_count_between_max_value?: number; + /** + * Number of blobs actually returned (filter: in_values) (comma-separated list) + */ + returned_count_in_values?: string; + /** + * Number of blobs actually returned (filter: not_in_values) (comma-separated list) + */ + returned_count_not_in_values?: string; + /** + * Indexes of the returned blobs (filter: has) + */ + returned_blob_indexes_has?: number; + /** + * Indexes of the returned blobs (filter: has_all_values) + */ + returned_blob_indexes_has_all_values?: Array; + /** + * Indexes of the returned blobs (filter: has_any_values) + */ + returned_blob_indexes_has_any_values?: Array; + /** + * Indexes of the returned blobs (filter: length_eq) + */ + returned_blob_indexes_length_eq?: number; + /** + * Indexes of the returned blobs (filter: length_gt) + */ + returned_blob_indexes_length_gt?: number; + /** + * Indexes of the returned blobs (filter: length_gte) + */ + returned_blob_indexes_length_gte?: number; + /** + * Indexes of the returned blobs (filter: length_lt) + */ + returned_blob_indexes_length_lt?: number; + /** + * Indexes of the returned blobs (filter: length_lte) + */ + returned_blob_indexes_length_lte?: number; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: eq) + */ + status_eq?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: ne) + */ + status_ne?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: contains) + */ + status_contains?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: starts_with) + */ + status_starts_with?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: ends_with) + */ + status_ends_with?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: like) + */ + status_like?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: not_like) + */ + status_not_like?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Error message when the call fails (filter: eq) + */ + error_message_eq?: string; + /** + * Error message when the call fails (filter: ne) + */ + error_message_ne?: string; + /** + * Error message when the call fails (filter: contains) + */ + error_message_contains?: string; + /** + * Error message when the call fails (filter: starts_with) + */ + error_message_starts_with?: string; + /** + * Error message when the call fails (filter: ends_with) + */ + error_message_ends_with?: string; + /** + * Error message when the call fails (filter: like) + */ + error_message_like?: string; + /** + * Error message when the call fails (filter: not_like) + */ + error_message_not_like?: string; + /** + * Error message when the call fails (filter: in_values) (comma-separated list) + */ + error_message_in_values?: string; + /** + * Error message when the call fails (filter: not_in_values) (comma-separated list) + */ + error_message_not_in_values?: string; + /** + * Version of the engine_getBlobs method (filter: eq) + */ + method_version_eq?: string; + /** + * Version of the engine_getBlobs method (filter: ne) + */ + method_version_ne?: string; + /** + * Version of the engine_getBlobs method (filter: contains) + */ + method_version_contains?: string; + /** + * Version of the engine_getBlobs method (filter: starts_with) + */ + method_version_starts_with?: string; + /** + * Version of the engine_getBlobs method (filter: ends_with) + */ + method_version_ends_with?: string; + /** + * Version of the engine_getBlobs method (filter: like) + */ + method_version_like?: string; + /** + * Version of the engine_getBlobs method (filter: not_like) + */ + method_version_not_like?: string; + /** + * Version of the engine_getBlobs method (filter: in_values) (comma-separated list) + */ + method_version_in_values?: string; + /** + * Version of the engine_getBlobs method (filter: not_in_values) (comma-separated list) + */ + method_version_not_in_values?: string; + /** + * Source of the engine event (filter: eq) + */ + source_eq?: string; + /** + * Source of the engine event (filter: ne) + */ + source_ne?: string; + /** + * Source of the engine event (filter: contains) + */ + source_contains?: string; + /** + * Source of the engine event (filter: starts_with) + */ + source_starts_with?: string; + /** + * Source of the engine event (filter: ends_with) + */ + source_ends_with?: string; + /** + * Source of the engine event (filter: like) + */ + source_like?: string; + /** + * Source of the engine event (filter: not_like) + */ + source_not_like?: string; + /** + * Source of the engine event (filter: in_values) (comma-separated list) + */ + source_in_values?: string; + /** + * Source of the engine event (filter: not_in_values) (comma-separated list) + */ + source_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: eq) + */ + meta_execution_version_eq?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: ne) + */ + meta_execution_version_ne?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: contains) + */ + meta_execution_version_contains?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: starts_with) + */ + meta_execution_version_starts_with?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: ends_with) + */ + meta_execution_version_ends_with?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: like) + */ + meta_execution_version_like?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: not_like) + */ + meta_execution_version_not_like?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: in_values) (comma-separated list) + */ + meta_execution_version_in_values?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: not_in_values) (comma-separated list) + */ + meta_execution_version_not_in_values?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) + */ + meta_execution_implementation_eq?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) + */ + meta_execution_implementation_ne?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) + */ + meta_execution_implementation_contains?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) + */ + meta_execution_implementation_starts_with?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) + */ + meta_execution_implementation_ends_with?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: like) + */ + meta_execution_implementation_like?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) + */ + meta_execution_implementation_not_like?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) + */ + meta_execution_implementation_in_values?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) + */ + meta_execution_implementation_not_in_values?: string; + /** + * Implementation of the client that generated the event (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client that generated the event (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client that generated the event (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client that generated the event (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client that generated the event (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client that generated the event (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client that generated the event (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * Version of the client that generated the event (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client that generated the event (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client that generated the event (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client that generated the event (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client that generated the event (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client that generated the event (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client that generated the event (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * City of the client that generated the event (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client that generated the event (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client that generated the event (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client that generated the event (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client that generated the event (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client that generated the event (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client that generated the event (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client that generated the event (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client that generated the event (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client that generated the event (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client that generated the event (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client that generated the event (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client that generated the event (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client that generated the event (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client that generated the event (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client that generated the event (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client that generated the event (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client that generated the event (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client that generated the event (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client that generated the event (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client that generated the event (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client that generated the event (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client that generated the event (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client that generated the event (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client that generated the event (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client that generated the event (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client that generated the event (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client that generated the event (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Autonomous system number of the client that generated the event (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client that generated the event (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client that generated the event (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client that generated the event (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client that generated the event (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client that generated the event (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client that generated the event (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client that generated the event (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client that generated the event (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client that generated the event (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client that generated the event (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client that generated the event (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client that generated the event (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client that generated the event (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client that generated the event (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * The maximum number of int_engine_get_blobs to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntEngineGetBlobs` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_engine_get_blobs'; +}; + +export type IntEngineGetBlobsServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntEngineGetBlobsServiceListError = + IntEngineGetBlobsServiceListErrors[keyof IntEngineGetBlobsServiceListErrors]; + +export type IntEngineGetBlobsServiceListResponses = { + /** + * OK + */ + 200: ListIntEngineGetBlobsResponse; +}; + +export type IntEngineGetBlobsServiceListResponse = + IntEngineGetBlobsServiceListResponses[keyof IntEngineGetBlobsServiceListResponses]; + +export type IntEngineGetBlobsServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_engine_get_blobs/{slot_start_date_time}'; +}; + +export type IntEngineGetBlobsServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntEngineGetBlobsServiceGetError = + IntEngineGetBlobsServiceGetErrors[keyof IntEngineGetBlobsServiceGetErrors]; + +export type IntEngineGetBlobsServiceGetResponses = { + /** + * OK + */ + 200: GetIntEngineGetBlobsResponse; +}; + +export type IntEngineGetBlobsServiceGetResponse = + IntEngineGetBlobsServiceGetResponses[keyof IntEngineGetBlobsServiceGetResponses]; + +export type IntEngineNewPayloadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: eq) + */ + block_hash_eq?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: ne) + */ + block_hash_ne?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: contains) + */ + block_hash_contains?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: like) + */ + block_hash_like?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: not_like) + */ + block_hash_not_like?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * Name of the client that generated the event (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client that generated the event (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client that generated the event (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client that generated the event (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client that generated the event (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client that generated the event (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client that generated the event (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * When the sentry received the event (filter: eq) + */ + event_date_time_eq?: number; + /** + * When the sentry received the event (filter: ne) + */ + event_date_time_ne?: number; + /** + * When the sentry received the event (filter: lt) + */ + event_date_time_lt?: number; + /** + * When the sentry received the event (filter: lte) + */ + event_date_time_lte?: number; + /** + * When the sentry received the event (filter: gt) + */ + event_date_time_gt?: number; + /** + * When the sentry received the event (filter: gte) + */ + event_date_time_gte?: number; + /** + * When the sentry received the event (filter: between_min) + */ + event_date_time_between_min?: number; + /** + * When the sentry received the event (filter: between_max_value) + */ + event_date_time_between_max_value?: number; + /** + * When the sentry received the event (filter: in_values) (comma-separated list) + */ + event_date_time_in_values?: string; + /** + * When the sentry received the event (filter: not_in_values) (comma-separated list) + */ + event_date_time_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * When the engine_newPayload call was initiated (filter: eq) + */ + requested_date_time_eq?: number; + /** + * When the engine_newPayload call was initiated (filter: ne) + */ + requested_date_time_ne?: number; + /** + * When the engine_newPayload call was initiated (filter: lt) + */ + requested_date_time_lt?: number; + /** + * When the engine_newPayload call was initiated (filter: lte) + */ + requested_date_time_lte?: number; + /** + * When the engine_newPayload call was initiated (filter: gt) + */ + requested_date_time_gt?: number; + /** + * When the engine_newPayload call was initiated (filter: gte) + */ + requested_date_time_gte?: number; + /** + * When the engine_newPayload call was initiated (filter: between_min) + */ + requested_date_time_between_min?: number; + /** + * When the engine_newPayload call was initiated (filter: between_max_value) + */ + requested_date_time_between_max_value?: number; + /** + * When the engine_newPayload call was initiated (filter: in_values) (comma-separated list) + */ + requested_date_time_in_values?: string; + /** + * When the engine_newPayload call was initiated (filter: not_in_values) (comma-separated list) + */ + requested_date_time_not_in_values?: string; + /** + * How long the engine_newPayload call took in milliseconds (filter: eq) + */ + duration_ms_eq?: number; + /** + * How long the engine_newPayload call took in milliseconds (filter: ne) + */ + duration_ms_ne?: number; + /** + * How long the engine_newPayload call took in milliseconds (filter: lt) + */ + duration_ms_lt?: number; + /** + * How long the engine_newPayload call took in milliseconds (filter: lte) + */ + duration_ms_lte?: number; + /** + * How long the engine_newPayload call took in milliseconds (filter: gt) + */ + duration_ms_gt?: number; + /** + * How long the engine_newPayload call took in milliseconds (filter: gte) + */ + duration_ms_gte?: number; + /** + * How long the engine_newPayload call took in milliseconds (filter: between_min) + */ + duration_ms_between_min?: number; + /** + * How long the engine_newPayload call took in milliseconds (filter: between_max_value) + */ + duration_ms_between_max_value?: number; + /** + * How long the engine_newPayload call took in milliseconds (filter: in_values) (comma-separated list) + */ + duration_ms_in_values?: string; + /** + * How long the engine_newPayload call took in milliseconds (filter: not_in_values) (comma-separated list) + */ + duration_ms_not_in_values?: string; + /** + * Slot number of the beacon block containing the payload (filter: eq) + */ + slot_eq?: number; + /** + * Slot number of the beacon block containing the payload (filter: ne) + */ + slot_ne?: number; + /** + * Slot number of the beacon block containing the payload (filter: lt) + */ + slot_lt?: number; + /** + * Slot number of the beacon block containing the payload (filter: lte) + */ + slot_lte?: number; + /** + * Slot number of the beacon block containing the payload (filter: gt) + */ + slot_gt?: number; + /** + * Slot number of the beacon block containing the payload (filter: gte) + */ + slot_gte?: number; + /** + * Slot number of the beacon block containing the payload (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number of the beacon block containing the payload (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number of the beacon block containing the payload (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number of the beacon block containing the payload (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) + */ + block_root_eq?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) + */ + block_root_ne?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) + */ + block_root_contains?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: like) + */ + block_root_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) + */ + block_root_not_like?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Execution block number (filter: eq) + */ + block_number_eq?: number; + /** + * Execution block number (filter: ne) + */ + block_number_ne?: number; + /** + * Execution block number (filter: lt) + */ + block_number_lt?: number; + /** + * Execution block number (filter: lte) + */ + block_number_lte?: number; + /** + * Execution block number (filter: gt) + */ + block_number_gt?: number; + /** + * Execution block number (filter: gte) + */ + block_number_gte?: number; + /** + * Execution block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * Execution block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * Execution block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * Execution block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: eq) + */ + parent_block_root_eq?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: ne) + */ + parent_block_root_ne?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: contains) + */ + parent_block_root_contains?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: starts_with) + */ + parent_block_root_starts_with?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: ends_with) + */ + parent_block_root_ends_with?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: like) + */ + parent_block_root_like?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: not_like) + */ + parent_block_root_not_like?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + parent_block_root_in_values?: string; + /** + * Root of the parent beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + parent_block_root_not_in_values?: string; + /** + * Parent execution block hash (hex encoded with 0x prefix) (filter: eq) + */ + parent_hash_eq?: string; + /** + * Parent execution block hash (hex encoded with 0x prefix) (filter: ne) + */ + parent_hash_ne?: string; + /** + * Parent execution block hash (hex encoded with 0x prefix) (filter: contains) + */ + parent_hash_contains?: string; + /** + * Parent execution block hash (hex encoded with 0x prefix) (filter: starts_with) + */ + parent_hash_starts_with?: string; + /** + * Parent execution block hash (hex encoded with 0x prefix) (filter: ends_with) + */ + parent_hash_ends_with?: string; + /** + * Parent execution block hash (hex encoded with 0x prefix) (filter: like) + */ + parent_hash_like?: string; + /** + * Parent execution block hash (hex encoded with 0x prefix) (filter: not_like) + */ + parent_hash_not_like?: string; + /** + * Parent execution block hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + parent_hash_in_values?: string; + /** + * Parent execution block hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + parent_hash_not_in_values?: string; + /** + * Validator index of the block proposer (filter: eq) + */ + proposer_index_eq?: number; + /** + * Validator index of the block proposer (filter: ne) + */ + proposer_index_ne?: number; + /** + * Validator index of the block proposer (filter: lt) + */ + proposer_index_lt?: number; + /** + * Validator index of the block proposer (filter: lte) + */ + proposer_index_lte?: number; + /** + * Validator index of the block proposer (filter: gt) + */ + proposer_index_gt?: number; + /** + * Validator index of the block proposer (filter: gte) + */ + proposer_index_gte?: number; + /** + * Validator index of the block proposer (filter: between_min) + */ + proposer_index_between_min?: number; + /** + * Validator index of the block proposer (filter: between_max_value) + */ + proposer_index_between_max_value?: number; + /** + * Validator index of the block proposer (filter: in_values) (comma-separated list) + */ + proposer_index_in_values?: string; + /** + * Validator index of the block proposer (filter: not_in_values) (comma-separated list) + */ + proposer_index_not_in_values?: string; + /** + * Total gas used by all transactions in the block (filter: eq) + */ + gas_used_eq?: number; + /** + * Total gas used by all transactions in the block (filter: ne) + */ + gas_used_ne?: number; + /** + * Total gas used by all transactions in the block (filter: lt) + */ + gas_used_lt?: number; + /** + * Total gas used by all transactions in the block (filter: lte) + */ + gas_used_lte?: number; + /** + * Total gas used by all transactions in the block (filter: gt) + */ + gas_used_gt?: number; + /** + * Total gas used by all transactions in the block (filter: gte) + */ + gas_used_gte?: number; + /** + * Total gas used by all transactions in the block (filter: between_min) + */ + gas_used_between_min?: number; + /** + * Total gas used by all transactions in the block (filter: between_max_value) + */ + gas_used_between_max_value?: number; + /** + * Total gas used by all transactions in the block (filter: in_values) (comma-separated list) + */ + gas_used_in_values?: string; + /** + * Total gas used by all transactions in the block (filter: not_in_values) (comma-separated list) + */ + gas_used_not_in_values?: string; + /** + * Gas limit of the block (filter: eq) + */ + gas_limit_eq?: number; + /** + * Gas limit of the block (filter: ne) + */ + gas_limit_ne?: number; + /** + * Gas limit of the block (filter: lt) + */ + gas_limit_lt?: number; + /** + * Gas limit of the block (filter: lte) + */ + gas_limit_lte?: number; + /** + * Gas limit of the block (filter: gt) + */ + gas_limit_gt?: number; + /** + * Gas limit of the block (filter: gte) + */ + gas_limit_gte?: number; + /** + * Gas limit of the block (filter: between_min) + */ + gas_limit_between_min?: number; + /** + * Gas limit of the block (filter: between_max_value) + */ + gas_limit_between_max_value?: number; + /** + * Gas limit of the block (filter: in_values) (comma-separated list) + */ + gas_limit_in_values?: string; + /** + * Gas limit of the block (filter: not_in_values) (comma-separated list) + */ + gas_limit_not_in_values?: string; + /** + * Number of transactions in the block (filter: eq) + */ + tx_count_eq?: number; + /** + * Number of transactions in the block (filter: ne) + */ + tx_count_ne?: number; + /** + * Number of transactions in the block (filter: lt) + */ + tx_count_lt?: number; + /** + * Number of transactions in the block (filter: lte) + */ + tx_count_lte?: number; + /** + * Number of transactions in the block (filter: gt) + */ + tx_count_gt?: number; + /** + * Number of transactions in the block (filter: gte) + */ + tx_count_gte?: number; + /** + * Number of transactions in the block (filter: between_min) + */ + tx_count_between_min?: number; + /** + * Number of transactions in the block (filter: between_max_value) + */ + tx_count_between_max_value?: number; + /** + * Number of transactions in the block (filter: in_values) (comma-separated list) + */ + tx_count_in_values?: string; + /** + * Number of transactions in the block (filter: not_in_values) (comma-separated list) + */ + tx_count_not_in_values?: string; + /** + * Number of blobs in the block (filter: eq) + */ + blob_count_eq?: number; + /** + * Number of blobs in the block (filter: ne) + */ + blob_count_ne?: number; + /** + * Number of blobs in the block (filter: lt) + */ + blob_count_lt?: number; + /** + * Number of blobs in the block (filter: lte) + */ + blob_count_lte?: number; + /** + * Number of blobs in the block (filter: gt) + */ + blob_count_gt?: number; + /** + * Number of blobs in the block (filter: gte) + */ + blob_count_gte?: number; + /** + * Number of blobs in the block (filter: between_min) + */ + blob_count_between_min?: number; + /** + * Number of blobs in the block (filter: between_max_value) + */ + blob_count_between_max_value?: number; + /** + * Number of blobs in the block (filter: in_values) (comma-separated list) + */ + blob_count_in_values?: string; + /** + * Number of blobs in the block (filter: not_in_values) (comma-separated list) + */ + blob_count_not_in_values?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: eq) + */ + status_eq?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: ne) + */ + status_ne?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: contains) + */ + status_contains?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: starts_with) + */ + status_starts_with?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: ends_with) + */ + status_ends_with?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: like) + */ + status_like?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: not_like) + */ + status_not_like?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Error message when validation fails (filter: eq) + */ + validation_error_eq?: string; + /** + * Error message when validation fails (filter: ne) + */ + validation_error_ne?: string; + /** + * Error message when validation fails (filter: contains) + */ + validation_error_contains?: string; + /** + * Error message when validation fails (filter: starts_with) + */ + validation_error_starts_with?: string; + /** + * Error message when validation fails (filter: ends_with) + */ + validation_error_ends_with?: string; + /** + * Error message when validation fails (filter: like) + */ + validation_error_like?: string; + /** + * Error message when validation fails (filter: not_like) + */ + validation_error_not_like?: string; + /** + * Error message when validation fails (filter: in_values) (comma-separated list) + */ + validation_error_in_values?: string; + /** + * Error message when validation fails (filter: not_in_values) (comma-separated list) + */ + validation_error_not_in_values?: string; + /** + * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: eq) + */ + latest_valid_hash_eq?: string; + /** + * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: ne) + */ + latest_valid_hash_ne?: string; + /** + * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: contains) + */ + latest_valid_hash_contains?: string; + /** + * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: starts_with) + */ + latest_valid_hash_starts_with?: string; + /** + * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: ends_with) + */ + latest_valid_hash_ends_with?: string; + /** + * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: like) + */ + latest_valid_hash_like?: string; + /** + * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: not_like) + */ + latest_valid_hash_not_like?: string; + /** + * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + latest_valid_hash_in_values?: string; + /** + * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + latest_valid_hash_not_in_values?: string; + /** + * Version of the engine_newPayload method (e.g., V3, V4) (filter: eq) + */ + method_version_eq?: string; + /** + * Version of the engine_newPayload method (e.g., V3, V4) (filter: ne) + */ + method_version_ne?: string; + /** + * Version of the engine_newPayload method (e.g., V3, V4) (filter: contains) + */ + method_version_contains?: string; + /** + * Version of the engine_newPayload method (e.g., V3, V4) (filter: starts_with) + */ + method_version_starts_with?: string; + /** + * Version of the engine_newPayload method (e.g., V3, V4) (filter: ends_with) + */ + method_version_ends_with?: string; + /** + * Version of the engine_newPayload method (e.g., V3, V4) (filter: like) + */ + method_version_like?: string; + /** + * Version of the engine_newPayload method (e.g., V3, V4) (filter: not_like) + */ + method_version_not_like?: string; + /** + * Version of the engine_newPayload method (e.g., V3, V4) (filter: in_values) (comma-separated list) + */ + method_version_in_values?: string; + /** + * Version of the engine_newPayload method (e.g., V3, V4) (filter: not_in_values) (comma-separated list) + */ + method_version_not_in_values?: string; + /** + * The total bytes of the beacon block payload (filter: eq) + */ + block_total_bytes_eq?: number; + /** + * The total bytes of the beacon block payload (filter: ne) + */ + block_total_bytes_ne?: number; + /** + * The total bytes of the beacon block payload (filter: lt) + */ + block_total_bytes_lt?: number; + /** + * The total bytes of the beacon block payload (filter: lte) + */ + block_total_bytes_lte?: number; + /** + * The total bytes of the beacon block payload (filter: gt) + */ + block_total_bytes_gt?: number; + /** + * The total bytes of the beacon block payload (filter: gte) + */ + block_total_bytes_gte?: number; + /** + * The total bytes of the beacon block payload (filter: between_min) + */ + block_total_bytes_between_min?: number; + /** + * The total bytes of the beacon block payload (filter: between_max_value) + */ + block_total_bytes_between_max_value?: number; + /** + * The total bytes of the beacon block payload (filter: in_values) (comma-separated list) + */ + block_total_bytes_in_values?: string; + /** + * The total bytes of the beacon block payload (filter: not_in_values) (comma-separated list) + */ + block_total_bytes_not_in_values?: string; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: eq) + */ + block_total_bytes_compressed_eq?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: ne) + */ + block_total_bytes_compressed_ne?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: lt) + */ + block_total_bytes_compressed_lt?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: lte) + */ + block_total_bytes_compressed_lte?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: gt) + */ + block_total_bytes_compressed_gt?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: gte) + */ + block_total_bytes_compressed_gte?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: between_min) + */ + block_total_bytes_compressed_between_min?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: between_max_value) + */ + block_total_bytes_compressed_between_max_value?: number; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: in_values) (comma-separated list) + */ + block_total_bytes_compressed_in_values?: string; + /** + * The total bytes of the beacon block payload when compressed using snappy (filter: not_in_values) (comma-separated list) + */ + block_total_bytes_compressed_not_in_values?: string; + /** + * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: eq) + */ + block_version_eq?: string; + /** + * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: ne) + */ + block_version_ne?: string; + /** + * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: contains) + */ + block_version_contains?: string; + /** + * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: starts_with) + */ + block_version_starts_with?: string; + /** + * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: ends_with) + */ + block_version_ends_with?: string; + /** + * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: like) + */ + block_version_like?: string; + /** + * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: not_like) + */ + block_version_not_like?: string; + /** + * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: in_values) (comma-separated list) + */ + block_version_in_values?: string; + /** + * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: not_in_values) (comma-separated list) + */ + block_version_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: eq) + */ + meta_execution_version_eq?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: ne) + */ + meta_execution_version_ne?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: contains) + */ + meta_execution_version_contains?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: starts_with) + */ + meta_execution_version_starts_with?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: ends_with) + */ + meta_execution_version_ends_with?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: like) + */ + meta_execution_version_like?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: not_like) + */ + meta_execution_version_not_like?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: in_values) (comma-separated list) + */ + meta_execution_version_in_values?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: not_in_values) (comma-separated list) + */ + meta_execution_version_not_in_values?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) + */ + meta_execution_implementation_eq?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) + */ + meta_execution_implementation_ne?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) + */ + meta_execution_implementation_contains?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) + */ + meta_execution_implementation_starts_with?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) + */ + meta_execution_implementation_ends_with?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: like) + */ + meta_execution_implementation_like?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) + */ + meta_execution_implementation_not_like?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) + */ + meta_execution_implementation_in_values?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) + */ + meta_execution_implementation_not_in_values?: string; + /** + * Implementation of the client that generated the event (filter: eq) + */ + meta_client_implementation_eq?: string; + /** + * Implementation of the client that generated the event (filter: ne) + */ + meta_client_implementation_ne?: string; + /** + * Implementation of the client that generated the event (filter: contains) + */ + meta_client_implementation_contains?: string; + /** + * Implementation of the client that generated the event (filter: starts_with) + */ + meta_client_implementation_starts_with?: string; + /** + * Implementation of the client that generated the event (filter: ends_with) + */ + meta_client_implementation_ends_with?: string; + /** + * Implementation of the client that generated the event (filter: like) + */ + meta_client_implementation_like?: string; + /** + * Implementation of the client that generated the event (filter: not_like) + */ + meta_client_implementation_not_like?: string; + /** + * Implementation of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_implementation_in_values?: string; + /** + * Implementation of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_implementation_not_in_values?: string; + /** + * Version of the client that generated the event (filter: eq) + */ + meta_client_version_eq?: string; + /** + * Version of the client that generated the event (filter: ne) + */ + meta_client_version_ne?: string; + /** + * Version of the client that generated the event (filter: contains) + */ + meta_client_version_contains?: string; + /** + * Version of the client that generated the event (filter: starts_with) + */ + meta_client_version_starts_with?: string; + /** + * Version of the client that generated the event (filter: ends_with) + */ + meta_client_version_ends_with?: string; + /** + * Version of the client that generated the event (filter: like) + */ + meta_client_version_like?: string; + /** + * Version of the client that generated the event (filter: not_like) + */ + meta_client_version_not_like?: string; + /** + * Version of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_version_in_values?: string; + /** + * Version of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_version_not_in_values?: string; + /** + * City of the client that generated the event (filter: eq) + */ + meta_client_geo_city_eq?: string; + /** + * City of the client that generated the event (filter: ne) + */ + meta_client_geo_city_ne?: string; + /** + * City of the client that generated the event (filter: contains) + */ + meta_client_geo_city_contains?: string; + /** + * City of the client that generated the event (filter: starts_with) + */ + meta_client_geo_city_starts_with?: string; + /** + * City of the client that generated the event (filter: ends_with) + */ + meta_client_geo_city_ends_with?: string; + /** + * City of the client that generated the event (filter: like) + */ + meta_client_geo_city_like?: string; + /** + * City of the client that generated the event (filter: not_like) + */ + meta_client_geo_city_not_like?: string; + /** + * City of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_city_in_values?: string; + /** + * City of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_city_not_in_values?: string; + /** + * Country of the client that generated the event (filter: eq) + */ + meta_client_geo_country_eq?: string; + /** + * Country of the client that generated the event (filter: ne) + */ + meta_client_geo_country_ne?: string; + /** + * Country of the client that generated the event (filter: contains) + */ + meta_client_geo_country_contains?: string; + /** + * Country of the client that generated the event (filter: starts_with) + */ + meta_client_geo_country_starts_with?: string; + /** + * Country of the client that generated the event (filter: ends_with) + */ + meta_client_geo_country_ends_with?: string; + /** + * Country of the client that generated the event (filter: like) + */ + meta_client_geo_country_like?: string; + /** + * Country of the client that generated the event (filter: not_like) + */ + meta_client_geo_country_not_like?: string; + /** + * Country of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_in_values?: string; + /** + * Country of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_not_in_values?: string; + /** + * Country code of the client that generated the event (filter: eq) + */ + meta_client_geo_country_code_eq?: string; + /** + * Country code of the client that generated the event (filter: ne) + */ + meta_client_geo_country_code_ne?: string; + /** + * Country code of the client that generated the event (filter: contains) + */ + meta_client_geo_country_code_contains?: string; + /** + * Country code of the client that generated the event (filter: starts_with) + */ + meta_client_geo_country_code_starts_with?: string; + /** + * Country code of the client that generated the event (filter: ends_with) + */ + meta_client_geo_country_code_ends_with?: string; + /** + * Country code of the client that generated the event (filter: like) + */ + meta_client_geo_country_code_like?: string; + /** + * Country code of the client that generated the event (filter: not_like) + */ + meta_client_geo_country_code_not_like?: string; + /** + * Country code of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_country_code_in_values?: string; + /** + * Country code of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_country_code_not_in_values?: string; + /** + * Continent code of the client that generated the event (filter: eq) + */ + meta_client_geo_continent_code_eq?: string; + /** + * Continent code of the client that generated the event (filter: ne) + */ + meta_client_geo_continent_code_ne?: string; + /** + * Continent code of the client that generated the event (filter: contains) + */ + meta_client_geo_continent_code_contains?: string; + /** + * Continent code of the client that generated the event (filter: starts_with) + */ + meta_client_geo_continent_code_starts_with?: string; + /** + * Continent code of the client that generated the event (filter: ends_with) + */ + meta_client_geo_continent_code_ends_with?: string; + /** + * Continent code of the client that generated the event (filter: like) + */ + meta_client_geo_continent_code_like?: string; + /** + * Continent code of the client that generated the event (filter: not_like) + */ + meta_client_geo_continent_code_not_like?: string; + /** + * Continent code of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_continent_code_in_values?: string; + /** + * Continent code of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_continent_code_not_in_values?: string; + /** + * Filter meta_client_geo_latitude using value + */ + meta_client_geo_latitude_value?: number; + /** + * Filter meta_client_geo_longitude using value + */ + meta_client_geo_longitude_value?: number; + /** + * Autonomous system number of the client that generated the event (filter: eq) + */ + meta_client_geo_autonomous_system_number_eq?: number; + /** + * Autonomous system number of the client that generated the event (filter: ne) + */ + meta_client_geo_autonomous_system_number_ne?: number; + /** + * Autonomous system number of the client that generated the event (filter: lt) + */ + meta_client_geo_autonomous_system_number_lt?: number; + /** + * Autonomous system number of the client that generated the event (filter: lte) + */ + meta_client_geo_autonomous_system_number_lte?: number; + /** + * Autonomous system number of the client that generated the event (filter: gt) + */ + meta_client_geo_autonomous_system_number_gt?: number; + /** + * Autonomous system number of the client that generated the event (filter: gte) + */ + meta_client_geo_autonomous_system_number_gte?: number; + /** + * Autonomous system number of the client that generated the event (filter: between_min) + */ + meta_client_geo_autonomous_system_number_between_min?: number; + /** + * Autonomous system number of the client that generated the event (filter: between_max_value) + */ + meta_client_geo_autonomous_system_number_between_max_value?: number; + /** + * Autonomous system number of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_in_values?: string; + /** + * Autonomous system number of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_number_not_in_values?: string; + /** + * Autonomous system organization of the client that generated the event (filter: eq) + */ + meta_client_geo_autonomous_system_organization_eq?: string; + /** + * Autonomous system organization of the client that generated the event (filter: ne) + */ + meta_client_geo_autonomous_system_organization_ne?: string; + /** + * Autonomous system organization of the client that generated the event (filter: contains) + */ + meta_client_geo_autonomous_system_organization_contains?: string; + /** + * Autonomous system organization of the client that generated the event (filter: starts_with) + */ + meta_client_geo_autonomous_system_organization_starts_with?: string; + /** + * Autonomous system organization of the client that generated the event (filter: ends_with) + */ + meta_client_geo_autonomous_system_organization_ends_with?: string; + /** + * Autonomous system organization of the client that generated the event (filter: like) + */ + meta_client_geo_autonomous_system_organization_like?: string; + /** + * Autonomous system organization of the client that generated the event (filter: not_like) + */ + meta_client_geo_autonomous_system_organization_not_like?: string; + /** + * Autonomous system organization of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_in_values?: string; + /** + * Autonomous system organization of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_geo_autonomous_system_organization_not_in_values?: string; + /** + * The maximum number of int_engine_new_payload to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntEngineNewPayload` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_engine_new_payload'; +}; + +export type IntEngineNewPayloadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntEngineNewPayloadServiceListError = + IntEngineNewPayloadServiceListErrors[keyof IntEngineNewPayloadServiceListErrors]; + +export type IntEngineNewPayloadServiceListResponses = { + /** + * OK + */ + 200: ListIntEngineNewPayloadResponse; +}; + +export type IntEngineNewPayloadServiceListResponse = + IntEngineNewPayloadServiceListResponses[keyof IntEngineNewPayloadServiceListResponses]; + +export type IntEngineNewPayloadServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_engine_new_payload/{slot_start_date_time}'; +}; + +export type IntEngineNewPayloadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntEngineNewPayloadServiceGetError = + IntEngineNewPayloadServiceGetErrors[keyof IntEngineNewPayloadServiceGetErrors]; + +export type IntEngineNewPayloadServiceGetResponses = { + /** + * OK + */ + 200: GetIntEngineNewPayloadResponse; +}; + +export type IntEngineNewPayloadServiceGetResponse = + IntEngineNewPayloadServiceGetResponses[keyof IntEngineNewPayloadServiceGetResponses]; + +export type IntEngineNewPayloadFastestExecutionByNodeClassServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * Slot number of the beacon block containing the payload (filter: eq) + */ + slot_eq?: number; + /** + * Slot number of the beacon block containing the payload (filter: ne) + */ + slot_ne?: number; + /** + * Slot number of the beacon block containing the payload (filter: lt) + */ + slot_lt?: number; + /** + * Slot number of the beacon block containing the payload (filter: lte) + */ + slot_lte?: number; + /** + * Slot number of the beacon block containing the payload (filter: gt) + */ + slot_gt?: number; + /** + * Slot number of the beacon block containing the payload (filter: gte) + */ + slot_gte?: number; + /** + * Slot number of the beacon block containing the payload (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number of the beacon block containing the payload (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number of the beacon block containing the payload (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number of the beacon block containing the payload (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) + */ + node_class_eq?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) + */ + node_class_ne?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) + */ + node_class_contains?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) + */ + node_class_starts_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) + */ + node_class_ends_with?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) + */ + node_class_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) + */ + node_class_not_like?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) + */ + node_class_in_values?: string; + /** + * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) + */ + node_class_not_in_values?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) + */ + meta_execution_implementation_eq?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) + */ + meta_execution_implementation_ne?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) + */ + meta_execution_implementation_contains?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) + */ + meta_execution_implementation_starts_with?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) + */ + meta_execution_implementation_ends_with?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: like) + */ + meta_execution_implementation_like?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) + */ + meta_execution_implementation_not_like?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) + */ + meta_execution_implementation_in_values?: string; + /** + * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) + */ + meta_execution_implementation_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Epoch number derived from the slot (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: eq) + */ + block_hash_eq?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: ne) + */ + block_hash_ne?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: contains) + */ + block_hash_contains?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: like) + */ + block_hash_like?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: not_like) + */ + block_hash_not_like?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * Execution block hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * Duration of the fastest engine_newPayload call in milliseconds (filter: eq) + */ + duration_ms_eq?: number; + /** + * Duration of the fastest engine_newPayload call in milliseconds (filter: ne) + */ + duration_ms_ne?: number; + /** + * Duration of the fastest engine_newPayload call in milliseconds (filter: lt) + */ + duration_ms_lt?: number; + /** + * Duration of the fastest engine_newPayload call in milliseconds (filter: lte) + */ + duration_ms_lte?: number; + /** + * Duration of the fastest engine_newPayload call in milliseconds (filter: gt) + */ + duration_ms_gt?: number; + /** + * Duration of the fastest engine_newPayload call in milliseconds (filter: gte) + */ + duration_ms_gte?: number; + /** + * Duration of the fastest engine_newPayload call in milliseconds (filter: between_min) + */ + duration_ms_between_min?: number; + /** + * Duration of the fastest engine_newPayload call in milliseconds (filter: between_max_value) + */ + duration_ms_between_max_value?: number; + /** + * Duration of the fastest engine_newPayload call in milliseconds (filter: in_values) (comma-separated list) + */ + duration_ms_in_values?: string; + /** + * Duration of the fastest engine_newPayload call in milliseconds (filter: not_in_values) (comma-separated list) + */ + duration_ms_not_in_values?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: eq) + */ + meta_execution_version_eq?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: ne) + */ + meta_execution_version_ne?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: contains) + */ + meta_execution_version_contains?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: starts_with) + */ + meta_execution_version_starts_with?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: ends_with) + */ + meta_execution_version_ends_with?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: like) + */ + meta_execution_version_like?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: not_like) + */ + meta_execution_version_not_like?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: in_values) (comma-separated list) + */ + meta_execution_version_in_values?: string; + /** + * Full execution client version string from web3_clientVersion RPC (filter: not_in_values) (comma-separated list) + */ + meta_execution_version_not_in_values?: string; + /** + * Name of the client that generated the event (filter: eq) + */ + meta_client_name_eq?: string; + /** + * Name of the client that generated the event (filter: ne) + */ + meta_client_name_ne?: string; + /** + * Name of the client that generated the event (filter: contains) + */ + meta_client_name_contains?: string; + /** + * Name of the client that generated the event (filter: starts_with) + */ + meta_client_name_starts_with?: string; + /** + * Name of the client that generated the event (filter: ends_with) + */ + meta_client_name_ends_with?: string; + /** + * Name of the client that generated the event (filter: like) + */ + meta_client_name_like?: string; + /** + * Name of the client that generated the event (filter: not_like) + */ + meta_client_name_not_like?: string; + /** + * Name of the client that generated the event (filter: in_values) (comma-separated list) + */ + meta_client_name_in_values?: string; + /** + * Name of the client that generated the event (filter: not_in_values) (comma-separated list) + */ + meta_client_name_not_in_values?: string; + /** + * The maximum number of int_engine_new_payload_fastest_execution_by_node_class to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntEngineNewPayloadFastestExecutionByNodeClass` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_engine_new_payload_fastest_execution_by_node_class'; +}; + +export type IntEngineNewPayloadFastestExecutionByNodeClassServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntEngineNewPayloadFastestExecutionByNodeClassServiceListError = + IntEngineNewPayloadFastestExecutionByNodeClassServiceListErrors[keyof IntEngineNewPayloadFastestExecutionByNodeClassServiceListErrors]; + +export type IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponses = { + /** + * OK + */ + 200: ListIntEngineNewPayloadFastestExecutionByNodeClassResponse; +}; + +export type IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse = + IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponses[keyof IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponses]; + +export type IntEngineNewPayloadFastestExecutionByNodeClassServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/int_engine_new_payload_fastest_execution_by_node_class/{slot_start_date_time}'; +}; + +export type IntEngineNewPayloadFastestExecutionByNodeClassServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntEngineNewPayloadFastestExecutionByNodeClassServiceGetError = + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetErrors[keyof IntEngineNewPayloadFastestExecutionByNodeClassServiceGetErrors]; + +export type IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponses = { + /** + * OK + */ + 200: GetIntEngineNewPayloadFastestExecutionByNodeClassResponse; +}; + +export type IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse = + IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponses[keyof IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponses]; + +export type IntExecutionBlockByDateServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block timestamp (filter: eq) + */ + block_date_time_eq?: number; + /** + * The block timestamp (filter: ne) + */ + block_date_time_ne?: number; + /** + * The block timestamp (filter: lt) + */ + block_date_time_lt?: number; + /** + * The block timestamp (filter: lte) + */ + block_date_time_lte?: number; + /** + * The block timestamp (filter: gt) + */ + block_date_time_gt?: number; + /** + * The block timestamp (filter: gte) + */ + block_date_time_gte?: number; + /** + * The block timestamp (filter: between_min) + */ + block_date_time_between_min?: number; + /** + * The block timestamp (filter: between_max_value) + */ + block_date_time_between_max_value?: number; + /** + * The block timestamp (filter: in_values) (comma-separated list) + */ + block_date_time_in_values?: string; + /** + * The block timestamp (filter: not_in_values) (comma-separated list) + */ + block_date_time_not_in_values?: string; + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The maximum number of int_execution_block_by_date to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntExecutionBlockByDate` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_execution_block_by_date'; +}; + +export type IntExecutionBlockByDateServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntExecutionBlockByDateServiceListError = + IntExecutionBlockByDateServiceListErrors[keyof IntExecutionBlockByDateServiceListErrors]; + +export type IntExecutionBlockByDateServiceListResponses = { + /** + * OK + */ + 200: ListIntExecutionBlockByDateResponse; +}; + +export type IntExecutionBlockByDateServiceListResponse = + IntExecutionBlockByDateServiceListResponses[keyof IntExecutionBlockByDateServiceListResponses]; + +export type IntExecutionBlockByDateServiceGetData = { + body?: never; + path: { + /** + * The block timestamp + */ + block_date_time: number; + }; + query?: never; + url: '/api/v1/int_execution_block_by_date/{block_date_time}'; +}; + +export type IntExecutionBlockByDateServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntExecutionBlockByDateServiceGetError = + IntExecutionBlockByDateServiceGetErrors[keyof IntExecutionBlockByDateServiceGetErrors]; + +export type IntExecutionBlockByDateServiceGetResponses = { + /** + * OK + */ + 200: GetIntExecutionBlockByDateResponse; +}; + +export type IntExecutionBlockByDateServiceGetResponse = + IntExecutionBlockByDateServiceGetResponses[keyof IntExecutionBlockByDateServiceGetResponses]; + +export type IntExecutionStateSizeByBlockServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Block number at which the cumulative state size is measured (filter: eq) + */ + block_number_eq?: number; + /** + * Block number at which the cumulative state size is measured (filter: ne) + */ + block_number_ne?: number; + /** + * Block number at which the cumulative state size is measured (filter: lt) + */ + block_number_lt?: number; + /** + * Block number at which the cumulative state size is measured (filter: lte) + */ + block_number_lte?: number; + /** + * Block number at which the cumulative state size is measured (filter: gt) + */ + block_number_gt?: number; + /** + * Block number at which the cumulative state size is measured (filter: gte) + */ + block_number_gte?: number; + /** + * Block number at which the cumulative state size is measured (filter: between_min) + */ + block_number_between_min?: number; + /** + * Block number at which the cumulative state size is measured (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * Block number at which the cumulative state size is measured (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * Block number at which the cumulative state size is measured (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Cumulative total number of accounts in the state (filter: eq) + */ + accounts_eq?: number; + /** + * Cumulative total number of accounts in the state (filter: ne) + */ + accounts_ne?: number; + /** + * Cumulative total number of accounts in the state (filter: lt) + */ + accounts_lt?: number; + /** + * Cumulative total number of accounts in the state (filter: lte) + */ + accounts_lte?: number; + /** + * Cumulative total number of accounts in the state (filter: gt) + */ + accounts_gt?: number; + /** + * Cumulative total number of accounts in the state (filter: gte) + */ + accounts_gte?: number; + /** + * Cumulative total number of accounts in the state (filter: between_min) + */ + accounts_between_min?: number; + /** + * Cumulative total number of accounts in the state (filter: between_max_value) + */ + accounts_between_max_value?: number; + /** + * Cumulative total number of accounts in the state (filter: in_values) (comma-separated list) + */ + accounts_in_values?: string; + /** + * Cumulative total number of accounts in the state (filter: not_in_values) (comma-separated list) + */ + accounts_not_in_values?: string; + /** + * Cumulative total bytes used by account data (filter: eq) + */ + account_bytes_eq?: number; + /** + * Cumulative total bytes used by account data (filter: ne) + */ + account_bytes_ne?: number; + /** + * Cumulative total bytes used by account data (filter: lt) + */ + account_bytes_lt?: number; + /** + * Cumulative total bytes used by account data (filter: lte) + */ + account_bytes_lte?: number; + /** + * Cumulative total bytes used by account data (filter: gt) + */ + account_bytes_gt?: number; + /** + * Cumulative total bytes used by account data (filter: gte) + */ + account_bytes_gte?: number; + /** + * Cumulative total bytes used by account data (filter: between_min) + */ + account_bytes_between_min?: number; + /** + * Cumulative total bytes used by account data (filter: between_max_value) + */ + account_bytes_between_max_value?: number; + /** + * Cumulative total bytes used by account data (filter: in_values) (comma-separated list) + */ + account_bytes_in_values?: string; + /** + * Cumulative total bytes used by account data (filter: not_in_values) (comma-separated list) + */ + account_bytes_not_in_values?: string; + /** + * Cumulative number of trie nodes in the account trie (filter: eq) + */ + account_trienodes_eq?: number; + /** + * Cumulative number of trie nodes in the account trie (filter: ne) + */ + account_trienodes_ne?: number; + /** + * Cumulative number of trie nodes in the account trie (filter: lt) + */ + account_trienodes_lt?: number; + /** + * Cumulative number of trie nodes in the account trie (filter: lte) + */ + account_trienodes_lte?: number; + /** + * Cumulative number of trie nodes in the account trie (filter: gt) + */ + account_trienodes_gt?: number; + /** + * Cumulative number of trie nodes in the account trie (filter: gte) + */ + account_trienodes_gte?: number; + /** + * Cumulative number of trie nodes in the account trie (filter: between_min) + */ + account_trienodes_between_min?: number; + /** + * Cumulative number of trie nodes in the account trie (filter: between_max_value) + */ + account_trienodes_between_max_value?: number; + /** + * Cumulative number of trie nodes in the account trie (filter: in_values) (comma-separated list) + */ + account_trienodes_in_values?: string; + /** + * Cumulative number of trie nodes in the account trie (filter: not_in_values) (comma-separated list) + */ + account_trienodes_not_in_values?: string; + /** + * Cumulative total bytes used by account trie nodes (filter: eq) + */ + account_trienode_bytes_eq?: number; + /** + * Cumulative total bytes used by account trie nodes (filter: ne) + */ + account_trienode_bytes_ne?: number; + /** + * Cumulative total bytes used by account trie nodes (filter: lt) + */ + account_trienode_bytes_lt?: number; + /** + * Cumulative total bytes used by account trie nodes (filter: lte) + */ + account_trienode_bytes_lte?: number; + /** + * Cumulative total bytes used by account trie nodes (filter: gt) + */ + account_trienode_bytes_gt?: number; + /** + * Cumulative total bytes used by account trie nodes (filter: gte) + */ + account_trienode_bytes_gte?: number; + /** + * Cumulative total bytes used by account trie nodes (filter: between_min) + */ + account_trienode_bytes_between_min?: number; + /** + * Cumulative total bytes used by account trie nodes (filter: between_max_value) + */ + account_trienode_bytes_between_max_value?: number; + /** + * Cumulative total bytes used by account trie nodes (filter: in_values) (comma-separated list) + */ + account_trienode_bytes_in_values?: string; + /** + * Cumulative total bytes used by account trie nodes (filter: not_in_values) (comma-separated list) + */ + account_trienode_bytes_not_in_values?: string; + /** + * Cumulative total number of contract codes stored (filter: eq) + */ + contract_codes_eq?: number; + /** + * Cumulative total number of contract codes stored (filter: ne) + */ + contract_codes_ne?: number; + /** + * Cumulative total number of contract codes stored (filter: lt) + */ + contract_codes_lt?: number; + /** + * Cumulative total number of contract codes stored (filter: lte) + */ + contract_codes_lte?: number; + /** + * Cumulative total number of contract codes stored (filter: gt) + */ + contract_codes_gt?: number; + /** + * Cumulative total number of contract codes stored (filter: gte) + */ + contract_codes_gte?: number; + /** + * Cumulative total number of contract codes stored (filter: between_min) + */ + contract_codes_between_min?: number; + /** + * Cumulative total number of contract codes stored (filter: between_max_value) + */ + contract_codes_between_max_value?: number; + /** + * Cumulative total number of contract codes stored (filter: in_values) (comma-separated list) + */ + contract_codes_in_values?: string; + /** + * Cumulative total number of contract codes stored (filter: not_in_values) (comma-separated list) + */ + contract_codes_not_in_values?: string; + /** + * Cumulative total bytes used by contract code (filter: eq) + */ + contract_code_bytes_eq?: number; + /** + * Cumulative total bytes used by contract code (filter: ne) + */ + contract_code_bytes_ne?: number; + /** + * Cumulative total bytes used by contract code (filter: lt) + */ + contract_code_bytes_lt?: number; + /** + * Cumulative total bytes used by contract code (filter: lte) + */ + contract_code_bytes_lte?: number; + /** + * Cumulative total bytes used by contract code (filter: gt) + */ + contract_code_bytes_gt?: number; + /** + * Cumulative total bytes used by contract code (filter: gte) + */ + contract_code_bytes_gte?: number; + /** + * Cumulative total bytes used by contract code (filter: between_min) + */ + contract_code_bytes_between_min?: number; + /** + * Cumulative total bytes used by contract code (filter: between_max_value) + */ + contract_code_bytes_between_max_value?: number; + /** + * Cumulative total bytes used by contract code (filter: in_values) (comma-separated list) + */ + contract_code_bytes_in_values?: string; + /** + * Cumulative total bytes used by contract code (filter: not_in_values) (comma-separated list) + */ + contract_code_bytes_not_in_values?: string; + /** + * Cumulative total number of storage slots in the state (filter: eq) + */ + storages_eq?: number; + /** + * Cumulative total number of storage slots in the state (filter: ne) + */ + storages_ne?: number; + /** + * Cumulative total number of storage slots in the state (filter: lt) + */ + storages_lt?: number; + /** + * Cumulative total number of storage slots in the state (filter: lte) + */ + storages_lte?: number; + /** + * Cumulative total number of storage slots in the state (filter: gt) + */ + storages_gt?: number; + /** + * Cumulative total number of storage slots in the state (filter: gte) + */ + storages_gte?: number; + /** + * Cumulative total number of storage slots in the state (filter: between_min) + */ + storages_between_min?: number; + /** + * Cumulative total number of storage slots in the state (filter: between_max_value) + */ + storages_between_max_value?: number; + /** + * Cumulative total number of storage slots in the state (filter: in_values) (comma-separated list) + */ + storages_in_values?: string; + /** + * Cumulative total number of storage slots in the state (filter: not_in_values) (comma-separated list) + */ + storages_not_in_values?: string; + /** + * Cumulative total bytes used by storage data (filter: eq) + */ + storage_bytes_eq?: number; + /** + * Cumulative total bytes used by storage data (filter: ne) + */ + storage_bytes_ne?: number; + /** + * Cumulative total bytes used by storage data (filter: lt) + */ + storage_bytes_lt?: number; + /** + * Cumulative total bytes used by storage data (filter: lte) + */ + storage_bytes_lte?: number; + /** + * Cumulative total bytes used by storage data (filter: gt) + */ + storage_bytes_gt?: number; + /** + * Cumulative total bytes used by storage data (filter: gte) + */ + storage_bytes_gte?: number; + /** + * Cumulative total bytes used by storage data (filter: between_min) + */ + storage_bytes_between_min?: number; + /** + * Cumulative total bytes used by storage data (filter: between_max_value) + */ + storage_bytes_between_max_value?: number; + /** + * Cumulative total bytes used by storage data (filter: in_values) (comma-separated list) + */ + storage_bytes_in_values?: string; + /** + * Cumulative total bytes used by storage data (filter: not_in_values) (comma-separated list) + */ + storage_bytes_not_in_values?: string; + /** + * Cumulative number of trie nodes in the storage trie (filter: eq) + */ + storage_trienodes_eq?: number; + /** + * Cumulative number of trie nodes in the storage trie (filter: ne) + */ + storage_trienodes_ne?: number; + /** + * Cumulative number of trie nodes in the storage trie (filter: lt) + */ + storage_trienodes_lt?: number; + /** + * Cumulative number of trie nodes in the storage trie (filter: lte) + */ + storage_trienodes_lte?: number; + /** + * Cumulative number of trie nodes in the storage trie (filter: gt) + */ + storage_trienodes_gt?: number; + /** + * Cumulative number of trie nodes in the storage trie (filter: gte) + */ + storage_trienodes_gte?: number; + /** + * Cumulative number of trie nodes in the storage trie (filter: between_min) + */ + storage_trienodes_between_min?: number; + /** + * Cumulative number of trie nodes in the storage trie (filter: between_max_value) + */ + storage_trienodes_between_max_value?: number; + /** + * Cumulative number of trie nodes in the storage trie (filter: in_values) (comma-separated list) + */ + storage_trienodes_in_values?: string; + /** + * Cumulative number of trie nodes in the storage trie (filter: not_in_values) (comma-separated list) + */ + storage_trienodes_not_in_values?: string; + /** + * Cumulative total bytes used by storage trie nodes (filter: eq) + */ + storage_trienode_bytes_eq?: number; + /** + * Cumulative total bytes used by storage trie nodes (filter: ne) + */ + storage_trienode_bytes_ne?: number; + /** + * Cumulative total bytes used by storage trie nodes (filter: lt) + */ + storage_trienode_bytes_lt?: number; + /** + * Cumulative total bytes used by storage trie nodes (filter: lte) + */ + storage_trienode_bytes_lte?: number; + /** + * Cumulative total bytes used by storage trie nodes (filter: gt) + */ + storage_trienode_bytes_gt?: number; + /** + * Cumulative total bytes used by storage trie nodes (filter: gte) + */ + storage_trienode_bytes_gte?: number; + /** + * Cumulative total bytes used by storage trie nodes (filter: between_min) + */ + storage_trienode_bytes_between_min?: number; + /** + * Cumulative total bytes used by storage trie nodes (filter: between_max_value) + */ + storage_trienode_bytes_between_max_value?: number; + /** + * Cumulative total bytes used by storage trie nodes (filter: in_values) (comma-separated list) + */ + storage_trienode_bytes_in_values?: string; + /** + * Cumulative total bytes used by storage trie nodes (filter: not_in_values) (comma-separated list) + */ + storage_trienode_bytes_not_in_values?: string; + /** + * The maximum number of int_execution_state_size_by_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntExecutionStateSizeByBlock` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_execution_state_size_by_block'; +}; + +export type IntExecutionStateSizeByBlockServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntExecutionStateSizeByBlockServiceListError = + IntExecutionStateSizeByBlockServiceListErrors[keyof IntExecutionStateSizeByBlockServiceListErrors]; + +export type IntExecutionStateSizeByBlockServiceListResponses = { + /** + * OK + */ + 200: ListIntExecutionStateSizeByBlockResponse; +}; + +export type IntExecutionStateSizeByBlockServiceListResponse = + IntExecutionStateSizeByBlockServiceListResponses[keyof IntExecutionStateSizeByBlockServiceListResponses]; + +export type IntExecutionStateSizeByBlockServiceGetData = { + body?: never; + path: { + /** + * Block number at which the cumulative state size is measured + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_execution_state_size_by_block/{block_number}'; +}; + +export type IntExecutionStateSizeByBlockServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntExecutionStateSizeByBlockServiceGetError = + IntExecutionStateSizeByBlockServiceGetErrors[keyof IntExecutionStateSizeByBlockServiceGetErrors]; + +export type IntExecutionStateSizeByBlockServiceGetResponses = { + /** + * OK + */ + 200: GetIntExecutionStateSizeByBlockResponse; +}; + +export type IntExecutionStateSizeByBlockServiceGetResponse = + IntExecutionStateSizeByBlockServiceGetResponses[keyof IntExecutionStateSizeByBlockServiceGetResponses]; + +export type IntRocketpoolMegapoolServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: eq) + */ + megapool_address_eq?: string; + /** + * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: ne) + */ + megapool_address_ne?: string; + /** + * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: contains) + */ + megapool_address_contains?: string; + /** + * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: starts_with) + */ + megapool_address_starts_with?: string; + /** + * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: ends_with) + */ + megapool_address_ends_with?: string; + /** + * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: like) + */ + megapool_address_like?: string; + /** + * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: not_like) + */ + megapool_address_not_like?: string; + /** + * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: in_values) (comma-separated list) + */ + megapool_address_in_values?: string; + /** + * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) + */ + megapool_address_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: eq) + */ + node_operator_eq?: string; + /** + * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: ne) + */ + node_operator_ne?: string; + /** + * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: contains) + */ + node_operator_contains?: string; + /** + * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: starts_with) + */ + node_operator_starts_with?: string; + /** + * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: ends_with) + */ + node_operator_ends_with?: string; + /** + * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: like) + */ + node_operator_like?: string; + /** + * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: not_like) + */ + node_operator_not_like?: string; + /** + * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: in_values) (comma-separated list) + */ + node_operator_in_values?: string; + /** + * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) + */ + node_operator_not_in_values?: string; + /** + * Execution block number the megapool was deployed in (filter: eq) + */ + created_block_number_eq?: number; + /** + * Execution block number the megapool was deployed in (filter: ne) + */ + created_block_number_ne?: number; + /** + * Execution block number the megapool was deployed in (filter: lt) + */ + created_block_number_lt?: number; + /** + * Execution block number the megapool was deployed in (filter: lte) + */ + created_block_number_lte?: number; + /** + * Execution block number the megapool was deployed in (filter: gt) + */ + created_block_number_gt?: number; + /** + * Execution block number the megapool was deployed in (filter: gte) + */ + created_block_number_gte?: number; + /** + * Execution block number the megapool was deployed in (filter: between_min) + */ + created_block_number_between_min?: number; + /** + * Execution block number the megapool was deployed in (filter: between_max_value) + */ + created_block_number_between_max_value?: number; + /** + * Execution block number the megapool was deployed in (filter: in_values) (comma-separated list) + */ + created_block_number_in_values?: string; + /** + * Execution block number the megapool was deployed in (filter: not_in_values) (comma-separated list) + */ + created_block_number_not_in_values?: string; + /** + * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: eq) + */ + created_date_time_eq?: number; + /** + * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: ne) + */ + created_date_time_ne?: number; + /** + * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: lt) + */ + created_date_time_lt?: number; + /** + * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: lte) + */ + created_date_time_lte?: number; + /** + * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: gt) + */ + created_date_time_gt?: number; + /** + * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: gte) + */ + created_date_time_gte?: number; + /** + * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: between_min) + */ + created_date_time_between_min?: number; + /** + * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: between_max_value) + */ + created_date_time_between_max_value?: number; + /** + * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: in_values) (comma-separated list) + */ + created_date_time_in_values?: string; + /** + * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: not_in_values) (comma-separated list) + */ + created_date_time_not_in_values?: string; + /** + * Execution transaction hash that deployed the megapool (filter: eq) + */ + transaction_hash_eq?: string; + /** + * Execution transaction hash that deployed the megapool (filter: ne) + */ + transaction_hash_ne?: string; + /** + * Execution transaction hash that deployed the megapool (filter: contains) + */ + transaction_hash_contains?: string; + /** + * Execution transaction hash that deployed the megapool (filter: starts_with) + */ + transaction_hash_starts_with?: string; + /** + * Execution transaction hash that deployed the megapool (filter: ends_with) + */ + transaction_hash_ends_with?: string; + /** + * Execution transaction hash that deployed the megapool (filter: like) + */ + transaction_hash_like?: string; + /** + * Execution transaction hash that deployed the megapool (filter: not_like) + */ + transaction_hash_not_like?: string; + /** + * Execution transaction hash that deployed the megapool (filter: in_values) (comma-separated list) + */ + transaction_hash_in_values?: string; + /** + * Execution transaction hash that deployed the megapool (filter: not_in_values) (comma-separated list) + */ + transaction_hash_not_in_values?: string; + /** + * The maximum number of int_rocketpool_megapool to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntRocketpoolMegapool` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_rocketpool_megapool'; +}; + +export type IntRocketpoolMegapoolServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntRocketpoolMegapoolServiceListError = + IntRocketpoolMegapoolServiceListErrors[keyof IntRocketpoolMegapoolServiceListErrors]; + +export type IntRocketpoolMegapoolServiceListResponses = { + /** + * OK + */ + 200: ListIntRocketpoolMegapoolResponse; +}; + +export type IntRocketpoolMegapoolServiceListResponse = + IntRocketpoolMegapoolServiceListResponses[keyof IntRocketpoolMegapoolServiceListResponses]; + +export type IntRocketpoolMegapoolServiceGetData = { + body?: never; + path: { + /** + * The Rocket Pool megapool contract address, lowercase 0x-prefixed + */ + megapool_address: string; + }; + query?: never; + url: '/api/v1/int_rocketpool_megapool/{megapool_address}'; +}; + +export type IntRocketpoolMegapoolServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntRocketpoolMegapoolServiceGetError = + IntRocketpoolMegapoolServiceGetErrors[keyof IntRocketpoolMegapoolServiceGetErrors]; + +export type IntRocketpoolMegapoolServiceGetResponses = { + /** + * OK + */ + 200: GetIntRocketpoolMegapoolResponse; +}; + +export type IntRocketpoolMegapoolServiceGetResponse = + IntRocketpoolMegapoolServiceGetResponses[keyof IntRocketpoolMegapoolServiceGetResponses]; + +export type IntRocketpoolMinipoolServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Minipool lifecycle event name (created or destroyed) (filter: eq) + */ + event_name_eq?: string; + /** + * Minipool lifecycle event name (created or destroyed) (filter: ne) + */ + event_name_ne?: string; + /** + * Minipool lifecycle event name (created or destroyed) (filter: contains) + */ + event_name_contains?: string; + /** + * Minipool lifecycle event name (created or destroyed) (filter: starts_with) + */ + event_name_starts_with?: string; + /** + * Minipool lifecycle event name (created or destroyed) (filter: ends_with) + */ + event_name_ends_with?: string; + /** + * Minipool lifecycle event name (created or destroyed) (filter: like) + */ + event_name_like?: string; + /** + * Minipool lifecycle event name (created or destroyed) (filter: not_like) + */ + event_name_not_like?: string; + /** + * Minipool lifecycle event name (created or destroyed) (filter: in_values) (comma-separated list) + */ + event_name_in_values?: string; + /** + * Minipool lifecycle event name (created or destroyed) (filter: not_in_values) (comma-separated list) + */ + event_name_not_in_values?: string; + /** + * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: eq) + */ + minipool_address_eq?: string; + /** + * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: ne) + */ + minipool_address_ne?: string; + /** + * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: contains) + */ + minipool_address_contains?: string; + /** + * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: starts_with) + */ + minipool_address_starts_with?: string; + /** + * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: ends_with) + */ + minipool_address_ends_with?: string; + /** + * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: like) + */ + minipool_address_like?: string; + /** + * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: not_like) + */ + minipool_address_not_like?: string; + /** + * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: in_values) (comma-separated list) + */ + minipool_address_in_values?: string; + /** + * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) + */ + minipool_address_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: eq) + */ + node_operator_eq?: string; + /** + * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: ne) + */ + node_operator_ne?: string; + /** + * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: contains) + */ + node_operator_contains?: string; + /** + * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: starts_with) + */ + node_operator_starts_with?: string; + /** + * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: ends_with) + */ + node_operator_ends_with?: string; + /** + * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: like) + */ + node_operator_like?: string; + /** + * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: not_like) + */ + node_operator_not_like?: string; + /** + * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: in_values) (comma-separated list) + */ + node_operator_in_values?: string; + /** + * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) + */ + node_operator_not_in_values?: string; + /** + * Execution block number the event was emitted in (filter: eq) + */ + event_block_number_eq?: number; + /** + * Execution block number the event was emitted in (filter: ne) + */ + event_block_number_ne?: number; + /** + * Execution block number the event was emitted in (filter: lt) + */ + event_block_number_lt?: number; + /** + * Execution block number the event was emitted in (filter: lte) + */ + event_block_number_lte?: number; + /** + * Execution block number the event was emitted in (filter: gt) + */ + event_block_number_gt?: number; + /** + * Execution block number the event was emitted in (filter: gte) + */ + event_block_number_gte?: number; + /** + * Execution block number the event was emitted in (filter: between_min) + */ + event_block_number_between_min?: number; + /** + * Execution block number the event was emitted in (filter: between_max_value) + */ + event_block_number_between_max_value?: number; + /** + * Execution block number the event was emitted in (filter: in_values) (comma-separated list) + */ + event_block_number_in_values?: string; + /** + * Execution block number the event was emitted in (filter: not_in_values) (comma-separated list) + */ + event_block_number_not_in_values?: string; + /** + * Wall clock time the event occurred, decoded from the event payload (filter: eq) + */ + event_date_time_eq?: number; + /** + * Wall clock time the event occurred, decoded from the event payload (filter: ne) + */ + event_date_time_ne?: number; + /** + * Wall clock time the event occurred, decoded from the event payload (filter: lt) + */ + event_date_time_lt?: number; + /** + * Wall clock time the event occurred, decoded from the event payload (filter: lte) + */ + event_date_time_lte?: number; + /** + * Wall clock time the event occurred, decoded from the event payload (filter: gt) + */ + event_date_time_gt?: number; + /** + * Wall clock time the event occurred, decoded from the event payload (filter: gte) + */ + event_date_time_gte?: number; + /** + * Wall clock time the event occurred, decoded from the event payload (filter: between_min) + */ + event_date_time_between_min?: number; + /** + * Wall clock time the event occurred, decoded from the event payload (filter: between_max_value) + */ + event_date_time_between_max_value?: number; + /** + * Wall clock time the event occurred, decoded from the event payload (filter: in_values) (comma-separated list) + */ + event_date_time_in_values?: string; + /** + * Wall clock time the event occurred, decoded from the event payload (filter: not_in_values) (comma-separated list) + */ + event_date_time_not_in_values?: string; + /** + * Execution transaction hash that emitted the event (filter: eq) + */ + transaction_hash_eq?: string; + /** + * Execution transaction hash that emitted the event (filter: ne) + */ + transaction_hash_ne?: string; + /** + * Execution transaction hash that emitted the event (filter: contains) + */ + transaction_hash_contains?: string; + /** + * Execution transaction hash that emitted the event (filter: starts_with) + */ + transaction_hash_starts_with?: string; + /** + * Execution transaction hash that emitted the event (filter: ends_with) + */ + transaction_hash_ends_with?: string; + /** + * Execution transaction hash that emitted the event (filter: like) + */ + transaction_hash_like?: string; + /** + * Execution transaction hash that emitted the event (filter: not_like) + */ + transaction_hash_not_like?: string; + /** + * Execution transaction hash that emitted the event (filter: in_values) (comma-separated list) + */ + transaction_hash_in_values?: string; + /** + * Execution transaction hash that emitted the event (filter: not_in_values) (comma-separated list) + */ + transaction_hash_not_in_values?: string; + /** + * Log index of the event within the block (filter: eq) + */ + log_index_eq?: number; + /** + * Log index of the event within the block (filter: ne) + */ + log_index_ne?: number; + /** + * Log index of the event within the block (filter: lt) + */ + log_index_lt?: number; + /** + * Log index of the event within the block (filter: lte) + */ + log_index_lte?: number; + /** + * Log index of the event within the block (filter: gt) + */ + log_index_gt?: number; + /** + * Log index of the event within the block (filter: gte) + */ + log_index_gte?: number; + /** + * Log index of the event within the block (filter: between_min) + */ + log_index_between_min?: number; + /** + * Log index of the event within the block (filter: between_max_value) + */ + log_index_between_max_value?: number; + /** + * Log index of the event within the block (filter: in_values) (comma-separated list) + */ + log_index_in_values?: string; + /** + * Log index of the event within the block (filter: not_in_values) (comma-separated list) + */ + log_index_not_in_values?: string; + /** + * The maximum number of int_rocketpool_minipool to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntRocketpoolMinipool` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_rocketpool_minipool'; +}; + +export type IntRocketpoolMinipoolServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntRocketpoolMinipoolServiceListError = + IntRocketpoolMinipoolServiceListErrors[keyof IntRocketpoolMinipoolServiceListErrors]; + +export type IntRocketpoolMinipoolServiceListResponses = { + /** + * OK + */ + 200: ListIntRocketpoolMinipoolResponse; +}; + +export type IntRocketpoolMinipoolServiceListResponse = + IntRocketpoolMinipoolServiceListResponses[keyof IntRocketpoolMinipoolServiceListResponses]; + +export type IntRocketpoolMinipoolServiceGetData = { + body?: never; + path: { + /** + * Minipool lifecycle event name (created or destroyed) + */ + event_name: string; + }; + query?: never; + url: '/api/v1/int_rocketpool_minipool/{event_name}'; +}; + +export type IntRocketpoolMinipoolServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntRocketpoolMinipoolServiceGetError = + IntRocketpoolMinipoolServiceGetErrors[keyof IntRocketpoolMinipoolServiceGetErrors]; + +export type IntRocketpoolMinipoolServiceGetResponses = { + /** + * OK + */ + 200: GetIntRocketpoolMinipoolResponse; +}; + +export type IntRocketpoolMinipoolServiceGetResponse = + IntRocketpoolMinipoolServiceGetResponses[keyof IntRocketpoolMinipoolServiceGetResponses]; + +export type IntRocketpoolNodeEventServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: eq) + */ + event_name_eq?: string; + /** + * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: ne) + */ + event_name_ne?: string; + /** + * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: contains) + */ + event_name_contains?: string; + /** + * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: starts_with) + */ + event_name_starts_with?: string; + /** + * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: ends_with) + */ + event_name_ends_with?: string; + /** + * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: like) + */ + event_name_like?: string; + /** + * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: not_like) + */ + event_name_not_like?: string; + /** + * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: in_values) (comma-separated list) + */ + event_name_in_values?: string; + /** + * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: not_in_values) (comma-separated list) + */ + event_name_not_in_values?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: eq) + */ + node_address_eq?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ne) + */ + node_address_ne?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: contains) + */ + node_address_contains?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: starts_with) + */ + node_address_starts_with?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ends_with) + */ + node_address_ends_with?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: like) + */ + node_address_like?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_like) + */ + node_address_not_like?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: in_values) (comma-separated list) + */ + node_address_in_values?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) + */ + node_address_not_in_values?: string; + /** + * Execution block number the event was emitted in (filter: eq) + */ + event_block_number_eq?: number; + /** + * Execution block number the event was emitted in (filter: ne) + */ + event_block_number_ne?: number; + /** + * Execution block number the event was emitted in (filter: lt) + */ + event_block_number_lt?: number; + /** + * Execution block number the event was emitted in (filter: lte) + */ + event_block_number_lte?: number; + /** + * Execution block number the event was emitted in (filter: gt) + */ + event_block_number_gt?: number; + /** + * Execution block number the event was emitted in (filter: gte) + */ + event_block_number_gte?: number; + /** + * Execution block number the event was emitted in (filter: between_min) + */ + event_block_number_between_min?: number; + /** + * Execution block number the event was emitted in (filter: between_max_value) + */ + event_block_number_between_max_value?: number; + /** + * Execution block number the event was emitted in (filter: in_values) (comma-separated list) + */ + event_block_number_in_values?: string; + /** + * Execution block number the event was emitted in (filter: not_in_values) (comma-separated list) + */ + event_block_number_not_in_values?: string; + /** + * Log index of the event within the block (filter: eq) + */ + log_index_eq?: number; + /** + * Log index of the event within the block (filter: ne) + */ + log_index_ne?: number; + /** + * Log index of the event within the block (filter: lt) + */ + log_index_lt?: number; + /** + * Log index of the event within the block (filter: lte) + */ + log_index_lte?: number; + /** + * Log index of the event within the block (filter: gt) + */ + log_index_gt?: number; + /** + * Log index of the event within the block (filter: gte) + */ + log_index_gte?: number; + /** + * Log index of the event within the block (filter: between_min) + */ + log_index_between_min?: number; + /** + * Log index of the event within the block (filter: between_max_value) + */ + log_index_between_max_value?: number; + /** + * Log index of the event within the block (filter: in_values) (comma-separated list) + */ + log_index_in_values?: string; + /** + * Log index of the event within the block (filter: not_in_values) (comma-separated list) + */ + log_index_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: eq) + */ + rpl_amount_wei_eq?: string; + /** + * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: ne) + */ + rpl_amount_wei_ne?: string; + /** + * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: contains) + */ + rpl_amount_wei_contains?: string; + /** + * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: starts_with) + */ + rpl_amount_wei_starts_with?: string; + /** + * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: ends_with) + */ + rpl_amount_wei_ends_with?: string; + /** + * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: like) + */ + rpl_amount_wei_like?: string; + /** + * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: not_like) + */ + rpl_amount_wei_not_like?: string; + /** + * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: in_values) (comma-separated list) + */ + rpl_amount_wei_in_values?: string; + /** + * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: not_in_values) (comma-separated list) + */ + rpl_amount_wei_not_in_values?: string; + /** + * Smoothing pool membership state for smoothing_pool_state_changed events, otherwise false (filter: eq) + */ + smoothing_state_eq?: boolean; + /** + * Smoothing pool membership state for smoothing_pool_state_changed events, otherwise false (filter: ne) + */ + smoothing_state_ne?: boolean; + /** + * Wall clock time of the block the event was emitted in (filter: eq) + */ + event_date_time_eq?: number; + /** + * Wall clock time of the block the event was emitted in (filter: ne) + */ + event_date_time_ne?: number; + /** + * Wall clock time of the block the event was emitted in (filter: lt) + */ + event_date_time_lt?: number; + /** + * Wall clock time of the block the event was emitted in (filter: lte) + */ + event_date_time_lte?: number; + /** + * Wall clock time of the block the event was emitted in (filter: gt) + */ + event_date_time_gt?: number; + /** + * Wall clock time of the block the event was emitted in (filter: gte) + */ + event_date_time_gte?: number; + /** + * Wall clock time of the block the event was emitted in (filter: between_min) + */ + event_date_time_between_min?: number; + /** + * Wall clock time of the block the event was emitted in (filter: between_max_value) + */ + event_date_time_between_max_value?: number; + /** + * Wall clock time of the block the event was emitted in (filter: in_values) (comma-separated list) + */ + event_date_time_in_values?: string; + /** + * Wall clock time of the block the event was emitted in (filter: not_in_values) (comma-separated list) + */ + event_date_time_not_in_values?: string; + /** + * The maximum number of int_rocketpool_node_event to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntRocketpoolNodeEvent` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_rocketpool_node_event'; +}; + +export type IntRocketpoolNodeEventServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntRocketpoolNodeEventServiceListError = + IntRocketpoolNodeEventServiceListErrors[keyof IntRocketpoolNodeEventServiceListErrors]; + +export type IntRocketpoolNodeEventServiceListResponses = { + /** + * OK + */ + 200: ListIntRocketpoolNodeEventResponse; +}; + +export type IntRocketpoolNodeEventServiceListResponse = + IntRocketpoolNodeEventServiceListResponses[keyof IntRocketpoolNodeEventServiceListResponses]; + +export type IntRocketpoolNodeEventServiceGetData = { + body?: never; + path: { + /** + * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed + */ + event_name: string; + }; + query?: never; + url: '/api/v1/int_rocketpool_node_event/{event_name}'; +}; + +export type IntRocketpoolNodeEventServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntRocketpoolNodeEventServiceGetError = + IntRocketpoolNodeEventServiceGetErrors[keyof IntRocketpoolNodeEventServiceGetErrors]; + +export type IntRocketpoolNodeEventServiceGetResponses = { + /** + * OK + */ + 200: GetIntRocketpoolNodeEventResponse; +}; + +export type IntRocketpoolNodeEventServiceGetResponse = + IntRocketpoolNodeEventServiceGetResponses[keyof IntRocketpoolNodeEventServiceGetResponses]; + +export type IntRocketpoolNodeTimezoneServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: eq) + */ + node_address_eq?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ne) + */ + node_address_ne?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: contains) + */ + node_address_contains?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: starts_with) + */ + node_address_starts_with?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ends_with) + */ + node_address_ends_with?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: like) + */ + node_address_like?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_like) + */ + node_address_not_like?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: in_values) (comma-separated list) + */ + node_address_in_values?: string; + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) + */ + node_address_not_in_values?: string; + /** + * Execution block number the timezone was set in (filter: eq) + */ + set_block_number_eq?: number; + /** + * Execution block number the timezone was set in (filter: ne) + */ + set_block_number_ne?: number; + /** + * Execution block number the timezone was set in (filter: lt) + */ + set_block_number_lt?: number; + /** + * Execution block number the timezone was set in (filter: lte) + */ + set_block_number_lte?: number; + /** + * Execution block number the timezone was set in (filter: gt) + */ + set_block_number_gt?: number; + /** + * Execution block number the timezone was set in (filter: gte) + */ + set_block_number_gte?: number; + /** + * Execution block number the timezone was set in (filter: between_min) + */ + set_block_number_between_min?: number; + /** + * Execution block number the timezone was set in (filter: between_max_value) + */ + set_block_number_between_max_value?: number; + /** + * Execution block number the timezone was set in (filter: in_values) (comma-separated list) + */ + set_block_number_in_values?: string; + /** + * Execution block number the timezone was set in (filter: not_in_values) (comma-separated list) + */ + set_block_number_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The self-reported timezone location string (e.g. Europe/London) (filter: eq) + */ + timezone_eq?: string; + /** + * The self-reported timezone location string (e.g. Europe/London) (filter: ne) + */ + timezone_ne?: string; + /** + * The self-reported timezone location string (e.g. Europe/London) (filter: contains) + */ + timezone_contains?: string; + /** + * The self-reported timezone location string (e.g. Europe/London) (filter: starts_with) + */ + timezone_starts_with?: string; + /** + * The self-reported timezone location string (e.g. Europe/London) (filter: ends_with) + */ + timezone_ends_with?: string; + /** + * The self-reported timezone location string (e.g. Europe/London) (filter: like) + */ + timezone_like?: string; + /** + * The self-reported timezone location string (e.g. Europe/London) (filter: not_like) + */ + timezone_not_like?: string; + /** + * The self-reported timezone location string (e.g. Europe/London) (filter: in_values) (comma-separated list) + */ + timezone_in_values?: string; + /** + * The self-reported timezone location string (e.g. Europe/London) (filter: not_in_values) (comma-separated list) + */ + timezone_not_in_values?: string; + /** + * Wall clock time of the block the timezone was set in (filter: eq) + */ + set_date_time_eq?: number; + /** + * Wall clock time of the block the timezone was set in (filter: ne) + */ + set_date_time_ne?: number; + /** + * Wall clock time of the block the timezone was set in (filter: lt) + */ + set_date_time_lt?: number; + /** + * Wall clock time of the block the timezone was set in (filter: lte) + */ + set_date_time_lte?: number; + /** + * Wall clock time of the block the timezone was set in (filter: gt) + */ + set_date_time_gt?: number; + /** + * Wall clock time of the block the timezone was set in (filter: gte) + */ + set_date_time_gte?: number; + /** + * Wall clock time of the block the timezone was set in (filter: between_min) + */ + set_date_time_between_min?: number; + /** + * Wall clock time of the block the timezone was set in (filter: between_max_value) + */ + set_date_time_between_max_value?: number; + /** + * Wall clock time of the block the timezone was set in (filter: in_values) (comma-separated list) + */ + set_date_time_in_values?: string; + /** + * Wall clock time of the block the timezone was set in (filter: not_in_values) (comma-separated list) + */ + set_date_time_not_in_values?: string; + /** + * The maximum number of int_rocketpool_node_timezone to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntRocketpoolNodeTimezone` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_rocketpool_node_timezone'; +}; + +export type IntRocketpoolNodeTimezoneServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntRocketpoolNodeTimezoneServiceListError = + IntRocketpoolNodeTimezoneServiceListErrors[keyof IntRocketpoolNodeTimezoneServiceListErrors]; + +export type IntRocketpoolNodeTimezoneServiceListResponses = { + /** + * OK + */ + 200: ListIntRocketpoolNodeTimezoneResponse; +}; + +export type IntRocketpoolNodeTimezoneServiceListResponse = + IntRocketpoolNodeTimezoneServiceListResponses[keyof IntRocketpoolNodeTimezoneServiceListResponses]; + +export type IntRocketpoolNodeTimezoneServiceGetData = { + body?: never; + path: { + /** + * The Rocket Pool node operator address, lowercase 0x-prefixed + */ + node_address: string; + }; + query?: never; + url: '/api/v1/int_rocketpool_node_timezone/{node_address}'; +}; + +export type IntRocketpoolNodeTimezoneServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntRocketpoolNodeTimezoneServiceGetError = + IntRocketpoolNodeTimezoneServiceGetErrors[keyof IntRocketpoolNodeTimezoneServiceGetErrors]; + +export type IntRocketpoolNodeTimezoneServiceGetResponses = { + /** + * OK + */ + 200: GetIntRocketpoolNodeTimezoneResponse; +}; + +export type IntRocketpoolNodeTimezoneServiceGetResponse = + IntRocketpoolNodeTimezoneServiceGetResponses[keyof IntRocketpoolNodeTimezoneServiceGetResponses]; + +export type IntStorageSelfdestructDiffsServiceListData = { + body?: never; + path?: never; + query?: { + /** + * Block where SELFDESTRUCT occurred (filter: eq) + */ + block_number_eq?: number; + /** + * Block where SELFDESTRUCT occurred (filter: ne) + */ + block_number_ne?: number; + /** + * Block where SELFDESTRUCT occurred (filter: lt) + */ + block_number_lt?: number; + /** + * Block where SELFDESTRUCT occurred (filter: lte) + */ + block_number_lte?: number; + /** + * Block where SELFDESTRUCT occurred (filter: gt) + */ + block_number_gt?: number; + /** + * Block where SELFDESTRUCT occurred (filter: gte) + */ + block_number_gte?: number; + /** + * Block where SELFDESTRUCT occurred (filter: between_min) + */ + block_number_between_min?: number; + /** + * Block where SELFDESTRUCT occurred (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * Block where SELFDESTRUCT occurred (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * Block where SELFDESTRUCT occurred (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * Transaction hash of the SELFDESTRUCT (filter: eq) + */ + transaction_hash_eq?: string; + /** + * Transaction hash of the SELFDESTRUCT (filter: ne) + */ + transaction_hash_ne?: string; + /** + * Transaction hash of the SELFDESTRUCT (filter: contains) + */ + transaction_hash_contains?: string; + /** + * Transaction hash of the SELFDESTRUCT (filter: starts_with) + */ + transaction_hash_starts_with?: string; + /** + * Transaction hash of the SELFDESTRUCT (filter: ends_with) + */ + transaction_hash_ends_with?: string; + /** + * Transaction hash of the SELFDESTRUCT (filter: like) + */ + transaction_hash_like?: string; + /** + * Transaction hash of the SELFDESTRUCT (filter: not_like) + */ + transaction_hash_not_like?: string; + /** + * Transaction hash of the SELFDESTRUCT (filter: in_values) (comma-separated list) + */ + transaction_hash_in_values?: string; + /** + * Transaction hash of the SELFDESTRUCT (filter: not_in_values) (comma-separated list) + */ + transaction_hash_not_in_values?: string; + /** + * Internal index of the SELFDESTRUCT trace (filter: eq) + */ + internal_index_eq?: number; + /** + * Internal index of the SELFDESTRUCT trace (filter: ne) + */ + internal_index_ne?: number; + /** + * Internal index of the SELFDESTRUCT trace (filter: lt) + */ + internal_index_lt?: number; + /** + * Internal index of the SELFDESTRUCT trace (filter: lte) + */ + internal_index_lte?: number; + /** + * Internal index of the SELFDESTRUCT trace (filter: gt) + */ + internal_index_gt?: number; + /** + * Internal index of the SELFDESTRUCT trace (filter: gte) + */ + internal_index_gte?: number; + /** + * Internal index of the SELFDESTRUCT trace (filter: between_min) + */ + internal_index_between_min?: number; + /** + * Internal index of the SELFDESTRUCT trace (filter: between_max_value) + */ + internal_index_between_max_value?: number; + /** + * Internal index of the SELFDESTRUCT trace (filter: in_values) (comma-separated list) + */ + internal_index_in_values?: string; + /** + * Internal index of the SELFDESTRUCT trace (filter: not_in_values) (comma-separated list) + */ + internal_index_not_in_values?: string; + /** + * Storage slot key being cleared (filter: eq) + */ + slot_eq?: string; + /** + * Storage slot key being cleared (filter: ne) + */ + slot_ne?: string; + /** + * Storage slot key being cleared (filter: contains) + */ + slot_contains?: string; + /** + * Storage slot key being cleared (filter: starts_with) + */ + slot_starts_with?: string; + /** + * Storage slot key being cleared (filter: ends_with) + */ + slot_ends_with?: string; + /** + * Storage slot key being cleared (filter: like) + */ + slot_like?: string; + /** + * Storage slot key being cleared (filter: not_like) + */ + slot_not_like?: string; + /** + * Storage slot key being cleared (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Storage slot key being cleared (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Transaction index within the block (filter: eq) + */ + transaction_index_eq?: number; + /** + * Transaction index within the block (filter: ne) + */ + transaction_index_ne?: number; + /** + * Transaction index within the block (filter: lt) + */ + transaction_index_lt?: number; + /** + * Transaction index within the block (filter: lte) + */ + transaction_index_lte?: number; + /** + * Transaction index within the block (filter: gt) + */ + transaction_index_gt?: number; + /** + * Transaction index within the block (filter: gte) + */ + transaction_index_gte?: number; + /** + * Transaction index within the block (filter: between_min) + */ + transaction_index_between_min?: number; + /** + * Transaction index within the block (filter: between_max_value) + */ + transaction_index_between_max_value?: number; + /** + * Transaction index within the block (filter: in_values) (comma-separated list) + */ + transaction_index_in_values?: string; + /** + * Transaction index within the block (filter: not_in_values) (comma-separated list) + */ + transaction_index_not_in_values?: string; + /** + * Contract address that was selfdestructed (filter: eq) + */ + address_eq?: string; + /** + * Contract address that was selfdestructed (filter: ne) + */ + address_ne?: string; + /** + * Contract address that was selfdestructed (filter: contains) + */ + address_contains?: string; + /** + * Contract address that was selfdestructed (filter: starts_with) + */ + address_starts_with?: string; + /** + * Contract address that was selfdestructed (filter: ends_with) + */ + address_ends_with?: string; + /** + * Contract address that was selfdestructed (filter: like) + */ + address_like?: string; + /** + * Contract address that was selfdestructed (filter: not_like) + */ + address_not_like?: string; + /** + * Contract address that was selfdestructed (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * Contract address that was selfdestructed (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * Value before clearing (last known value) (filter: eq) + */ + from_value_eq?: string; + /** + * Value before clearing (last known value) (filter: ne) + */ + from_value_ne?: string; + /** + * Value before clearing (last known value) (filter: contains) + */ + from_value_contains?: string; + /** + * Value before clearing (last known value) (filter: starts_with) + */ + from_value_starts_with?: string; + /** + * Value before clearing (last known value) (filter: ends_with) + */ + from_value_ends_with?: string; + /** + * Value before clearing (last known value) (filter: like) + */ + from_value_like?: string; + /** + * Value before clearing (last known value) (filter: not_like) + */ + from_value_not_like?: string; + /** + * Value before clearing (last known value) (filter: in_values) (comma-separated list) + */ + from_value_in_values?: string; + /** + * Value before clearing (last known value) (filter: not_in_values) (comma-separated list) + */ + from_value_not_in_values?: string; + /** + * Value after clearing (always 0x00...00) (filter: eq) + */ + to_value_eq?: string; + /** + * Value after clearing (always 0x00...00) (filter: ne) + */ + to_value_ne?: string; + /** + * Value after clearing (always 0x00...00) (filter: contains) + */ + to_value_contains?: string; + /** + * Value after clearing (always 0x00...00) (filter: starts_with) + */ + to_value_starts_with?: string; + /** + * Value after clearing (always 0x00...00) (filter: ends_with) + */ + to_value_ends_with?: string; + /** + * Value after clearing (always 0x00...00) (filter: like) + */ + to_value_like?: string; + /** + * Value after clearing (always 0x00...00) (filter: not_like) + */ + to_value_not_like?: string; + /** + * Value after clearing (always 0x00...00) (filter: in_values) (comma-separated list) + */ + to_value_in_values?: string; + /** + * Value after clearing (always 0x00...00) (filter: not_in_values) (comma-separated list) + */ + to_value_not_in_values?: string; + /** + * The maximum number of int_storage_selfdestruct_diffs to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntStorageSelfdestructDiffs` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_storage_selfdestruct_diffs'; }; -/** - * Response for getting a single int_block_mev_canonical record - */ -export type GetIntBlockMevCanonicalResponse = { - item?: IntBlockMevCanonical; +export type IntStorageSelfdestructDiffsServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_block_opcode_gas record - */ -export type GetIntBlockOpcodeGasResponse = { - item?: IntBlockOpcodeGas; -}; +export type IntStorageSelfdestructDiffsServiceListError = + IntStorageSelfdestructDiffsServiceListErrors[keyof IntStorageSelfdestructDiffsServiceListErrors]; -/** - * Response for getting a single int_block_proposer_canonical record - */ -export type GetIntBlockProposerCanonicalResponse = { - item?: IntBlockProposerCanonical; +export type IntStorageSelfdestructDiffsServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSelfdestructDiffsResponse; }; -/** - * Response for getting a single int_block_receipt_size record - */ -export type GetIntBlockReceiptSizeResponse = { - item?: IntBlockReceiptSize; -}; +export type IntStorageSelfdestructDiffsServiceListResponse = + IntStorageSelfdestructDiffsServiceListResponses[keyof IntStorageSelfdestructDiffsServiceListResponses]; -/** - * Response for getting a single int_block_resource_gas record - */ -export type GetIntBlockResourceGasResponse = { - item?: IntBlockResourceGas; +export type IntStorageSelfdestructDiffsServiceGetData = { + body?: never; + path: { + /** + * Block where SELFDESTRUCT occurred + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_selfdestruct_diffs/{block_number}'; }; -/** - * Response for getting a single int_contract_creation record - */ -export type GetIntContractCreationResponse = { - item?: IntContractCreation; +export type IntStorageSelfdestructDiffsServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_contract_selfdestruct record - */ -export type GetIntContractSelfdestructResponse = { - item?: IntContractSelfdestruct; -}; +export type IntStorageSelfdestructDiffsServiceGetError = + IntStorageSelfdestructDiffsServiceGetErrors[keyof IntStorageSelfdestructDiffsServiceGetErrors]; -/** - * Response for getting a single int_contract_storage_expiry_1m record - */ -export type GetIntContractStorageExpiry1mResponse = { - item?: IntContractStorageExpiry1m; +export type IntStorageSelfdestructDiffsServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSelfdestructDiffsResponse; }; -/** - * Response for getting a single int_contract_storage_expiry_6m record - */ -export type GetIntContractStorageExpiry6mResponse = { - item?: IntContractStorageExpiry6m; -}; +export type IntStorageSelfdestructDiffsServiceGetResponse = + IntStorageSelfdestructDiffsServiceGetResponses[keyof IntStorageSelfdestructDiffsServiceGetResponses]; -/** - * Response for getting a single int_contract_storage_expiry_12m record - */ -export type GetIntContractStorageExpiry12mResponse = { - item?: IntContractStorageExpiry12m; +export type IntStorageSlotDiffServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The storage slot key (filter: eq) + */ + slot_key_eq?: string; + /** + * The storage slot key (filter: ne) + */ + slot_key_ne?: string; + /** + * The storage slot key (filter: contains) + */ + slot_key_contains?: string; + /** + * The storage slot key (filter: starts_with) + */ + slot_key_starts_with?: string; + /** + * The storage slot key (filter: ends_with) + */ + slot_key_ends_with?: string; + /** + * The storage slot key (filter: like) + */ + slot_key_like?: string; + /** + * The storage slot key (filter: not_like) + */ + slot_key_not_like?: string; + /** + * The storage slot key (filter: in_values) (comma-separated list) + */ + slot_key_in_values?: string; + /** + * The storage slot key (filter: not_in_values) (comma-separated list) + */ + slot_key_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: eq) + */ + effective_bytes_from_eq?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: ne) + */ + effective_bytes_from_ne?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: lt) + */ + effective_bytes_from_lt?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: lte) + */ + effective_bytes_from_lte?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: gt) + */ + effective_bytes_from_gt?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: gte) + */ + effective_bytes_from_gte?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: between_min) + */ + effective_bytes_from_between_min?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: between_max_value) + */ + effective_bytes_from_between_max_value?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: in_values) (comma-separated list) + */ + effective_bytes_from_in_values?: string; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_from_not_in_values?: string; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: eq) + */ + effective_bytes_to_eq?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: ne) + */ + effective_bytes_to_ne?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: lt) + */ + effective_bytes_to_lt?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: lte) + */ + effective_bytes_to_lte?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: gt) + */ + effective_bytes_to_gt?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: gte) + */ + effective_bytes_to_gte?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: between_min) + */ + effective_bytes_to_between_min?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: between_max_value) + */ + effective_bytes_to_between_max_value?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: in_values) (comma-separated list) + */ + effective_bytes_to_in_values?: string; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_to_not_in_values?: string; + /** + * The maximum number of int_storage_slot_diff to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntStorageSlotDiff` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_storage_slot_diff'; }; -/** - * Response for getting a single int_contract_storage_expiry_18m record - */ -export type GetIntContractStorageExpiry18mResponse = { - item?: IntContractStorageExpiry18m; +export type IntStorageSlotDiffServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_contract_storage_expiry_24m record - */ -export type GetIntContractStorageExpiry24mResponse = { - item?: IntContractStorageExpiry24m; -}; +export type IntStorageSlotDiffServiceListError = + IntStorageSlotDiffServiceListErrors[keyof IntStorageSlotDiffServiceListErrors]; -/** - * Response for getting a single int_contract_storage_next_touch record - */ -export type GetIntContractStorageNextTouchResponse = { - item?: IntContractStorageNextTouch; +export type IntStorageSlotDiffServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotDiffResponse; }; -/** - * Response for getting a single int_contract_storage_reactivation_1m record - */ -export type GetIntContractStorageReactivation1mResponse = { - item?: IntContractStorageReactivation1m; -}; +export type IntStorageSlotDiffServiceListResponse = + IntStorageSlotDiffServiceListResponses[keyof IntStorageSlotDiffServiceListResponses]; -/** - * Response for getting a single int_contract_storage_reactivation_6m record - */ -export type GetIntContractStorageReactivation6mResponse = { - item?: IntContractStorageReactivation6m; +export type IntStorageSlotDiffServiceGetData = { + body?: never; + path: { + /** + * The block number + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_diff/{block_number}'; }; -/** - * Response for getting a single int_contract_storage_reactivation_12m record - */ -export type GetIntContractStorageReactivation12mResponse = { - item?: IntContractStorageReactivation12m; +export type IntStorageSlotDiffServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_contract_storage_reactivation_18m record - */ -export type GetIntContractStorageReactivation18mResponse = { - item?: IntContractStorageReactivation18m; +export type IntStorageSlotDiffServiceGetError = + IntStorageSlotDiffServiceGetErrors[keyof IntStorageSlotDiffServiceGetErrors]; + +export type IntStorageSlotDiffServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotDiffResponse; }; -/** - * Response for getting a single int_contract_storage_reactivation_24m record - */ -export type GetIntContractStorageReactivation24mResponse = { - item?: IntContractStorageReactivation24m; +export type IntStorageSlotDiffServiceGetResponse = + IntStorageSlotDiffServiceGetResponses[keyof IntStorageSlotDiffServiceGetResponses]; + +export type IntStorageSlotDiffByAddressSlotServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The storage slot key (filter: eq) + */ + slot_key_eq?: string; + /** + * The storage slot key (filter: ne) + */ + slot_key_ne?: string; + /** + * The storage slot key (filter: contains) + */ + slot_key_contains?: string; + /** + * The storage slot key (filter: starts_with) + */ + slot_key_starts_with?: string; + /** + * The storage slot key (filter: ends_with) + */ + slot_key_ends_with?: string; + /** + * The storage slot key (filter: like) + */ + slot_key_like?: string; + /** + * The storage slot key (filter: not_like) + */ + slot_key_not_like?: string; + /** + * The storage slot key (filter: in_values) (comma-separated list) + */ + slot_key_in_values?: string; + /** + * The storage slot key (filter: not_in_values) (comma-separated list) + */ + slot_key_not_in_values?: string; + /** + * The block number (filter: eq) + */ + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; + /** + * The block number (filter: gt) + */ + block_number_gt?: number; + /** + * The block number (filter: gte) + */ + block_number_gte?: number; + /** + * The block number (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: eq) + */ + effective_bytes_from_eq?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: ne) + */ + effective_bytes_from_ne?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: lt) + */ + effective_bytes_from_lt?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: lte) + */ + effective_bytes_from_lte?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: gt) + */ + effective_bytes_from_gt?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: gte) + */ + effective_bytes_from_gte?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: between_min) + */ + effective_bytes_from_between_min?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: between_max_value) + */ + effective_bytes_from_between_max_value?: number; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: in_values) (comma-separated list) + */ + effective_bytes_from_in_values?: string; + /** + * Number of effective bytes in the first from_value of the block (0-32) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_from_not_in_values?: string; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: eq) + */ + effective_bytes_to_eq?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: ne) + */ + effective_bytes_to_ne?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: lt) + */ + effective_bytes_to_lt?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: lte) + */ + effective_bytes_to_lte?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: gt) + */ + effective_bytes_to_gt?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: gte) + */ + effective_bytes_to_gte?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: between_min) + */ + effective_bytes_to_between_min?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: between_max_value) + */ + effective_bytes_to_between_max_value?: number; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: in_values) (comma-separated list) + */ + effective_bytes_to_in_values?: string; + /** + * Number of effective bytes in the last to_value of the block (0-32) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_to_not_in_values?: string; + /** + * The maximum number of int_storage_slot_diff_by_address_slot to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntStorageSlotDiffByAddressSlot` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_storage_slot_diff_by_address_slot'; }; -/** - * Response for getting a single int_contract_storage_state_by_address record - */ -export type GetIntContractStorageStateByAddressResponse = { - item?: IntContractStorageStateByAddress; +export type IntStorageSlotDiffByAddressSlotServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_contract_storage_state_by_block record - */ -export type GetIntContractStorageStateByBlockResponse = { - item?: IntContractStorageStateByBlock; +export type IntStorageSlotDiffByAddressSlotServiceListError = + IntStorageSlotDiffByAddressSlotServiceListErrors[keyof IntStorageSlotDiffByAddressSlotServiceListErrors]; + +export type IntStorageSlotDiffByAddressSlotServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotDiffByAddressSlotResponse; }; -/** - * Response for getting a single int_contract_storage_state record - */ -export type GetIntContractStorageStateResponse = { - item?: IntContractStorageState; +export type IntStorageSlotDiffByAddressSlotServiceListResponse = + IntStorageSlotDiffByAddressSlotServiceListResponses[keyof IntStorageSlotDiffByAddressSlotServiceListResponses]; + +export type IntStorageSlotDiffByAddressSlotServiceGetData = { + body?: never; + path: { + /** + * The contract address + */ + address: string; + }; + query?: never; + url: '/api/v1/int_storage_slot_diff_by_address_slot/{address}'; }; -/** - * Response for getting a single int_contract_storage_state_with_expiry_by_address record - */ -export type GetIntContractStorageStateWithExpiryByAddressResponse = { - item?: IntContractStorageStateWithExpiryByAddress; +export type IntStorageSlotDiffByAddressSlotServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_contract_storage_state_with_expiry_by_block record - */ -export type GetIntContractStorageStateWithExpiryByBlockResponse = { - item?: IntContractStorageStateWithExpiryByBlock; +export type IntStorageSlotDiffByAddressSlotServiceGetError = + IntStorageSlotDiffByAddressSlotServiceGetErrors[keyof IntStorageSlotDiffByAddressSlotServiceGetErrors]; + +export type IntStorageSlotDiffByAddressSlotServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotDiffByAddressSlotResponse; }; -/** - * Response for getting a single int_contract_storage_state_with_expiry record - */ -export type GetIntContractStorageStateWithExpiryResponse = { - item?: IntContractStorageStateWithExpiry; +export type IntStorageSlotDiffByAddressSlotServiceGetResponse = + IntStorageSlotDiffByAddressSlotServiceGetResponses[keyof IntStorageSlotDiffByAddressSlotServiceGetResponses]; + +export type IntStorageSlotExpiry1mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this slot expiry is recorded (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this slot expiry is recorded (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this slot expiry is recorded (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this slot expiry is recorded (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this slot expiry is recorded (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this slot expiry is recorded (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this slot expiry is recorded (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this slot expiry is recorded (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this slot expiry is recorded (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this slot expiry is recorded (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The storage slot key (filter: eq) + */ + slot_key_eq?: string; + /** + * The storage slot key (filter: ne) + */ + slot_key_ne?: string; + /** + * The storage slot key (filter: contains) + */ + slot_key_contains?: string; + /** + * The storage slot key (filter: starts_with) + */ + slot_key_starts_with?: string; + /** + * The storage slot key (filter: ends_with) + */ + slot_key_ends_with?: string; + /** + * The storage slot key (filter: like) + */ + slot_key_like?: string; + /** + * The storage slot key (filter: not_like) + */ + slot_key_not_like?: string; + /** + * The storage slot key (filter: in_values) (comma-separated list) + */ + slot_key_in_values?: string; + /** + * The storage slot key (filter: not_in_values) (comma-separated list) + */ + slot_key_not_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of effective bytes that were set (0-32) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Number of effective bytes that were set (0-32) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Number of effective bytes that were set (0-32) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Number of effective bytes that were set (0-32) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Number of effective bytes that were set (0-32) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Number of effective bytes that were set (0-32) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Number of effective bytes that were set (0-32) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Number of effective bytes that were set (0-32) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Number of effective bytes that were set (0-32) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Number of effective bytes that were set (0-32) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_storage_slot_expiry_1m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntStorageSlotExpiry1m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_storage_slot_expiry_1m'; }; -/** - * Response for getting a single int_custody_probe_order_by_slot record - */ -export type GetIntCustodyProbeOrderBySlotResponse = { - item?: IntCustodyProbeOrderBySlot; +export type IntStorageSlotExpiry1mServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_custody_probe record - */ -export type GetIntCustodyProbeResponse = { - item?: IntCustodyProbe; -}; +export type IntStorageSlotExpiry1mServiceListError = + IntStorageSlotExpiry1mServiceListErrors[keyof IntStorageSlotExpiry1mServiceListErrors]; -/** - * Response for getting a single int_engine_get_blobs record - */ -export type GetIntEngineGetBlobsResponse = { - item?: IntEngineGetBlobs; +export type IntStorageSlotExpiry1mServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotExpiry1mResponse; }; -/** - * Response for getting a single int_engine_new_payload_fastest_execution_by_node_class record - */ -export type GetIntEngineNewPayloadFastestExecutionByNodeClassResponse = { - item?: IntEngineNewPayloadFastestExecutionByNodeClass; -}; +export type IntStorageSlotExpiry1mServiceListResponse = + IntStorageSlotExpiry1mServiceListResponses[keyof IntStorageSlotExpiry1mServiceListResponses]; -/** - * Response for getting a single int_engine_new_payload record - */ -export type GetIntEngineNewPayloadResponse = { - item?: IntEngineNewPayload; +export type IntStorageSlotExpiry1mServiceGetData = { + body?: never; + path: { + /** + * The block number where this slot expiry is recorded + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_expiry_1m/{block_number}'; }; -/** - * Response for getting a single int_execution_block_by_date record - */ -export type GetIntExecutionBlockByDateResponse = { - item?: IntExecutionBlockByDate; +export type IntStorageSlotExpiry1mServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_execution_state_size_by_block record - */ -export type GetIntExecutionStateSizeByBlockResponse = { - item?: IntExecutionStateSizeByBlock; -}; +export type IntStorageSlotExpiry1mServiceGetError = + IntStorageSlotExpiry1mServiceGetErrors[keyof IntStorageSlotExpiry1mServiceGetErrors]; -/** - * Response for getting a single int_rocketpool_megapool record - */ -export type GetIntRocketpoolMegapoolResponse = { - item?: IntRocketpoolMegapool; +export type IntStorageSlotExpiry1mServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotExpiry1mResponse; }; -/** - * Response for getting a single int_rocketpool_minipool record - */ -export type GetIntRocketpoolMinipoolResponse = { - item?: IntRocketpoolMinipool; -}; +export type IntStorageSlotExpiry1mServiceGetResponse = + IntStorageSlotExpiry1mServiceGetResponses[keyof IntStorageSlotExpiry1mServiceGetResponses]; -/** - * Response for getting a single int_rocketpool_node_event record - */ -export type GetIntRocketpoolNodeEventResponse = { - item?: IntRocketpoolNodeEvent; +export type IntStorageSlotExpiry6mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this slot expiry is recorded (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this slot expiry is recorded (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this slot expiry is recorded (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this slot expiry is recorded (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this slot expiry is recorded (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this slot expiry is recorded (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this slot expiry is recorded (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this slot expiry is recorded (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this slot expiry is recorded (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this slot expiry is recorded (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The storage slot key (filter: eq) + */ + slot_key_eq?: string; + /** + * The storage slot key (filter: ne) + */ + slot_key_ne?: string; + /** + * The storage slot key (filter: contains) + */ + slot_key_contains?: string; + /** + * The storage slot key (filter: starts_with) + */ + slot_key_starts_with?: string; + /** + * The storage slot key (filter: ends_with) + */ + slot_key_ends_with?: string; + /** + * The storage slot key (filter: like) + */ + slot_key_like?: string; + /** + * The storage slot key (filter: not_like) + */ + slot_key_not_like?: string; + /** + * The storage slot key (filter: in_values) (comma-separated list) + */ + slot_key_in_values?: string; + /** + * The storage slot key (filter: not_in_values) (comma-separated list) + */ + slot_key_not_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of effective bytes that were set (0-32) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Number of effective bytes that were set (0-32) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Number of effective bytes that were set (0-32) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Number of effective bytes that were set (0-32) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Number of effective bytes that were set (0-32) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Number of effective bytes that were set (0-32) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Number of effective bytes that were set (0-32) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Number of effective bytes that were set (0-32) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Number of effective bytes that were set (0-32) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Number of effective bytes that were set (0-32) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_storage_slot_expiry_6m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntStorageSlotExpiry6m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_storage_slot_expiry_6m'; }; -/** - * Response for getting a single int_rocketpool_node_timezone record - */ -export type GetIntRocketpoolNodeTimezoneResponse = { - item?: IntRocketpoolNodeTimezone; +export type IntStorageSlotExpiry6mServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_storage_selfdestruct_diffs record - */ -export type GetIntStorageSelfdestructDiffsResponse = { - item?: IntStorageSelfdestructDiffs; -}; +export type IntStorageSlotExpiry6mServiceListError = + IntStorageSlotExpiry6mServiceListErrors[keyof IntStorageSlotExpiry6mServiceListErrors]; -/** - * Response for getting a single int_storage_slot_diff_by_address_slot record - */ -export type GetIntStorageSlotDiffByAddressSlotResponse = { - item?: IntStorageSlotDiffByAddressSlot; +export type IntStorageSlotExpiry6mServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotExpiry6mResponse; }; -/** - * Response for getting a single int_storage_slot_diff record - */ -export type GetIntStorageSlotDiffResponse = { - item?: IntStorageSlotDiff; -}; +export type IntStorageSlotExpiry6mServiceListResponse = + IntStorageSlotExpiry6mServiceListResponses[keyof IntStorageSlotExpiry6mServiceListResponses]; -/** - * Response for getting a single int_storage_slot_expiry_1m record - */ -export type GetIntStorageSlotExpiry1mResponse = { - item?: IntStorageSlotExpiry1m; +export type IntStorageSlotExpiry6mServiceGetData = { + body?: never; + path: { + /** + * The block number where this slot expiry is recorded + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_expiry_6m/{block_number}'; }; -/** - * Response for getting a single int_storage_slot_expiry_6m record - */ -export type GetIntStorageSlotExpiry6mResponse = { - item?: IntStorageSlotExpiry6m; +export type IntStorageSlotExpiry6mServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_storage_slot_expiry_12m record - */ -export type GetIntStorageSlotExpiry12mResponse = { - item?: IntStorageSlotExpiry12m; +export type IntStorageSlotExpiry6mServiceGetError = + IntStorageSlotExpiry6mServiceGetErrors[keyof IntStorageSlotExpiry6mServiceGetErrors]; + +export type IntStorageSlotExpiry6mServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotExpiry6mResponse; }; -/** - * Response for getting a single int_storage_slot_expiry_18m record - */ -export type GetIntStorageSlotExpiry18mResponse = { - item?: IntStorageSlotExpiry18m; +export type IntStorageSlotExpiry6mServiceGetResponse = + IntStorageSlotExpiry6mServiceGetResponses[keyof IntStorageSlotExpiry6mServiceGetResponses]; + +export type IntStorageSlotExpiry12mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this slot expiry is recorded (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this slot expiry is recorded (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this slot expiry is recorded (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this slot expiry is recorded (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this slot expiry is recorded (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this slot expiry is recorded (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this slot expiry is recorded (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this slot expiry is recorded (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this slot expiry is recorded (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this slot expiry is recorded (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The storage slot key (filter: eq) + */ + slot_key_eq?: string; + /** + * The storage slot key (filter: ne) + */ + slot_key_ne?: string; + /** + * The storage slot key (filter: contains) + */ + slot_key_contains?: string; + /** + * The storage slot key (filter: starts_with) + */ + slot_key_starts_with?: string; + /** + * The storage slot key (filter: ends_with) + */ + slot_key_ends_with?: string; + /** + * The storage slot key (filter: like) + */ + slot_key_like?: string; + /** + * The storage slot key (filter: not_like) + */ + slot_key_not_like?: string; + /** + * The storage slot key (filter: in_values) (comma-separated list) + */ + slot_key_in_values?: string; + /** + * The storage slot key (filter: not_in_values) (comma-separated list) + */ + slot_key_not_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of effective bytes that were set (0-32) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Number of effective bytes that were set (0-32) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Number of effective bytes that were set (0-32) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Number of effective bytes that were set (0-32) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Number of effective bytes that were set (0-32) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Number of effective bytes that were set (0-32) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Number of effective bytes that were set (0-32) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Number of effective bytes that were set (0-32) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Number of effective bytes that were set (0-32) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Number of effective bytes that were set (0-32) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_storage_slot_expiry_12m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntStorageSlotExpiry12m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_storage_slot_expiry_12m'; }; -/** - * Response for getting a single int_storage_slot_expiry_24m record - */ -export type GetIntStorageSlotExpiry24mResponse = { - item?: IntStorageSlotExpiry24m; +export type IntStorageSlotExpiry12mServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_storage_slot_lifecycle_boundary record - */ -export type GetIntStorageSlotLifecycleBoundaryResponse = { - item?: IntStorageSlotLifecycleBoundary; +export type IntStorageSlotExpiry12mServiceListError = + IntStorageSlotExpiry12mServiceListErrors[keyof IntStorageSlotExpiry12mServiceListErrors]; + +export type IntStorageSlotExpiry12mServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotExpiry12mResponse; }; -/** - * Response for getting a single int_storage_slot_lifecycle record - */ -export type GetIntStorageSlotLifecycleResponse = { - item?: IntStorageSlotLifecycle; +export type IntStorageSlotExpiry12mServiceListResponse = + IntStorageSlotExpiry12mServiceListResponses[keyof IntStorageSlotExpiry12mServiceListResponses]; + +export type IntStorageSlotExpiry12mServiceGetData = { + body?: never; + path: { + /** + * The block number where this slot expiry is recorded + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_expiry_12m/{block_number}'; }; -/** - * Response for getting a single int_storage_slot_next_touch record - */ -export type GetIntStorageSlotNextTouchResponse = { - item?: IntStorageSlotNextTouch; +export type IntStorageSlotExpiry12mServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_storage_slot_reactivation_1m record - */ -export type GetIntStorageSlotReactivation1mResponse = { - item?: IntStorageSlotReactivation1m; +export type IntStorageSlotExpiry12mServiceGetError = + IntStorageSlotExpiry12mServiceGetErrors[keyof IntStorageSlotExpiry12mServiceGetErrors]; + +export type IntStorageSlotExpiry12mServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotExpiry12mResponse; }; -/** - * Response for getting a single int_storage_slot_reactivation_6m record - */ -export type GetIntStorageSlotReactivation6mResponse = { - item?: IntStorageSlotReactivation6m; +export type IntStorageSlotExpiry12mServiceGetResponse = + IntStorageSlotExpiry12mServiceGetResponses[keyof IntStorageSlotExpiry12mServiceGetResponses]; + +export type IntStorageSlotExpiry18mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this slot expiry is recorded (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this slot expiry is recorded (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this slot expiry is recorded (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this slot expiry is recorded (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this slot expiry is recorded (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this slot expiry is recorded (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this slot expiry is recorded (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this slot expiry is recorded (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this slot expiry is recorded (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this slot expiry is recorded (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The storage slot key (filter: eq) + */ + slot_key_eq?: string; + /** + * The storage slot key (filter: ne) + */ + slot_key_ne?: string; + /** + * The storage slot key (filter: contains) + */ + slot_key_contains?: string; + /** + * The storage slot key (filter: starts_with) + */ + slot_key_starts_with?: string; + /** + * The storage slot key (filter: ends_with) + */ + slot_key_ends_with?: string; + /** + * The storage slot key (filter: like) + */ + slot_key_like?: string; + /** + * The storage slot key (filter: not_like) + */ + slot_key_not_like?: string; + /** + * The storage slot key (filter: in_values) (comma-separated list) + */ + slot_key_in_values?: string; + /** + * The storage slot key (filter: not_in_values) (comma-separated list) + */ + slot_key_not_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of effective bytes that were set (0-32) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Number of effective bytes that were set (0-32) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Number of effective bytes that were set (0-32) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Number of effective bytes that were set (0-32) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Number of effective bytes that were set (0-32) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Number of effective bytes that were set (0-32) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Number of effective bytes that were set (0-32) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Number of effective bytes that were set (0-32) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Number of effective bytes that were set (0-32) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Number of effective bytes that were set (0-32) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_storage_slot_expiry_18m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntStorageSlotExpiry18m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_storage_slot_expiry_18m'; }; -/** - * Response for getting a single int_storage_slot_reactivation_12m record - */ -export type GetIntStorageSlotReactivation12mResponse = { - item?: IntStorageSlotReactivation12m; +export type IntStorageSlotExpiry18mServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_storage_slot_reactivation_18m record - */ -export type GetIntStorageSlotReactivation18mResponse = { - item?: IntStorageSlotReactivation18m; -}; +export type IntStorageSlotExpiry18mServiceListError = + IntStorageSlotExpiry18mServiceListErrors[keyof IntStorageSlotExpiry18mServiceListErrors]; -/** - * Response for getting a single int_storage_slot_reactivation_24m record - */ -export type GetIntStorageSlotReactivation24mResponse = { - item?: IntStorageSlotReactivation24m; +export type IntStorageSlotExpiry18mServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotExpiry18mResponse; }; -/** - * Response for getting a single int_storage_slot_read record - */ -export type GetIntStorageSlotReadResponse = { - item?: IntStorageSlotRead; -}; +export type IntStorageSlotExpiry18mServiceListResponse = + IntStorageSlotExpiry18mServiceListResponses[keyof IntStorageSlotExpiry18mServiceListResponses]; -/** - * Response for getting a single int_storage_slot_state_by_address record - */ -export type GetIntStorageSlotStateByAddressResponse = { - item?: IntStorageSlotStateByAddress; +export type IntStorageSlotExpiry18mServiceGetData = { + body?: never; + path: { + /** + * The block number where this slot expiry is recorded + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_expiry_18m/{block_number}'; }; -/** - * Response for getting a single int_storage_slot_state_by_block record - */ -export type GetIntStorageSlotStateByBlockResponse = { - item?: IntStorageSlotStateByBlock; +export type IntStorageSlotExpiry18mServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_storage_slot_state record - */ -export type GetIntStorageSlotStateResponse = { - item?: IntStorageSlotState; -}; +export type IntStorageSlotExpiry18mServiceGetError = + IntStorageSlotExpiry18mServiceGetErrors[keyof IntStorageSlotExpiry18mServiceGetErrors]; -/** - * Response for getting a single int_storage_slot_state_with_expiry_by_address record - */ -export type GetIntStorageSlotStateWithExpiryByAddressResponse = { - item?: IntStorageSlotStateWithExpiryByAddress; +export type IntStorageSlotExpiry18mServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotExpiry18mResponse; }; -/** - * Response for getting a single int_storage_slot_state_with_expiry_by_block record - */ -export type GetIntStorageSlotStateWithExpiryByBlockResponse = { - item?: IntStorageSlotStateWithExpiryByBlock; -}; +export type IntStorageSlotExpiry18mServiceGetResponse = + IntStorageSlotExpiry18mServiceGetResponses[keyof IntStorageSlotExpiry18mServiceGetResponses]; -/** - * Response for getting a single int_storage_slot_state_with_expiry record - */ -export type GetIntStorageSlotStateWithExpiryResponse = { - item?: IntStorageSlotStateWithExpiry; +export type IntStorageSlotExpiry24mServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The block number where this slot expiry is recorded (filter: eq) + */ + block_number_eq?: number; + /** + * The block number where this slot expiry is recorded (filter: ne) + */ + block_number_ne?: number; + /** + * The block number where this slot expiry is recorded (filter: lt) + */ + block_number_lt?: number; + /** + * The block number where this slot expiry is recorded (filter: lte) + */ + block_number_lte?: number; + /** + * The block number where this slot expiry is recorded (filter: gt) + */ + block_number_gt?: number; + /** + * The block number where this slot expiry is recorded (filter: gte) + */ + block_number_gte?: number; + /** + * The block number where this slot expiry is recorded (filter: between_min) + */ + block_number_between_min?: number; + /** + * The block number where this slot expiry is recorded (filter: between_max_value) + */ + block_number_between_max_value?: number; + /** + * The block number where this slot expiry is recorded (filter: in_values) (comma-separated list) + */ + block_number_in_values?: string; + /** + * The block number where this slot expiry is recorded (filter: not_in_values) (comma-separated list) + */ + block_number_not_in_values?: string; + /** + * The contract address (filter: eq) + */ + address_eq?: string; + /** + * The contract address (filter: ne) + */ + address_ne?: string; + /** + * The contract address (filter: contains) + */ + address_contains?: string; + /** + * The contract address (filter: starts_with) + */ + address_starts_with?: string; + /** + * The contract address (filter: ends_with) + */ + address_ends_with?: string; + /** + * The contract address (filter: like) + */ + address_like?: string; + /** + * The contract address (filter: not_like) + */ + address_not_like?: string; + /** + * The contract address (filter: in_values) (comma-separated list) + */ + address_in_values?: string; + /** + * The contract address (filter: not_in_values) (comma-separated list) + */ + address_not_in_values?: string; + /** + * The storage slot key (filter: eq) + */ + slot_key_eq?: string; + /** + * The storage slot key (filter: ne) + */ + slot_key_ne?: string; + /** + * The storage slot key (filter: contains) + */ + slot_key_contains?: string; + /** + * The storage slot key (filter: starts_with) + */ + slot_key_starts_with?: string; + /** + * The storage slot key (filter: ends_with) + */ + slot_key_ends_with?: string; + /** + * The storage slot key (filter: like) + */ + slot_key_like?: string; + /** + * The storage slot key (filter: not_like) + */ + slot_key_not_like?: string; + /** + * The storage slot key (filter: in_values) (comma-separated list) + */ + slot_key_in_values?: string; + /** + * The storage slot key (filter: not_in_values) (comma-separated list) + */ + slot_key_not_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) + */ + touch_block_eq?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) + */ + touch_block_ne?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) + */ + touch_block_lt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) + */ + touch_block_lte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) + */ + touch_block_gt?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) + */ + touch_block_gte?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) + */ + touch_block_between_min?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) + */ + touch_block_between_max_value?: number; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) + */ + touch_block_in_values?: string; + /** + * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) + */ + touch_block_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of effective bytes that were set (0-32) (filter: eq) + */ + effective_bytes_eq?: number; + /** + * Number of effective bytes that were set (0-32) (filter: ne) + */ + effective_bytes_ne?: number; + /** + * Number of effective bytes that were set (0-32) (filter: lt) + */ + effective_bytes_lt?: number; + /** + * Number of effective bytes that were set (0-32) (filter: lte) + */ + effective_bytes_lte?: number; + /** + * Number of effective bytes that were set (0-32) (filter: gt) + */ + effective_bytes_gt?: number; + /** + * Number of effective bytes that were set (0-32) (filter: gte) + */ + effective_bytes_gte?: number; + /** + * Number of effective bytes that were set (0-32) (filter: between_min) + */ + effective_bytes_between_min?: number; + /** + * Number of effective bytes that were set (0-32) (filter: between_max_value) + */ + effective_bytes_between_max_value?: number; + /** + * Number of effective bytes that were set (0-32) (filter: in_values) (comma-separated list) + */ + effective_bytes_in_values?: string; + /** + * Number of effective bytes that were set (0-32) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_not_in_values?: string; + /** + * The maximum number of int_storage_slot_expiry_24m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntStorageSlotExpiry24m` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_storage_slot_expiry_24m'; }; -/** - * Response for getting a single int_token_contract_storage_state_by_block record - */ -export type GetIntTokenContractStorageStateByBlockResponse = { - item?: IntTokenContractStorageStateByBlock; +export type IntStorageSlotExpiry24mServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_transaction_call_frame_opcode_gas record - */ -export type GetIntTransactionCallFrameOpcodeGasResponse = { - item?: IntTransactionCallFrameOpcodeGas; -}; +export type IntStorageSlotExpiry24mServiceListError = + IntStorageSlotExpiry24mServiceListErrors[keyof IntStorageSlotExpiry24mServiceListErrors]; -/** - * Response for getting a single int_transaction_call_frame_opcode_resource_gas record - */ -export type GetIntTransactionCallFrameOpcodeResourceGasResponse = { - item?: IntTransactionCallFrameOpcodeResourceGas; +export type IntStorageSlotExpiry24mServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotExpiry24mResponse; }; -/** - * Response for getting a single int_transaction_call_frame record - */ -export type GetIntTransactionCallFrameResponse = { - item?: IntTransactionCallFrame; -}; +export type IntStorageSlotExpiry24mServiceListResponse = + IntStorageSlotExpiry24mServiceListResponses[keyof IntStorageSlotExpiry24mServiceListResponses]; -/** - * Response for getting a single int_transaction_opcode_gas record - */ -export type GetIntTransactionOpcodeGasResponse = { - item?: IntTransactionOpcodeGas; +export type IntStorageSlotExpiry24mServiceGetData = { + body?: never; + path: { + /** + * The block number where this slot expiry is recorded + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_expiry_24m/{block_number}'; }; -/** - * Response for getting a single int_transaction_receipt_size record - */ -export type GetIntTransactionReceiptSizeResponse = { - item?: IntTransactionReceiptSize; +export type IntStorageSlotExpiry24mServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for getting a single int_transaction_resource_gas record - */ -export type GetIntTransactionResourceGasResponse = { - item?: IntTransactionResourceGas; +export type IntStorageSlotExpiry24mServiceGetError = + IntStorageSlotExpiry24mServiceGetErrors[keyof IntStorageSlotExpiry24mServiceGetErrors]; + +export type IntStorageSlotExpiry24mServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotExpiry24mResponse; }; -/** - * Contains an arbitrary serialized message along with a @type that describes the type of the serialized message. - */ -export type GoogleProtobufAny = { +export type IntStorageSlotExpiry24mServiceGetResponse = + IntStorageSlotExpiry24mServiceGetResponses[keyof IntStorageSlotExpiry24mServiceGetResponses]; + +export type IntStorageSlotLifecycleServiceListData = { + body?: never; + path?: never; + query?: { /** - * The type of the serialized message. + * The contract address (filter: eq) */ - '@type'?: string; - [key: string]: unknown | string | undefined; -}; - -export type IntAttestationAttestedCanonical = { + address_eq?: string; /** - * The index of the validator attesting + * The contract address (filter: ne) */ - attesting_validator_index?: number; + address_ne?: string; /** - * The beacon block root hash + * The contract address (filter: contains) */ - block_root?: string; + address_contains?: string; /** - * The epoch number containing the slot + * The contract address (filter: starts_with) */ - epoch?: number; + address_starts_with?: string; /** - * The wall clock time when the epoch started + * The contract address (filter: ends_with) */ - epoch_start_date_time?: number; + address_ends_with?: string; /** - * The distance from the slot when the attestation was included + * The contract address (filter: like) */ - inclusion_distance?: number; + address_like?: string; /** - * The slot number + * The contract address (filter: not_like) */ - slot?: number; + address_not_like?: string; /** - * The wall clock time when the slot started + * The contract address (filter: in_values) (comma-separated list) */ - slot_start_date_time?: number; + address_in_values?: string; /** - * The source epoch number in the attestation group + * The contract address (filter: not_in_values) (comma-separated list) */ - source_epoch?: number; + address_not_in_values?: string; /** - * The wall clock time when the source epoch started + * The storage slot key (filter: eq) */ - source_epoch_start_date_time?: number; + slot_key_eq?: string; /** - * The source beacon block root hash in the attestation group + * The storage slot key (filter: ne) */ - source_root?: string; + slot_key_ne?: string; /** - * The target epoch number in the attestation group + * The storage slot key (filter: contains) */ - target_epoch?: number; + slot_key_contains?: string; /** - * The wall clock time when the target epoch started + * The storage slot key (filter: starts_with) */ - target_epoch_start_date_time?: number; + slot_key_starts_with?: string; /** - * The target beacon block root hash in the attestation group + * The storage slot key (filter: ends_with) */ - target_root?: string; + slot_key_ends_with?: string; /** - * Timestamp when the record was last updated + * The storage slot key (filter: like) */ - updated_date_time?: number; -}; - -export type IntAttestationAttestedHead = { + slot_key_like?: string; /** - * The index of the validator attesting + * The storage slot key (filter: not_like) */ - attesting_validator_index?: number; + slot_key_not_like?: string; /** - * The beacon block root hash + * The storage slot key (filter: in_values) (comma-separated list) */ - block_root?: string; + slot_key_in_values?: string; /** - * The epoch number containing the slot + * The storage slot key (filter: not_in_values) (comma-separated list) */ - epoch?: number; + slot_key_not_in_values?: string; /** - * The wall clock time when the epoch started + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: eq) */ - epoch_start_date_time?: number; + lifecycle_number_eq?: number; /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: ne) */ - propagation_distance?: number; + lifecycle_number_ne?: number; /** - * The slot number + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: lt) */ - slot?: number; + lifecycle_number_lt?: number; /** - * The wall clock time when the slot started + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: lte) */ - slot_start_date_time?: number; + lifecycle_number_lte?: number; /** - * The source epoch number in the attestation group + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: gt) */ - source_epoch?: number; + lifecycle_number_gt?: number; /** - * The wall clock time when the source epoch started + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: gte) */ - source_epoch_start_date_time?: number; + lifecycle_number_gte?: number; /** - * The source beacon block root hash in the attestation group + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: between_min) */ - source_root?: string; + lifecycle_number_between_min?: number; /** - * The target epoch number in the attestation group + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: between_max_value) */ - target_epoch?: number; + lifecycle_number_between_max_value?: number; /** - * The wall clock time when the target epoch started + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: in_values) (comma-separated list) */ - target_epoch_start_date_time?: number; + lifecycle_number_in_values?: string; /** - * The target beacon block root hash in the attestation group + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: not_in_values) (comma-separated list) */ - target_root?: string; + lifecycle_number_not_in_values?: string; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: eq) */ - updated_date_time?: number; -}; - -export type IntAttestationFirstSeen = { + updated_date_time_eq?: number; /** - * The committee index of the attesting validator + * Timestamp when the record was last updated (filter: ne) */ - attesting_validator_committee_index?: string; + updated_date_time_ne?: number; /** - * The index of the validator attesting + * Timestamp when the record was last updated (filter: lt) */ - attesting_validator_index?: number; + updated_date_time_lt?: number; /** - * The beacon block root hash + * Timestamp when the record was last updated (filter: lte) */ - block_root?: string; + updated_date_time_lte?: number; /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" + * Timestamp when the record was last updated (filter: gt) */ - classification?: string; + updated_date_time_gt?: number; /** - * The epoch number containing the slot + * Timestamp when the record was last updated (filter: gte) */ - epoch?: number; + updated_date_time_gte?: number; /** - * The wall clock time when the epoch started + * Timestamp when the record was last updated (filter: between_min) */ - epoch_start_date_time?: number; + updated_date_time_between_min?: number; /** - * Autonomous system number of the client + * Timestamp when the record was last updated (filter: between_max_value) */ - meta_client_geo_autonomous_system_number?: number | null; + updated_date_time_between_max_value?: number; /** - * Autonomous system organization of the client + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - meta_client_geo_autonomous_system_organization?: string | null; + updated_date_time_in_values?: string; /** - * City of the client + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - meta_client_geo_city?: string; + updated_date_time_not_in_values?: string; /** - * Continent code of the client + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: eq) */ - meta_client_geo_continent_code?: string; + birth_block_eq?: number; /** - * Country of the client + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: ne) */ - meta_client_geo_country?: string; + birth_block_ne?: number; /** - * Country code of the client + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: lt) */ - meta_client_geo_country_code?: string; + birth_block_lt?: number; /** - * Latitude of the client + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: lte) */ - meta_client_geo_latitude?: number | null; + birth_block_lte?: number; /** - * Longitude of the client + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: gt) */ - meta_client_geo_longitude?: number | null; + birth_block_gt?: number; /** - * Implementation of the client + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: gte) */ - meta_client_implementation?: string; + birth_block_gte?: number; /** - * Name of the client + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: between_min) + */ + birth_block_between_min?: number; + /** + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: between_max_value) + */ + birth_block_between_max_value?: number; + /** + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: in_values) (comma-separated list) + */ + birth_block_in_values?: string; + /** + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: not_in_values) (comma-separated list) + */ + birth_block_not_in_values?: string; + /** + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: eq) + */ + death_block_eq?: number; + /** + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: ne) + */ + death_block_ne?: number; + /** + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: lt) + */ + death_block_lt?: number; + /** + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: lte) + */ + death_block_lte?: number; + /** + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: gt) + */ + death_block_gt?: number; + /** + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: gte) + */ + death_block_gte?: number; + /** + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: between_min) + */ + death_block_between_min?: number; + /** + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: between_max_value) + */ + death_block_between_max_value?: number; + /** + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: in_values) (comma-separated list) + */ + death_block_in_values?: string; + /** + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: not_in_values) (comma-separated list) + */ + death_block_not_in_values?: string; + /** + * Number of blocks between birth and death (NULL if still alive) (filter: eq) + */ + lifespan_blocks_eq?: number; + /** + * Number of blocks between birth and death (NULL if still alive) (filter: ne) + */ + lifespan_blocks_ne?: number; + /** + * Number of blocks between birth and death (NULL if still alive) (filter: lt) + */ + lifespan_blocks_lt?: number; + /** + * Number of blocks between birth and death (NULL if still alive) (filter: lte) + */ + lifespan_blocks_lte?: number; + /** + * Number of blocks between birth and death (NULL if still alive) (filter: gt) + */ + lifespan_blocks_gt?: number; + /** + * Number of blocks between birth and death (NULL if still alive) (filter: gte) + */ + lifespan_blocks_gte?: number; + /** + * Number of blocks between birth and death (NULL if still alive) (filter: between_min) + */ + lifespan_blocks_between_min?: number; + /** + * Number of blocks between birth and death (NULL if still alive) (filter: between_max_value) + */ + lifespan_blocks_between_max_value?: number; + /** + * Number of blocks between birth and death (NULL if still alive) (filter: in_values) (comma-separated list) + */ + lifespan_blocks_in_values?: string; + /** + * Number of blocks between birth and death (NULL if still alive) (filter: not_in_values) (comma-separated list) + */ + lifespan_blocks_not_in_values?: string; + /** + * Total number of times this slot was touched during this lifecycle (filter: eq) + */ + touch_count_eq?: number; + /** + * Total number of times this slot was touched during this lifecycle (filter: ne) + */ + touch_count_ne?: number; + /** + * Total number of times this slot was touched during this lifecycle (filter: lt) + */ + touch_count_lt?: number; + /** + * Total number of times this slot was touched during this lifecycle (filter: lte) + */ + touch_count_lte?: number; + /** + * Total number of times this slot was touched during this lifecycle (filter: gt) + */ + touch_count_gt?: number; + /** + * Total number of times this slot was touched during this lifecycle (filter: gte) + */ + touch_count_gte?: number; + /** + * Total number of times this slot was touched during this lifecycle (filter: between_min) + */ + touch_count_between_min?: number; + /** + * Total number of times this slot was touched during this lifecycle (filter: between_max_value) + */ + touch_count_between_max_value?: number; + /** + * Total number of times this slot was touched during this lifecycle (filter: in_values) (comma-separated list) + */ + touch_count_in_values?: string; + /** + * Total number of times this slot was touched during this lifecycle (filter: not_in_values) (comma-separated list) + */ + touch_count_not_in_values?: string; + /** + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: eq) + */ + effective_bytes_birth_eq?: number; + /** + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: ne) + */ + effective_bytes_birth_ne?: number; + /** + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: lt) + */ + effective_bytes_birth_lt?: number; + /** + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: lte) + */ + effective_bytes_birth_lte?: number; + /** + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: gt) + */ + effective_bytes_birth_gt?: number; + /** + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: gte) + */ + effective_bytes_birth_gte?: number; + /** + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: between_min) + */ + effective_bytes_birth_between_min?: number; + /** + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: between_max_value) + */ + effective_bytes_birth_between_max_value?: number; + /** + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: in_values) (comma-separated list) + */ + effective_bytes_birth_in_values?: string; + /** + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_birth_not_in_values?: string; + /** + * Maximum effective bytes observed during this lifecycle (filter: eq) + */ + effective_bytes_peak_eq?: number; + /** + * Maximum effective bytes observed during this lifecycle (filter: ne) + */ + effective_bytes_peak_ne?: number; + /** + * Maximum effective bytes observed during this lifecycle (filter: lt) + */ + effective_bytes_peak_lt?: number; + /** + * Maximum effective bytes observed during this lifecycle (filter: lte) + */ + effective_bytes_peak_lte?: number; + /** + * Maximum effective bytes observed during this lifecycle (filter: gt) + */ + effective_bytes_peak_gt?: number; + /** + * Maximum effective bytes observed during this lifecycle (filter: gte) + */ + effective_bytes_peak_gte?: number; + /** + * Maximum effective bytes observed during this lifecycle (filter: between_min) + */ + effective_bytes_peak_between_min?: number; + /** + * Maximum effective bytes observed during this lifecycle (filter: between_max_value) + */ + effective_bytes_peak_between_max_value?: number; + /** + * Maximum effective bytes observed during this lifecycle (filter: in_values) (comma-separated list) + */ + effective_bytes_peak_in_values?: string; + /** + * Maximum effective bytes observed during this lifecycle (filter: not_in_values) (comma-separated list) + */ + effective_bytes_peak_not_in_values?: string; + /** + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: eq) + */ + effective_bytes_death_eq?: number; + /** + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: ne) + */ + effective_bytes_death_ne?: number; + /** + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: lt) + */ + effective_bytes_death_lt?: number; + /** + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: lte) + */ + effective_bytes_death_lte?: number; + /** + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: gt) + */ + effective_bytes_death_gt?: number; + /** + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: gte) + */ + effective_bytes_death_gte?: number; + /** + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: between_min) + */ + effective_bytes_death_between_min?: number; + /** + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: between_max_value) + */ + effective_bytes_death_between_max_value?: number; + /** + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: in_values) (comma-separated list) + */ + effective_bytes_death_in_values?: string; + /** + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: not_in_values) (comma-separated list) + */ + effective_bytes_death_not_in_values?: string; + /** + * Most recent block where this slot was touched in this lifecycle (filter: eq) + */ + last_touch_block_eq?: number; + /** + * Most recent block where this slot was touched in this lifecycle (filter: ne) + */ + last_touch_block_ne?: number; + /** + * Most recent block where this slot was touched in this lifecycle (filter: lt) + */ + last_touch_block_lt?: number; + /** + * Most recent block where this slot was touched in this lifecycle (filter: lte) + */ + last_touch_block_lte?: number; + /** + * Most recent block where this slot was touched in this lifecycle (filter: gt) + */ + last_touch_block_gt?: number; + /** + * Most recent block where this slot was touched in this lifecycle (filter: gte) + */ + last_touch_block_gte?: number; + /** + * Most recent block where this slot was touched in this lifecycle (filter: between_min) + */ + last_touch_block_between_min?: number; + /** + * Most recent block where this slot was touched in this lifecycle (filter: between_max_value) + */ + last_touch_block_between_max_value?: number; + /** + * Most recent block where this slot was touched in this lifecycle (filter: in_values) (comma-separated list) + */ + last_touch_block_in_values?: string; + /** + * Most recent block where this slot was touched in this lifecycle (filter: not_in_values) (comma-separated list) + */ + last_touch_block_not_in_values?: string; + /** + * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: eq) + */ + interval_count_eq?: number; + /** + * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: ne) + */ + interval_count_ne?: number; + /** + * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: lt) + */ + interval_count_lt?: number; + /** + * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: lte) + */ + interval_count_lte?: number; + /** + * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: gt) + */ + interval_count_gt?: number; + /** + * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: gte) + */ + interval_count_gte?: number; + /** + * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: between_min) + */ + interval_count_between_min?: number; + /** + * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: between_max_value) + */ + interval_count_between_max_value?: number; + /** + * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: in_values) (comma-separated list) + */ + interval_count_in_values?: string; + /** + * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: not_in_values) (comma-separated list) + */ + interval_count_not_in_values?: string; + /** + * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: eq) + */ + interval_sum_eq?: number; + /** + * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: ne) + */ + interval_sum_ne?: number; + /** + * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: lt) + */ + interval_sum_lt?: number; + /** + * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: lte) + */ + interval_sum_lte?: number; + /** + * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: gt) + */ + interval_sum_gt?: number; + /** + * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: gte) + */ + interval_sum_gte?: number; + /** + * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: between_min) + */ + interval_sum_between_min?: number; + /** + * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: between_max_value) + */ + interval_sum_between_max_value?: number; + /** + * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: in_values) (comma-separated list) + */ + interval_sum_in_values?: string; + /** + * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: not_in_values) (comma-separated list) + */ + interval_sum_not_in_values?: string; + /** + * Maximum touch-to-touch interval in blocks (filter: eq) + */ + interval_max_eq?: number; + /** + * Maximum touch-to-touch interval in blocks (filter: ne) + */ + interval_max_ne?: number; + /** + * Maximum touch-to-touch interval in blocks (filter: lt) + */ + interval_max_lt?: number; + /** + * Maximum touch-to-touch interval in blocks (filter: lte) + */ + interval_max_lte?: number; + /** + * Maximum touch-to-touch interval in blocks (filter: gt) + */ + interval_max_gt?: number; + /** + * Maximum touch-to-touch interval in blocks (filter: gte) + */ + interval_max_gte?: number; + /** + * Maximum touch-to-touch interval in blocks (filter: between_min) + */ + interval_max_between_min?: number; + /** + * Maximum touch-to-touch interval in blocks (filter: between_max_value) + */ + interval_max_between_max_value?: number; + /** + * Maximum touch-to-touch interval in blocks (filter: in_values) (comma-separated list) + */ + interval_max_in_values?: string; + /** + * Maximum touch-to-touch interval in blocks (filter: not_in_values) (comma-separated list) + */ + interval_max_not_in_values?: string; + /** + * The maximum number of int_storage_slot_lifecycle to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntStorageSlotLifecycle` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - meta_client_name?: string; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_lifecycle'; +}; + +export type IntStorageSlotLifecycleServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotLifecycleServiceListError = + IntStorageSlotLifecycleServiceListErrors[keyof IntStorageSlotLifecycleServiceListErrors]; + +export type IntStorageSlotLifecycleServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotLifecycleResponse; +}; + +export type IntStorageSlotLifecycleServiceListResponse = + IntStorageSlotLifecycleServiceListResponses[keyof IntStorageSlotLifecycleServiceListResponses]; + +export type IntStorageSlotLifecycleServiceGetData = { + body?: never; + path: { /** - * Version of the client + * The contract address */ - meta_client_version?: string; + address: string; + }; + query?: never; + url: '/api/v1/int_storage_slot_lifecycle/{address}'; +}; + +export type IntStorageSlotLifecycleServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotLifecycleServiceGetError = + IntStorageSlotLifecycleServiceGetErrors[keyof IntStorageSlotLifecycleServiceGetErrors]; + +export type IntStorageSlotLifecycleServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotLifecycleResponse; +}; + +export type IntStorageSlotLifecycleServiceGetResponse = + IntStorageSlotLifecycleServiceGetResponses[keyof IntStorageSlotLifecycleServiceGetResponses]; + +export type IntStorageSlotLifecycleBoundaryServiceListData = { + body?: never; + path?: never; + query?: { /** - * Ethereum consensus client implementation + * The contract address (filter: eq) */ - meta_consensus_implementation?: string; + address_eq?: string; /** - * Ethereum consensus client version + * The contract address (filter: ne) */ - meta_consensus_version?: string; + address_ne?: string; /** - * ID of the node + * The contract address (filter: contains) */ - node_id?: string; + address_contains?: string; /** - * The time from slot start for the client to see the block + * The contract address (filter: starts_with) */ - seen_slot_start_diff?: number; + address_starts_with?: string; /** - * The slot number + * The contract address (filter: ends_with) */ - slot?: number; + address_ends_with?: string; /** - * The wall clock time when the slot started + * The contract address (filter: like) */ - slot_start_date_time?: number; + address_like?: string; /** - * Source of the event + * The contract address (filter: not_like) */ - source?: string; + address_not_like?: string; /** - * Source checkpoint epoch of the attestation + * The contract address (filter: in_values) (comma-separated list) */ - source_epoch?: number; + address_in_values?: string; /** - * Source checkpoint root of the attestation + * The contract address (filter: not_in_values) (comma-separated list) */ - source_root?: string; + address_not_in_values?: string; /** - * Target checkpoint epoch of the attestation + * The storage slot key (filter: eq) */ - target_epoch?: number; + slot_key_eq?: string; /** - * Target checkpoint root of the attestation + * The storage slot key (filter: ne) */ - target_root?: string; + slot_key_ne?: string; /** - * Timestamp when the record was last updated + * The storage slot key (filter: contains) */ - updated_date_time?: number; + slot_key_contains?: string; /** - * Username of the node + * The storage slot key (filter: starts_with) */ - username?: string; -}; - -export type IntAttestationFirstSeenAggregate = { + slot_key_starts_with?: string; /** - * The index of the validator attesting + * The storage slot key (filter: ends_with) */ - attesting_validator_index?: number; + slot_key_ends_with?: string; /** - * The head vote (beacon block root) from this aggregate + * The storage slot key (filter: like) */ - block_root?: string; + slot_key_like?: string; /** - * The committee index the validator is assigned to + * The storage slot key (filter: not_like) */ - committee_index?: string; + slot_key_not_like?: string; /** - * The epoch number containing the slot + * The storage slot key (filter: in_values) (comma-separated list) */ - epoch?: number; + slot_key_in_values?: string; /** - * The wall clock time when the epoch started + * The storage slot key (filter: not_in_values) (comma-separated list) */ - epoch_start_date_time?: number; + slot_key_not_in_values?: string; /** - * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: eq) */ - seen_slot_start_diff?: number; + lifecycle_number_eq?: number; /** - * The slot number + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: ne) */ - slot?: number; + lifecycle_number_ne?: number; /** - * The wall clock time when the slot started + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: lt) */ - slot_start_date_time?: number; + lifecycle_number_lt?: number; /** - * The first source this aggregate was observed from (beacon_api or libp2p) + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: lte) */ - source?: string; + lifecycle_number_lte?: number; /** - * Source checkpoint epoch from this aggregate + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: gt) */ - source_epoch?: number; + lifecycle_number_gt?: number; /** - * Source checkpoint root from this aggregate + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: gte) */ - source_root?: string; + lifecycle_number_gte?: number; /** - * Target checkpoint epoch from this aggregate + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: between_min) */ - target_epoch?: number; + lifecycle_number_between_min?: number; /** - * Target checkpoint root from this aggregate + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: between_max_value) */ - target_root?: string; + lifecycle_number_between_max_value?: number; /** - * Timestamp when the record was last updated + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: in_values) (comma-separated list) */ - updated_date_time?: number; -}; - -export type IntBeaconCommitteeHead = { + lifecycle_number_in_values?: string; /** - * The committee index in the beacon API committee payload + * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: not_in_values) (comma-separated list) */ - committee_index?: string; + lifecycle_number_not_in_values?: string; /** - * The epoch number containing the slot + * Timestamp when the record was last updated (filter: eq) */ - epoch?: number; + updated_date_time_eq?: number; /** - * The wall clock time when the epoch started + * Timestamp when the record was last updated (filter: ne) */ - epoch_start_date_time?: number; + updated_date_time_ne?: number; /** - * The slot number + * Timestamp when the record was last updated (filter: lt) */ - slot?: number; + updated_date_time_lt?: number; /** - * The wall clock time when the slot started + * Timestamp when the record was last updated (filter: lte) */ - slot_start_date_time?: number; + updated_date_time_lte?: number; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: gt) */ - updated_date_time?: number; + updated_date_time_gt?: number; /** - * The validator indices in the beacon API committee payload + * Timestamp when the record was last updated (filter: gte) */ - validators?: Array; -}; - -export type IntBlockBlobCountCanonical = { + updated_date_time_gte?: number; /** - * The number of blobs in the block + * Timestamp when the record was last updated (filter: between_min) */ - blob_count?: number; + updated_date_time_between_min?: number; /** - * The beacon block root hash + * Timestamp when the record was last updated (filter: between_max_value) */ - block_root?: string; + updated_date_time_between_max_value?: number; /** - * The epoch number containing the slot + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - epoch?: number; + updated_date_time_in_values?: string; /** - * The wall clock time when the epoch started + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - epoch_start_date_time?: number; + updated_date_time_not_in_values?: string; /** - * The slot number + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: eq) */ - slot?: number; + birth_block_eq?: number; /** - * The wall clock time when the slot started + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: ne) */ - slot_start_date_time?: number; + birth_block_ne?: number; /** - * Timestamp when the record was last updated + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: lt) */ - updated_date_time?: number; -}; - -export type IntBlockCanonical = { + birth_block_lt?: number; /** - * The root hash of the beacon block + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: lte) */ - block_root?: string; + birth_block_lte?: number; /** - * The total bytes of the beacon block payload + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: gt) */ - block_total_bytes?: number | null; + birth_block_gt?: number; /** - * The total bytes of the beacon block payload when compressed using snappy + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: gte) */ - block_total_bytes_compressed?: number | null; + birth_block_gte?: number; /** - * The version of the beacon block + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: between_min) */ - block_version?: string; + birth_block_between_min?: number; /** - * The epoch number from beacon block payload + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: between_max_value) */ - epoch?: number; + birth_block_between_max_value?: number; /** - * The wall clock time when the epoch started + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: in_values) (comma-separated list) */ - epoch_start_date_time?: number; + birth_block_in_values?: string; /** - * The block hash of the associated execution block + * Block where the slot transitioned from 0 to non-zero effective bytes (filter: not_in_values) (comma-separated list) */ - eth1_data_block_hash?: string; + birth_block_not_in_values?: string; /** - * The root of the deposit tree in the associated execution block + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: eq) */ - eth1_data_deposit_root?: string; + death_block_eq?: number; /** - * Base fee per gas for execution payload + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: ne) */ - execution_payload_base_fee_per_gas?: string | null; + death_block_ne?: number; /** - * Gas used for blobs in execution payload + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: lt) */ - execution_payload_blob_gas_used?: number | null; + death_block_lt?: number; /** - * The block hash of the execution payload + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: lte) */ - execution_payload_block_hash?: string; + death_block_lte?: number; /** - * The block number of the execution payload + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: gt) */ - execution_payload_block_number?: number; + death_block_gt?: number; /** - * Excess gas used for blobs in execution payload + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: gte) */ - execution_payload_excess_blob_gas?: number | null; + death_block_gte?: number; /** - * The recipient of the fee for this execution payload + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: between_min) */ - execution_payload_fee_recipient?: string; + death_block_between_min?: number; /** - * Gas limit for execution payload + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: between_max_value) */ - execution_payload_gas_limit?: number | null; + death_block_between_max_value?: number; /** - * Gas used for execution payload + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: in_values) (comma-separated list) */ - execution_payload_gas_used?: number | null; + death_block_in_values?: string; /** - * The parent hash of the execution payload + * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: not_in_values) (comma-separated list) */ - execution_payload_parent_hash?: string; + death_block_not_in_values?: string; /** - * The state root of the execution payload + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: eq) */ - execution_payload_state_root?: string; + effective_bytes_birth_eq?: number; /** - * The transaction count of the execution payload + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: ne) */ - execution_payload_transactions_count?: number | null; + effective_bytes_birth_ne?: number; /** - * The transaction total bytes of the execution payload + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: lt) */ - execution_payload_transactions_total_bytes?: number | null; + effective_bytes_birth_lt?: number; /** - * The transaction total bytes of the execution payload when compressed using snappy + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: lte) */ - execution_payload_transactions_total_bytes_compressed?: number | null; + effective_bytes_birth_lte?: number; /** - * The root hash of the parent beacon block + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: gt) */ - parent_root?: string; + effective_bytes_birth_gt?: number; /** - * The index of the validator that proposed the beacon block + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: gte) */ - proposer_index?: number; + effective_bytes_birth_gte?: number; /** - * The slot number from beacon block payload + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: between_min) */ - slot?: number; + effective_bytes_birth_between_min?: number; /** - * The wall clock time when the reorg slot started + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: between_max_value) */ - slot_start_date_time?: number; + effective_bytes_birth_between_max_value?: number; /** - * The root hash of the beacon state at this block + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: in_values) (comma-separated list) */ - state_root?: string; + effective_bytes_birth_in_values?: string; /** - * Timestamp when the record was last updated + * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: not_in_values) (comma-separated list) */ - updated_date_time?: number; -}; - -export type IntBlockMevCanonical = { + effective_bytes_birth_not_in_values?: string; /** - * The block hash of the proposer payload + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: eq) */ - block_hash?: string; + effective_bytes_death_eq?: number; /** - * The block number of the proposer payload + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: ne) */ - block_number?: number; + effective_bytes_death_ne?: number; /** - * The root hash of the beacon block + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: lt) */ - block_root?: string; + effective_bytes_death_lt?: number; /** - * The builder pubkey of the proposer payload + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: lte) */ - builder_pubkey?: string; + effective_bytes_death_lte?: number; /** - * The earliest timestamp of the accepted bid in milliseconds + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: gt) */ - earliest_bid_date_time?: number | null; + effective_bytes_death_gt?: number; /** - * Epoch number derived from the slot that the proposer payload is for + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: gte) */ - epoch?: number; + effective_bytes_death_gte?: number; /** - * The start time for the epoch that the proposer payload is for + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: between_min) */ - epoch_start_date_time?: number; + effective_bytes_death_between_min?: number; /** - * The gas limit of the proposer payload + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: between_max_value) */ - gas_limit?: number; + effective_bytes_death_between_max_value?: number; /** - * The gas used of the proposer payload + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: in_values) (comma-separated list) */ - gas_used?: number; + effective_bytes_death_in_values?: string; /** - * The parent hash of the proposer payload + * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: not_in_values) (comma-separated list) */ - parent_hash?: string; + effective_bytes_death_not_in_values?: string; /** - * The proposer fee recipient of the proposer payload + * The maximum number of int_storage_slot_lifecycle_boundary to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - proposer_fee_recipient?: string; + page_size?: number; /** - * The proposer pubkey of the proposer payload + * A page token, received from a previous `ListIntStorageSlotLifecycleBoundary` call. Provide this to retrieve the subsequent page. */ - proposer_pubkey?: string; + page_token?: string; /** - * The relay names that delivered the proposer payload + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - relay_names?: Array; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_lifecycle_boundary'; +}; + +export type IntStorageSlotLifecycleBoundaryServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotLifecycleBoundaryServiceListError = + IntStorageSlotLifecycleBoundaryServiceListErrors[keyof IntStorageSlotLifecycleBoundaryServiceListErrors]; + +export type IntStorageSlotLifecycleBoundaryServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotLifecycleBoundaryResponse; +}; + +export type IntStorageSlotLifecycleBoundaryServiceListResponse = + IntStorageSlotLifecycleBoundaryServiceListResponses[keyof IntStorageSlotLifecycleBoundaryServiceListResponses]; + +export type IntStorageSlotLifecycleBoundaryServiceGetData = { + body?: never; + path: { /** - * Slot number within the block proposer payload + * The contract address */ - slot?: number; + address: string; + }; + query?: never; + url: '/api/v1/int_storage_slot_lifecycle_boundary/{address}'; +}; + +export type IntStorageSlotLifecycleBoundaryServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotLifecycleBoundaryServiceGetError = + IntStorageSlotLifecycleBoundaryServiceGetErrors[keyof IntStorageSlotLifecycleBoundaryServiceGetErrors]; + +export type IntStorageSlotLifecycleBoundaryServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotLifecycleBoundaryResponse; +}; + +export type IntStorageSlotLifecycleBoundaryServiceGetResponse = + IntStorageSlotLifecycleBoundaryServiceGetResponses[keyof IntStorageSlotLifecycleBoundaryServiceGetResponses]; + +export type IntStorageSlotNextTouchServiceListData = { + body?: never; + path?: never; + query?: { /** - * The start time for the slot that the proposer payload is for + * The block number where this slot was touched (filter: eq) */ - slot_start_date_time?: number; + block_number_eq?: number; /** - * The number of transactions in the proposer payload + * The block number where this slot was touched (filter: ne) */ - transaction_count?: number; + block_number_ne?: number; /** - * Timestamp when the record was last updated + * The block number where this slot was touched (filter: lt) */ - updated_date_time?: number; + block_number_lt?: number; /** - * The transaction value in wei + * The block number where this slot was touched (filter: lte) */ - value?: string | null; -}; - -export type IntBlockOpcodeGas = { + block_number_lte?: number; /** - * The block number + * The block number where this slot was touched (filter: gt) */ - block_number?: number; + block_number_gt?: number; /** - * Total execution count of this opcode across all transactions in the block + * The block number where this slot was touched (filter: gte) */ - count?: number; + block_number_gte?: number; /** - * Number of times this opcode resulted in an error across all transactions + * The block number where this slot was touched (filter: between_min) */ - error_count?: number; + block_number_between_min?: number; /** - * Total gas consumed by this opcode across all transactions in the block + * The block number where this slot was touched (filter: between_max_value) */ - gas?: number; + block_number_between_max_value?: number; /** - * The name of the network + * The block number where this slot was touched (filter: in_values) (comma-separated list) */ - meta_network_name?: string; + block_number_in_values?: string; /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) + * The block number where this slot was touched (filter: not_in_values) (comma-separated list) */ - opcode?: string; + block_number_not_in_values?: string; /** - * Timestamp when the record was last updated + * The contract address (filter: eq) */ - updated_date_time?: number; -}; - -export type IntBlockProposerCanonical = { + address_eq?: string; /** - * The beacon block root hash. Null if a slot was missed + * The contract address (filter: ne) */ - block_root?: string | null; + address_ne?: string; /** - * The epoch number containing the slot + * The contract address (filter: contains) */ - epoch?: number; + address_contains?: string; /** - * The wall clock time when the epoch started + * The contract address (filter: starts_with) */ - epoch_start_date_time?: number; + address_starts_with?: string; /** - * The public key of the validator proposer + * The contract address (filter: ends_with) */ - proposer_pubkey?: string; + address_ends_with?: string; /** - * The validator index of the proposer for the slot + * The contract address (filter: like) */ - proposer_validator_index?: number; + address_like?: string; /** - * The slot number + * The contract address (filter: not_like) */ - slot?: number; + address_not_like?: string; /** - * The wall clock time when the slot started + * The contract address (filter: in_values) (comma-separated list) */ - slot_start_date_time?: number; + address_in_values?: string; /** - * Timestamp when the record was last updated + * The contract address (filter: not_in_values) (comma-separated list) */ - updated_date_time?: number; -}; - -export type IntBlockReceiptSize = { + address_not_in_values?: string; /** - * Average receipt bytes per transaction in this block + * The storage slot key (filter: eq) */ - avg_receipt_bytes_per_transaction?: number; + slot_key_eq?: string; /** - * The block number + * The storage slot key (filter: ne) */ - block_number?: number; + slot_key_ne?: string; /** - * Total logs emitted across all transactions in the block + * The storage slot key (filter: contains) */ - log_count?: number; + slot_key_contains?: string; /** - * Total raw bytes of log data fields across all transactions + * The storage slot key (filter: starts_with) */ - log_data_bytes?: number; + slot_key_starts_with?: string; /** - * Total number of topics across all logs in the block + * The storage slot key (filter: ends_with) */ - log_topic_count?: number; + slot_key_ends_with?: string; /** - * Largest single transaction receipt in this block + * The storage slot key (filter: like) */ - max_receipt_bytes_per_transaction?: number; + slot_key_like?: string; /** - * The name of the network + * The storage slot key (filter: not_like) */ - meta_network_name?: string; + slot_key_not_like?: string; /** - * 50th percentile of receipt bytes per transaction + * The storage slot key (filter: in_values) (comma-separated list) */ - p50_receipt_bytes_per_transaction?: number; + slot_key_in_values?: string; /** - * 95th percentile of receipt bytes per transaction + * The storage slot key (filter: not_in_values) (comma-separated list) */ - p95_receipt_bytes_per_transaction?: number; + slot_key_not_in_values?: string; /** - * Total RLP-encoded receipt bytes across all transactions in the block + * Timestamp when the record was last updated (filter: eq) */ - receipt_bytes?: number; + updated_date_time_eq?: number; /** - * Number of transactions in the block + * Timestamp when the record was last updated (filter: ne) */ - transaction_count?: number; + updated_date_time_ne?: number; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: lt) */ - updated_date_time?: number; -}; - -export type IntBlockResourceGas = { + updated_date_time_lt?: number; /** - * The block number + * Timestamp when the record was last updated (filter: lte) */ - block_number?: number; + updated_date_time_lte?: number; /** - * Total cold address/storage access gas across all transactions + * Timestamp when the record was last updated (filter: gt) */ - gas_address_access?: number; + updated_date_time_gt?: number; /** - * Total block size gas across all transactions + * Timestamp when the record was last updated (filter: gte) */ - gas_block_size?: number; + updated_date_time_gte?: number; /** - * Total bloom filter topic gas across all transactions + * Timestamp when the record was last updated (filter: between_min) */ - gas_bloom_topics?: number; + updated_date_time_between_min?: number; /** - * Total compute gas across all transactions + * Timestamp when the record was last updated (filter: between_max_value) */ - gas_compute?: number; + updated_date_time_between_max_value?: number; /** - * Total history/log data gas across all transactions + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - gas_history?: number; + updated_date_time_in_values?: string; /** - * Total memory expansion gas across all transactions + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - gas_memory?: number; + updated_date_time_not_in_values?: string; /** - * Total gas refund across all transactions + * The next block number where this slot was touched (NULL if no subsequent touch) (filter: eq) */ - gas_refund?: number; + next_touch_block_eq?: number; /** - * Total state growth gas across all transactions + * The next block number where this slot was touched (NULL if no subsequent touch) (filter: ne) */ - gas_state_growth?: number; + next_touch_block_ne?: number; /** - * The name of the network + * The next block number where this slot was touched (NULL if no subsequent touch) (filter: lt) */ - meta_network_name?: string; + next_touch_block_lt?: number; /** - * Timestamp when the record was last updated + * The next block number where this slot was touched (NULL if no subsequent touch) (filter: lte) */ - updated_date_time?: number; -}; - -export type IntContractCreation = { + next_touch_block_lte?: number; /** - * Block where contract was created + * The next block number where this slot was touched (NULL if no subsequent touch) (filter: gt) */ - block_number?: number; + next_touch_block_gt?: number; /** - * Address of created contract + * The next block number where this slot was touched (NULL if no subsequent touch) (filter: gte) */ - contract_address?: string; + next_touch_block_gte?: number; /** - * Address that deployed the contract + * The next block number where this slot was touched (NULL if no subsequent touch) (filter: between_min) */ - deployer?: string; + next_touch_block_between_min?: number; /** - * Factory contract address if applicable + * The next block number where this slot was touched (NULL if no subsequent touch) (filter: between_max_value) */ - factory?: string; + next_touch_block_between_max_value?: number; /** - * Hash of the initialization code + * The next block number where this slot was touched (NULL if no subsequent touch) (filter: in_values) (comma-separated list) */ - init_code_hash?: string; + next_touch_block_in_values?: string; /** - * Position within transaction + * The next block number where this slot was touched (NULL if no subsequent touch) (filter: not_in_values) (comma-separated list) */ - internal_index?: number; + next_touch_block_not_in_values?: string; /** - * Transaction hash + * The maximum number of int_storage_slot_next_touch to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - transaction_hash?: string; + page_size?: number; /** - * Position in block + * A page token, received from a previous `ListIntStorageSlotNextTouch` call. Provide this to retrieve the subsequent page. */ - transaction_index?: number; + page_token?: string; /** - * Timestamp when the record was last updated + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - updated_date_time?: number; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_next_touch'; }; -export type IntContractSelfdestruct = { - /** - * Contract that was destroyed - */ - address?: string; +export type IntStorageSlotNextTouchServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotNextTouchServiceListError = + IntStorageSlotNextTouchServiceListErrors[keyof IntStorageSlotNextTouchServiceListErrors]; + +export type IntStorageSlotNextTouchServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotNextTouchResponse; +}; + +export type IntStorageSlotNextTouchServiceListResponse = + IntStorageSlotNextTouchServiceListResponses[keyof IntStorageSlotNextTouchServiceListResponses]; + +export type IntStorageSlotNextTouchServiceGetData = { + body?: never; + path: { /** - * Address receiving the ETH + * The block number where this slot was touched */ - beneficiary?: string; + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_next_touch/{block_number}'; +}; + +export type IntStorageSlotNextTouchServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotNextTouchServiceGetError = + IntStorageSlotNextTouchServiceGetErrors[keyof IntStorageSlotNextTouchServiceGetErrors]; + +export type IntStorageSlotNextTouchServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotNextTouchResponse; +}; + +export type IntStorageSlotNextTouchServiceGetResponse = + IntStorageSlotNextTouchServiceGetResponses[keyof IntStorageSlotNextTouchServiceGetResponses]; + +export type IntStorageSlotReactivation1mServiceListData = { + body?: never; + path?: never; + query?: { /** - * Block where SELFDESTRUCT occurred + * The block number where this slot was reactivated (filter: eq) */ - block_number?: number; + block_number_eq?: number; /** - * Block where contract was created (if known) + * The block number where this slot was reactivated (filter: ne) */ - creation_block?: number | null; + block_number_ne?: number; /** - * Transaction that created the contract (if known) + * The block number where this slot was reactivated (filter: lt) */ - creation_transaction_hash?: string | null; + block_number_lt?: number; /** - * True if contract was created and destroyed in the same transaction - storage always cleared per EIP-6780 + * The block number where this slot was reactivated (filter: lte) */ - ephemeral?: boolean; + block_number_lte?: number; /** - * Position within transaction traces + * The block number where this slot was reactivated (filter: gt) */ - internal_index?: number; + block_number_gt?: number; /** - * True if storage was cleared (pre-Shanghai OR ephemeral) + * The block number where this slot was reactivated (filter: gte) */ - storage_cleared?: boolean; + block_number_gte?: number; /** - * Transaction hash + * The block number where this slot was reactivated (filter: between_min) */ - transaction_hash?: string; + block_number_between_min?: number; /** - * Position in block + * The block number where this slot was reactivated (filter: between_max_value) */ - transaction_index?: number; + block_number_between_max_value?: number; /** - * Timestamp when the record was last updated + * The block number where this slot was reactivated (filter: in_values) (comma-separated list) */ - updated_date_time?: number; + block_number_in_values?: string; /** - * Amount of ETH sent to beneficiary + * The block number where this slot was reactivated (filter: not_in_values) (comma-separated list) */ - value_transferred?: string; -}; - -export type IntContractStorageExpiry1m = { + block_number_not_in_values?: string; /** - * Count of slots in the contract at expiry time + * The contract address (filter: eq) */ - active_slots?: number; + address_eq?: string; /** - * The contract address + * The contract address (filter: ne) */ - address?: string; + address_ne?: string; /** - * The block number where this contract expiry is recorded + * The contract address (filter: contains) */ - block_number?: number; + address_contains?: string; /** - * Sum of effective bytes across all slots in the contract at expiry time + * The contract address (filter: starts_with) */ - effective_bytes?: number; + address_starts_with?: string; /** - * The original touch block that led to this expiry (propagates through waterfall chain) + * The contract address (filter: ends_with) */ - touch_block?: number; + address_ends_with?: string; /** - * Timestamp when the record was last updated + * The contract address (filter: like) */ - updated_date_time?: number; -}; - -export type IntContractStorageExpiry6m = { + address_like?: string; /** - * Count of slots in the contract at expiry time + * The contract address (filter: not_like) */ - active_slots?: number; + address_not_like?: string; /** - * The contract address + * The contract address (filter: in_values) (comma-separated list) */ - address?: string; + address_in_values?: string; /** - * The block number where this contract expiry is recorded + * The contract address (filter: not_in_values) (comma-separated list) */ - block_number?: number; + address_not_in_values?: string; /** - * Sum of effective bytes across all slots in the contract at expiry time + * The storage slot key (filter: eq) */ - effective_bytes?: number; + slot_key_eq?: string; /** - * The original touch block that led to this expiry (propagates through waterfall chain) + * The storage slot key (filter: ne) */ - touch_block?: number; + slot_key_ne?: string; /** - * Timestamp when the record was last updated + * The storage slot key (filter: contains) */ - updated_date_time?: number; -}; - -export type IntContractStorageExpiry12m = { + slot_key_contains?: string; /** - * Count of slots in the contract at expiry time + * The storage slot key (filter: starts_with) */ - active_slots?: number; + slot_key_starts_with?: string; /** - * The contract address + * The storage slot key (filter: ends_with) */ - address?: string; + slot_key_ends_with?: string; /** - * The block number where this contract expiry is recorded + * The storage slot key (filter: like) */ - block_number?: number; + slot_key_like?: string; /** - * Sum of effective bytes across all slots in the contract at expiry time + * The storage slot key (filter: not_like) */ - effective_bytes?: number; + slot_key_not_like?: string; /** - * The original touch block that led to this expiry (propagates through waterfall chain) + * The storage slot key (filter: in_values) (comma-separated list) */ - touch_block?: number; + slot_key_in_values?: string; /** - * Timestamp when the record was last updated + * The storage slot key (filter: not_in_values) (comma-separated list) */ - updated_date_time?: number; -}; - -export type IntContractStorageExpiry18m = { + slot_key_not_in_values?: string; /** - * Count of slots in the contract at expiry time + * The original touch block that expired (for matching with expiry records) (filter: eq) */ - active_slots?: number; + touch_block_eq?: number; /** - * The contract address + * The original touch block that expired (for matching with expiry records) (filter: ne) */ - address?: string; + touch_block_ne?: number; /** - * The block number where this contract expiry is recorded + * The original touch block that expired (for matching with expiry records) (filter: lt) */ - block_number?: number; + touch_block_lt?: number; /** - * Sum of effective bytes across all slots in the contract at expiry time + * The original touch block that expired (for matching with expiry records) (filter: lte) */ - effective_bytes?: number; + touch_block_lte?: number; /** - * The original touch block that led to this expiry (propagates through waterfall chain) + * The original touch block that expired (for matching with expiry records) (filter: gt) */ - touch_block?: number; + touch_block_gt?: number; /** - * Timestamp when the record was last updated + * The original touch block that expired (for matching with expiry records) (filter: gte) */ - updated_date_time?: number; -}; - -export type IntContractStorageExpiry24m = { + touch_block_gte?: number; /** - * Count of slots in the contract at expiry time + * The original touch block that expired (for matching with expiry records) (filter: between_min) */ - active_slots?: number; + touch_block_between_min?: number; /** - * The contract address + * The original touch block that expired (for matching with expiry records) (filter: between_max_value) */ - address?: string; + touch_block_between_max_value?: number; /** - * The block number where this contract expiry is recorded + * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) */ - block_number?: number; + touch_block_in_values?: string; /** - * Sum of effective bytes across all slots in the contract at expiry time + * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) */ - effective_bytes?: number; + touch_block_not_in_values?: string; /** - * The original touch block that led to this expiry (propagates through waterfall chain) + * Timestamp when the record was last updated (filter: eq) */ - touch_block?: number; + updated_date_time_eq?: number; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: ne) */ - updated_date_time?: number; -}; - -export type IntContractStorageNextTouch = { + updated_date_time_ne?: number; /** - * The contract address + * Timestamp when the record was last updated (filter: lt) */ - address?: string; + updated_date_time_lt?: number; /** - * The block number where this contract was touched + * Timestamp when the record was last updated (filter: lte) */ - block_number?: number; + updated_date_time_lte?: number; /** - * The next block number where this contract was touched (NULL if no subsequent touch) + * Timestamp when the record was last updated (filter: gt) */ - next_touch_block?: number | null; + updated_date_time_gt?: number; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: gte) */ - updated_date_time?: number; -}; - -export type IntContractStorageReactivation1m = { + updated_date_time_gte?: number; /** - * Count of slots being reactivated + * Timestamp when the record was last updated (filter: between_min) */ - active_slots?: number; + updated_date_time_between_min?: number; /** - * The contract address + * Timestamp when the record was last updated (filter: between_max_value) */ - address?: string; + updated_date_time_between_max_value?: number; /** - * The block number where this contract was reactivated + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - block_number?: number; + updated_date_time_in_values?: string; /** - * Sum of effective bytes being reactivated + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - effective_bytes?: number; + updated_date_time_not_in_values?: string; /** - * The original touch block that expired (for matching with expiry records) + * Number of effective bytes being reactivated (0-32) (filter: eq) */ - touch_block?: number; + effective_bytes_eq?: number; /** - * Timestamp when the record was last updated + * Number of effective bytes being reactivated (0-32) (filter: ne) */ - updated_date_time?: number; -}; - -export type IntContractStorageReactivation6m = { + effective_bytes_ne?: number; /** - * Count of slots being reactivated + * Number of effective bytes being reactivated (0-32) (filter: lt) */ - active_slots?: number; + effective_bytes_lt?: number; /** - * The contract address + * Number of effective bytes being reactivated (0-32) (filter: lte) */ - address?: string; + effective_bytes_lte?: number; /** - * The block number where this contract was reactivated + * Number of effective bytes being reactivated (0-32) (filter: gt) */ - block_number?: number; + effective_bytes_gt?: number; /** - * Sum of effective bytes being reactivated + * Number of effective bytes being reactivated (0-32) (filter: gte) */ - effective_bytes?: number; + effective_bytes_gte?: number; /** - * The original touch block that expired (for matching with expiry records) + * Number of effective bytes being reactivated (0-32) (filter: between_min) */ - touch_block?: number; + effective_bytes_between_min?: number; /** - * Timestamp when the record was last updated + * Number of effective bytes being reactivated (0-32) (filter: between_max_value) */ - updated_date_time?: number; -}; - -export type IntContractStorageReactivation12m = { + effective_bytes_between_max_value?: number; /** - * Count of slots being reactivated + * Number of effective bytes being reactivated (0-32) (filter: in_values) (comma-separated list) */ - active_slots?: number; + effective_bytes_in_values?: string; /** - * The contract address + * Number of effective bytes being reactivated (0-32) (filter: not_in_values) (comma-separated list) */ - address?: string; + effective_bytes_not_in_values?: string; /** - * The block number where this contract was reactivated + * The maximum number of int_storage_slot_reactivation_1m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - block_number?: number; + page_size?: number; /** - * Sum of effective bytes being reactivated + * A page token, received from a previous `ListIntStorageSlotReactivation1m` call. Provide this to retrieve the subsequent page. */ - effective_bytes?: number; + page_token?: string; /** - * The original touch block that expired (for matching with expiry records) + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - touch_block?: number; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_reactivation_1m'; +}; + +export type IntStorageSlotReactivation1mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotReactivation1mServiceListError = + IntStorageSlotReactivation1mServiceListErrors[keyof IntStorageSlotReactivation1mServiceListErrors]; + +export type IntStorageSlotReactivation1mServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotReactivation1mResponse; +}; + +export type IntStorageSlotReactivation1mServiceListResponse = + IntStorageSlotReactivation1mServiceListResponses[keyof IntStorageSlotReactivation1mServiceListResponses]; + +export type IntStorageSlotReactivation1mServiceGetData = { + body?: never; + path: { /** - * Timestamp when the record was last updated + * The block number where this slot was reactivated */ - updated_date_time?: number; + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_reactivation_1m/{block_number}'; }; -export type IntContractStorageReactivation18m = { +export type IntStorageSlotReactivation1mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotReactivation1mServiceGetError = + IntStorageSlotReactivation1mServiceGetErrors[keyof IntStorageSlotReactivation1mServiceGetErrors]; + +export type IntStorageSlotReactivation1mServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotReactivation1mResponse; +}; + +export type IntStorageSlotReactivation1mServiceGetResponse = + IntStorageSlotReactivation1mServiceGetResponses[keyof IntStorageSlotReactivation1mServiceGetResponses]; + +export type IntStorageSlotReactivation6mServiceListData = { + body?: never; + path?: never; + query?: { /** - * Count of slots being reactivated + * The block number where this slot was reactivated (filter: eq) */ - active_slots?: number; + block_number_eq?: number; /** - * The contract address + * The block number where this slot was reactivated (filter: ne) */ - address?: string; + block_number_ne?: number; /** - * The block number where this contract was reactivated + * The block number where this slot was reactivated (filter: lt) */ - block_number?: number; + block_number_lt?: number; /** - * Sum of effective bytes being reactivated + * The block number where this slot was reactivated (filter: lte) */ - effective_bytes?: number; + block_number_lte?: number; /** - * The original touch block that expired (for matching with expiry records) + * The block number where this slot was reactivated (filter: gt) */ - touch_block?: number; + block_number_gt?: number; /** - * Timestamp when the record was last updated + * The block number where this slot was reactivated (filter: gte) */ - updated_date_time?: number; -}; - -export type IntContractStorageReactivation24m = { + block_number_gte?: number; /** - * Count of slots being reactivated + * The block number where this slot was reactivated (filter: between_min) */ - active_slots?: number; + block_number_between_min?: number; /** - * The contract address + * The block number where this slot was reactivated (filter: between_max_value) */ - address?: string; + block_number_between_max_value?: number; /** - * The block number where this contract was reactivated + * The block number where this slot was reactivated (filter: in_values) (comma-separated list) */ - block_number?: number; + block_number_in_values?: string; /** - * Sum of effective bytes being reactivated + * The block number where this slot was reactivated (filter: not_in_values) (comma-separated list) */ - effective_bytes?: number; + block_number_not_in_values?: string; /** - * The original touch block that expired (for matching with expiry records) + * The contract address (filter: eq) */ - touch_block?: number; + address_eq?: string; /** - * Timestamp when the record was last updated + * The contract address (filter: ne) */ - updated_date_time?: number; -}; - -export type IntContractStorageState = { + address_ne?: string; /** - * Cumulative count of active storage slots for this contract at this block + * The contract address (filter: contains) */ - active_slots?: number; + address_contains?: string; /** - * The contract address + * The contract address (filter: starts_with) */ - address?: string; + address_starts_with?: string; /** - * The block number + * The contract address (filter: ends_with) */ - block_number?: number; + address_ends_with?: string; /** - * Change in effective bytes for this block + * The contract address (filter: like) */ - bytes_delta?: number; + address_like?: string; /** - * Cumulative sum of effective bytes for this contract at this block + * The contract address (filter: not_like) */ - effective_bytes?: number; + address_not_like?: string; /** - * Change in active slots for this block (positive=activated, negative=deactivated) + * The contract address (filter: in_values) (comma-separated list) */ - slots_delta?: number; + address_in_values?: string; /** - * Timestamp when the record was last updated + * The contract address (filter: not_in_values) (comma-separated list) */ - updated_date_time?: number; -}; - -export type IntContractStorageStateByAddress = { + address_not_in_values?: string; /** - * Cumulative count of active storage slots for this contract at this block + * The storage slot key (filter: eq) */ - active_slots?: number; + slot_key_eq?: string; /** - * The contract address + * The storage slot key (filter: ne) */ - address?: string; + slot_key_ne?: string; /** - * The block number + * The storage slot key (filter: contains) */ - block_number?: number; + slot_key_contains?: string; /** - * Change in effective bytes for this block + * The storage slot key (filter: starts_with) */ - bytes_delta?: number; + slot_key_starts_with?: string; /** - * Cumulative sum of effective bytes for this contract at this block + * The storage slot key (filter: ends_with) */ - effective_bytes?: number; + slot_key_ends_with?: string; /** - * Change in active slots for this block (positive=activated, negative=deactivated) + * The storage slot key (filter: like) */ - slots_delta?: number; + slot_key_like?: string; /** - * Timestamp when the record was last updated + * The storage slot key (filter: not_like) */ - updated_date_time?: number; -}; - -export type IntContractStorageStateByBlock = { + slot_key_not_like?: string; /** - * Cumulative count of contracts with at least one active slot at this block + * The storage slot key (filter: in_values) (comma-separated list) */ - active_contracts?: number; + slot_key_in_values?: string; /** - * Cumulative count of active storage slots at this block + * The storage slot key (filter: not_in_values) (comma-separated list) */ - active_slots?: number; + slot_key_not_in_values?: string; /** - * The block number + * The original touch block that expired (for matching with expiry records) (filter: eq) */ - block_number?: number; + touch_block_eq?: number; /** - * Change in effective bytes for this block + * The original touch block that expired (for matching with expiry records) (filter: ne) */ - bytes_delta?: number; + touch_block_ne?: number; /** - * Change in active contracts for this block (positive=activated, negative=deactivated) + * The original touch block that expired (for matching with expiry records) (filter: lt) */ - contracts_delta?: number; + touch_block_lt?: number; /** - * Cumulative sum of effective bytes across all active slots at this block + * The original touch block that expired (for matching with expiry records) (filter: lte) */ - effective_bytes?: number; + touch_block_lte?: number; /** - * Change in active slots for this block (positive=activated, negative=deactivated) + * The original touch block that expired (for matching with expiry records) (filter: gt) */ - slots_delta?: number; + touch_block_gt?: number; /** - * Timestamp when the record was last updated + * The original touch block that expired (for matching with expiry records) (filter: gte) */ - updated_date_time?: number; -}; - -export type IntContractStorageStateWithExpiry = { + touch_block_gte?: number; /** - * Number of active storage slots in this contract (with expiry applied) + * The original touch block that expired (for matching with expiry records) (filter: between_min) */ - active_slots?: number; + touch_block_between_min?: number; /** - * The contract address + * The original touch block that expired (for matching with expiry records) (filter: between_max_value) */ - address?: string; + touch_block_between_max_value?: number; /** - * The block number + * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) */ - block_number?: number; + touch_block_in_values?: string; /** - * Cumulative net bytes adjustment up to this block + * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) */ - cumulative_net_bytes?: number; + touch_block_not_in_values?: string; /** - * Cumulative net slot adjustment up to this block + * Timestamp when the record was last updated (filter: eq) */ - cumulative_net_slots?: number; + updated_date_time_eq?: number; /** - * Effective bytes for this contract (with expiry applied) + * Timestamp when the record was last updated (filter: ne) */ - effective_bytes?: number; + updated_date_time_ne?: number; /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + * Timestamp when the record was last updated (filter: lt) */ - expiry_policy?: string; + updated_date_time_lt?: number; /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) + * Timestamp when the record was last updated (filter: lte) */ - net_bytes_delta?: number; + updated_date_time_lte?: number; /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) + * Timestamp when the record was last updated (filter: gt) */ - net_slots_delta?: number; + updated_date_time_gt?: number; /** - * Previous block active_slots for this address (for transition detection) + * Timestamp when the record was last updated (filter: gte) */ - prev_active_slots?: number; + updated_date_time_gte?: number; /** - * Previous block effective_bytes for this address (for delta calculation) + * Timestamp when the record was last updated (filter: between_min) */ - prev_effective_bytes?: number; + updated_date_time_between_min?: number; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: between_max_value) */ - updated_date_time?: number; -}; - -export type IntContractStorageStateWithExpiryByAddress = { + updated_date_time_between_max_value?: number; /** - * Number of active storage slots in this contract (0 if expired) + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - active_slots?: number; + updated_date_time_in_values?: string; /** - * The contract address + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - address?: string; + updated_date_time_not_in_values?: string; /** - * The block number + * Number of effective bytes being reactivated (0-32) (filter: eq) */ - block_number?: number; + effective_bytes_eq?: number; /** - * Effective bytes for this contract (0 if expired) + * Number of effective bytes being reactivated (0-32) (filter: ne) */ - effective_bytes?: number; + effective_bytes_ne?: number; /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + * Number of effective bytes being reactivated (0-32) (filter: lt) */ - expiry_policy?: string; + effective_bytes_lt?: number; /** - * Timestamp when the record was last updated + * Number of effective bytes being reactivated (0-32) (filter: lte) */ - updated_date_time?: number; -}; - -export type IntContractStorageStateWithExpiryByBlock = { + effective_bytes_lte?: number; /** - * Count of contracts with active_slots > 0 (with expiry applied) + * Number of effective bytes being reactivated (0-32) (filter: gt) */ - active_contracts?: number; + effective_bytes_gt?: number; /** - * Total active storage slots network-wide (with expiry applied) + * Number of effective bytes being reactivated (0-32) (filter: gte) */ - active_slots?: number; + effective_bytes_gte?: number; /** - * The block number + * Number of effective bytes being reactivated (0-32) (filter: between_min) */ - block_number?: number; + effective_bytes_between_min?: number; /** - * Total effective bytes network-wide (with expiry applied) + * Number of effective bytes being reactivated (0-32) (filter: between_max_value) */ - effective_bytes?: number; + effective_bytes_between_max_value?: number; /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + * Number of effective bytes being reactivated (0-32) (filter: in_values) (comma-separated list) */ - expiry_policy?: string; + effective_bytes_in_values?: string; /** - * Timestamp when the record was last updated + * Number of effective bytes being reactivated (0-32) (filter: not_in_values) (comma-separated list) */ - updated_date_time?: number; -}; - -export type IntCustodyProbe = { + effective_bytes_not_in_values?: string; /** - * Array of blob submitter names for this slot (Unknown if not found) + * The maximum number of int_storage_slot_reactivation_6m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - blob_submitters?: Array; + page_size?: number; /** - * Classification of client (individual, corporate, internal, unclassified) + * A page token, received from a previous `ListIntStorageSlotReactivation6m` call. Provide this to retrieve the subsequent page. */ - classification?: string; + page_token?: string; /** - * Array of column indices probed + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - column_indices?: Array; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_reactivation_6m'; +}; + +export type IntStorageSlotReactivation6mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotReactivation6mServiceListError = + IntStorageSlotReactivation6mServiceListErrors[keyof IntStorageSlotReactivation6mServiceListErrors]; + +export type IntStorageSlotReactivation6mServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotReactivation6mResponse; +}; + +export type IntStorageSlotReactivation6mServiceListResponse = + IntStorageSlotReactivation6mServiceListResponses[keyof IntStorageSlotReactivation6mServiceListResponses]; + +export type IntStorageSlotReactivation6mServiceGetData = { + body?: never; + path: { /** - * Error message if probe failed + * The block number where this slot was reactivated */ - error?: string; + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_reactivation_6m/{block_number}'; +}; + +export type IntStorageSlotReactivation6mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotReactivation6mServiceGetError = + IntStorageSlotReactivation6mServiceGetErrors[keyof IntStorageSlotReactivation6mServiceGetErrors]; + +export type IntStorageSlotReactivation6mServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotReactivation6mResponse; +}; + +export type IntStorageSlotReactivation6mServiceGetResponse = + IntStorageSlotReactivation6mServiceGetResponses[keyof IntStorageSlotReactivation6mServiceGetResponses]; + +export type IntStorageSlotReactivation12mServiceListData = { + body?: never; + path?: never; + query?: { /** - * Autonomous system number of the client + * The block number where this slot was reactivated (filter: eq) */ - meta_client_geo_autonomous_system_number?: number | null; + block_number_eq?: number; /** - * Autonomous system organization of the client + * The block number where this slot was reactivated (filter: ne) */ - meta_client_geo_autonomous_system_organization?: string | null; + block_number_ne?: number; /** - * City of the client + * The block number where this slot was reactivated (filter: lt) */ - meta_client_geo_city?: string; + block_number_lt?: number; /** - * Continent code of the client + * The block number where this slot was reactivated (filter: lte) */ - meta_client_geo_continent_code?: string; + block_number_lte?: number; /** - * Country of the client + * The block number where this slot was reactivated (filter: gt) */ - meta_client_geo_country?: string; + block_number_gt?: number; /** - * Country code of the client + * The block number where this slot was reactivated (filter: gte) */ - meta_client_geo_country_code?: string; + block_number_gte?: number; /** - * Latitude of the client + * The block number where this slot was reactivated (filter: between_min) */ - meta_client_geo_latitude?: number | null; + block_number_between_min?: number; /** - * Longitude of the client + * The block number where this slot was reactivated (filter: between_max_value) */ - meta_client_geo_longitude?: number | null; + block_number_between_max_value?: number; /** - * Implementation of the client + * The block number where this slot was reactivated (filter: in_values) (comma-separated list) */ - meta_client_implementation?: string; + block_number_in_values?: string; /** - * Operating system of the client + * The block number where this slot was reactivated (filter: not_in_values) (comma-separated list) */ - meta_client_os?: string; + block_number_not_in_values?: string; /** - * Version of the client + * The contract address (filter: eq) */ - meta_client_version?: string; + address_eq?: string; /** - * Autonomous system number of the probed peer + * The contract address (filter: ne) */ - meta_peer_geo_autonomous_system_number?: number | null; + address_ne?: string; /** - * Autonomous system organization of the probed peer + * The contract address (filter: contains) */ - meta_peer_geo_autonomous_system_organization?: string | null; + address_contains?: string; /** - * City of the probed peer + * The contract address (filter: starts_with) */ - meta_peer_geo_city?: string; + address_starts_with?: string; /** - * Continent code of the probed peer + * The contract address (filter: ends_with) */ - meta_peer_geo_continent_code?: string; + address_ends_with?: string; /** - * Country of the probed peer + * The contract address (filter: like) */ - meta_peer_geo_country?: string; + address_like?: string; /** - * Country code of the probed peer + * The contract address (filter: not_like) */ - meta_peer_geo_country_code?: string; + address_not_like?: string; /** - * Latitude of the probed peer + * The contract address (filter: in_values) (comma-separated list) */ - meta_peer_geo_latitude?: number | null; + address_in_values?: string; /** - * Longitude of the probed peer + * The contract address (filter: not_in_values) (comma-separated list) */ - meta_peer_geo_longitude?: number | null; + address_not_in_values?: string; /** - * Implementation of the probed peer + * The storage slot key (filter: eq) */ - meta_peer_implementation?: string; + slot_key_eq?: string; /** - * Platform of the probed peer + * The storage slot key (filter: ne) */ - meta_peer_platform?: string; + slot_key_ne?: string; /** - * Version of the probed peer + * The storage slot key (filter: contains) */ - meta_peer_version?: string; + slot_key_contains?: string; /** - * Node ID extracted from client name + * The storage slot key (filter: starts_with) */ - node_id?: string; + slot_key_starts_with?: string; /** - * Unique key associated with the identifier of the peer + * The storage slot key (filter: ends_with) */ - peer_id_unique_key?: number; + slot_key_ends_with?: string; /** - * Earliest event time for this probe batch + * The storage slot key (filter: like) */ - probe_date_time?: number; + slot_key_like?: string; /** - * Response time in milliseconds + * The storage slot key (filter: not_like) */ - response_time_ms?: number; + slot_key_not_like?: string; /** - * Result of the probe (success, failure, missing) + * The storage slot key (filter: in_values) (comma-separated list) */ - result?: string; + slot_key_in_values?: string; /** - * Slot number + * The storage slot key (filter: not_in_values) (comma-separated list) */ - slot?: number; + slot_key_not_in_values?: string; /** - * Start date time of the slot + * The original touch block that expired (for matching with expiry records) (filter: eq) */ - slot_start_date_time?: number; + touch_block_eq?: number; /** - * Timestamp when the record was last updated + * The original touch block that expired (for matching with expiry records) (filter: ne) */ - updated_date_time?: number; + touch_block_ne?: number; /** - * Username extracted from client name + * The original touch block that expired (for matching with expiry records) (filter: lt) */ - username?: string; -}; - -export type IntCustodyProbeOrderBySlot = { + touch_block_lt?: number; /** - * Array of blob submitter names for this slot (Unknown if not found) + * The original touch block that expired (for matching with expiry records) (filter: lte) */ - blob_submitters?: Array; + touch_block_lte?: number; /** - * Classification of client (individual, corporate, internal, unclassified) + * The original touch block that expired (for matching with expiry records) (filter: gt) */ - classification?: string; + touch_block_gt?: number; /** - * Array of column indices probed + * The original touch block that expired (for matching with expiry records) (filter: gte) */ - column_indices?: Array; + touch_block_gte?: number; /** - * Error message if probe failed + * The original touch block that expired (for matching with expiry records) (filter: between_min) */ - error?: string; + touch_block_between_min?: number; /** - * Autonomous system number of the client + * The original touch block that expired (for matching with expiry records) (filter: between_max_value) */ - meta_client_geo_autonomous_system_number?: number | null; + touch_block_between_max_value?: number; /** - * Autonomous system organization of the client + * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) */ - meta_client_geo_autonomous_system_organization?: string | null; + touch_block_in_values?: string; /** - * City of the client + * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) */ - meta_client_geo_city?: string; + touch_block_not_in_values?: string; /** - * Continent code of the client + * Timestamp when the record was last updated (filter: eq) */ - meta_client_geo_continent_code?: string; + updated_date_time_eq?: number; /** - * Country of the client + * Timestamp when the record was last updated (filter: ne) */ - meta_client_geo_country?: string; + updated_date_time_ne?: number; /** - * Country code of the client + * Timestamp when the record was last updated (filter: lt) */ - meta_client_geo_country_code?: string; + updated_date_time_lt?: number; /** - * Latitude of the client + * Timestamp when the record was last updated (filter: lte) */ - meta_client_geo_latitude?: number | null; + updated_date_time_lte?: number; /** - * Longitude of the client + * Timestamp when the record was last updated (filter: gt) */ - meta_client_geo_longitude?: number | null; + updated_date_time_gt?: number; /** - * Implementation of the client + * Timestamp when the record was last updated (filter: gte) */ - meta_client_implementation?: string; + updated_date_time_gte?: number; /** - * Operating system of the client + * Timestamp when the record was last updated (filter: between_min) */ - meta_client_os?: string; + updated_date_time_between_min?: number; /** - * Version of the client + * Timestamp when the record was last updated (filter: between_max_value) */ - meta_client_version?: string; + updated_date_time_between_max_value?: number; /** - * Autonomous system number of the probed peer + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - meta_peer_geo_autonomous_system_number?: number | null; + updated_date_time_in_values?: string; /** - * Autonomous system organization of the probed peer + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - meta_peer_geo_autonomous_system_organization?: string | null; + updated_date_time_not_in_values?: string; /** - * City of the probed peer + * Number of effective bytes being reactivated (0-32) (filter: eq) */ - meta_peer_geo_city?: string; + effective_bytes_eq?: number; /** - * Continent code of the probed peer + * Number of effective bytes being reactivated (0-32) (filter: ne) */ - meta_peer_geo_continent_code?: string; + effective_bytes_ne?: number; /** - * Country of the probed peer + * Number of effective bytes being reactivated (0-32) (filter: lt) */ - meta_peer_geo_country?: string; + effective_bytes_lt?: number; /** - * Country code of the probed peer + * Number of effective bytes being reactivated (0-32) (filter: lte) */ - meta_peer_geo_country_code?: string; + effective_bytes_lte?: number; /** - * Latitude of the probed peer + * Number of effective bytes being reactivated (0-32) (filter: gt) */ - meta_peer_geo_latitude?: number | null; + effective_bytes_gt?: number; /** - * Longitude of the probed peer + * Number of effective bytes being reactivated (0-32) (filter: gte) */ - meta_peer_geo_longitude?: number | null; + effective_bytes_gte?: number; /** - * Implementation of the probed peer + * Number of effective bytes being reactivated (0-32) (filter: between_min) */ - meta_peer_implementation?: string; + effective_bytes_between_min?: number; /** - * Platform of the probed peer + * Number of effective bytes being reactivated (0-32) (filter: between_max_value) */ - meta_peer_platform?: string; + effective_bytes_between_max_value?: number; /** - * Version of the probed peer + * Number of effective bytes being reactivated (0-32) (filter: in_values) (comma-separated list) */ - meta_peer_version?: string; + effective_bytes_in_values?: string; /** - * Node ID extracted from client name + * Number of effective bytes being reactivated (0-32) (filter: not_in_values) (comma-separated list) */ - node_id?: string; + effective_bytes_not_in_values?: string; /** - * Unique key associated with the identifier of the peer + * The maximum number of int_storage_slot_reactivation_12m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - peer_id_unique_key?: number; + page_size?: number; /** - * Earliest event time for this probe batch + * A page token, received from a previous `ListIntStorageSlotReactivation12m` call. Provide this to retrieve the subsequent page. */ - probe_date_time?: number; + page_token?: string; /** - * Response time in milliseconds + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - response_time_ms?: number; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_reactivation_12m'; +}; + +export type IntStorageSlotReactivation12mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotReactivation12mServiceListError = + IntStorageSlotReactivation12mServiceListErrors[keyof IntStorageSlotReactivation12mServiceListErrors]; + +export type IntStorageSlotReactivation12mServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotReactivation12mResponse; +}; + +export type IntStorageSlotReactivation12mServiceListResponse = + IntStorageSlotReactivation12mServiceListResponses[keyof IntStorageSlotReactivation12mServiceListResponses]; + +export type IntStorageSlotReactivation12mServiceGetData = { + body?: never; + path: { /** - * Result of the probe (success, failure, missing) + * The block number where this slot was reactivated */ - result?: string; + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_reactivation_12m/{block_number}'; +}; + +export type IntStorageSlotReactivation12mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotReactivation12mServiceGetError = + IntStorageSlotReactivation12mServiceGetErrors[keyof IntStorageSlotReactivation12mServiceGetErrors]; + +export type IntStorageSlotReactivation12mServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotReactivation12mResponse; +}; + +export type IntStorageSlotReactivation12mServiceGetResponse = + IntStorageSlotReactivation12mServiceGetResponses[keyof IntStorageSlotReactivation12mServiceGetResponses]; + +export type IntStorageSlotReactivation18mServiceListData = { + body?: never; + path?: never; + query?: { /** - * Slot number + * The block number where this slot was reactivated (filter: eq) */ - slot?: number; + block_number_eq?: number; /** - * Start date time of the slot + * The block number where this slot was reactivated (filter: ne) */ - slot_start_date_time?: number; + block_number_ne?: number; /** - * Timestamp when the record was last updated + * The block number where this slot was reactivated (filter: lt) */ - updated_date_time?: number; + block_number_lt?: number; /** - * Username extracted from client name + * The block number where this slot was reactivated (filter: lte) */ - username?: string; -}; - -export type IntEngineGetBlobs = { + block_number_lte?: number; /** - * Root of the parent beacon block (hex encoded with 0x prefix) + * The block number where this slot was reactivated (filter: gt) */ - block_parent_root?: string; + block_number_gt?: number; /** - * Root of the beacon block (hex encoded with 0x prefix) + * The block number where this slot was reactivated (filter: gte) */ - block_root?: string; + block_number_gte?: number; /** - * How long the engine_getBlobs call took in milliseconds + * The block number where this slot was reactivated (filter: between_min) */ - duration_ms?: number; + block_number_between_min?: number; /** - * Epoch number derived from the slot + * The block number where this slot was reactivated (filter: between_max_value) */ - epoch?: number; + block_number_between_max_value?: number; /** - * The wall clock time when the epoch started + * The block number where this slot was reactivated (filter: in_values) (comma-separated list) */ - epoch_start_date_time?: number; + block_number_in_values?: string; /** - * Error message when the call fails + * The block number where this slot was reactivated (filter: not_in_values) (comma-separated list) */ - error_message?: string | null; + block_number_not_in_values?: string; /** - * When the sentry received the event + * The contract address (filter: eq) */ - event_date_time?: number; + address_eq?: string; /** - * Autonomous system number of the client that generated the event + * The contract address (filter: ne) */ - meta_client_geo_autonomous_system_number?: number | null; + address_ne?: string; /** - * Autonomous system organization of the client that generated the event + * The contract address (filter: contains) */ - meta_client_geo_autonomous_system_organization?: string | null; + address_contains?: string; /** - * City of the client that generated the event + * The contract address (filter: starts_with) */ - meta_client_geo_city?: string; + address_starts_with?: string; /** - * Continent code of the client that generated the event + * The contract address (filter: ends_with) */ - meta_client_geo_continent_code?: string; + address_ends_with?: string; /** - * Country of the client that generated the event + * The contract address (filter: like) */ - meta_client_geo_country?: string; + address_like?: string; /** - * Country code of the client that generated the event + * The contract address (filter: not_like) */ - meta_client_geo_country_code?: string; + address_not_like?: string; /** - * Latitude of the client that generated the event + * The contract address (filter: in_values) (comma-separated list) */ - meta_client_geo_latitude?: number | null; + address_in_values?: string; /** - * Longitude of the client that generated the event + * The contract address (filter: not_in_values) (comma-separated list) */ - meta_client_geo_longitude?: number | null; + address_not_in_values?: string; /** - * Implementation of the client that generated the event + * The storage slot key (filter: eq) */ - meta_client_implementation?: string; + slot_key_eq?: string; /** - * Name of the client that generated the event + * The storage slot key (filter: ne) */ - meta_client_name?: string; + slot_key_ne?: string; /** - * Version of the client that generated the event + * The storage slot key (filter: contains) */ - meta_client_version?: string; + slot_key_contains?: string; /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) + * The storage slot key (filter: starts_with) */ - meta_execution_implementation?: string; + slot_key_starts_with?: string; /** - * Full execution client version string from web3_clientVersion RPC + * The storage slot key (filter: ends_with) */ - meta_execution_version?: string; + slot_key_ends_with?: string; /** - * Version of the engine_getBlobs method + * The storage slot key (filter: like) */ - method_version?: string; + slot_key_like?: string; /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + * The storage slot key (filter: not_like) */ - node_class?: string; + slot_key_not_like?: string; /** - * Validator index of the block proposer + * The storage slot key (filter: in_values) (comma-separated list) */ - proposer_index?: number; + slot_key_in_values?: string; /** - * Number of blobs requested (length of versioned_hashes array) + * The storage slot key (filter: not_in_values) (comma-separated list) */ - requested_count?: number; + slot_key_not_in_values?: string; /** - * When the engine_getBlobs call was initiated + * The original touch block that expired (for matching with expiry records) (filter: eq) */ - requested_date_time?: number; + touch_block_eq?: number; /** - * Indexes of the returned blobs + * The original touch block that expired (for matching with expiry records) (filter: ne) */ - returned_blob_indexes?: Array; + touch_block_ne?: number; /** - * Number of blobs actually returned + * The original touch block that expired (for matching with expiry records) (filter: lt) */ - returned_count?: number; + touch_block_lt?: number; /** - * Slot number of the beacon block containing the blobs + * The original touch block that expired (for matching with expiry records) (filter: lte) */ - slot?: number; + touch_block_lte?: number; /** - * The wall clock time when the slot started + * The original touch block that expired (for matching with expiry records) (filter: gt) */ - slot_start_date_time?: number; + touch_block_gt?: number; /** - * Source of the engine event + * The original touch block that expired (for matching with expiry records) (filter: gte) */ - source?: string; + touch_block_gte?: number; /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) + * The original touch block that expired (for matching with expiry records) (filter: between_min) */ - status?: string; + touch_block_between_min?: number; /** - * Timestamp when the record was last updated + * The original touch block that expired (for matching with expiry records) (filter: between_max_value) */ - updated_date_time?: number; + touch_block_between_max_value?: number; /** - * Versioned hashes of the requested blobs + * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) */ - versioned_hashes?: Array; -}; - -export type IntEngineNewPayload = { + touch_block_in_values?: string; /** - * Number of blobs in the block + * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) */ - blob_count?: number; + touch_block_not_in_values?: string; /** - * Execution block hash (hex encoded with 0x prefix) + * Timestamp when the record was last updated (filter: eq) */ - block_hash?: string; + updated_date_time_eq?: number; /** - * Execution block number + * Timestamp when the record was last updated (filter: ne) */ - block_number?: number; + updated_date_time_ne?: number; /** - * Root of the beacon block (hex encoded with 0x prefix) + * Timestamp when the record was last updated (filter: lt) */ - block_root?: string; + updated_date_time_lt?: number; /** - * The total bytes of the beacon block payload + * Timestamp when the record was last updated (filter: lte) */ - block_total_bytes?: number | null; + updated_date_time_lte?: number; /** - * The total bytes of the beacon block payload when compressed using snappy + * Timestamp when the record was last updated (filter: gt) */ - block_total_bytes_compressed?: number | null; + updated_date_time_gt?: number; /** - * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) + * Timestamp when the record was last updated (filter: gte) */ - block_version?: string; + updated_date_time_gte?: number; /** - * How long the engine_newPayload call took in milliseconds + * Timestamp when the record was last updated (filter: between_min) */ - duration_ms?: number; + updated_date_time_between_min?: number; /** - * Epoch number derived from the slot + * Timestamp when the record was last updated (filter: between_max_value) */ - epoch?: number; + updated_date_time_between_max_value?: number; /** - * The wall clock time when the epoch started + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - epoch_start_date_time?: number; + updated_date_time_in_values?: string; /** - * When the sentry received the event + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - event_date_time?: number; + updated_date_time_not_in_values?: string; /** - * Gas limit of the block + * Number of effective bytes being reactivated (0-32) (filter: eq) */ - gas_limit?: number; + effective_bytes_eq?: number; /** - * Total gas used by all transactions in the block + * Number of effective bytes being reactivated (0-32) (filter: ne) */ - gas_used?: number; + effective_bytes_ne?: number; /** - * Latest valid hash when status is INVALID (hex encoded with 0x prefix) + * Number of effective bytes being reactivated (0-32) (filter: lt) */ - latest_valid_hash?: string | null; + effective_bytes_lt?: number; /** - * Autonomous system number of the client that generated the event + * Number of effective bytes being reactivated (0-32) (filter: lte) */ - meta_client_geo_autonomous_system_number?: number | null; + effective_bytes_lte?: number; /** - * Autonomous system organization of the client that generated the event + * Number of effective bytes being reactivated (0-32) (filter: gt) */ - meta_client_geo_autonomous_system_organization?: string | null; + effective_bytes_gt?: number; /** - * City of the client that generated the event + * Number of effective bytes being reactivated (0-32) (filter: gte) */ - meta_client_geo_city?: string; + effective_bytes_gte?: number; /** - * Continent code of the client that generated the event + * Number of effective bytes being reactivated (0-32) (filter: between_min) */ - meta_client_geo_continent_code?: string; + effective_bytes_between_min?: number; /** - * Country of the client that generated the event + * Number of effective bytes being reactivated (0-32) (filter: between_max_value) */ - meta_client_geo_country?: string; + effective_bytes_between_max_value?: number; /** - * Country code of the client that generated the event + * Number of effective bytes being reactivated (0-32) (filter: in_values) (comma-separated list) */ - meta_client_geo_country_code?: string; + effective_bytes_in_values?: string; /** - * Latitude of the client that generated the event + * Number of effective bytes being reactivated (0-32) (filter: not_in_values) (comma-separated list) */ - meta_client_geo_latitude?: number | null; + effective_bytes_not_in_values?: string; /** - * Longitude of the client that generated the event + * The maximum number of int_storage_slot_reactivation_18m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - meta_client_geo_longitude?: number | null; + page_size?: number; /** - * Implementation of the client that generated the event + * A page token, received from a previous `ListIntStorageSlotReactivation18m` call. Provide this to retrieve the subsequent page. */ - meta_client_implementation?: string; + page_token?: string; /** - * Name of the client that generated the event + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - meta_client_name?: string; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_reactivation_18m'; +}; + +export type IntStorageSlotReactivation18mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotReactivation18mServiceListError = + IntStorageSlotReactivation18mServiceListErrors[keyof IntStorageSlotReactivation18mServiceListErrors]; + +export type IntStorageSlotReactivation18mServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotReactivation18mResponse; +}; + +export type IntStorageSlotReactivation18mServiceListResponse = + IntStorageSlotReactivation18mServiceListResponses[keyof IntStorageSlotReactivation18mServiceListResponses]; + +export type IntStorageSlotReactivation18mServiceGetData = { + body?: never; + path: { /** - * Version of the client that generated the event + * The block number where this slot was reactivated */ - meta_client_version?: string; + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_reactivation_18m/{block_number}'; +}; + +export type IntStorageSlotReactivation18mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotReactivation18mServiceGetError = + IntStorageSlotReactivation18mServiceGetErrors[keyof IntStorageSlotReactivation18mServiceGetErrors]; + +export type IntStorageSlotReactivation18mServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotReactivation18mResponse; +}; + +export type IntStorageSlotReactivation18mServiceGetResponse = + IntStorageSlotReactivation18mServiceGetResponses[keyof IntStorageSlotReactivation18mServiceGetResponses]; + +export type IntStorageSlotReactivation24mServiceListData = { + body?: never; + path?: never; + query?: { /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) + * The block number where this slot was reactivated (filter: eq) */ - meta_execution_implementation?: string; + block_number_eq?: number; /** - * Full execution client version string from web3_clientVersion RPC + * The block number where this slot was reactivated (filter: ne) */ - meta_execution_version?: string; + block_number_ne?: number; /** - * Version of the engine_newPayload method (e.g., V3, V4) + * The block number where this slot was reactivated (filter: lt) */ - method_version?: string; + block_number_lt?: number; /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + * The block number where this slot was reactivated (filter: lte) */ - node_class?: string; + block_number_lte?: number; /** - * Root of the parent beacon block (hex encoded with 0x prefix) + * The block number where this slot was reactivated (filter: gt) */ - parent_block_root?: string; + block_number_gt?: number; /** - * Parent execution block hash (hex encoded with 0x prefix) + * The block number where this slot was reactivated (filter: gte) */ - parent_hash?: string; + block_number_gte?: number; /** - * Validator index of the block proposer + * The block number where this slot was reactivated (filter: between_min) */ - proposer_index?: number; + block_number_between_min?: number; /** - * When the engine_newPayload call was initiated + * The block number where this slot was reactivated (filter: between_max_value) */ - requested_date_time?: number; + block_number_between_max_value?: number; /** - * Slot number of the beacon block containing the payload + * The block number where this slot was reactivated (filter: in_values) (comma-separated list) */ - slot?: number; + block_number_in_values?: string; /** - * The wall clock time when the slot started + * The block number where this slot was reactivated (filter: not_in_values) (comma-separated list) */ - slot_start_date_time?: number; + block_number_not_in_values?: string; /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) + * The contract address (filter: eq) */ - status?: string; + address_eq?: string; /** - * Number of transactions in the block + * The contract address (filter: ne) */ - tx_count?: number; + address_ne?: string; /** - * Timestamp when the record was last updated + * The contract address (filter: contains) */ - updated_date_time?: number; + address_contains?: string; /** - * Error message when validation fails + * The contract address (filter: starts_with) */ - validation_error?: string | null; -}; - -export type IntEngineNewPayloadFastestExecutionByNodeClass = { + address_starts_with?: string; /** - * Execution block hash (hex encoded with 0x prefix) + * The contract address (filter: ends_with) */ - block_hash?: string; + address_ends_with?: string; /** - * Duration of the fastest engine_newPayload call in milliseconds + * The contract address (filter: like) */ - duration_ms?: number; + address_like?: string; /** - * Epoch number derived from the slot + * The contract address (filter: not_like) */ - epoch?: number; + address_not_like?: string; /** - * The wall clock time when the epoch started + * The contract address (filter: in_values) (comma-separated list) */ - epoch_start_date_time?: number; + address_in_values?: string; /** - * Name of the client that generated the event + * The contract address (filter: not_in_values) (comma-separated list) */ - meta_client_name?: string; + address_not_in_values?: string; /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) + * The storage slot key (filter: eq) */ - meta_execution_implementation?: string; + slot_key_eq?: string; /** - * Full execution client version string from web3_clientVersion RPC + * The storage slot key (filter: ne) */ - meta_execution_version?: string; + slot_key_ne?: string; /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) + * The storage slot key (filter: contains) */ - node_class?: string; + slot_key_contains?: string; /** - * Slot number of the beacon block containing the payload + * The storage slot key (filter: starts_with) */ - slot?: number; + slot_key_starts_with?: string; /** - * The wall clock time when the slot started + * The storage slot key (filter: ends_with) */ - slot_start_date_time?: number; + slot_key_ends_with?: string; /** - * Timestamp when the record was last updated + * The storage slot key (filter: like) */ - updated_date_time?: number; -}; - -export type IntExecutionBlockByDate = { + slot_key_like?: string; /** - * The block timestamp + * The storage slot key (filter: not_like) */ - block_date_time?: number; + slot_key_not_like?: string; /** - * The block number + * The storage slot key (filter: in_values) (comma-separated list) */ - block_number?: number; + slot_key_in_values?: string; /** - * Timestamp when the record was last updated + * The storage slot key (filter: not_in_values) (comma-separated list) */ - updated_date_time?: number; -}; - -export type IntExecutionStateSizeByBlock = { + slot_key_not_in_values?: string; /** - * Cumulative total bytes used by account data + * The original touch block that expired (for matching with expiry records) (filter: eq) */ - account_bytes?: number; + touch_block_eq?: number; /** - * Cumulative total bytes used by account trie nodes + * The original touch block that expired (for matching with expiry records) (filter: ne) */ - account_trienode_bytes?: number; + touch_block_ne?: number; /** - * Cumulative number of trie nodes in the account trie + * The original touch block that expired (for matching with expiry records) (filter: lt) */ - account_trienodes?: number; + touch_block_lt?: number; /** - * Cumulative total number of accounts in the state + * The original touch block that expired (for matching with expiry records) (filter: lte) */ - accounts?: number; + touch_block_lte?: number; /** - * Block number at which the cumulative state size is measured + * The original touch block that expired (for matching with expiry records) (filter: gt) */ - block_number?: number; + touch_block_gt?: number; /** - * Cumulative total bytes used by contract code + * The original touch block that expired (for matching with expiry records) (filter: gte) */ - contract_code_bytes?: number; + touch_block_gte?: number; /** - * Cumulative total number of contract codes stored + * The original touch block that expired (for matching with expiry records) (filter: between_min) */ - contract_codes?: number; + touch_block_between_min?: number; /** - * Cumulative total bytes used by storage data + * The original touch block that expired (for matching with expiry records) (filter: between_max_value) */ - storage_bytes?: number; + touch_block_between_max_value?: number; /** - * Cumulative total bytes used by storage trie nodes + * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) */ - storage_trienode_bytes?: number; + touch_block_in_values?: string; /** - * Cumulative number of trie nodes in the storage trie + * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) */ - storage_trienodes?: number; + touch_block_not_in_values?: string; /** - * Cumulative total number of storage slots in the state + * Timestamp when the record was last updated (filter: eq) */ - storages?: number; + updated_date_time_eq?: number; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: ne) */ - updated_date_time?: number; -}; - -export type IntRocketpoolMegapool = { + updated_date_time_ne?: number; /** - * Execution block number the megapool was deployed in + * Timestamp when the record was last updated (filter: lt) */ - created_block_number?: number; + updated_date_time_lt?: number; /** - * Wall clock time the megapool was deployed (decoded from the deposit event) + * Timestamp when the record was last updated (filter: lte) */ - created_date_time?: number; + updated_date_time_lte?: number; /** - * The Rocket Pool megapool contract address, lowercase 0x-prefixed + * Timestamp when the record was last updated (filter: gt) */ - megapool_address?: string; + updated_date_time_gt?: number; /** - * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed + * Timestamp when the record was last updated (filter: gte) */ - node_operator?: string; + updated_date_time_gte?: number; /** - * Execution transaction hash that deployed the megapool + * Timestamp when the record was last updated (filter: between_min) */ - transaction_hash?: string; + updated_date_time_between_min?: number; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: between_max_value) */ - updated_date_time?: number; -}; - -export type IntRocketpoolMinipool = { + updated_date_time_between_max_value?: number; /** - * Execution block number the event was emitted in + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - event_block_number?: number; + updated_date_time_in_values?: string; /** - * Wall clock time the event occurred, decoded from the event payload + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - event_date_time?: number; + updated_date_time_not_in_values?: string; /** - * Minipool lifecycle event name (created or destroyed) + * Number of effective bytes being reactivated (0-32) (filter: eq) */ - event_name?: string; + effective_bytes_eq?: number; /** - * Log index of the event within the block + * Number of effective bytes being reactivated (0-32) (filter: ne) */ - log_index?: number; + effective_bytes_ne?: number; /** - * The Rocket Pool minipool contract address, lowercase 0x-prefixed + * Number of effective bytes being reactivated (0-32) (filter: lt) */ - minipool_address?: string; + effective_bytes_lt?: number; /** - * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed + * Number of effective bytes being reactivated (0-32) (filter: lte) */ - node_operator?: string; + effective_bytes_lte?: number; /** - * Execution transaction hash that emitted the event + * Number of effective bytes being reactivated (0-32) (filter: gt) */ - transaction_hash?: string; + effective_bytes_gt?: number; /** - * Timestamp when the record was last updated + * Number of effective bytes being reactivated (0-32) (filter: gte) */ - updated_date_time?: number; -}; - -export type IntRocketpoolNodeEvent = { + effective_bytes_gte?: number; /** - * Execution block number the event was emitted in + * Number of effective bytes being reactivated (0-32) (filter: between_min) */ - event_block_number?: number; + effective_bytes_between_min?: number; /** - * Wall clock time of the block the event was emitted in + * Number of effective bytes being reactivated (0-32) (filter: between_max_value) */ - event_date_time?: number; + effective_bytes_between_max_value?: number; /** - * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed + * Number of effective bytes being reactivated (0-32) (filter: in_values) (comma-separated list) */ - event_name?: string; + effective_bytes_in_values?: string; /** - * Log index of the event within the block + * Number of effective bytes being reactivated (0-32) (filter: not_in_values) (comma-separated list) */ - log_index?: number; + effective_bytes_not_in_values?: string; /** - * The Rocket Pool node operator address, lowercase 0x-prefixed + * The maximum number of int_storage_slot_reactivation_24m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - node_address?: string; + page_size?: number; /** - * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 + * A page token, received from a previous `ListIntStorageSlotReactivation24m` call. Provide this to retrieve the subsequent page. */ - rpl_amount_wei?: string; + page_token?: string; /** - * Smoothing pool membership state for smoothing_pool_state_changed events, otherwise false + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - smoothing_state?: boolean; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_reactivation_24m'; +}; + +export type IntStorageSlotReactivation24mServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotReactivation24mServiceListError = + IntStorageSlotReactivation24mServiceListErrors[keyof IntStorageSlotReactivation24mServiceListErrors]; + +export type IntStorageSlotReactivation24mServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotReactivation24mResponse; +}; + +export type IntStorageSlotReactivation24mServiceListResponse = + IntStorageSlotReactivation24mServiceListResponses[keyof IntStorageSlotReactivation24mServiceListResponses]; + +export type IntStorageSlotReactivation24mServiceGetData = { + body?: never; + path: { /** - * Timestamp when the record was last updated + * The block number where this slot was reactivated */ - updated_date_time?: number; + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_reactivation_24m/{block_number}'; }; -export type IntRocketpoolNodeTimezone = { +export type IntStorageSlotReactivation24mServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotReactivation24mServiceGetError = + IntStorageSlotReactivation24mServiceGetErrors[keyof IntStorageSlotReactivation24mServiceGetErrors]; + +export type IntStorageSlotReactivation24mServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotReactivation24mResponse; +}; + +export type IntStorageSlotReactivation24mServiceGetResponse = + IntStorageSlotReactivation24mServiceGetResponses[keyof IntStorageSlotReactivation24mServiceGetResponses]; + +export type IntStorageSlotReadServiceListData = { + body?: never; + path?: never; + query?: { /** - * The Rocket Pool node operator address, lowercase 0x-prefixed + * The block number (filter: eq) */ - node_address?: string; + block_number_eq?: number; /** - * Execution block number the timezone was set in + * The block number (filter: ne) */ - set_block_number?: number; + block_number_ne?: number; /** - * Wall clock time of the block the timezone was set in + * The block number (filter: lt) */ - set_date_time?: number; + block_number_lt?: number; /** - * The self-reported timezone location string (e.g. Europe/London) + * The block number (filter: lte) */ - timezone?: string; + block_number_lte?: number; /** - * Timestamp when the record was last updated + * The block number (filter: gt) */ - updated_date_time?: number; -}; - -export type IntStorageSelfdestructDiffs = { + block_number_gt?: number; /** - * Contract address that was selfdestructed + * The block number (filter: gte) */ - address?: string; + block_number_gte?: number; /** - * Block where SELFDESTRUCT occurred + * The block number (filter: between_min) */ - block_number?: number; + block_number_between_min?: number; /** - * Value before clearing (last known value) + * The block number (filter: between_max_value) */ - from_value?: string; + block_number_between_max_value?: number; /** - * Internal index of the SELFDESTRUCT trace + * The block number (filter: in_values) (comma-separated list) */ - internal_index?: number; + block_number_in_values?: string; /** - * Storage slot key being cleared + * The block number (filter: not_in_values) (comma-separated list) */ - slot?: string; + block_number_not_in_values?: string; /** - * Value after clearing (always 0x00...00) + * The contract address (filter: eq) */ - to_value?: string; + address_eq?: string; /** - * Transaction hash of the SELFDESTRUCT + * The contract address (filter: ne) */ - transaction_hash?: string; + address_ne?: string; /** - * Transaction index within the block + * The contract address (filter: contains) */ - transaction_index?: number; + address_contains?: string; /** - * Timestamp when the record was last updated + * The contract address (filter: starts_with) */ - updated_date_time?: number; -}; - -export type IntStorageSlotDiff = { + address_starts_with?: string; /** - * The contract address + * The contract address (filter: ends_with) */ - address?: string; + address_ends_with?: string; /** - * The block number + * The contract address (filter: like) */ - block_number?: number; + address_like?: string; /** - * Number of effective bytes in the first from_value of the block (0-32) + * The contract address (filter: not_like) */ - effective_bytes_from?: number; + address_not_like?: string; /** - * Number of effective bytes in the last to_value of the block (0-32) + * The contract address (filter: in_values) (comma-separated list) */ - effective_bytes_to?: number; + address_in_values?: string; /** - * The storage slot key + * The contract address (filter: not_in_values) (comma-separated list) */ - slot_key?: string; + address_not_in_values?: string; /** - * Timestamp when the record was last updated + * The storage slot key (filter: eq) */ - updated_date_time?: number; -}; - -export type IntStorageSlotDiffByAddressSlot = { + slot_key_eq?: string; /** - * The contract address + * The storage slot key (filter: ne) */ - address?: string; + slot_key_ne?: string; /** - * The block number + * The storage slot key (filter: contains) */ - block_number?: number; + slot_key_contains?: string; /** - * Number of effective bytes in the first from_value of the block (0-32) + * The storage slot key (filter: starts_with) */ - effective_bytes_from?: number; + slot_key_starts_with?: string; /** - * Number of effective bytes in the last to_value of the block (0-32) + * The storage slot key (filter: ends_with) */ - effective_bytes_to?: number; + slot_key_ends_with?: string; /** - * The storage slot key + * The storage slot key (filter: like) */ - slot_key?: string; + slot_key_like?: string; /** - * Timestamp when the record was last updated + * The storage slot key (filter: not_like) */ - updated_date_time?: number; -}; - -export type IntStorageSlotExpiry1m = { + slot_key_not_like?: string; /** - * The contract address + * The storage slot key (filter: in_values) (comma-separated list) */ - address?: string; + slot_key_in_values?: string; /** - * The block number where this slot expiry is recorded + * The storage slot key (filter: not_in_values) (comma-separated list) */ - block_number?: number; + slot_key_not_in_values?: string; /** - * Number of effective bytes that were set (0-32) + * Timestamp when the record was last updated (filter: eq) */ - effective_bytes?: number; + updated_date_time_eq?: number; /** - * The storage slot key + * Timestamp when the record was last updated (filter: ne) */ - slot_key?: string; + updated_date_time_ne?: number; /** - * The original touch block that led to this expiry (propagates through waterfall chain) + * Timestamp when the record was last updated (filter: lt) */ - touch_block?: number; + updated_date_time_lt?: number; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: lte) */ - updated_date_time?: number; -}; - -export type IntStorageSlotExpiry6m = { + updated_date_time_lte?: number; /** - * The contract address + * Timestamp when the record was last updated (filter: gt) */ - address?: string; + updated_date_time_gt?: number; /** - * The block number where this slot expiry is recorded + * Timestamp when the record was last updated (filter: gte) */ - block_number?: number; + updated_date_time_gte?: number; /** - * Number of effective bytes that were set (0-32) + * Timestamp when the record was last updated (filter: between_min) */ - effective_bytes?: number; + updated_date_time_between_min?: number; /** - * The storage slot key + * Timestamp when the record was last updated (filter: between_max_value) */ - slot_key?: string; + updated_date_time_between_max_value?: number; /** - * The original touch block that led to this expiry (propagates through waterfall chain) + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - touch_block?: number; + updated_date_time_in_values?: string; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - updated_date_time?: number; -}; - -export type IntStorageSlotExpiry12m = { + updated_date_time_not_in_values?: string; /** - * The contract address + * The maximum number of int_storage_slot_read to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - address?: string; + page_size?: number; /** - * The block number where this slot expiry is recorded + * A page token, received from a previous `ListIntStorageSlotRead` call. Provide this to retrieve the subsequent page. */ - block_number?: number; + page_token?: string; /** - * Number of effective bytes that were set (0-32) + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - effective_bytes?: number; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_read'; +}; + +export type IntStorageSlotReadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotReadServiceListError = + IntStorageSlotReadServiceListErrors[keyof IntStorageSlotReadServiceListErrors]; + +export type IntStorageSlotReadServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotReadResponse; +}; + +export type IntStorageSlotReadServiceListResponse = + IntStorageSlotReadServiceListResponses[keyof IntStorageSlotReadServiceListResponses]; + +export type IntStorageSlotReadServiceGetData = { + body?: never; + path: { /** - * The storage slot key + * The block number */ - slot_key?: string; + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_read/{block_number}'; +}; + +export type IntStorageSlotReadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotReadServiceGetError = + IntStorageSlotReadServiceGetErrors[keyof IntStorageSlotReadServiceGetErrors]; + +export type IntStorageSlotReadServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotReadResponse; +}; + +export type IntStorageSlotReadServiceGetResponse = + IntStorageSlotReadServiceGetResponses[keyof IntStorageSlotReadServiceGetResponses]; + +export type IntStorageSlotStateServiceListData = { + body?: never; + path?: never; + query?: { /** - * The original touch block that led to this expiry (propagates through waterfall chain) + * The block number (filter: eq) */ - touch_block?: number; + block_number_eq?: number; /** - * Timestamp when the record was last updated + * The block number (filter: ne) */ - updated_date_time?: number; -}; - -export type IntStorageSlotExpiry18m = { + block_number_ne?: number; /** - * The contract address + * The block number (filter: lt) */ - address?: string; + block_number_lt?: number; /** - * The block number where this slot expiry is recorded + * The block number (filter: lte) */ - block_number?: number; + block_number_lte?: number; /** - * Number of effective bytes that were set (0-32) + * The block number (filter: gt) */ - effective_bytes?: number; + block_number_gt?: number; /** - * The storage slot key + * The block number (filter: gte) */ - slot_key?: string; + block_number_gte?: number; /** - * The original touch block that led to this expiry (propagates through waterfall chain) + * The block number (filter: between_min) */ - touch_block?: number; + block_number_between_min?: number; /** - * Timestamp when the record was last updated + * The block number (filter: between_max_value) */ - updated_date_time?: number; -}; - -export type IntStorageSlotExpiry24m = { + block_number_between_max_value?: number; /** - * The contract address + * The block number (filter: in_values) (comma-separated list) */ - address?: string; + block_number_in_values?: string; /** - * The block number where this slot expiry is recorded + * The block number (filter: not_in_values) (comma-separated list) */ - block_number?: number; + block_number_not_in_values?: string; /** - * Number of effective bytes that were set (0-32) + * The contract address (filter: eq) */ - effective_bytes?: number; + address_eq?: string; /** - * The storage slot key + * The contract address (filter: ne) */ - slot_key?: string; + address_ne?: string; /** - * The original touch block that led to this expiry (propagates through waterfall chain) + * The contract address (filter: contains) */ - touch_block?: number; + address_contains?: string; /** - * Timestamp when the record was last updated + * The contract address (filter: starts_with) */ - updated_date_time?: number; -}; - -export type IntStorageSlotLifecycle = { + address_starts_with?: string; /** - * The contract address + * The contract address (filter: ends_with) */ - address?: string; + address_ends_with?: string; /** - * Block where the slot transitioned from 0 to non-zero effective bytes + * The contract address (filter: like) */ - birth_block?: number; + address_like?: string; /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) + * The contract address (filter: not_like) */ - death_block?: number | null; + address_not_like?: string; /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) + * The contract address (filter: in_values) (comma-separated list) */ - effective_bytes_birth?: number; + address_in_values?: string; /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) + * The contract address (filter: not_in_values) (comma-separated list) */ - effective_bytes_death?: number | null; + address_not_in_values?: string; /** - * Maximum effective bytes observed during this lifecycle + * Timestamp when the record was last updated (filter: eq) */ - effective_bytes_peak?: number; + updated_date_time_eq?: number; /** - * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) + * Timestamp when the record was last updated (filter: ne) */ - interval_count?: number; + updated_date_time_ne?: number; /** - * Maximum touch-to-touch interval in blocks + * Timestamp when the record was last updated (filter: lt) */ - interval_max?: number; + updated_date_time_lt?: number; /** - * Sum of all touch-to-touch intervals in blocks (for computing mean) + * Timestamp when the record was last updated (filter: lte) */ - interval_sum?: number; + updated_date_time_lte?: number; /** - * Most recent block where this slot was touched in this lifecycle + * Timestamp when the record was last updated (filter: gt) */ - last_touch_block?: number; + updated_date_time_gt?: number; /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) + * Timestamp when the record was last updated (filter: gte) */ - lifecycle_number?: number; + updated_date_time_gte?: number; /** - * Number of blocks between birth and death (NULL if still alive) + * Timestamp when the record was last updated (filter: between_min) */ - lifespan_blocks?: number | null; + updated_date_time_between_min?: number; /** - * The storage slot key + * Timestamp when the record was last updated (filter: between_max_value) */ - slot_key?: string; + updated_date_time_between_max_value?: number; /** - * Total number of times this slot was touched during this lifecycle + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - touch_count?: number; + updated_date_time_in_values?: string; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - updated_date_time?: number; -}; - -export type IntStorageSlotLifecycleBoundary = { + updated_date_time_not_in_values?: string; /** - * The contract address + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: eq) */ - address?: string; + slots_delta_eq?: number; /** - * Block where the slot transitioned from 0 to non-zero effective bytes + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: ne) */ - birth_block?: number; + slots_delta_ne?: number; /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lt) */ - death_block?: number | null; + slots_delta_lt?: number; /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lte) */ - effective_bytes_birth?: number; + slots_delta_lte?: number; /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gt) */ - effective_bytes_death?: number | null; + slots_delta_gt?: number; /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gte) */ - lifecycle_number?: number; + slots_delta_gte?: number; /** - * The storage slot key + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_min) */ - slot_key?: string; + slots_delta_between_min?: number; /** - * Timestamp when the record was last updated + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_max_value) */ - updated_date_time?: number; -}; - -export type IntStorageSlotNextTouch = { + slots_delta_between_max_value?: number; /** - * The contract address + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) */ - address?: string; + slots_delta_in_values?: string; /** - * The block number where this slot was touched + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) */ - block_number?: number; + slots_delta_not_in_values?: string; /** - * The next block number where this slot was touched (NULL if no subsequent touch) + * Change in effective bytes for this block (filter: eq) */ - next_touch_block?: number | null; + bytes_delta_eq?: number; /** - * The storage slot key + * Change in effective bytes for this block (filter: ne) */ - slot_key?: string; + bytes_delta_ne?: number; /** - * Timestamp when the record was last updated + * Change in effective bytes for this block (filter: lt) */ - updated_date_time?: number; -}; - -export type IntStorageSlotReactivation1m = { + bytes_delta_lt?: number; /** - * The contract address + * Change in effective bytes for this block (filter: lte) */ - address?: string; + bytes_delta_lte?: number; /** - * The block number where this slot was reactivated + * Change in effective bytes for this block (filter: gt) */ - block_number?: number; + bytes_delta_gt?: number; /** - * Number of effective bytes being reactivated (0-32) + * Change in effective bytes for this block (filter: gte) */ - effective_bytes?: number; + bytes_delta_gte?: number; /** - * The storage slot key + * Change in effective bytes for this block (filter: between_min) */ - slot_key?: string; + bytes_delta_between_min?: number; /** - * The original touch block that expired (for matching with expiry records) + * Change in effective bytes for this block (filter: between_max_value) */ - touch_block?: number; + bytes_delta_between_max_value?: number; /** - * Timestamp when the record was last updated + * Change in effective bytes for this block (filter: in_values) (comma-separated list) */ - updated_date_time?: number; -}; - -export type IntStorageSlotReactivation6m = { + bytes_delta_in_values?: string; /** - * The contract address + * Change in effective bytes for this block (filter: not_in_values) (comma-separated list) */ - address?: string; + bytes_delta_not_in_values?: string; /** - * The block number where this slot was reactivated + * Cumulative count of active storage slots for this address at this block (filter: eq) */ - block_number?: number; + active_slots_eq?: number; /** - * Number of effective bytes being reactivated (0-32) + * Cumulative count of active storage slots for this address at this block (filter: ne) */ - effective_bytes?: number; + active_slots_ne?: number; /** - * The storage slot key + * Cumulative count of active storage slots for this address at this block (filter: lt) */ - slot_key?: string; + active_slots_lt?: number; /** - * The original touch block that expired (for matching with expiry records) + * Cumulative count of active storage slots for this address at this block (filter: lte) */ - touch_block?: number; + active_slots_lte?: number; /** - * Timestamp when the record was last updated + * Cumulative count of active storage slots for this address at this block (filter: gt) */ - updated_date_time?: number; -}; - -export type IntStorageSlotReactivation12m = { + active_slots_gt?: number; /** - * The contract address + * Cumulative count of active storage slots for this address at this block (filter: gte) */ - address?: string; + active_slots_gte?: number; /** - * The block number where this slot was reactivated + * Cumulative count of active storage slots for this address at this block (filter: between_min) */ - block_number?: number; + active_slots_between_min?: number; /** - * Number of effective bytes being reactivated (0-32) + * Cumulative count of active storage slots for this address at this block (filter: between_max_value) */ - effective_bytes?: number; + active_slots_between_max_value?: number; /** - * The storage slot key + * Cumulative count of active storage slots for this address at this block (filter: in_values) (comma-separated list) */ - slot_key?: string; + active_slots_in_values?: string; /** - * The original touch block that expired (for matching with expiry records) + * Cumulative count of active storage slots for this address at this block (filter: not_in_values) (comma-separated list) */ - touch_block?: number; + active_slots_not_in_values?: string; /** - * Timestamp when the record was last updated + * Cumulative sum of effective bytes for this address at this block (filter: eq) */ - updated_date_time?: number; -}; - -export type IntStorageSlotReactivation18m = { + effective_bytes_eq?: number; /** - * The contract address + * Cumulative sum of effective bytes for this address at this block (filter: ne) */ - address?: string; + effective_bytes_ne?: number; /** - * The block number where this slot was reactivated + * Cumulative sum of effective bytes for this address at this block (filter: lt) */ - block_number?: number; + effective_bytes_lt?: number; /** - * Number of effective bytes being reactivated (0-32) + * Cumulative sum of effective bytes for this address at this block (filter: lte) */ - effective_bytes?: number; + effective_bytes_lte?: number; /** - * The storage slot key + * Cumulative sum of effective bytes for this address at this block (filter: gt) */ - slot_key?: string; + effective_bytes_gt?: number; /** - * The original touch block that expired (for matching with expiry records) + * Cumulative sum of effective bytes for this address at this block (filter: gte) */ - touch_block?: number; + effective_bytes_gte?: number; /** - * Timestamp when the record was last updated + * Cumulative sum of effective bytes for this address at this block (filter: between_min) */ - updated_date_time?: number; -}; - -export type IntStorageSlotReactivation24m = { + effective_bytes_between_min?: number; /** - * The contract address + * Cumulative sum of effective bytes for this address at this block (filter: between_max_value) */ - address?: string; + effective_bytes_between_max_value?: number; /** - * The block number where this slot was reactivated + * Cumulative sum of effective bytes for this address at this block (filter: in_values) (comma-separated list) */ - block_number?: number; + effective_bytes_in_values?: string; /** - * Number of effective bytes being reactivated (0-32) + * Cumulative sum of effective bytes for this address at this block (filter: not_in_values) (comma-separated list) */ - effective_bytes?: number; + effective_bytes_not_in_values?: string; /** - * The storage slot key + * The maximum number of int_storage_slot_state to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - slot_key?: string; + page_size?: number; /** - * The original touch block that expired (for matching with expiry records) + * A page token, received from a previous `ListIntStorageSlotState` call. Provide this to retrieve the subsequent page. */ - touch_block?: number; + page_token?: string; /** - * Timestamp when the record was last updated + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - updated_date_time?: number; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_state'; }; -export type IntStorageSlotRead = { - /** - * The contract address - */ - address?: string; +export type IntStorageSlotStateServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotStateServiceListError = + IntStorageSlotStateServiceListErrors[keyof IntStorageSlotStateServiceListErrors]; + +export type IntStorageSlotStateServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotStateResponse; +}; + +export type IntStorageSlotStateServiceListResponse = + IntStorageSlotStateServiceListResponses[keyof IntStorageSlotStateServiceListResponses]; + +export type IntStorageSlotStateServiceGetData = { + body?: never; + path: { /** * The block number */ - block_number?: number; - /** - * The storage slot key - */ - slot_key?: string; - /** - * Timestamp when the record was last updated - */ - updated_date_time?: number; + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_state/{block_number}'; }; -export type IntStorageSlotState = { +export type IntStorageSlotStateServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotStateServiceGetError = + IntStorageSlotStateServiceGetErrors[keyof IntStorageSlotStateServiceGetErrors]; + +export type IntStorageSlotStateServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotStateResponse; +}; + +export type IntStorageSlotStateServiceGetResponse = + IntStorageSlotStateServiceGetResponses[keyof IntStorageSlotStateServiceGetResponses]; + +export type IntStorageSlotStateByAddressServiceListData = { + body?: never; + path?: never; + query?: { /** - * Cumulative count of active storage slots for this address at this block + * The contract address (filter: eq) */ - active_slots?: number; + address_eq?: string; /** - * The contract address + * The contract address (filter: ne) */ - address?: string; + address_ne?: string; /** - * The block number + * The contract address (filter: contains) */ - block_number?: number; + address_contains?: string; /** - * Change in effective bytes for this block + * The contract address (filter: starts_with) */ - bytes_delta?: number; + address_starts_with?: string; /** - * Cumulative sum of effective bytes for this address at this block + * The contract address (filter: ends_with) */ - effective_bytes?: number; + address_ends_with?: string; /** - * Change in active slots for this block (positive=activated, negative=deactivated) + * The contract address (filter: like) */ - slots_delta?: number; + address_like?: string; /** - * Timestamp when the record was last updated + * The contract address (filter: not_like) */ - updated_date_time?: number; -}; - -export type IntStorageSlotStateByAddress = { + address_not_like?: string; /** - * Cumulative count of active storage slots for this address at this block + * The contract address (filter: in_values) (comma-separated list) */ - active_slots?: number; + address_in_values?: string; /** - * The contract address + * The contract address (filter: not_in_values) (comma-separated list) */ - address?: string; + address_not_in_values?: string; /** - * The block number + * The block number (filter: eq) */ - block_number?: number; + block_number_eq?: number; /** - * Change in effective bytes for this block + * The block number (filter: ne) */ - bytes_delta?: number; + block_number_ne?: number; /** - * Cumulative sum of effective bytes for this address at this block + * The block number (filter: lt) */ - effective_bytes?: number; + block_number_lt?: number; /** - * Change in active slots for this block (positive=activated, negative=deactivated) + * The block number (filter: lte) */ - slots_delta?: number; + block_number_lte?: number; /** - * Timestamp when the record was last updated + * The block number (filter: gt) */ - updated_date_time?: number; -}; - -export type IntStorageSlotStateByBlock = { + block_number_gt?: number; /** - * Cumulative count of active storage slots at this block + * The block number (filter: gte) */ - active_slots?: number; + block_number_gte?: number; /** - * The block number + * The block number (filter: between_min) */ - block_number?: number; + block_number_between_min?: number; /** - * Change in effective bytes for this block + * The block number (filter: between_max_value) */ - bytes_delta?: number; + block_number_between_max_value?: number; /** - * Cumulative sum of effective bytes across all active slots at this block + * The block number (filter: in_values) (comma-separated list) */ - effective_bytes?: number; + block_number_in_values?: string; /** - * Change in active slots for this block (positive=activated, negative=deactivated) + * The block number (filter: not_in_values) (comma-separated list) */ - slots_delta?: number; + block_number_not_in_values?: string; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: eq) */ - updated_date_time?: number; -}; - -export type IntStorageSlotStateWithExpiry = { + updated_date_time_eq?: number; /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) + * Timestamp when the record was last updated (filter: ne) */ - active_slots?: number; + updated_date_time_ne?: number; /** - * The contract address + * Timestamp when the record was last updated (filter: lt) */ - address?: string; + updated_date_time_lt?: number; /** - * The block number + * Timestamp when the record was last updated (filter: lte) */ - block_number?: number; + updated_date_time_lte?: number; /** - * Cumulative net bytes adjustment up to this block + * Timestamp when the record was last updated (filter: gt) */ - cumulative_net_bytes?: number; + updated_date_time_gt?: number; /** - * Cumulative net slot adjustment up to this block + * Timestamp when the record was last updated (filter: gte) */ - cumulative_net_slots?: number; + updated_date_time_gte?: number; /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) + * Timestamp when the record was last updated (filter: between_min) */ - effective_bytes?: number; + updated_date_time_between_min?: number; /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + * Timestamp when the record was last updated (filter: between_max_value) */ - expiry_policy?: string; + updated_date_time_between_max_value?: number; /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - net_bytes_delta?: number; + updated_date_time_in_values?: string; /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - net_slots_delta?: number; + updated_date_time_not_in_values?: string; /** - * Timestamp when the record was last updated + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: eq) */ - updated_date_time?: number; -}; - -export type IntStorageSlotStateWithExpiryByAddress = { + slots_delta_eq?: number; /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: ne) */ - active_slots?: number; + slots_delta_ne?: number; /** - * The contract address + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lt) */ - address?: string; + slots_delta_lt?: number; /** - * The block number + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lte) */ - block_number?: number; + slots_delta_lte?: number; /** - * Cumulative net bytes adjustment up to this block + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gt) */ - cumulative_net_bytes?: number; + slots_delta_gt?: number; /** - * Cumulative net slot adjustment up to this block + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gte) */ - cumulative_net_slots?: number; + slots_delta_gte?: number; /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_min) */ - effective_bytes?: number; + slots_delta_between_min?: number; /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_max_value) */ - expiry_policy?: string; + slots_delta_between_max_value?: number; /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) */ - net_bytes_delta?: number; + slots_delta_in_values?: string; /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) */ - net_slots_delta?: number; + slots_delta_not_in_values?: string; /** - * Timestamp when the record was last updated + * Change in effective bytes for this block (filter: eq) */ - updated_date_time?: number; -}; - -export type IntStorageSlotStateWithExpiryByBlock = { + bytes_delta_eq?: number; /** - * Cumulative count of active storage slots at this block (with expiry applied) + * Change in effective bytes for this block (filter: ne) */ - active_slots?: number; + bytes_delta_ne?: number; /** - * The block number + * Change in effective bytes for this block (filter: lt) */ - block_number?: number; + bytes_delta_lt?: number; /** - * Cumulative net bytes adjustment up to this block + * Change in effective bytes for this block (filter: lte) */ - cumulative_net_bytes?: number; + bytes_delta_lte?: number; /** - * Cumulative net slot adjustment up to this block + * Change in effective bytes for this block (filter: gt) */ - cumulative_net_slots?: number; + bytes_delta_gt?: number; /** - * Cumulative sum of effective bytes at this block (with expiry applied) + * Change in effective bytes for this block (filter: gte) */ - effective_bytes?: number; + bytes_delta_gte?: number; /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m + * Change in effective bytes for this block (filter: between_min) */ - expiry_policy?: string; + bytes_delta_between_min?: number; /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) + * Change in effective bytes for this block (filter: between_max_value) */ - net_bytes_delta?: number; + bytes_delta_between_max_value?: number; /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) + * Change in effective bytes for this block (filter: in_values) (comma-separated list) */ - net_slots_delta?: number; + bytes_delta_in_values?: string; /** - * Timestamp when the record was last updated + * Change in effective bytes for this block (filter: not_in_values) (comma-separated list) */ - updated_date_time?: number; -}; - -export type IntTokenContractStorageStateByBlock = { + bytes_delta_not_in_values?: string; /** - * Cumulative active storage slots owned by contracts of this standard at this block + * Cumulative count of active storage slots for this address at this block (filter: eq) */ - active_slots?: number; + active_slots_eq?: number; /** - * The block number + * Cumulative count of active storage slots for this address at this block (filter: ne) */ - block_number?: number; + active_slots_ne?: number; /** - * Change in active slots owned by contracts of this standard at this block + * Cumulative count of active storage slots for this address at this block (filter: lt) */ - slots_delta?: number; + active_slots_lt?: number; /** - * Token standard: erc20 or erc721 + * Cumulative count of active storage slots for this address at this block (filter: lte) */ - token_standard?: string; + active_slots_lte?: number; /** - * Timestamp when the record was last updated + * Cumulative count of active storage slots for this address at this block (filter: gt) */ - updated_date_time?: number; -}; - -export type IntTransactionCallFrame = { + active_slots_gt?: number; /** - * The block number containing this transaction + * Cumulative count of active storage slots for this address at this block (filter: gte) + */ + active_slots_gte?: number; + /** + * Cumulative count of active storage slots for this address at this block (filter: between_min) */ - block_number?: number; + active_slots_between_min?: number; /** - * Sequential frame ID within the transaction (0 = root) + * Cumulative count of active storage slots for this address at this block (filter: between_max_value) */ - call_frame_id?: number; + active_slots_between_max_value?: number; /** - * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) + * Cumulative count of active storage slots for this address at this block (filter: in_values) (comma-separated list) */ - call_type?: string; + active_slots_in_values?: string; /** - * Call depth (0 = root transaction execution) + * Cumulative count of active storage slots for this address at this block (filter: not_in_values) (comma-separated list) */ - depth?: number; + active_slots_not_in_values?: string; /** - * Number of opcodes that resulted in errors + * Cumulative sum of effective bytes for this address at this block (filter: eq) */ - error_count?: number; + effective_bytes_eq?: number; /** - * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. + * Cumulative sum of effective bytes for this address at this block (filter: ne) */ - function_selector?: string | null; + effective_bytes_ne?: number; /** - * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. + * Cumulative sum of effective bytes for this address at this block (filter: lt) */ - gas?: number; + effective_bytes_lt?: number; /** - * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. + * Cumulative sum of effective bytes for this address at this block (filter: lte) */ - gas_cumulative?: number; + effective_bytes_lte?: number; /** - * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). + * Cumulative sum of effective bytes for this address at this block (filter: gt) */ - gas_refund?: number | null; + effective_bytes_gt?: number; /** - * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. + * Cumulative sum of effective bytes for this address at this block (filter: gte) */ - intrinsic_gas?: number | null; + effective_bytes_gte?: number; /** - * Number of opcodes executed in this frame + * Cumulative sum of effective bytes for this address at this block (filter: between_min) */ - opcode_count?: number; + effective_bytes_between_min?: number; /** - * Parent frame ID (NULL for root frame) + * Cumulative sum of effective bytes for this address at this block (filter: between_max_value) */ - parent_call_frame_id?: number | null; + effective_bytes_between_max_value?: number; /** - * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. + * Cumulative sum of effective bytes for this address at this block (filter: in_values) (comma-separated list) */ - receipt_gas_used?: number | null; + effective_bytes_in_values?: string; /** - * Contract address being called (hex encoded with 0x prefix) + * Cumulative sum of effective bytes for this address at this block (filter: not_in_values) (comma-separated list) */ - target_address?: string | null; + effective_bytes_not_in_values?: string; /** - * The transaction hash (hex encoded with 0x prefix) + * The maximum number of int_storage_slot_state_by_address to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - transaction_hash?: string; + page_size?: number; /** - * Position of the transaction within the block + * A page token, received from a previous `ListIntStorageSlotStateByAddress` call. Provide this to retrieve the subsequent page. */ - transaction_index?: number; + page_token?: string; /** - * Timestamp when the record was last updated + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - updated_date_time?: number; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_state_by_address'; +}; + +export type IntStorageSlotStateByAddressServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotStateByAddressServiceListError = + IntStorageSlotStateByAddressServiceListErrors[keyof IntStorageSlotStateByAddressServiceListErrors]; + +export type IntStorageSlotStateByAddressServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotStateByAddressResponse; }; -export type IntTransactionCallFrameOpcodeGas = { - /** - * The block number containing the transaction - */ - block_number?: number; +export type IntStorageSlotStateByAddressServiceListResponse = + IntStorageSlotStateByAddressServiceListResponses[keyof IntStorageSlotStateByAddressServiceListResponses]; + +export type IntStorageSlotStateByAddressServiceGetData = { + body?: never; + path: { /** - * Sequential frame ID within transaction (0 = root) + * The contract address */ - call_frame_id?: number; + address: string; + }; + query?: never; + url: '/api/v1/int_storage_slot_state_by_address/{address}'; +}; + +export type IntStorageSlotStateByAddressServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotStateByAddressServiceGetError = + IntStorageSlotStateByAddressServiceGetErrors[keyof IntStorageSlotStateByAddressServiceGetErrors]; + +export type IntStorageSlotStateByAddressServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotStateByAddressResponse; +}; + +export type IntStorageSlotStateByAddressServiceGetResponse = + IntStorageSlotStateByAddressServiceGetResponses[keyof IntStorageSlotStateByAddressServiceGetResponses]; + +export type IntStorageSlotStateByBlockServiceListData = { + body?: never; + path?: never; + query?: { /** - * Number of cold storage/account accesses (EIP-2929). + * The block number (filter: eq) */ - cold_access_count?: number; + block_number_eq?: number; /** - * Number of times this opcode was executed in this frame + * The block number (filter: ne) */ - count?: number; + block_number_ne?: number; /** - * Number of times this opcode resulted in an error in this frame + * The block number (filter: lt) */ - error_count?: number; + block_number_lt?: number; /** - * Gas consumed by this opcode in this frame. sum(gas) = frame gas + * The block number (filter: lte) */ - gas?: number; + block_number_lte?: number; /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas + * The block number (filter: gt) */ - gas_cumulative?: number; + block_number_gt?: number; /** - * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. + * The block number (filter: gte) */ - memory_expansion_gas?: number; + block_number_gte?: number; /** - * SUM(words_after²). + * The block number (filter: between_min) */ - memory_words_sq_sum_after?: number; + block_number_between_min?: number; /** - * SUM(words_before²). + * The block number (filter: between_max_value) */ - memory_words_sq_sum_before?: number; + block_number_between_max_value?: number; /** - * SUM(ceil(memory_bytes/32)) after each opcode executes. + * The block number (filter: in_values) (comma-separated list) */ - memory_words_sum_after?: number; + block_number_in_values?: string; /** - * SUM(ceil(memory_bytes/32)) before each opcode executes. + * The block number (filter: not_in_values) (comma-separated list) */ - memory_words_sum_before?: number; + block_number_not_in_values?: string; /** - * The name of the network + * Timestamp when the record was last updated (filter: eq) */ - meta_network_name?: string; + updated_date_time_eq?: number; /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) + * Timestamp when the record was last updated (filter: ne) */ - opcode?: string; + updated_date_time_ne?: number; /** - * The transaction hash (hex encoded with 0x prefix) + * Timestamp when the record was last updated (filter: lt) */ - transaction_hash?: string; + updated_date_time_lt?: number; /** - * The index of the transaction within the block + * Timestamp when the record was last updated (filter: lte) */ - transaction_index?: number; + updated_date_time_lte?: number; /** - * Timestamp when the record was last updated + * Timestamp when the record was last updated (filter: gt) */ - updated_date_time?: number; -}; - -export type IntTransactionCallFrameOpcodeResourceGas = { + updated_date_time_gt?: number; /** - * The block number containing the transaction + * Timestamp when the record was last updated (filter: gte) */ - block_number?: number; + updated_date_time_gte?: number; /** - * Sequential frame ID within transaction (0 = root) + * Timestamp when the record was last updated (filter: between_min) */ - call_frame_id?: number; + updated_date_time_between_min?: number; /** - * Number of times this opcode was executed in this frame + * Timestamp when the record was last updated (filter: between_max_value) */ - count?: number; + updated_date_time_between_max_value?: number; /** - * Total gas consumed by this opcode in this frame + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - gas?: number; + updated_date_time_in_values?: string; /** - * Gas attributed to cold address/storage access (EIP-2929) + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - gas_address_access?: number; + updated_date_time_not_in_values?: string; /** - * Gas attributed to block size (always 0 at opcode level) + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: eq) */ - gas_block_size?: number; + slots_delta_eq?: number; /** - * Gas attributed to bloom filter topic indexing + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: ne) */ - gas_bloom_topics?: number; + slots_delta_ne?: number; /** - * Gas attributed to pure computation + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lt) */ - gas_compute?: number; + slots_delta_lt?: number; /** - * Gas attributed to history/log data storage + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lte) */ - gas_history?: number; + slots_delta_lte?: number; /** - * Gas attributed to memory expansion + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gt) */ - gas_memory?: number; + slots_delta_gt?: number; /** - * Gas attributed to state growth (new storage slots, contract creation) + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gte) */ - gas_state_growth?: number; + slots_delta_gte?: number; /** - * The name of the network + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_min) */ - meta_network_name?: string; + slots_delta_between_min?: number; /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_max_value) */ - opcode?: string; + slots_delta_between_max_value?: number; /** - * The transaction hash (hex encoded with 0x prefix) + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) */ - transaction_hash?: string; + slots_delta_in_values?: string; /** - * The index of the transaction within the block + * Change in active slots for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) */ - transaction_index?: number; + slots_delta_not_in_values?: string; /** - * Timestamp when the record was last updated + * Change in effective bytes for this block (filter: eq) */ - updated_date_time?: number; -}; - -export type IntTransactionOpcodeGas = { + bytes_delta_eq?: number; /** - * The block number containing the transaction + * Change in effective bytes for this block (filter: ne) */ - block_number?: number; + bytes_delta_ne?: number; /** - * Number of times this opcode was executed in the transaction + * Change in effective bytes for this block (filter: lt) */ - count?: number; + bytes_delta_lt?: number; /** - * Number of times this opcode resulted in an error + * Change in effective bytes for this block (filter: lte) */ - error_count?: number; + bytes_delta_lte?: number; /** - * Gas consumed by this opcode. sum(gas) = transaction executed gas + * Change in effective bytes for this block (filter: gt) */ - gas?: number; + bytes_delta_gt?: number; /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas + * Change in effective bytes for this block (filter: gte) */ - gas_cumulative?: number; + bytes_delta_gte?: number; /** - * The name of the network + * Change in effective bytes for this block (filter: between_min) */ - meta_network_name?: string; + bytes_delta_between_min?: number; /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) + * Change in effective bytes for this block (filter: between_max_value) */ - opcode?: string; + bytes_delta_between_max_value?: number; /** - * The transaction hash (hex encoded with 0x prefix) + * Change in effective bytes for this block (filter: in_values) (comma-separated list) */ - transaction_hash?: string; + bytes_delta_in_values?: string; /** - * The index of the transaction within the block + * Change in effective bytes for this block (filter: not_in_values) (comma-separated list) */ - transaction_index?: number; + bytes_delta_not_in_values?: string; /** - * Timestamp when the record was last updated + * Cumulative count of active storage slots at this block (filter: eq) */ - updated_date_time?: number; -}; - -export type IntTransactionReceiptSize = { + active_slots_eq?: number; /** - * The block number containing the transaction + * Cumulative count of active storage slots at this block (filter: ne) */ - block_number?: number; + active_slots_ne?: number; /** - * Number of logs emitted by this transaction + * Cumulative count of active storage slots at this block (filter: lt) */ - log_count?: number; + active_slots_lt?: number; /** - * Total raw bytes of log data fields (before RLP encoding) + * Cumulative count of active storage slots at this block (filter: lte) */ - log_data_bytes?: number; + active_slots_lte?: number; /** - * Total number of topics across all logs + * Cumulative count of active storage slots at this block (filter: gt) */ - log_topic_count?: number; + active_slots_gt?: number; /** - * The name of the network + * Cumulative count of active storage slots at this block (filter: gte) */ - meta_network_name?: string; + active_slots_gte?: number; /** - * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) + * Cumulative count of active storage slots at this block (filter: between_min) */ - receipt_bytes?: number; + active_slots_between_min?: number; /** - * The transaction hash (hex encoded with 0x prefix) + * Cumulative count of active storage slots at this block (filter: between_max_value) */ - transaction_hash?: string; + active_slots_between_max_value?: number; /** - * The index of the transaction within the block + * Cumulative count of active storage slots at this block (filter: in_values) (comma-separated list) */ - transaction_index?: number; + active_slots_in_values?: string; /** - * Timestamp when the record was last updated + * Cumulative count of active storage slots at this block (filter: not_in_values) (comma-separated list) */ - updated_date_time?: number; -}; - -export type IntTransactionResourceGas = { + active_slots_not_in_values?: string; /** - * The block number containing the transaction + * Cumulative sum of effective bytes across all active slots at this block (filter: eq) */ - block_number?: number; + effective_bytes_eq?: number; /** - * Total cold address/storage access gas + * Cumulative sum of effective bytes across all active slots at this block (filter: ne) */ - gas_address_access?: number; + effective_bytes_ne?: number; /** - * Total block size gas (from intrinsic calldata) + * Cumulative sum of effective bytes across all active slots at this block (filter: lt) */ - gas_block_size?: number; + effective_bytes_lt?: number; /** - * Total bloom filter topic gas + * Cumulative sum of effective bytes across all active slots at this block (filter: lte) */ - gas_bloom_topics?: number; + effective_bytes_lte?: number; /** - * Total compute gas (EVM execution + intrinsic compute) + * Cumulative sum of effective bytes across all active slots at this block (filter: gt) */ - gas_compute?: number; + effective_bytes_gt?: number; /** - * Total history/log data gas + * Cumulative sum of effective bytes across all active slots at this block (filter: gte) */ - gas_history?: number; + effective_bytes_gte?: number; /** - * Total memory expansion gas + * Cumulative sum of effective bytes across all active slots at this block (filter: between_min) */ - gas_memory?: number; + effective_bytes_between_min?: number; /** - * Gas refund from SSTORE operations + * Cumulative sum of effective bytes across all active slots at this block (filter: between_max_value) */ - gas_refund?: number; + effective_bytes_between_max_value?: number; /** - * Total state growth gas + * Cumulative sum of effective bytes across all active slots at this block (filter: in_values) (comma-separated list) */ - gas_state_growth?: number; + effective_bytes_in_values?: string; /** - * The name of the network + * Cumulative sum of effective bytes across all active slots at this block (filter: not_in_values) (comma-separated list) */ - meta_network_name?: string; + effective_bytes_not_in_values?: string; /** - * The transaction hash (hex encoded with 0x prefix) + * The maximum number of int_storage_slot_state_by_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - transaction_hash?: string; + page_size?: number; /** - * The index of the transaction within the block + * A page token, received from a previous `ListIntStorageSlotStateByBlock` call. Provide this to retrieve the subsequent page. */ - transaction_index?: number; + page_token?: string; /** - * Timestamp when the record was last updated + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - updated_date_time?: number; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_state_by_block'; }; -/** - * Response for listing admin_cbt_incremental records - */ -export type ListAdminCbtIncrementalResponse = { - /** - * The list of admin_cbt_incremental. - */ - admin_cbt_incremental?: Array; - /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. - */ - next_page_token?: string; +export type IntStorageSlotStateByBlockServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for listing dim_block_blob_submitter records - */ -export type ListDimBlockBlobSubmitterResponse = { - /** - * The list of dim_block_blob_submitter. - */ - dim_block_blob_submitter?: Array; - /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. - */ - next_page_token?: string; +export type IntStorageSlotStateByBlockServiceListError = + IntStorageSlotStateByBlockServiceListErrors[keyof IntStorageSlotStateByBlockServiceListErrors]; + +export type IntStorageSlotStateByBlockServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotStateByBlockResponse; }; -/** - * Response for listing dim_contract_owner records - */ -export type ListDimContractOwnerResponse = { - /** - * The list of dim_contract_owner. - */ - dim_contract_owner?: Array; +export type IntStorageSlotStateByBlockServiceListResponse = + IntStorageSlotStateByBlockServiceListResponses[keyof IntStorageSlotStateByBlockServiceListResponses]; + +export type IntStorageSlotStateByBlockServiceGetData = { + body?: never; + path: { /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number */ - next_page_token?: string; + block_number: number; + }; + query?: never; + url: '/api/v1/int_storage_slot_state_by_block/{block_number}'; }; -/** - * Response for listing dim_function_signature records - */ -export type ListDimFunctionSignatureResponse = { - /** - * The list of dim_function_signature. - */ - dim_function_signature?: Array; - /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. - */ - next_page_token?: string; +export type IntStorageSlotStateByBlockServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -/** - * Response for listing dim_node records - */ -export type ListDimNodeResponse = { +export type IntStorageSlotStateByBlockServiceGetError = + IntStorageSlotStateByBlockServiceGetErrors[keyof IntStorageSlotStateByBlockServiceGetErrors]; + +export type IntStorageSlotStateByBlockServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotStateByBlockResponse; +}; + +export type IntStorageSlotStateByBlockServiceGetResponse = + IntStorageSlotStateByBlockServiceGetResponses[keyof IntStorageSlotStateByBlockServiceGetResponses]; + +export type IntStorageSlotStateWithExpiryServiceListData = { + body?: never; + path?: never; + query?: { /** - * The list of dim_node. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) */ - dim_node?: Array; + expiry_policy_eq?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing dim_rocketpool_node records - */ -export type ListDimRocketpoolNodeResponse = { + expiry_policy_ne?: string; /** - * The list of dim_rocketpool_node. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) */ - dim_rocketpool_node?: Array; + expiry_policy_contains?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) */ - next_page_token?: string; -}; - -/** - * Response for listing dim_token_contract records - */ -export type ListDimTokenContractResponse = { + expiry_policy_starts_with?: string; /** - * The list of dim_token_contract. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) */ - dim_token_contract?: Array; + expiry_policy_ends_with?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) */ - next_page_token?: string; -}; - -/** - * Response for listing dim_validator_pubkey records - */ -export type ListDimValidatorPubkeyResponse = { + expiry_policy_like?: string; /** - * The list of dim_validator_pubkey. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) */ - dim_validator_pubkey?: Array; + expiry_policy_not_like?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing dim_validator_status records - */ -export type ListDimValidatorStatusResponse = { + expiry_policy_in_values?: string; /** - * The list of dim_validator_status. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) */ - dim_validator_status?: Array; + expiry_policy_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_correctness_by_validator_canonical records - */ -export type ListFctAttestationCorrectnessByValidatorCanonicalResponse = { + block_number_eq?: number; /** - * The list of fct_attestation_correctness_by_validator_canonical. + * The block number (filter: ne) */ - fct_attestation_correctness_by_validator_canonical?: Array; + block_number_ne?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: lt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_correctness_by_validator_head records - */ -export type ListFctAttestationCorrectnessByValidatorHeadResponse = { + block_number_lt?: number; /** - * The list of fct_attestation_correctness_by_validator_head. + * The block number (filter: lte) */ - fct_attestation_correctness_by_validator_head?: Array; + block_number_lte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: gt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_correctness_canonical records - */ -export type ListFctAttestationCorrectnessCanonicalResponse = { + block_number_gt?: number; /** - * The list of fct_attestation_correctness_canonical. + * The block number (filter: gte) */ - fct_attestation_correctness_canonical?: Array; + block_number_gte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: between_min) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_correctness_head records - */ -export type ListFctAttestationCorrectnessHeadResponse = { + block_number_between_min?: number; /** - * The list of fct_attestation_correctness_head. + * The block number (filter: between_max_value) */ - fct_attestation_correctness_head?: Array; + block_number_between_max_value?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_first_seen_by_validator records - */ -export type ListFctAttestationFirstSeenByValidatorResponse = { + block_number_in_values?: string; /** - * The list of fct_attestation_first_seen_by_validator. + * The block number (filter: not_in_values) (comma-separated list) */ - fct_attestation_first_seen_by_validator?: Array; + block_number_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The contract address (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_first_seen_chunked_50ms records - */ -export type ListFctAttestationFirstSeenChunked50MsResponse = { + address_eq?: string; /** - * The list of fct_attestation_first_seen_chunked_50ms. + * The contract address (filter: ne) */ - fct_attestation_first_seen_chunked_50ms?: Array; + address_ne?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The contract address (filter: contains) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_inclusion_delay_daily records - */ -export type ListFctAttestationInclusionDelayDailyResponse = { + address_contains?: string; /** - * The list of fct_attestation_inclusion_delay_daily. + * The contract address (filter: starts_with) */ - fct_attestation_inclusion_delay_daily?: Array; + address_starts_with?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The contract address (filter: ends_with) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_inclusion_delay_hourly records - */ -export type ListFctAttestationInclusionDelayHourlyResponse = { + address_ends_with?: string; /** - * The list of fct_attestation_inclusion_delay_hourly. + * The contract address (filter: like) */ - fct_attestation_inclusion_delay_hourly?: Array; + address_like?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The contract address (filter: not_like) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_liveness_by_entity_head records - */ -export type ListFctAttestationLivenessByEntityHeadResponse = { + address_not_like?: string; /** - * The list of fct_attestation_liveness_by_entity_head. + * The contract address (filter: in_values) (comma-separated list) */ - fct_attestation_liveness_by_entity_head?: Array; + address_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The contract address (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_observation_by_node records - */ -export type ListFctAttestationObservationByNodeResponse = { + address_not_in_values?: string; /** - * The list of fct_attestation_observation_by_node. + * Timestamp when the record was last updated (filter: eq) */ - fct_attestation_observation_by_node?: Array; + updated_date_time_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_participation_rate_daily records - */ -export type ListFctAttestationParticipationRateDailyResponse = { + updated_date_time_ne?: number; /** - * The list of fct_attestation_participation_rate_daily. + * Timestamp when the record was last updated (filter: lt) */ - fct_attestation_participation_rate_daily?: Array; + updated_date_time_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_participation_rate_hourly records - */ -export type ListFctAttestationParticipationRateHourlyResponse = { + updated_date_time_lte?: number; /** - * The list of fct_attestation_participation_rate_hourly. + * Timestamp when the record was last updated (filter: gt) */ - fct_attestation_participation_rate_hourly?: Array; + updated_date_time_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_vote_correctness_by_validator_daily records - */ -export type ListFctAttestationVoteCorrectnessByValidatorDailyResponse = { + updated_date_time_gte?: number; /** - * The list of fct_attestation_vote_correctness_by_validator_daily. + * Timestamp when the record was last updated (filter: between_min) */ - fct_attestation_vote_correctness_by_validator_daily?: Array; + updated_date_time_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_vote_correctness_by_validator_hourly records - */ -export type ListFctAttestationVoteCorrectnessByValidatorHourlyResponse = { + updated_date_time_between_max_value?: number; /** - * The list of fct_attestation_vote_correctness_by_validator_hourly. + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - fct_attestation_vote_correctness_by_validator_hourly?: Array; + updated_date_time_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_attestation_vote_correctness_by_validator records - */ -export type ListFctAttestationVoteCorrectnessByValidatorResponse = { + updated_date_time_not_in_values?: string; /** - * The list of fct_attestation_vote_correctness_by_validator. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: eq) */ - fct_attestation_vote_correctness_by_validator?: Array; + net_slots_delta_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_blob_count_daily records - */ -export type ListFctBlobCountDailyResponse = { + net_slots_delta_ne?: number; /** - * The list of fct_blob_count_daily. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lt) */ - fct_blob_count_daily?: Array; + net_slots_delta_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_blob_count_hourly records - */ -export type ListFctBlobCountHourlyResponse = { + net_slots_delta_lte?: number; /** - * The list of fct_blob_count_hourly. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gt) */ - fct_blob_count_hourly?: Array; + net_slots_delta_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_blob_count_head records - */ -export type ListFctBlockBlobCountHeadResponse = { + net_slots_delta_gte?: number; /** - * The list of fct_block_blob_count_head. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) */ - fct_block_blob_count_head?: Array; + net_slots_delta_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_blob_count records - */ -export type ListFctBlockBlobCountResponse = { + net_slots_delta_between_max_value?: number; /** - * The list of fct_block_blob_count. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) */ - fct_block_blob_count?: Array; + net_slots_delta_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_blob_first_seen_by_node records - */ -export type ListFctBlockBlobFirstSeenByNodeResponse = { + net_slots_delta_not_in_values?: string; /** - * The list of fct_block_blob_first_seen_by_node. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: eq) */ - fct_block_blob_first_seen_by_node?: Array; + net_bytes_delta_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_blob_head records - */ -export type ListFctBlockBlobHeadResponse = { + net_bytes_delta_ne?: number; /** - * The list of fct_block_blob_head. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lt) */ - fct_block_blob_head?: Array; + net_bytes_delta_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_data_column_sidecar_first_seen_by_node records - */ -export type ListFctBlockDataColumnSidecarFirstSeenByNodeResponse = { + net_bytes_delta_lte?: number; /** - * The list of fct_block_data_column_sidecar_first_seen_by_node. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gt) */ - fct_block_data_column_sidecar_first_seen_by_node?: Array; + net_bytes_delta_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_data_column_sidecar_first_seen records - */ -export type ListFctBlockDataColumnSidecarFirstSeenResponse = { + net_bytes_delta_gte?: number; /** - * The list of fct_block_data_column_sidecar_first_seen. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) */ - fct_block_data_column_sidecar_first_seen?: Array; + net_bytes_delta_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_first_seen_by_node records - */ -export type ListFctBlockFirstSeenByNodeResponse = { + net_bytes_delta_between_max_value?: number; /** - * The list of fct_block_first_seen_by_node. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) */ - fct_block_first_seen_by_node?: Array; + net_bytes_delta_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. - */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_head records - */ -export type ListFctBlockHeadResponse = { + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) + */ + net_bytes_delta_not_in_values?: string; /** - * The list of fct_block_head. + * Cumulative net slot adjustment up to this block (filter: eq) */ - fct_block_head?: Array; + cumulative_net_slots_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_mev_head records - */ -export type ListFctBlockMevHeadResponse = { + cumulative_net_slots_ne?: number; /** - * The list of fct_block_mev_head. + * Cumulative net slot adjustment up to this block (filter: lt) */ - fct_block_mev_head?: Array; + cumulative_net_slots_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_mev records - */ -export type ListFctBlockMevResponse = { + cumulative_net_slots_lte?: number; /** - * The list of fct_block_mev. + * Cumulative net slot adjustment up to this block (filter: gt) */ - fct_block_mev?: Array; + cumulative_net_slots_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_proposal_status_daily records - */ -export type ListFctBlockProposalStatusDailyResponse = { + cumulative_net_slots_gte?: number; /** - * The list of fct_block_proposal_status_daily. + * Cumulative net slot adjustment up to this block (filter: between_min) */ - fct_block_proposal_status_daily?: Array; + cumulative_net_slots_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_proposal_status_hourly records - */ -export type ListFctBlockProposalStatusHourlyResponse = { + cumulative_net_slots_between_max_value?: number; /** - * The list of fct_block_proposal_status_hourly. + * Cumulative net slot adjustment up to this block (filter: in_values) (comma-separated list) */ - fct_block_proposal_status_hourly?: Array; + cumulative_net_slots_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_proposer_by_validator records - */ -export type ListFctBlockProposerByValidatorResponse = { + cumulative_net_slots_not_in_values?: string; /** - * The list of fct_block_proposer_by_validator. + * Cumulative net bytes adjustment up to this block (filter: eq) */ - fct_block_proposer_by_validator?: Array; + cumulative_net_bytes_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_proposer_entity records - */ -export type ListFctBlockProposerEntityResponse = { + cumulative_net_bytes_ne?: number; /** - * The list of fct_block_proposer_entity. + * Cumulative net bytes adjustment up to this block (filter: lt) */ - fct_block_proposer_entity?: Array; + cumulative_net_bytes_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_proposer_head records - */ -export type ListFctBlockProposerHeadResponse = { + cumulative_net_bytes_lte?: number; /** - * The list of fct_block_proposer_head. + * Cumulative net bytes adjustment up to this block (filter: gt) */ - fct_block_proposer_head?: Array; + cumulative_net_bytes_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block_proposer records - */ -export type ListFctBlockProposerResponse = { + cumulative_net_bytes_gte?: number; /** - * The list of fct_block_proposer. + * Cumulative net bytes adjustment up to this block (filter: between_min) */ - fct_block_proposer?: Array; + cumulative_net_bytes_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_block records - */ -export type ListFctBlockResponse = { + cumulative_net_bytes_between_max_value?: number; /** - * The list of fct_block. + * Cumulative net bytes adjustment up to this block (filter: in_values) (comma-separated list) */ - fct_block?: Array; + cumulative_net_bytes_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_contract_storage_state_by_address_daily records - */ -export type ListFctContractStorageStateByAddressDailyResponse = { + cumulative_net_bytes_not_in_values?: string; /** - * The list of fct_contract_storage_state_by_address_daily. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: eq) */ - fct_contract_storage_state_by_address_daily?: Array; + active_slots_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_contract_storage_state_by_address_hourly records - */ -export type ListFctContractStorageStateByAddressHourlyResponse = { + active_slots_ne?: number; /** - * The list of fct_contract_storage_state_by_address_hourly. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: lt) */ - fct_contract_storage_state_by_address_hourly?: Array; + active_slots_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_contract_storage_state_by_block_daily records - */ -export type ListFctContractStorageStateByBlockDailyResponse = { + active_slots_lte?: number; /** - * The list of fct_contract_storage_state_by_block_daily. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: gt) */ - fct_contract_storage_state_by_block_daily?: Array; + active_slots_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_contract_storage_state_by_block_hourly records - */ -export type ListFctContractStorageStateByBlockHourlyResponse = { + active_slots_gte?: number; /** - * The list of fct_contract_storage_state_by_block_hourly. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: between_min) */ - fct_contract_storage_state_by_block_hourly?: Array; + active_slots_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_contract_storage_state_with_expiry_by_address_daily records - */ -export type ListFctContractStorageStateWithExpiryByAddressDailyResponse = { + active_slots_between_max_value?: number; /** - * The list of fct_contract_storage_state_with_expiry_by_address_daily. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: in_values) (comma-separated list) */ - fct_contract_storage_state_with_expiry_by_address_daily?: Array; + active_slots_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_contract_storage_state_with_expiry_by_address_hourly records - */ -export type ListFctContractStorageStateWithExpiryByAddressHourlyResponse = { + active_slots_not_in_values?: string; /** - * The list of fct_contract_storage_state_with_expiry_by_address_hourly. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: eq) */ - fct_contract_storage_state_with_expiry_by_address_hourly?: Array; + effective_bytes_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_contract_storage_state_with_expiry_by_block_daily records - */ -export type ListFctContractStorageStateWithExpiryByBlockDailyResponse = { + effective_bytes_ne?: number; /** - * The list of fct_contract_storage_state_with_expiry_by_block_daily. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: lt) */ - fct_contract_storage_state_with_expiry_by_block_daily?: Array; + effective_bytes_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_contract_storage_state_with_expiry_by_block_hourly records - */ -export type ListFctContractStorageStateWithExpiryByBlockHourlyResponse = { + effective_bytes_lte?: number; /** - * The list of fct_contract_storage_state_with_expiry_by_block_hourly. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: gt) */ - fct_contract_storage_state_with_expiry_by_block_hourly?: Array; + effective_bytes_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_data_column_availability_by_epoch records - */ -export type ListFctDataColumnAvailabilityByEpochResponse = { + effective_bytes_gte?: number; /** - * The list of fct_data_column_availability_by_epoch. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: between_min) */ - fct_data_column_availability_by_epoch?: Array; + effective_bytes_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_data_column_availability_by_slot_blob records - */ -export type ListFctDataColumnAvailabilityBySlotBlobResponse = { + effective_bytes_between_max_value?: number; /** - * The list of fct_data_column_availability_by_slot_blob. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: in_values) (comma-separated list) */ - fct_data_column_availability_by_slot_blob?: Array; + effective_bytes_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_data_column_availability_by_slot records - */ -export type ListFctDataColumnAvailabilityBySlotResponse = { + effective_bytes_not_in_values?: string; /** - * The list of fct_data_column_availability_by_slot. + * The maximum number of int_storage_slot_state_with_expiry to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - fct_data_column_availability_by_slot?: Array; + page_size?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * A page token, received from a previous `ListIntStorageSlotStateWithExpiry` call. Provide this to retrieve the subsequent page. */ - next_page_token?: string; -}; - -/** - * Response for listing fct_data_column_availability_daily records - */ -export type ListFctDataColumnAvailabilityDailyResponse = { + page_token?: string; /** - * The list of fct_data_column_availability_daily. + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - fct_data_column_availability_daily?: Array; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_state_with_expiry'; +}; + +export type IntStorageSlotStateWithExpiryServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotStateWithExpiryServiceListError = + IntStorageSlotStateWithExpiryServiceListErrors[keyof IntStorageSlotStateWithExpiryServiceListErrors]; + +export type IntStorageSlotStateWithExpiryServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotStateWithExpiryResponse; +}; + +export type IntStorageSlotStateWithExpiryServiceListResponse = + IntStorageSlotStateWithExpiryServiceListResponses[keyof IntStorageSlotStateWithExpiryServiceListResponses]; + +export type IntStorageSlotStateWithExpiryServiceGetData = { + body?: never; + path: { /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m */ - next_page_token?: string; + expiry_policy: string; + }; + query?: never; + url: '/api/v1/int_storage_slot_state_with_expiry/{expiry_policy}'; }; -/** - * Response for listing fct_data_column_availability_hourly records - */ -export type ListFctDataColumnAvailabilityHourlyResponse = { +export type IntStorageSlotStateWithExpiryServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotStateWithExpiryServiceGetError = + IntStorageSlotStateWithExpiryServiceGetErrors[keyof IntStorageSlotStateWithExpiryServiceGetErrors]; + +export type IntStorageSlotStateWithExpiryServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotStateWithExpiryResponse; +}; + +export type IntStorageSlotStateWithExpiryServiceGetResponse = + IntStorageSlotStateWithExpiryServiceGetResponses[keyof IntStorageSlotStateWithExpiryServiceGetResponses]; + +export type IntStorageSlotStateWithExpiryByAddressServiceListData = { + body?: never; + path?: never; + query?: { /** - * The list of fct_data_column_availability_hourly. + * The contract address (filter: eq) */ - fct_data_column_availability_hourly?: Array; + address_eq?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The contract address (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_engine_get_blobs_by_el_client_hourly records - */ -export type ListFctEngineGetBlobsByElClientHourlyResponse = { + address_ne?: string; /** - * The list of fct_engine_get_blobs_by_el_client_hourly. + * The contract address (filter: contains) */ - fct_engine_get_blobs_by_el_client_hourly?: Array; + address_contains?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The contract address (filter: starts_with) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_engine_get_blobs_by_el_client records - */ -export type ListFctEngineGetBlobsByElClientResponse = { + address_starts_with?: string; /** - * The list of fct_engine_get_blobs_by_el_client. + * The contract address (filter: ends_with) */ - fct_engine_get_blobs_by_el_client?: Array; + address_ends_with?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The contract address (filter: like) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_engine_get_blobs_by_slot records - */ -export type ListFctEngineGetBlobsBySlotResponse = { + address_like?: string; /** - * The list of fct_engine_get_blobs_by_slot. + * The contract address (filter: not_like) */ - fct_engine_get_blobs_by_slot?: Array; + address_not_like?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The contract address (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_engine_get_blobs_duration_chunked_50ms records - */ -export type ListFctEngineGetBlobsDurationChunked50MsResponse = { + address_in_values?: string; /** - * The list of fct_engine_get_blobs_duration_chunked_50ms. + * The contract address (filter: not_in_values) (comma-separated list) */ - fct_engine_get_blobs_duration_chunked_50ms?: Array; + address_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_engine_new_payload_by_el_client_hourly records - */ -export type ListFctEngineNewPayloadByElClientHourlyResponse = { + expiry_policy_eq?: string; /** - * The list of fct_engine_new_payload_by_el_client_hourly. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) */ - fct_engine_new_payload_by_el_client_hourly?: Array; + expiry_policy_ne?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_engine_new_payload_by_el_client records - */ -export type ListFctEngineNewPayloadByElClientResponse = { + expiry_policy_contains?: string; /** - * The list of fct_engine_new_payload_by_el_client. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) */ - fct_engine_new_payload_by_el_client?: Array; + expiry_policy_starts_with?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_engine_new_payload_by_slot records - */ -export type ListFctEngineNewPayloadBySlotResponse = { + expiry_policy_ends_with?: string; /** - * The list of fct_engine_new_payload_by_slot. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) */ - fct_engine_new_payload_by_slot?: Array; + expiry_policy_like?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_engine_new_payload_duration_chunked_50ms records - */ -export type ListFctEngineNewPayloadDurationChunked50MsResponse = { + expiry_policy_not_like?: string; /** - * The list of fct_engine_new_payload_duration_chunked_50ms. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) */ - fct_engine_new_payload_duration_chunked_50ms?: Array; + expiry_policy_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_engine_new_payload_winrate_daily records - */ -export type ListFctEngineNewPayloadWinrateDailyResponse = { + expiry_policy_not_in_values?: string; /** - * The list of fct_engine_new_payload_winrate_daily. + * The block number (filter: eq) */ - fct_engine_new_payload_winrate_daily?: Array; + block_number_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_engine_new_payload_winrate_hourly records - */ -export type ListFctEngineNewPayloadWinrateHourlyResponse = { + block_number_ne?: number; /** - * The list of fct_engine_new_payload_winrate_hourly. + * The block number (filter: lt) */ - fct_engine_new_payload_winrate_hourly?: Array; + block_number_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_gas_limit_daily records - */ -export type ListFctExecutionGasLimitDailyResponse = { + block_number_lte?: number; /** - * The list of fct_execution_gas_limit_daily. + * The block number (filter: gt) */ - fct_execution_gas_limit_daily?: Array; + block_number_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_gas_limit_hourly records - */ -export type ListFctExecutionGasLimitHourlyResponse = { + block_number_gte?: number; /** - * The list of fct_execution_gas_limit_hourly. + * The block number (filter: between_min) */ - fct_execution_gas_limit_hourly?: Array; + block_number_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_gas_limit_signalling_daily records - */ -export type ListFctExecutionGasLimitSignallingDailyResponse = { + block_number_between_max_value?: number; /** - * The list of fct_execution_gas_limit_signalling_daily. + * The block number (filter: in_values) (comma-separated list) */ - fct_execution_gas_limit_signalling_daily?: Array; + block_number_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_gas_limit_signalling_hourly records - */ -export type ListFctExecutionGasLimitSignallingHourlyResponse = { + block_number_not_in_values?: string; /** - * The list of fct_execution_gas_limit_signalling_hourly. + * Timestamp when the record was last updated (filter: eq) */ - fct_execution_gas_limit_signalling_hourly?: Array; + updated_date_time_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_gas_used_daily records - */ -export type ListFctExecutionGasUsedDailyResponse = { + updated_date_time_ne?: number; /** - * The list of fct_execution_gas_used_daily. + * Timestamp when the record was last updated (filter: lt) */ - fct_execution_gas_used_daily?: Array; + updated_date_time_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_gas_used_hourly records - */ -export type ListFctExecutionGasUsedHourlyResponse = { + updated_date_time_lte?: number; /** - * The list of fct_execution_gas_used_hourly. + * Timestamp when the record was last updated (filter: gt) */ - fct_execution_gas_used_hourly?: Array; + updated_date_time_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_receipt_size_daily records - */ -export type ListFctExecutionReceiptSizeDailyResponse = { + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; /** - * The list of fct_execution_receipt_size_daily. + * Timestamp when the record was last updated (filter: between_max_value) */ - fct_execution_receipt_size_daily?: Array; + updated_date_time_between_max_value?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_receipt_size_hourly records - */ -export type ListFctExecutionReceiptSizeHourlyResponse = { + updated_date_time_in_values?: string; /** - * The list of fct_execution_receipt_size_hourly. + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - fct_execution_receipt_size_hourly?: Array; + updated_date_time_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_state_size_daily records - */ -export type ListFctExecutionStateSizeDailyResponse = { + net_slots_delta_eq?: number; /** - * The list of fct_execution_state_size_daily. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: ne) */ - fct_execution_state_size_daily?: Array; + net_slots_delta_ne?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_state_size_hourly records - */ -export type ListFctExecutionStateSizeHourlyResponse = { + net_slots_delta_lt?: number; /** - * The list of fct_execution_state_size_hourly. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lte) */ - fct_execution_state_size_hourly?: Array; + net_slots_delta_lte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_tps_daily records - */ -export type ListFctExecutionTpsDailyResponse = { + net_slots_delta_gt?: number; /** - * The list of fct_execution_tps_daily. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gte) */ - fct_execution_tps_daily?: Array; + net_slots_delta_gte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_tps_hourly records - */ -export type ListFctExecutionTpsHourlyResponse = { + net_slots_delta_between_min?: number; /** - * The list of fct_execution_tps_hourly. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) */ - fct_execution_tps_hourly?: Array; + net_slots_delta_between_max_value?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_transactions_daily records - */ -export type ListFctExecutionTransactionsDailyResponse = { + net_slots_delta_in_values?: string; /** - * The list of fct_execution_transactions_daily. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) */ - fct_execution_transactions_daily?: Array; + net_slots_delta_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_execution_transactions_hourly records - */ -export type ListFctExecutionTransactionsHourlyResponse = { + net_bytes_delta_eq?: number; /** - * The list of fct_execution_transactions_hourly. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: ne) */ - fct_execution_transactions_hourly?: Array; + net_bytes_delta_ne?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_head_first_seen_by_node records - */ -export type ListFctHeadFirstSeenByNodeResponse = { + net_bytes_delta_lt?: number; /** - * The list of fct_head_first_seen_by_node. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lte) */ - fct_head_first_seen_by_node?: Array; + net_bytes_delta_lte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_head_vote_correctness_rate_daily records - */ -export type ListFctHeadVoteCorrectnessRateDailyResponse = { + net_bytes_delta_gt?: number; /** - * The list of fct_head_vote_correctness_rate_daily. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gte) */ - fct_head_vote_correctness_rate_daily?: Array; + net_bytes_delta_gte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_head_vote_correctness_rate_hourly records - */ -export type ListFctHeadVoteCorrectnessRateHourlyResponse = { + net_bytes_delta_between_min?: number; /** - * The list of fct_head_vote_correctness_rate_hourly. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) */ - fct_head_vote_correctness_rate_hourly?: Array; + net_bytes_delta_between_max_value?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_mev_bid_count_by_builder records - */ -export type ListFctMevBidCountByBuilderResponse = { + net_bytes_delta_in_values?: string; /** - * The list of fct_mev_bid_count_by_builder. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) */ - fct_mev_bid_count_by_builder?: Array; + net_bytes_delta_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_mev_bid_count_by_relay records - */ -export type ListFctMevBidCountByRelayResponse = { + cumulative_net_slots_eq?: number; /** - * The list of fct_mev_bid_count_by_relay. + * Cumulative net slot adjustment up to this block (filter: ne) */ - fct_mev_bid_count_by_relay?: Array; + cumulative_net_slots_ne?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: lt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_mev_bid_highest_value_by_builder_chunked_50ms records - */ -export type ListFctMevBidHighestValueByBuilderChunked50MsResponse = { + cumulative_net_slots_lt?: number; /** - * The list of fct_mev_bid_highest_value_by_builder_chunked_50ms. + * Cumulative net slot adjustment up to this block (filter: lte) */ - fct_mev_bid_highest_value_by_builder_chunked_50ms?: Array; + cumulative_net_slots_lte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: gt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_missed_slot_rate_daily records - */ -export type ListFctMissedSlotRateDailyResponse = { + cumulative_net_slots_gt?: number; /** - * The list of fct_missed_slot_rate_daily. + * Cumulative net slot adjustment up to this block (filter: gte) */ - fct_missed_slot_rate_daily?: Array; + cumulative_net_slots_gte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: between_min) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_missed_slot_rate_hourly records - */ -export type ListFctMissedSlotRateHourlyResponse = { + cumulative_net_slots_between_min?: number; /** - * The list of fct_missed_slot_rate_hourly. + * Cumulative net slot adjustment up to this block (filter: between_max_value) */ - fct_missed_slot_rate_hourly?: Array; + cumulative_net_slots_between_max_value?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_node_active_last_24h records - */ -export type ListFctNodeActiveLast24hResponse = { + cumulative_net_slots_in_values?: string; /** - * The list of fct_node_active_last_24h. + * Cumulative net slot adjustment up to this block (filter: not_in_values) (comma-separated list) */ - fct_node_active_last_24h?: Array; + cumulative_net_slots_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_node_cpu_utilization_by_process records - */ -export type ListFctNodeCpuUtilizationByProcessResponse = { + cumulative_net_bytes_eq?: number; /** - * The list of fct_node_cpu_utilization_by_process. + * Cumulative net bytes adjustment up to this block (filter: ne) */ - fct_node_cpu_utilization_by_process?: Array; + cumulative_net_bytes_ne?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: lt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_node_disk_io_by_process records - */ -export type ListFctNodeDiskIoByProcessResponse = { + cumulative_net_bytes_lt?: number; /** - * The list of fct_node_disk_io_by_process. + * Cumulative net bytes adjustment up to this block (filter: lte) */ - fct_node_disk_io_by_process?: Array; + cumulative_net_bytes_lte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: gt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_node_memory_usage_by_process records - */ -export type ListFctNodeMemoryUsageByProcessResponse = { + cumulative_net_bytes_gt?: number; /** - * The list of fct_node_memory_usage_by_process. + * Cumulative net bytes adjustment up to this block (filter: gte) */ - fct_node_memory_usage_by_process?: Array; + cumulative_net_bytes_gte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: between_min) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_node_network_io_by_process records - */ -export type ListFctNodeNetworkIoByProcessResponse = { + cumulative_net_bytes_between_min?: number; /** - * The list of fct_node_network_io_by_process. + * Cumulative net bytes adjustment up to this block (filter: between_max_value) */ - fct_node_network_io_by_process?: Array; + cumulative_net_bytes_between_max_value?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_opcode_gas_by_opcode_daily records - */ -export type ListFctOpcodeGasByOpcodeDailyResponse = { + cumulative_net_bytes_in_values?: string; /** - * The list of fct_opcode_gas_by_opcode_daily. + * Cumulative net bytes adjustment up to this block (filter: not_in_values) (comma-separated list) */ - fct_opcode_gas_by_opcode_daily?: Array; + cumulative_net_bytes_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_opcode_gas_by_opcode_hourly records - */ -export type ListFctOpcodeGasByOpcodeHourlyResponse = { + active_slots_eq?: number; /** - * The list of fct_opcode_gas_by_opcode_hourly. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: ne) */ - fct_opcode_gas_by_opcode_hourly?: Array; + active_slots_ne?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: lt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_opcode_ops_daily records - */ -export type ListFctOpcodeOpsDailyResponse = { + active_slots_lt?: number; /** - * The list of fct_opcode_ops_daily. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: lte) */ - fct_opcode_ops_daily?: Array; + active_slots_lte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: gt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_opcode_ops_hourly records - */ -export type ListFctOpcodeOpsHourlyResponse = { + active_slots_gt?: number; /** - * The list of fct_opcode_ops_hourly. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: gte) */ - fct_opcode_ops_hourly?: Array; + active_slots_gte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: between_min) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_prepared_block records - */ -export type ListFctPreparedBlockResponse = { + active_slots_between_min?: number; /** - * The list of fct_prepared_block. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: between_max_value) */ - fct_prepared_block?: Array; + active_slots_between_max_value?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_proposer_reward_daily records - */ -export type ListFctProposerRewardDailyResponse = { + active_slots_in_values?: string; /** - * The list of fct_proposer_reward_daily. + * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: not_in_values) (comma-separated list) */ - fct_proposer_reward_daily?: Array; + active_slots_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_proposer_reward_hourly records - */ -export type ListFctProposerRewardHourlyResponse = { + effective_bytes_eq?: number; /** - * The list of fct_proposer_reward_hourly. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: ne) */ - fct_proposer_reward_hourly?: Array; + effective_bytes_ne?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: lt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_reorg_daily records - */ -export type ListFctReorgDailyResponse = { + effective_bytes_lt?: number; /** - * The list of fct_reorg_daily. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: lte) */ - fct_reorg_daily?: Array; + effective_bytes_lte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: gt) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_reorg_hourly records - */ -export type ListFctReorgHourlyResponse = { + effective_bytes_gt?: number; /** - * The list of fct_reorg_hourly. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: gte) */ - fct_reorg_hourly?: Array; + effective_bytes_gte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: between_min) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_rocketpool_validator records - */ -export type ListFctRocketpoolValidatorResponse = { + effective_bytes_between_min?: number; /** - * The list of fct_rocketpool_validator. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: between_max_value) */ - fct_rocketpool_validator?: Array; + effective_bytes_between_max_value?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_storage_slot_state_by_address_daily records - */ -export type ListFctStorageSlotStateByAddressDailyResponse = { + effective_bytes_in_values?: string; /** - * The list of fct_storage_slot_state_by_address_daily. + * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: not_in_values) (comma-separated list) */ - fct_storage_slot_state_by_address_daily?: Array; + effective_bytes_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The maximum number of int_storage_slot_state_with_expiry_by_address to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - next_page_token?: string; -}; - -/** - * Response for listing fct_storage_slot_state_by_address_hourly records - */ -export type ListFctStorageSlotStateByAddressHourlyResponse = { + page_size?: number; /** - * The list of fct_storage_slot_state_by_address_hourly. + * A page token, received from a previous `ListIntStorageSlotStateWithExpiryByAddress` call. Provide this to retrieve the subsequent page. */ - fct_storage_slot_state_by_address_hourly?: Array; + page_token?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - next_page_token?: string; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_state_with_expiry_by_address'; }; -/** - * Response for listing fct_storage_slot_state_by_block_daily records - */ -export type ListFctStorageSlotStateByBlockDailyResponse = { - /** - * The list of fct_storage_slot_state_by_block_daily. - */ - fct_storage_slot_state_by_block_daily?: Array; +export type IntStorageSlotStateWithExpiryByAddressServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotStateWithExpiryByAddressServiceListError = + IntStorageSlotStateWithExpiryByAddressServiceListErrors[keyof IntStorageSlotStateWithExpiryByAddressServiceListErrors]; + +export type IntStorageSlotStateWithExpiryByAddressServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotStateWithExpiryByAddressResponse; +}; + +export type IntStorageSlotStateWithExpiryByAddressServiceListResponse = + IntStorageSlotStateWithExpiryByAddressServiceListResponses[keyof IntStorageSlotStateWithExpiryByAddressServiceListResponses]; + +export type IntStorageSlotStateWithExpiryByAddressServiceGetData = { + body?: never; + path: { /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The contract address */ - next_page_token?: string; + address: string; + }; + query?: never; + url: '/api/v1/int_storage_slot_state_with_expiry_by_address/{address}'; }; -/** - * Response for listing fct_storage_slot_state_by_block_hourly records - */ -export type ListFctStorageSlotStateByBlockHourlyResponse = { +export type IntStorageSlotStateWithExpiryByAddressServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotStateWithExpiryByAddressServiceGetError = + IntStorageSlotStateWithExpiryByAddressServiceGetErrors[keyof IntStorageSlotStateWithExpiryByAddressServiceGetErrors]; + +export type IntStorageSlotStateWithExpiryByAddressServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotStateWithExpiryByAddressResponse; +}; + +export type IntStorageSlotStateWithExpiryByAddressServiceGetResponse = + IntStorageSlotStateWithExpiryByAddressServiceGetResponses[keyof IntStorageSlotStateWithExpiryByAddressServiceGetResponses]; + +export type IntStorageSlotStateWithExpiryByBlockServiceListData = { + body?: never; + path?: never; + query?: { /** - * The list of fct_storage_slot_state_by_block_hourly. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) */ - fct_storage_slot_state_by_block_hourly?: Array; + expiry_policy_eq?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_storage_slot_state_with_expiry_by_address_daily records - */ -export type ListFctStorageSlotStateWithExpiryByAddressDailyResponse = { + expiry_policy_ne?: string; /** - * The list of fct_storage_slot_state_with_expiry_by_address_daily. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) */ - fct_storage_slot_state_with_expiry_by_address_daily?: Array; + expiry_policy_contains?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_storage_slot_state_with_expiry_by_address_hourly records - */ -export type ListFctStorageSlotStateWithExpiryByAddressHourlyResponse = { + expiry_policy_starts_with?: string; /** - * The list of fct_storage_slot_state_with_expiry_by_address_hourly. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) */ - fct_storage_slot_state_with_expiry_by_address_hourly?: Array; + expiry_policy_ends_with?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_storage_slot_state_with_expiry_by_block_daily records - */ -export type ListFctStorageSlotStateWithExpiryByBlockDailyResponse = { + expiry_policy_like?: string; /** - * The list of fct_storage_slot_state_with_expiry_by_block_daily. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) */ - fct_storage_slot_state_with_expiry_by_block_daily?: Array; + expiry_policy_not_like?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_storage_slot_state_with_expiry_by_block_hourly records - */ -export type ListFctStorageSlotStateWithExpiryByBlockHourlyResponse = { + expiry_policy_in_values?: string; /** - * The list of fct_storage_slot_state_with_expiry_by_block_hourly. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) */ - fct_storage_slot_state_with_expiry_by_block_hourly?: Array; + expiry_policy_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_storage_slot_top_100_by_bytes records - */ -export type ListFctStorageSlotTop100ByBytesResponse = { + block_number_eq?: number; + /** + * The block number (filter: ne) + */ + block_number_ne?: number; + /** + * The block number (filter: lt) + */ + block_number_lt?: number; + /** + * The block number (filter: lte) + */ + block_number_lte?: number; /** - * The list of fct_storage_slot_top_100_by_bytes. + * The block number (filter: gt) */ - fct_storage_slot_top_100_by_bytes?: Array; + block_number_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_storage_slot_top_100_by_slots records - */ -export type ListFctStorageSlotTop100BySlotsResponse = { + block_number_gte?: number; /** - * The list of fct_storage_slot_top_100_by_slots. + * The block number (filter: between_min) */ - fct_storage_slot_top_100_by_slots?: Array; + block_number_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_sync_committee_participation_by_validator_daily records - */ -export type ListFctSyncCommitteeParticipationByValidatorDailyResponse = { + block_number_between_max_value?: number; /** - * The list of fct_sync_committee_participation_by_validator_daily. + * The block number (filter: in_values) (comma-separated list) */ - fct_sync_committee_participation_by_validator_daily?: Array; + block_number_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_sync_committee_participation_by_validator_hourly records - */ -export type ListFctSyncCommitteeParticipationByValidatorHourlyResponse = { + block_number_not_in_values?: string; /** - * The list of fct_sync_committee_participation_by_validator_hourly. + * Timestamp when the record was last updated (filter: eq) */ - fct_sync_committee_participation_by_validator_hourly?: Array; + updated_date_time_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_sync_committee_participation_by_validator records - */ -export type ListFctSyncCommitteeParticipationByValidatorResponse = { + updated_date_time_ne?: number; /** - * The list of fct_sync_committee_participation_by_validator. + * Timestamp when the record was last updated (filter: lt) */ - fct_sync_committee_participation_by_validator?: Array; + updated_date_time_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_token_contract_storage_state_by_block_daily records - */ -export type ListFctTokenContractStorageStateByBlockDailyResponse = { + updated_date_time_lte?: number; /** - * The list of fct_token_contract_storage_state_by_block_daily. + * Timestamp when the record was last updated (filter: gt) */ - fct_token_contract_storage_state_by_block_daily?: Array; + updated_date_time_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_validator_balance_daily records - */ -export type ListFctValidatorBalanceDailyResponse = { + updated_date_time_gte?: number; /** - * The list of fct_validator_balance_daily. + * Timestamp when the record was last updated (filter: between_min) */ - fct_validator_balance_daily?: Array; + updated_date_time_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_validator_balance_hourly records - */ -export type ListFctValidatorBalanceHourlyResponse = { + updated_date_time_between_max_value?: number; /** - * The list of fct_validator_balance_hourly. + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - fct_validator_balance_hourly?: Array; + updated_date_time_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_validator_balance records - */ -export type ListFctValidatorBalanceResponse = { + updated_date_time_not_in_values?: string; /** - * The list of fct_validator_balance. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: eq) */ - fct_validator_balance?: Array; + net_slots_delta_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing fct_validator_count_by_entity_by_status_daily records - */ -export type ListFctValidatorCountByEntityByStatusDailyResponse = { + net_slots_delta_ne?: number; /** - * The list of fct_validator_count_by_entity_by_status_daily. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lt) */ - fct_validator_count_by_entity_by_status_daily?: Array; + net_slots_delta_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_attestation_attested_canonical records - */ -export type ListIntAttestationAttestedCanonicalResponse = { + net_slots_delta_lte?: number; /** - * The list of int_attestation_attested_canonical. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gt) */ - int_attestation_attested_canonical?: Array; + net_slots_delta_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_attestation_attested_head records - */ -export type ListIntAttestationAttestedHeadResponse = { + net_slots_delta_gte?: number; /** - * The list of int_attestation_attested_head. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) */ - int_attestation_attested_head?: Array; + net_slots_delta_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing int_attestation_first_seen_aggregate records - */ -export type ListIntAttestationFirstSeenAggregateResponse = { + net_slots_delta_between_max_value?: number; /** - * The list of int_attestation_first_seen_aggregate. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) */ - int_attestation_first_seen_aggregate?: Array; + net_slots_delta_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_attestation_first_seen records - */ -export type ListIntAttestationFirstSeenResponse = { + net_slots_delta_not_in_values?: string; /** - * The list of int_attestation_first_seen. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: eq) */ - int_attestation_first_seen?: Array; + net_bytes_delta_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing int_beacon_committee_head records - */ -export type ListIntBeaconCommitteeHeadResponse = { + net_bytes_delta_ne?: number; /** - * The list of int_beacon_committee_head. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lt) */ - int_beacon_committee_head?: Array; + net_bytes_delta_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_block_blob_count_canonical records - */ -export type ListIntBlockBlobCountCanonicalResponse = { + net_bytes_delta_lte?: number; /** - * The list of int_block_blob_count_canonical. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gt) */ - int_block_blob_count_canonical?: Array; + net_bytes_delta_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_block_canonical records - */ -export type ListIntBlockCanonicalResponse = { + net_bytes_delta_gte?: number; /** - * The list of int_block_canonical. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) */ - int_block_canonical?: Array; + net_bytes_delta_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing int_block_mev_canonical records - */ -export type ListIntBlockMevCanonicalResponse = { + net_bytes_delta_between_max_value?: number; /** - * The list of int_block_mev_canonical. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) */ - int_block_mev_canonical?: Array; + net_bytes_delta_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_block_opcode_gas records - */ -export type ListIntBlockOpcodeGasResponse = { + net_bytes_delta_not_in_values?: string; /** - * The list of int_block_opcode_gas. + * Cumulative net slot adjustment up to this block (filter: eq) */ - int_block_opcode_gas?: Array; + cumulative_net_slots_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing int_block_proposer_canonical records - */ -export type ListIntBlockProposerCanonicalResponse = { + cumulative_net_slots_ne?: number; /** - * The list of int_block_proposer_canonical. + * Cumulative net slot adjustment up to this block (filter: lt) */ - int_block_proposer_canonical?: Array; + cumulative_net_slots_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_block_receipt_size records - */ -export type ListIntBlockReceiptSizeResponse = { + cumulative_net_slots_lte?: number; /** - * The list of int_block_receipt_size. + * Cumulative net slot adjustment up to this block (filter: gt) */ - int_block_receipt_size?: Array; + cumulative_net_slots_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_block_resource_gas records - */ -export type ListIntBlockResourceGasResponse = { + cumulative_net_slots_gte?: number; /** - * The list of int_block_resource_gas. + * Cumulative net slot adjustment up to this block (filter: between_min) */ - int_block_resource_gas?: Array; + cumulative_net_slots_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_creation records - */ -export type ListIntContractCreationResponse = { + cumulative_net_slots_between_max_value?: number; /** - * The list of int_contract_creation. + * Cumulative net slot adjustment up to this block (filter: in_values) (comma-separated list) */ - int_contract_creation?: Array; + cumulative_net_slots_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net slot adjustment up to this block (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_selfdestruct records - */ -export type ListIntContractSelfdestructResponse = { + cumulative_net_slots_not_in_values?: string; /** - * The list of int_contract_selfdestruct. + * Cumulative net bytes adjustment up to this block (filter: eq) */ - int_contract_selfdestruct?: Array; + cumulative_net_bytes_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_expiry_1m records - */ -export type ListIntContractStorageExpiry1mResponse = { + cumulative_net_bytes_ne?: number; /** - * The list of int_contract_storage_expiry_1m. + * Cumulative net bytes adjustment up to this block (filter: lt) */ - int_contract_storage_expiry_1m?: Array; + cumulative_net_bytes_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_expiry_6m records - */ -export type ListIntContractStorageExpiry6mResponse = { + cumulative_net_bytes_lte?: number; /** - * The list of int_contract_storage_expiry_6m. + * Cumulative net bytes adjustment up to this block (filter: gt) */ - int_contract_storage_expiry_6m?: Array; + cumulative_net_bytes_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_expiry_12m records - */ -export type ListIntContractStorageExpiry12mResponse = { + cumulative_net_bytes_gte?: number; /** - * The list of int_contract_storage_expiry_12m. + * Cumulative net bytes adjustment up to this block (filter: between_min) */ - int_contract_storage_expiry_12m?: Array; + cumulative_net_bytes_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_expiry_18m records - */ -export type ListIntContractStorageExpiry18mResponse = { + cumulative_net_bytes_between_max_value?: number; /** - * The list of int_contract_storage_expiry_18m. + * Cumulative net bytes adjustment up to this block (filter: in_values) (comma-separated list) */ - int_contract_storage_expiry_18m?: Array; + cumulative_net_bytes_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative net bytes adjustment up to this block (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_expiry_24m records - */ -export type ListIntContractStorageExpiry24mResponse = { + cumulative_net_bytes_not_in_values?: string; /** - * The list of int_contract_storage_expiry_24m. + * Cumulative count of active storage slots at this block (with expiry applied) (filter: eq) */ - int_contract_storage_expiry_24m?: Array; + active_slots_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots at this block (with expiry applied) (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_next_touch records - */ -export type ListIntContractStorageNextTouchResponse = { + active_slots_ne?: number; /** - * The list of int_contract_storage_next_touch. + * Cumulative count of active storage slots at this block (with expiry applied) (filter: lt) */ - int_contract_storage_next_touch?: Array; + active_slots_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots at this block (with expiry applied) (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_reactivation_1m records - */ -export type ListIntContractStorageReactivation1mResponse = { + active_slots_lte?: number; /** - * The list of int_contract_storage_reactivation_1m. + * Cumulative count of active storage slots at this block (with expiry applied) (filter: gt) */ - int_contract_storage_reactivation_1m?: Array; + active_slots_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots at this block (with expiry applied) (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_reactivation_6m records - */ -export type ListIntContractStorageReactivation6mResponse = { + active_slots_gte?: number; /** - * The list of int_contract_storage_reactivation_6m. + * Cumulative count of active storage slots at this block (with expiry applied) (filter: between_min) */ - int_contract_storage_reactivation_6m?: Array; + active_slots_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots at this block (with expiry applied) (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_reactivation_12m records - */ -export type ListIntContractStorageReactivation12mResponse = { + active_slots_between_max_value?: number; /** - * The list of int_contract_storage_reactivation_12m. + * Cumulative count of active storage slots at this block (with expiry applied) (filter: in_values) (comma-separated list) */ - int_contract_storage_reactivation_12m?: Array; + active_slots_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative count of active storage slots at this block (with expiry applied) (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_reactivation_18m records - */ -export type ListIntContractStorageReactivation18mResponse = { + active_slots_not_in_values?: string; /** - * The list of int_contract_storage_reactivation_18m. + * Cumulative sum of effective bytes at this block (with expiry applied) (filter: eq) */ - int_contract_storage_reactivation_18m?: Array; + effective_bytes_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes at this block (with expiry applied) (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_reactivation_24m records - */ -export type ListIntContractStorageReactivation24mResponse = { + effective_bytes_ne?: number; /** - * The list of int_contract_storage_reactivation_24m. + * Cumulative sum of effective bytes at this block (with expiry applied) (filter: lt) */ - int_contract_storage_reactivation_24m?: Array; + effective_bytes_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes at this block (with expiry applied) (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_state_by_address records - */ -export type ListIntContractStorageStateByAddressResponse = { + effective_bytes_lte?: number; /** - * The list of int_contract_storage_state_by_address. + * Cumulative sum of effective bytes at this block (with expiry applied) (filter: gt) */ - int_contract_storage_state_by_address?: Array; + effective_bytes_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes at this block (with expiry applied) (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_state_by_block records - */ -export type ListIntContractStorageStateByBlockResponse = { + effective_bytes_gte?: number; /** - * The list of int_contract_storage_state_by_block. + * Cumulative sum of effective bytes at this block (with expiry applied) (filter: between_min) */ - int_contract_storage_state_by_block?: Array; + effective_bytes_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes at this block (with expiry applied) (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_state records - */ -export type ListIntContractStorageStateResponse = { + effective_bytes_between_max_value?: number; /** - * The list of int_contract_storage_state. + * Cumulative sum of effective bytes at this block (with expiry applied) (filter: in_values) (comma-separated list) */ - int_contract_storage_state?: Array; + effective_bytes_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative sum of effective bytes at this block (with expiry applied) (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_state_with_expiry_by_address records - */ -export type ListIntContractStorageStateWithExpiryByAddressResponse = { + effective_bytes_not_in_values?: string; /** - * The list of int_contract_storage_state_with_expiry_by_address. + * The maximum number of int_storage_slot_state_with_expiry_by_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - int_contract_storage_state_with_expiry_by_address?: Array; + page_size?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * A page token, received from a previous `ListIntStorageSlotStateWithExpiryByBlock` call. Provide this to retrieve the subsequent page. */ - next_page_token?: string; -}; - -/** - * Response for listing int_contract_storage_state_with_expiry_by_block records - */ -export type ListIntContractStorageStateWithExpiryByBlockResponse = { + page_token?: string; /** - * The list of int_contract_storage_state_with_expiry_by_block. + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - int_contract_storage_state_with_expiry_by_block?: Array; + order_by?: string; + }; + url: '/api/v1/int_storage_slot_state_with_expiry_by_block'; +}; + +export type IntStorageSlotStateWithExpiryByBlockServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotStateWithExpiryByBlockServiceListError = + IntStorageSlotStateWithExpiryByBlockServiceListErrors[keyof IntStorageSlotStateWithExpiryByBlockServiceListErrors]; + +export type IntStorageSlotStateWithExpiryByBlockServiceListResponses = { + /** + * OK + */ + 200: ListIntStorageSlotStateWithExpiryByBlockResponse; +}; + +export type IntStorageSlotStateWithExpiryByBlockServiceListResponse = + IntStorageSlotStateWithExpiryByBlockServiceListResponses[keyof IntStorageSlotStateWithExpiryByBlockServiceListResponses]; + +export type IntStorageSlotStateWithExpiryByBlockServiceGetData = { + body?: never; + path: { /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m */ - next_page_token?: string; + expiry_policy: string; + }; + query?: never; + url: '/api/v1/int_storage_slot_state_with_expiry_by_block/{expiry_policy}'; }; -/** - * Response for listing int_contract_storage_state_with_expiry records - */ -export type ListIntContractStorageStateWithExpiryResponse = { +export type IntStorageSlotStateWithExpiryByBlockServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntStorageSlotStateWithExpiryByBlockServiceGetError = + IntStorageSlotStateWithExpiryByBlockServiceGetErrors[keyof IntStorageSlotStateWithExpiryByBlockServiceGetErrors]; + +export type IntStorageSlotStateWithExpiryByBlockServiceGetResponses = { + /** + * OK + */ + 200: GetIntStorageSlotStateWithExpiryByBlockResponse; +}; + +export type IntStorageSlotStateWithExpiryByBlockServiceGetResponse = + IntStorageSlotStateWithExpiryByBlockServiceGetResponses[keyof IntStorageSlotStateWithExpiryByBlockServiceGetResponses]; + +export type IntTokenContractStorageStateByBlockServiceListData = { + body?: never; + path?: never; + query?: { /** - * The list of int_contract_storage_state_with_expiry. + * The block number (filter: eq) */ - int_contract_storage_state_with_expiry?: Array; + block_number_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing int_custody_probe_order_by_slot records - */ -export type ListIntCustodyProbeOrderBySlotResponse = { + block_number_ne?: number; /** - * The list of int_custody_probe_order_by_slot. + * The block number (filter: lt) */ - int_custody_probe_order_by_slot?: Array; + block_number_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_custody_probe records - */ -export type ListIntCustodyProbeResponse = { + block_number_lte?: number; /** - * The list of int_custody_probe. + * The block number (filter: gt) */ - int_custody_probe?: Array; + block_number_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_engine_get_blobs records - */ -export type ListIntEngineGetBlobsResponse = { + block_number_gte?: number; /** - * The list of int_engine_get_blobs. + * The block number (filter: between_min) */ - int_engine_get_blobs?: Array; + block_number_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing int_engine_new_payload_fastest_execution_by_node_class records - */ -export type ListIntEngineNewPayloadFastestExecutionByNodeClassResponse = { + block_number_between_max_value?: number; /** - * The list of int_engine_new_payload_fastest_execution_by_node_class. + * The block number (filter: in_values) (comma-separated list) */ - int_engine_new_payload_fastest_execution_by_node_class?: Array; + block_number_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_engine_new_payload records - */ -export type ListIntEngineNewPayloadResponse = { + block_number_not_in_values?: string; /** - * The list of int_engine_new_payload. + * Token standard: erc20 or erc721 (filter: eq) */ - int_engine_new_payload?: Array; + token_standard_eq?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Token standard: erc20 or erc721 (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing int_execution_block_by_date records - */ -export type ListIntExecutionBlockByDateResponse = { + token_standard_ne?: string; /** - * The list of int_execution_block_by_date. + * Token standard: erc20 or erc721 (filter: contains) */ - int_execution_block_by_date?: Array; + token_standard_contains?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Token standard: erc20 or erc721 (filter: starts_with) */ - next_page_token?: string; -}; - -/** - * Response for listing int_execution_state_size_by_block records - */ -export type ListIntExecutionStateSizeByBlockResponse = { + token_standard_starts_with?: string; /** - * The list of int_execution_state_size_by_block. + * Token standard: erc20 or erc721 (filter: ends_with) */ - int_execution_state_size_by_block?: Array; + token_standard_ends_with?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Token standard: erc20 or erc721 (filter: like) */ - next_page_token?: string; -}; - -/** - * Response for listing int_rocketpool_megapool records - */ -export type ListIntRocketpoolMegapoolResponse = { + token_standard_like?: string; /** - * The list of int_rocketpool_megapool. + * Token standard: erc20 or erc721 (filter: not_like) */ - int_rocketpool_megapool?: Array; + token_standard_not_like?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Token standard: erc20 or erc721 (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_rocketpool_minipool records - */ -export type ListIntRocketpoolMinipoolResponse = { + token_standard_in_values?: string; /** - * The list of int_rocketpool_minipool. + * Token standard: erc20 or erc721 (filter: not_in_values) (comma-separated list) */ - int_rocketpool_minipool?: Array; + token_standard_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing int_rocketpool_node_event records - */ -export type ListIntRocketpoolNodeEventResponse = { + updated_date_time_eq?: number; /** - * The list of int_rocketpool_node_event. + * Timestamp when the record was last updated (filter: ne) */ - int_rocketpool_node_event?: Array; + updated_date_time_ne?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: lt) */ - next_page_token?: string; -}; - -/** - * Response for listing int_rocketpool_node_timezone records - */ -export type ListIntRocketpoolNodeTimezoneResponse = { + updated_date_time_lt?: number; /** - * The list of int_rocketpool_node_timezone. + * Timestamp when the record was last updated (filter: lte) */ - int_rocketpool_node_timezone?: Array; + updated_date_time_lte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: gt) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_selfdestruct_diffs records - */ -export type ListIntStorageSelfdestructDiffsResponse = { + updated_date_time_gt?: number; /** - * The list of int_storage_selfdestruct_diffs. + * Timestamp when the record was last updated (filter: gte) */ - int_storage_selfdestruct_diffs?: Array; + updated_date_time_gte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: between_min) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_diff_by_address_slot records - */ -export type ListIntStorageSlotDiffByAddressSlotResponse = { + updated_date_time_between_min?: number; /** - * The list of int_storage_slot_diff_by_address_slot. + * Timestamp when the record was last updated (filter: between_max_value) */ - int_storage_slot_diff_by_address_slot?: Array; + updated_date_time_between_max_value?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_diff records - */ -export type ListIntStorageSlotDiffResponse = { + updated_date_time_in_values?: string; /** - * The list of int_storage_slot_diff. + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - int_storage_slot_diff?: Array; + updated_date_time_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Change in active slots owned by contracts of this standard at this block (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_expiry_1m records - */ -export type ListIntStorageSlotExpiry1mResponse = { + slots_delta_eq?: number; /** - * The list of int_storage_slot_expiry_1m. + * Change in active slots owned by contracts of this standard at this block (filter: ne) */ - int_storage_slot_expiry_1m?: Array; + slots_delta_ne?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Change in active slots owned by contracts of this standard at this block (filter: lt) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_expiry_6m records - */ -export type ListIntStorageSlotExpiry6mResponse = { + slots_delta_lt?: number; /** - * The list of int_storage_slot_expiry_6m. + * Change in active slots owned by contracts of this standard at this block (filter: lte) */ - int_storage_slot_expiry_6m?: Array; + slots_delta_lte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Change in active slots owned by contracts of this standard at this block (filter: gt) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_expiry_12m records - */ -export type ListIntStorageSlotExpiry12mResponse = { + slots_delta_gt?: number; /** - * The list of int_storage_slot_expiry_12m. + * Change in active slots owned by contracts of this standard at this block (filter: gte) */ - int_storage_slot_expiry_12m?: Array; + slots_delta_gte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Change in active slots owned by contracts of this standard at this block (filter: between_min) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_expiry_18m records - */ -export type ListIntStorageSlotExpiry18mResponse = { + slots_delta_between_min?: number; /** - * The list of int_storage_slot_expiry_18m. + * Change in active slots owned by contracts of this standard at this block (filter: between_max_value) */ - int_storage_slot_expiry_18m?: Array; + slots_delta_between_max_value?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Change in active slots owned by contracts of this standard at this block (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_expiry_24m records - */ -export type ListIntStorageSlotExpiry24mResponse = { + slots_delta_in_values?: string; /** - * The list of int_storage_slot_expiry_24m. + * Change in active slots owned by contracts of this standard at this block (filter: not_in_values) (comma-separated list) */ - int_storage_slot_expiry_24m?: Array; + slots_delta_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative active storage slots owned by contracts of this standard at this block (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_lifecycle_boundary records - */ -export type ListIntStorageSlotLifecycleBoundaryResponse = { + active_slots_eq?: number; /** - * The list of int_storage_slot_lifecycle_boundary. + * Cumulative active storage slots owned by contracts of this standard at this block (filter: ne) */ - int_storage_slot_lifecycle_boundary?: Array; + active_slots_ne?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative active storage slots owned by contracts of this standard at this block (filter: lt) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_lifecycle records - */ -export type ListIntStorageSlotLifecycleResponse = { + active_slots_lt?: number; /** - * The list of int_storage_slot_lifecycle. + * Cumulative active storage slots owned by contracts of this standard at this block (filter: lte) */ - int_storage_slot_lifecycle?: Array; + active_slots_lte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative active storage slots owned by contracts of this standard at this block (filter: gt) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_next_touch records - */ -export type ListIntStorageSlotNextTouchResponse = { + active_slots_gt?: number; /** - * The list of int_storage_slot_next_touch. + * Cumulative active storage slots owned by contracts of this standard at this block (filter: gte) */ - int_storage_slot_next_touch?: Array; + active_slots_gte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative active storage slots owned by contracts of this standard at this block (filter: between_min) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_reactivation_1m records - */ -export type ListIntStorageSlotReactivation1mResponse = { + active_slots_between_min?: number; /** - * The list of int_storage_slot_reactivation_1m. + * Cumulative active storage slots owned by contracts of this standard at this block (filter: between_max_value) */ - int_storage_slot_reactivation_1m?: Array; + active_slots_between_max_value?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Cumulative active storage slots owned by contracts of this standard at this block (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_reactivation_6m records - */ -export type ListIntStorageSlotReactivation6mResponse = { + active_slots_in_values?: string; /** - * The list of int_storage_slot_reactivation_6m. + * Cumulative active storage slots owned by contracts of this standard at this block (filter: not_in_values) (comma-separated list) */ - int_storage_slot_reactivation_6m?: Array; + active_slots_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The maximum number of int_token_contract_storage_state_by_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_reactivation_12m records - */ -export type ListIntStorageSlotReactivation12mResponse = { + page_size?: number; /** - * The list of int_storage_slot_reactivation_12m. + * A page token, received from a previous `ListIntTokenContractStorageStateByBlock` call. Provide this to retrieve the subsequent page. */ - int_storage_slot_reactivation_12m?: Array; + page_token?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - next_page_token?: string; + order_by?: string; + }; + url: '/api/v1/int_token_contract_storage_state_by_block'; }; -/** - * Response for listing int_storage_slot_reactivation_18m records - */ -export type ListIntStorageSlotReactivation18mResponse = { - /** - * The list of int_storage_slot_reactivation_18m. - */ - int_storage_slot_reactivation_18m?: Array; +export type IntTokenContractStorageStateByBlockServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntTokenContractStorageStateByBlockServiceListError = + IntTokenContractStorageStateByBlockServiceListErrors[keyof IntTokenContractStorageStateByBlockServiceListErrors]; + +export type IntTokenContractStorageStateByBlockServiceListResponses = { + /** + * OK + */ + 200: ListIntTokenContractStorageStateByBlockResponse; +}; + +export type IntTokenContractStorageStateByBlockServiceListResponse = + IntTokenContractStorageStateByBlockServiceListResponses[keyof IntTokenContractStorageStateByBlockServiceListResponses]; + +export type IntTokenContractStorageStateByBlockServiceGetData = { + body?: never; + path: { /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number */ - next_page_token?: string; + block_number: number; + }; + query?: never; + url: '/api/v1/int_token_contract_storage_state_by_block/{block_number}'; }; -/** - * Response for listing int_storage_slot_reactivation_24m records - */ -export type ListIntStorageSlotReactivation24mResponse = { +export type IntTokenContractStorageStateByBlockServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type IntTokenContractStorageStateByBlockServiceGetError = + IntTokenContractStorageStateByBlockServiceGetErrors[keyof IntTokenContractStorageStateByBlockServiceGetErrors]; + +export type IntTokenContractStorageStateByBlockServiceGetResponses = { + /** + * OK + */ + 200: GetIntTokenContractStorageStateByBlockResponse; +}; + +export type IntTokenContractStorageStateByBlockServiceGetResponse = + IntTokenContractStorageStateByBlockServiceGetResponses[keyof IntTokenContractStorageStateByBlockServiceGetResponses]; + +export type IntTransactionCallFrameServiceListData = { + body?: never; + path?: never; + query?: { /** - * The list of int_storage_slot_reactivation_24m. + * The block number containing this transaction (filter: eq) */ - int_storage_slot_reactivation_24m?: Array; + block_number_eq?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number containing this transaction (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_read records - */ -export type ListIntStorageSlotReadResponse = { + block_number_ne?: number; /** - * The list of int_storage_slot_read. + * The block number containing this transaction (filter: lt) */ - int_storage_slot_read?: Array; + block_number_lt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number containing this transaction (filter: lte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_state_by_address records - */ -export type ListIntStorageSlotStateByAddressResponse = { + block_number_lte?: number; /** - * The list of int_storage_slot_state_by_address. + * The block number containing this transaction (filter: gt) */ - int_storage_slot_state_by_address?: Array; + block_number_gt?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number containing this transaction (filter: gte) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_state_by_block records - */ -export type ListIntStorageSlotStateByBlockResponse = { + block_number_gte?: number; /** - * The list of int_storage_slot_state_by_block. + * The block number containing this transaction (filter: between_min) */ - int_storage_slot_state_by_block?: Array; + block_number_between_min?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number containing this transaction (filter: between_max_value) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_state records - */ -export type ListIntStorageSlotStateResponse = { + block_number_between_max_value?: number; /** - * The list of int_storage_slot_state. + * The block number containing this transaction (filter: in_values) (comma-separated list) */ - int_storage_slot_state?: Array; + block_number_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The block number containing this transaction (filter: not_in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_state_with_expiry_by_address records - */ -export type ListIntStorageSlotStateWithExpiryByAddressResponse = { + block_number_not_in_values?: string; /** - * The list of int_storage_slot_state_with_expiry_by_address. + * The transaction hash (hex encoded with 0x prefix) (filter: eq) */ - int_storage_slot_state_with_expiry_by_address?: Array; + transaction_hash_eq?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The transaction hash (hex encoded with 0x prefix) (filter: ne) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_state_with_expiry_by_block records - */ -export type ListIntStorageSlotStateWithExpiryByBlockResponse = { + transaction_hash_ne?: string; /** - * The list of int_storage_slot_state_with_expiry_by_block. + * The transaction hash (hex encoded with 0x prefix) (filter: contains) */ - int_storage_slot_state_with_expiry_by_block?: Array; + transaction_hash_contains?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The transaction hash (hex encoded with 0x prefix) (filter: starts_with) */ - next_page_token?: string; -}; - -/** - * Response for listing int_storage_slot_state_with_expiry records - */ -export type ListIntStorageSlotStateWithExpiryResponse = { + transaction_hash_starts_with?: string; /** - * The list of int_storage_slot_state_with_expiry. + * The transaction hash (hex encoded with 0x prefix) (filter: ends_with) */ - int_storage_slot_state_with_expiry?: Array; + transaction_hash_ends_with?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The transaction hash (hex encoded with 0x prefix) (filter: like) */ - next_page_token?: string; -}; - -/** - * Response for listing int_token_contract_storage_state_by_block records - */ -export type ListIntTokenContractStorageStateByBlockResponse = { + transaction_hash_like?: string; /** - * The list of int_token_contract_storage_state_by_block. + * The transaction hash (hex encoded with 0x prefix) (filter: not_like) */ - int_token_contract_storage_state_by_block?: Array; + transaction_hash_not_like?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * The transaction hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_transaction_call_frame_opcode_gas records - */ -export type ListIntTransactionCallFrameOpcodeGasResponse = { + transaction_hash_in_values?: string; /** - * The list of int_transaction_call_frame_opcode_gas. + * The transaction hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) */ - int_transaction_call_frame_opcode_gas?: Array; + transaction_hash_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Sequential frame ID within the transaction (0 = root) (filter: eq) */ - next_page_token?: string; -}; - -/** - * Response for listing int_transaction_call_frame_opcode_resource_gas records - */ -export type ListIntTransactionCallFrameOpcodeResourceGasResponse = { + call_frame_id_eq?: number; /** - * The list of int_transaction_call_frame_opcode_resource_gas. + * Sequential frame ID within the transaction (0 = root) (filter: ne) */ - int_transaction_call_frame_opcode_resource_gas?: Array; + call_frame_id_ne?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Sequential frame ID within the transaction (0 = root) (filter: lt) */ - next_page_token?: string; -}; - -/** - * Response for listing int_transaction_call_frame records - */ -export type ListIntTransactionCallFrameResponse = { + call_frame_id_lt?: number; /** - * The list of int_transaction_call_frame. + * Sequential frame ID within the transaction (0 = root) (filter: lte) */ - int_transaction_call_frame?: Array; + call_frame_id_lte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. - */ - next_page_token?: string; -}; - -/** - * Response for listing int_transaction_opcode_gas records - */ -export type ListIntTransactionOpcodeGasResponse = { + * Sequential frame ID within the transaction (0 = root) (filter: gt) + */ + call_frame_id_gt?: number; /** - * The list of int_transaction_opcode_gas. + * Sequential frame ID within the transaction (0 = root) (filter: gte) */ - int_transaction_opcode_gas?: Array; + call_frame_id_gte?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Sequential frame ID within the transaction (0 = root) (filter: between_min) */ - next_page_token?: string; -}; - -/** - * Response for listing int_transaction_receipt_size records - */ -export type ListIntTransactionReceiptSizeResponse = { + call_frame_id_between_min?: number; /** - * The list of int_transaction_receipt_size. + * Sequential frame ID within the transaction (0 = root) (filter: between_max_value) */ - int_transaction_receipt_size?: Array; + call_frame_id_between_max_value?: number; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Sequential frame ID within the transaction (0 = root) (filter: in_values) (comma-separated list) */ - next_page_token?: string; -}; - -/** - * Response for listing int_transaction_resource_gas records - */ -export type ListIntTransactionResourceGasResponse = { + call_frame_id_in_values?: string; /** - * The list of int_transaction_resource_gas. + * Sequential frame ID within the transaction (0 = root) (filter: not_in_values) (comma-separated list) */ - int_transaction_resource_gas?: Array; + call_frame_id_not_in_values?: string; /** - * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + * Timestamp when the record was last updated (filter: eq) */ - next_page_token?: string; -}; - -/** - * The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). - */ -export type Status = { + updated_date_time_eq?: number; /** - * The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code]. + * Timestamp when the record was last updated (filter: ne) */ - code?: number; + updated_date_time_ne?: number; /** - * A list of messages that carry the error details. There is a common set of message types for APIs to use. + * Timestamp when the record was last updated (filter: lt) */ - details?: Array; + updated_date_time_lt?: number; /** - * A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client. + * Timestamp when the record was last updated (filter: lte) */ - message?: string; -}; - -export type AdminCbtIncrementalServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The database name (filter: eq) - */ - database_eq?: string; - /** - * The database name (filter: ne) - */ - database_ne?: string; - /** - * The database name (filter: contains) - */ - database_contains?: string; - /** - * The database name (filter: starts_with) - */ - database_starts_with?: string; - /** - * The database name (filter: ends_with) - */ - database_ends_with?: string; - /** - * The database name (filter: like) - */ - database_like?: string; - /** - * The database name (filter: not_like) - */ - database_not_like?: string; - /** - * The database name (filter: in_values) (comma-separated list) - */ - database_in_values?: string; - /** - * The database name (filter: not_in_values) (comma-separated list) - */ - database_not_in_values?: string; - /** - * The starting position of the processed interval (filter: eq) - */ - position_eq?: number; - /** - * The starting position of the processed interval (filter: ne) - */ - position_ne?: number; - /** - * The starting position of the processed interval (filter: lt) - */ - position_lt?: number; - /** - * The starting position of the processed interval (filter: lte) - */ - position_lte?: number; - /** - * The starting position of the processed interval (filter: gt) - */ - position_gt?: number; - /** - * The starting position of the processed interval (filter: gte) - */ - position_gte?: number; - /** - * The starting position of the processed interval (filter: between_min) - */ - position_between_min?: number; - /** - * The starting position of the processed interval (filter: between_max_value) - */ - position_between_max_value?: number; - /** - * The starting position of the processed interval (filter: in_values) (comma-separated list) - */ - position_in_values?: string; - /** - * The starting position of the processed interval (filter: not_in_values) (comma-separated list) - */ - position_not_in_values?: string; - /** - * The size of the interval processed (filter: eq) - */ - interval_eq?: number; - /** - * The size of the interval processed (filter: ne) - */ - interval_ne?: number; - /** - * The size of the interval processed (filter: lt) - */ - interval_lt?: number; - /** - * The size of the interval processed (filter: lte) - */ - interval_lte?: number; - /** - * The size of the interval processed (filter: gt) - */ - interval_gt?: number; - /** - * The size of the interval processed (filter: gte) - */ - interval_gte?: number; - /** - * The size of the interval processed (filter: between_min) - */ - interval_between_min?: number; - /** - * The size of the interval processed (filter: between_max_value) - */ - interval_between_max_value?: number; - /** - * The size of the interval processed (filter: in_values) (comma-separated list) - */ - interval_in_values?: string; - /** - * The size of the interval processed (filter: not_in_values) (comma-separated list) - */ - interval_not_in_values?: string; - /** - * updated_date_time (filter: eq) - */ - updated_date_time_eq?: number; - /** - * updated_date_time (filter: ne) - */ - updated_date_time_ne?: number; - /** - * updated_date_time (filter: lt) - */ - updated_date_time_lt?: number; - /** - * updated_date_time (filter: lte) - */ - updated_date_time_lte?: number; - /** - * updated_date_time (filter: gt) - */ - updated_date_time_gt?: number; - /** - * updated_date_time (filter: gte) - */ - updated_date_time_gte?: number; - /** - * updated_date_time (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * updated_date_time (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * updated_date_time (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * updated_date_time (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The table name (filter: eq) - */ - table_eq?: string; - /** - * The table name (filter: ne) - */ - table_ne?: string; - /** - * The table name (filter: contains) - */ - table_contains?: string; - /** - * The table name (filter: starts_with) - */ - table_starts_with?: string; - /** - * The table name (filter: ends_with) - */ - table_ends_with?: string; - /** - * The table name (filter: like) - */ - table_like?: string; - /** - * The table name (filter: not_like) - */ - table_not_like?: string; - /** - * The table name (filter: in_values) (comma-separated list) - */ - table_in_values?: string; - /** - * The table name (filter: not_in_values) (comma-separated list) - */ - table_not_in_values?: string; - /** - * The maximum number of admin_cbt_incremental to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListAdminCbtIncremental` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/admin_cbt_incremental'; -}; - -export type AdminCbtIncrementalServiceListErrors = { + updated_date_time_lte?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: gt) */ - default: Status; -}; - -export type AdminCbtIncrementalServiceListError = AdminCbtIncrementalServiceListErrors[keyof AdminCbtIncrementalServiceListErrors]; - -export type AdminCbtIncrementalServiceListResponses = { + updated_date_time_gt?: number; /** - * OK + * Timestamp when the record was last updated (filter: gte) */ - 200: ListAdminCbtIncrementalResponse; -}; - -export type AdminCbtIncrementalServiceListResponse = AdminCbtIncrementalServiceListResponses[keyof AdminCbtIncrementalServiceListResponses]; - -export type AdminCbtIncrementalServiceGetData = { - body?: never; - path: { - /** - * The database name - */ - database: string; - }; - query?: never; - url: '/api/v1/admin_cbt_incremental/{database}'; -}; - -export type AdminCbtIncrementalServiceGetErrors = { + updated_date_time_gte?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: between_min) */ - default: Status; -}; - -export type AdminCbtIncrementalServiceGetError = AdminCbtIncrementalServiceGetErrors[keyof AdminCbtIncrementalServiceGetErrors]; - -export type AdminCbtIncrementalServiceGetResponses = { + updated_date_time_between_min?: number; /** - * OK + * Timestamp when the record was last updated (filter: between_max_value) */ - 200: GetAdminCbtIncrementalResponse; -}; - -export type AdminCbtIncrementalServiceGetResponse = AdminCbtIncrementalServiceGetResponses[keyof AdminCbtIncrementalServiceGetResponses]; - -export type DimBlockBlobSubmitterServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The transaction index (filter: eq) - */ - transaction_index_eq?: number; - /** - * The transaction index (filter: ne) - */ - transaction_index_ne?: number; - /** - * The transaction index (filter: lt) - */ - transaction_index_lt?: number; - /** - * The transaction index (filter: lte) - */ - transaction_index_lte?: number; - /** - * The transaction index (filter: gt) - */ - transaction_index_gt?: number; - /** - * The transaction index (filter: gte) - */ - transaction_index_gte?: number; - /** - * The transaction index (filter: between_min) - */ - transaction_index_between_min?: number; - /** - * The transaction index (filter: between_max_value) - */ - transaction_index_between_max_value?: number; - /** - * The transaction index (filter: in_values) (comma-separated list) - */ - transaction_index_in_values?: string; - /** - * The transaction index (filter: not_in_values) (comma-separated list) - */ - transaction_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The transaction hash (filter: eq) - */ - transaction_hash_eq?: string; - /** - * The transaction hash (filter: ne) - */ - transaction_hash_ne?: string; - /** - * The transaction hash (filter: contains) - */ - transaction_hash_contains?: string; - /** - * The transaction hash (filter: starts_with) - */ - transaction_hash_starts_with?: string; - /** - * The transaction hash (filter: ends_with) - */ - transaction_hash_ends_with?: string; - /** - * The transaction hash (filter: like) - */ - transaction_hash_like?: string; - /** - * The transaction hash (filter: not_like) - */ - transaction_hash_not_like?: string; - /** - * The transaction hash (filter: in_values) (comma-separated list) - */ - transaction_hash_in_values?: string; - /** - * The transaction hash (filter: not_in_values) (comma-separated list) - */ - transaction_hash_not_in_values?: string; - /** - * The blob submitter address (filter: eq) - */ - address_eq?: string; - /** - * The blob submitter address (filter: ne) - */ - address_ne?: string; - /** - * The blob submitter address (filter: contains) - */ - address_contains?: string; - /** - * The blob submitter address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The blob submitter address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The blob submitter address (filter: like) - */ - address_like?: string; - /** - * The blob submitter address (filter: not_like) - */ - address_not_like?: string; - /** - * The blob submitter address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The blob submitter address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The versioned hashes of the blob submitter (filter: has) - */ - versioned_hashes_has?: string; - /** - * The versioned hashes of the blob submitter (filter: has_all_values) - */ - versioned_hashes_has_all_values?: Array; - /** - * The versioned hashes of the blob submitter (filter: has_any_values) - */ - versioned_hashes_has_any_values?: Array; - /** - * The versioned hashes of the blob submitter (filter: length_eq) - */ - versioned_hashes_length_eq?: number; - /** - * The versioned hashes of the blob submitter (filter: length_gt) - */ - versioned_hashes_length_gt?: number; - /** - * The versioned hashes of the blob submitter (filter: length_gte) - */ - versioned_hashes_length_gte?: number; - /** - * The versioned hashes of the blob submitter (filter: length_lt) - */ - versioned_hashes_length_lt?: number; - /** - * The versioned hashes of the blob submitter (filter: length_lte) - */ - versioned_hashes_length_lte?: number; - /** - * The name of the blob submitter (filter: eq) - */ - name_eq?: string; - /** - * The name of the blob submitter (filter: ne) - */ - name_ne?: string; - /** - * The name of the blob submitter (filter: contains) - */ - name_contains?: string; - /** - * The name of the blob submitter (filter: starts_with) - */ - name_starts_with?: string; - /** - * The name of the blob submitter (filter: ends_with) - */ - name_ends_with?: string; - /** - * The name of the blob submitter (filter: like) - */ - name_like?: string; - /** - * The name of the blob submitter (filter: not_like) - */ - name_not_like?: string; - /** - * The name of the blob submitter (filter: in_values) (comma-separated list) - */ - name_in_values?: string; - /** - * The name of the blob submitter (filter: not_in_values) (comma-separated list) - */ - name_not_in_values?: string; - /** - * The maximum number of dim_block_blob_submitter to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListDimBlockBlobSubmitter` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/dim_block_blob_submitter'; -}; - -export type DimBlockBlobSubmitterServiceListErrors = { + updated_date_time_between_max_value?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type DimBlockBlobSubmitterServiceListError = DimBlockBlobSubmitterServiceListErrors[keyof DimBlockBlobSubmitterServiceListErrors]; - -export type DimBlockBlobSubmitterServiceListResponses = { + updated_date_time_in_values?: string; /** - * OK + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - 200: ListDimBlockBlobSubmitterResponse; -}; - -export type DimBlockBlobSubmitterServiceListResponse = DimBlockBlobSubmitterServiceListResponses[keyof DimBlockBlobSubmitterServiceListResponses]; - -export type DimBlockBlobSubmitterServiceGetData = { - body?: never; - path: { - /** - * The block number - */ - block_number: number; - }; - query?: never; - url: '/api/v1/dim_block_blob_submitter/{block_number}'; -}; - -export type DimBlockBlobSubmitterServiceGetErrors = { + updated_date_time_not_in_values?: string; /** - * Default error response + * Position of the transaction within the block (filter: eq) */ - default: Status; -}; - -export type DimBlockBlobSubmitterServiceGetError = DimBlockBlobSubmitterServiceGetErrors[keyof DimBlockBlobSubmitterServiceGetErrors]; - -export type DimBlockBlobSubmitterServiceGetResponses = { + transaction_index_eq?: number; /** - * OK + * Position of the transaction within the block (filter: ne) */ - 200: GetDimBlockBlobSubmitterResponse; -}; - -export type DimBlockBlobSubmitterServiceGetResponse = DimBlockBlobSubmitterServiceGetResponses[keyof DimBlockBlobSubmitterServiceGetResponses]; - -export type DimContractOwnerServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - contract_address_eq?: string; - /** - * The contract address (filter: ne) - */ - contract_address_ne?: string; - /** - * The contract address (filter: contains) - */ - contract_address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - contract_address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - contract_address_ends_with?: string; - /** - * The contract address (filter: like) - */ - contract_address_like?: string; - /** - * The contract address (filter: not_like) - */ - contract_address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - contract_address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - contract_address_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Owner key identifier (filter: eq) - */ - owner_key_eq?: string; - /** - * Owner key identifier (filter: ne) - */ - owner_key_ne?: string; - /** - * Owner key identifier (filter: contains) - */ - owner_key_contains?: string; - /** - * Owner key identifier (filter: starts_with) - */ - owner_key_starts_with?: string; - /** - * Owner key identifier (filter: ends_with) - */ - owner_key_ends_with?: string; - /** - * Owner key identifier (filter: like) - */ - owner_key_like?: string; - /** - * Owner key identifier (filter: not_like) - */ - owner_key_not_like?: string; - /** - * Owner key identifier (filter: in_values) (comma-separated list) - */ - owner_key_in_values?: string; - /** - * Owner key identifier (filter: not_in_values) (comma-separated list) - */ - owner_key_not_in_values?: string; - /** - * Account owner of the contract (filter: eq) - */ - account_owner_eq?: string; - /** - * Account owner of the contract (filter: ne) - */ - account_owner_ne?: string; - /** - * Account owner of the contract (filter: contains) - */ - account_owner_contains?: string; - /** - * Account owner of the contract (filter: starts_with) - */ - account_owner_starts_with?: string; - /** - * Account owner of the contract (filter: ends_with) - */ - account_owner_ends_with?: string; - /** - * Account owner of the contract (filter: like) - */ - account_owner_like?: string; - /** - * Account owner of the contract (filter: not_like) - */ - account_owner_not_like?: string; - /** - * Account owner of the contract (filter: in_values) (comma-separated list) - */ - account_owner_in_values?: string; - /** - * Account owner of the contract (filter: not_in_values) (comma-separated list) - */ - account_owner_not_in_values?: string; - /** - * Name of the contract (filter: eq) - */ - contract_name_eq?: string; - /** - * Name of the contract (filter: ne) - */ - contract_name_ne?: string; - /** - * Name of the contract (filter: contains) - */ - contract_name_contains?: string; - /** - * Name of the contract (filter: starts_with) - */ - contract_name_starts_with?: string; - /** - * Name of the contract (filter: ends_with) - */ - contract_name_ends_with?: string; - /** - * Name of the contract (filter: like) - */ - contract_name_like?: string; - /** - * Name of the contract (filter: not_like) - */ - contract_name_not_like?: string; - /** - * Name of the contract (filter: in_values) (comma-separated list) - */ - contract_name_in_values?: string; - /** - * Name of the contract (filter: not_in_values) (comma-separated list) - */ - contract_name_not_in_values?: string; - /** - * Factory contract or deployer address (filter: eq) - */ - factory_contract_eq?: string; - /** - * Factory contract or deployer address (filter: ne) - */ - factory_contract_ne?: string; - /** - * Factory contract or deployer address (filter: contains) - */ - factory_contract_contains?: string; - /** - * Factory contract or deployer address (filter: starts_with) - */ - factory_contract_starts_with?: string; - /** - * Factory contract or deployer address (filter: ends_with) - */ - factory_contract_ends_with?: string; - /** - * Factory contract or deployer address (filter: like) - */ - factory_contract_like?: string; - /** - * Factory contract or deployer address (filter: not_like) - */ - factory_contract_not_like?: string; - /** - * Factory contract or deployer address (filter: in_values) (comma-separated list) - */ - factory_contract_in_values?: string; - /** - * Factory contract or deployer address (filter: not_in_values) (comma-separated list) - */ - factory_contract_not_in_values?: string; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: has) - */ - labels_has?: string; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: has_all_values) - */ - labels_has_all_values?: Array; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: has_any_values) - */ - labels_has_any_values?: Array; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_eq) - */ - labels_length_eq?: number; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_gt) - */ - labels_length_gt?: number; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_gte) - */ - labels_length_gte?: number; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_lt) - */ - labels_length_lt?: number; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_lte) - */ - labels_length_lte?: number; - /** - * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: has) - */ - sources_has?: string; - /** - * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: has_all_values) - */ - sources_has_all_values?: Array; - /** - * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: has_any_values) - */ - sources_has_any_values?: Array; - /** - * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: length_eq) - */ - sources_length_eq?: number; - /** - * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: length_gt) - */ - sources_length_gt?: number; - /** - * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: length_gte) - */ - sources_length_gte?: number; - /** - * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: length_lt) - */ - sources_length_lt?: number; - /** - * Sources of the label data (e.g., growthepie, dune, eth-labels) (filter: length_lte) - */ - sources_length_lte?: number; - /** - * The maximum number of dim_contract_owner to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListDimContractOwner` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/dim_contract_owner'; -}; - -export type DimContractOwnerServiceListErrors = { + transaction_index_ne?: number; /** - * Default error response + * Position of the transaction within the block (filter: lt) */ - default: Status; -}; - -export type DimContractOwnerServiceListError = DimContractOwnerServiceListErrors[keyof DimContractOwnerServiceListErrors]; - -export type DimContractOwnerServiceListResponses = { + transaction_index_lt?: number; /** - * OK + * Position of the transaction within the block (filter: lte) */ - 200: ListDimContractOwnerResponse; -}; - -export type DimContractOwnerServiceListResponse = DimContractOwnerServiceListResponses[keyof DimContractOwnerServiceListResponses]; - -export type DimContractOwnerServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - contract_address: string; - }; - query?: never; - url: '/api/v1/dim_contract_owner/{contract_address}'; -}; - -export type DimContractOwnerServiceGetErrors = { + transaction_index_lte?: number; /** - * Default error response + * Position of the transaction within the block (filter: gt) */ - default: Status; -}; - -export type DimContractOwnerServiceGetError = DimContractOwnerServiceGetErrors[keyof DimContractOwnerServiceGetErrors]; - -export type DimContractOwnerServiceGetResponses = { + transaction_index_gt?: number; /** - * OK + * Position of the transaction within the block (filter: gte) */ - 200: GetDimContractOwnerResponse; -}; - -export type DimContractOwnerServiceGetResponse = DimContractOwnerServiceGetResponses[keyof DimContractOwnerServiceGetResponses]; - -export type DimFunctionSignatureServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: eq) - */ - selector_eq?: string; - /** - * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: ne) - */ - selector_ne?: string; - /** - * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: contains) - */ - selector_contains?: string; - /** - * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: starts_with) - */ - selector_starts_with?: string; - /** - * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: ends_with) - */ - selector_ends_with?: string; - /** - * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: like) - */ - selector_like?: string; - /** - * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: not_like) - */ - selector_not_like?: string; - /** - * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - selector_in_values?: string; - /** - * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - selector_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Function signature name (e.g., transfer(address,uint256)) (filter: eq) - */ - name_eq?: string; - /** - * Function signature name (e.g., transfer(address,uint256)) (filter: ne) - */ - name_ne?: string; - /** - * Function signature name (e.g., transfer(address,uint256)) (filter: contains) - */ - name_contains?: string; - /** - * Function signature name (e.g., transfer(address,uint256)) (filter: starts_with) - */ - name_starts_with?: string; - /** - * Function signature name (e.g., transfer(address,uint256)) (filter: ends_with) - */ - name_ends_with?: string; - /** - * Function signature name (e.g., transfer(address,uint256)) (filter: like) - */ - name_like?: string; - /** - * Function signature name (e.g., transfer(address,uint256)) (filter: not_like) - */ - name_not_like?: string; - /** - * Function signature name (e.g., transfer(address,uint256)) (filter: in_values) (comma-separated list) - */ - name_in_values?: string; - /** - * Function signature name (e.g., transfer(address,uint256)) (filter: not_in_values) (comma-separated list) - */ - name_not_in_values?: string; - /** - * Whether this signature comes from a verified contract source (filter: eq) - */ - has_verified_contract_eq?: boolean; - /** - * Whether this signature comes from a verified contract source (filter: ne) - */ - has_verified_contract_ne?: boolean; - /** - * The maximum number of dim_function_signature to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListDimFunctionSignature` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/dim_function_signature'; -}; - -export type DimFunctionSignatureServiceListErrors = { + transaction_index_gte?: number; /** - * Default error response + * Position of the transaction within the block (filter: between_min) */ - default: Status; -}; - -export type DimFunctionSignatureServiceListError = DimFunctionSignatureServiceListErrors[keyof DimFunctionSignatureServiceListErrors]; - -export type DimFunctionSignatureServiceListResponses = { + transaction_index_between_min?: number; /** - * OK + * Position of the transaction within the block (filter: between_max_value) */ - 200: ListDimFunctionSignatureResponse; -}; - -export type DimFunctionSignatureServiceListResponse = DimFunctionSignatureServiceListResponses[keyof DimFunctionSignatureServiceListResponses]; - -export type DimFunctionSignatureServiceGetData = { - body?: never; - path: { - /** - * Function selector (first 4 bytes of keccak256 hash, hex encoded with 0x prefix) - */ - selector: string; - }; - query?: never; - url: '/api/v1/dim_function_signature/{selector}'; -}; - -export type DimFunctionSignatureServiceGetErrors = { + transaction_index_between_max_value?: number; /** - * Default error response + * Position of the transaction within the block (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type DimFunctionSignatureServiceGetError = DimFunctionSignatureServiceGetErrors[keyof DimFunctionSignatureServiceGetErrors]; - -export type DimFunctionSignatureServiceGetResponses = { + transaction_index_in_values?: string; /** - * OK + * Position of the transaction within the block (filter: not_in_values) (comma-separated list) */ - 200: GetDimFunctionSignatureResponse; -}; - -export type DimFunctionSignatureServiceGetResponse = DimFunctionSignatureServiceGetResponses[keyof DimFunctionSignatureServiceGetResponses]; - -export type DimNodeServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The index of the validator (filter: eq) - */ - validator_index_eq?: number; - /** - * The index of the validator (filter: ne) - */ - validator_index_ne?: number; - /** - * The index of the validator (filter: lt) - */ - validator_index_lt?: number; - /** - * The index of the validator (filter: lte) - */ - validator_index_lte?: number; - /** - * The index of the validator (filter: gt) - */ - validator_index_gt?: number; - /** - * The index of the validator (filter: gte) - */ - validator_index_gte?: number; - /** - * The index of the validator (filter: between_min) - */ - validator_index_between_min?: number; - /** - * The index of the validator (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * The index of the validator (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * The index of the validator (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The name of the node (filter: eq) - */ - name_eq?: string; - /** - * The name of the node (filter: ne) - */ - name_ne?: string; - /** - * The name of the node (filter: contains) - */ - name_contains?: string; - /** - * The name of the node (filter: starts_with) - */ - name_starts_with?: string; - /** - * The name of the node (filter: ends_with) - */ - name_ends_with?: string; - /** - * The name of the node (filter: like) - */ - name_like?: string; - /** - * The name of the node (filter: not_like) - */ - name_not_like?: string; - /** - * The name of the node (filter: in_values) (comma-separated list) - */ - name_in_values?: string; - /** - * The name of the node (filter: not_in_values) (comma-separated list) - */ - name_not_in_values?: string; - /** - * Groups the node belongs to (filter: has) - */ - groups_has?: string; - /** - * Groups the node belongs to (filter: has_all_values) - */ - groups_has_all_values?: Array; - /** - * Groups the node belongs to (filter: has_any_values) - */ - groups_has_any_values?: Array; - /** - * Groups the node belongs to (filter: length_eq) - */ - groups_length_eq?: number; - /** - * Groups the node belongs to (filter: length_gt) - */ - groups_length_gt?: number; - /** - * Groups the node belongs to (filter: length_gte) - */ - groups_length_gte?: number; - /** - * Groups the node belongs to (filter: length_lt) - */ - groups_length_lt?: number; - /** - * Groups the node belongs to (filter: length_lte) - */ - groups_length_lte?: number; - /** - * Tags associated with the node (filter: has) - */ - tags_has?: string; - /** - * Tags associated with the node (filter: has_all_values) - */ - tags_has_all_values?: Array; - /** - * Tags associated with the node (filter: has_any_values) - */ - tags_has_any_values?: Array; - /** - * Tags associated with the node (filter: length_eq) - */ - tags_length_eq?: number; - /** - * Tags associated with the node (filter: length_gt) - */ - tags_length_gt?: number; - /** - * Tags associated with the node (filter: length_gte) - */ - tags_length_gte?: number; - /** - * Tags associated with the node (filter: length_lt) - */ - tags_length_lt?: number; - /** - * Tags associated with the node (filter: length_lte) - */ - tags_length_lte?: number; - /** - * Additional attributes of the node (filter: key_value_key) - */ - attributes_key_value_key?: string; - /** - * Additional attributes of the node (filter: key_value_value_filter_eq) - */ - attributes_key_value_value_filter_eq?: string; - /** - * Additional attributes of the node (filter: key_value_value_filter_ne) - */ - attributes_key_value_value_filter_ne?: string; - /** - * Additional attributes of the node (filter: key_value_value_filter_contains) - */ - attributes_key_value_value_filter_contains?: string; - /** - * Additional attributes of the node (filter: key_value_value_filter_starts_with) - */ - attributes_key_value_value_filter_starts_with?: string; - /** - * Additional attributes of the node (filter: key_value_value_filter_ends_with) - */ - attributes_key_value_value_filter_ends_with?: string; - /** - * Additional attributes of the node (filter: key_value_value_filter_like) - */ - attributes_key_value_value_filter_like?: string; - /** - * Additional attributes of the node (filter: key_value_value_filter_not_like) - */ - attributes_key_value_value_filter_not_like?: string; - /** - * Additional attributes of the node (filter: key_value_value_filter_in_values) (comma-separated list) - */ - attributes_key_value_value_filter_in_values?: string; - /** - * Additional attributes of the node (filter: key_value_value_filter_not_in_values) (comma-separated list) - */ - attributes_key_value_value_filter_not_in_values?: string; - /** - * Additional attributes of the node (filter: has_key) - */ - attributes_has_key?: string; - /** - * Additional attributes of the node (filter: not_has_key) - */ - attributes_not_has_key?: string; - /** - * The source entity of the node (filter: eq) - */ - source_eq?: string; - /** - * The source entity of the node (filter: ne) - */ - source_ne?: string; - /** - * The source entity of the node (filter: contains) - */ - source_contains?: string; - /** - * The source entity of the node (filter: starts_with) - */ - source_starts_with?: string; - /** - * The source entity of the node (filter: ends_with) - */ - source_ends_with?: string; - /** - * The source entity of the node (filter: like) - */ - source_like?: string; - /** - * The source entity of the node (filter: not_like) - */ - source_not_like?: string; - /** - * The source entity of the node (filter: in_values) (comma-separated list) - */ - source_in_values?: string; - /** - * The source entity of the node (filter: not_in_values) (comma-separated list) - */ - source_not_in_values?: string; - /** - * The maximum number of dim_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListDimNode` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/dim_node'; -}; - -export type DimNodeServiceListErrors = { + transaction_index_not_in_values?: string; /** - * Default error response + * Parent frame ID (NULL for root frame) (filter: eq) */ - default: Status; -}; - -export type DimNodeServiceListError = DimNodeServiceListErrors[keyof DimNodeServiceListErrors]; - -export type DimNodeServiceListResponses = { + parent_call_frame_id_eq?: number; /** - * OK + * Parent frame ID (NULL for root frame) (filter: ne) */ - 200: ListDimNodeResponse; -}; - -export type DimNodeServiceListResponse = DimNodeServiceListResponses[keyof DimNodeServiceListResponses]; - -export type DimNodeServiceGetData = { - body?: never; - path: { - /** - * The index of the validator - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/dim_node/{validator_index}'; -}; - -export type DimNodeServiceGetErrors = { + parent_call_frame_id_ne?: number; /** - * Default error response + * Parent frame ID (NULL for root frame) (filter: lt) */ - default: Status; -}; - -export type DimNodeServiceGetError = DimNodeServiceGetErrors[keyof DimNodeServiceGetErrors]; - -export type DimNodeServiceGetResponses = { + parent_call_frame_id_lt?: number; /** - * OK + * Parent frame ID (NULL for root frame) (filter: lte) */ - 200: GetDimNodeResponse; -}; - -export type DimNodeServiceGetResponse = DimNodeServiceGetResponses[keyof DimNodeServiceGetResponses]; - -export type DimRocketpoolNodeServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: eq) - */ - node_operator_eq?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ne) - */ - node_operator_ne?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: contains) - */ - node_operator_contains?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: starts_with) - */ - node_operator_starts_with?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ends_with) - */ - node_operator_ends_with?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: like) - */ - node_operator_like?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_like) - */ - node_operator_not_like?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: in_values) (comma-separated list) - */ - node_operator_in_values?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) - */ - node_operator_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: eq) - */ - timezone_eq?: string; - /** - * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: ne) - */ - timezone_ne?: string; - /** - * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: contains) - */ - timezone_contains?: string; - /** - * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: starts_with) - */ - timezone_starts_with?: string; - /** - * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: ends_with) - */ - timezone_ends_with?: string; - /** - * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: like) - */ - timezone_like?: string; - /** - * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: not_like) - */ - timezone_not_like?: string; - /** - * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: in_values) (comma-separated list) - */ - timezone_in_values?: string; - /** - * The self-reported timezone location string (e.g. Europe/London), empty if unknown (filter: not_in_values) (comma-separated list) - */ - timezone_not_in_values?: string; - /** - * Wall clock time the node registered with Rocket Pool (filter: eq) - */ - registered_date_time_eq?: number; - /** - * Wall clock time the node registered with Rocket Pool (filter: ne) - */ - registered_date_time_ne?: number; - /** - * Wall clock time the node registered with Rocket Pool (filter: lt) - */ - registered_date_time_lt?: number; - /** - * Wall clock time the node registered with Rocket Pool (filter: lte) - */ - registered_date_time_lte?: number; - /** - * Wall clock time the node registered with Rocket Pool (filter: gt) - */ - registered_date_time_gt?: number; - /** - * Wall clock time the node registered with Rocket Pool (filter: gte) - */ - registered_date_time_gte?: number; - /** - * Wall clock time the node registered with Rocket Pool (filter: between_min) - */ - registered_date_time_between_min?: number; - /** - * Wall clock time the node registered with Rocket Pool (filter: between_max_value) - */ - registered_date_time_between_max_value?: number; - /** - * Wall clock time the node registered with Rocket Pool (filter: in_values) (comma-separated list) - */ - registered_date_time_in_values?: string; - /** - * Wall clock time the node registered with Rocket Pool (filter: not_in_values) (comma-separated list) - */ - registered_date_time_not_in_values?: string; - /** - * Total number of minipools ever created by this node operator (filter: eq) - */ - minipool_count_eq?: number; - /** - * Total number of minipools ever created by this node operator (filter: ne) - */ - minipool_count_ne?: number; - /** - * Total number of minipools ever created by this node operator (filter: lt) - */ - minipool_count_lt?: number; - /** - * Total number of minipools ever created by this node operator (filter: lte) - */ - minipool_count_lte?: number; - /** - * Total number of minipools ever created by this node operator (filter: gt) - */ - minipool_count_gt?: number; - /** - * Total number of minipools ever created by this node operator (filter: gte) - */ - minipool_count_gte?: number; - /** - * Total number of minipools ever created by this node operator (filter: between_min) - */ - minipool_count_between_min?: number; - /** - * Total number of minipools ever created by this node operator (filter: between_max_value) - */ - minipool_count_between_max_value?: number; - /** - * Total number of minipools ever created by this node operator (filter: in_values) (comma-separated list) - */ - minipool_count_in_values?: string; - /** - * Total number of minipools ever created by this node operator (filter: not_in_values) (comma-separated list) - */ - minipool_count_not_in_values?: string; - /** - * Number of minipools created minus destroyed for this node operator (filter: eq) - */ - active_minipool_count_eq?: number; - /** - * Number of minipools created minus destroyed for this node operator (filter: ne) - */ - active_minipool_count_ne?: number; - /** - * Number of minipools created minus destroyed for this node operator (filter: lt) - */ - active_minipool_count_lt?: number; - /** - * Number of minipools created minus destroyed for this node operator (filter: lte) - */ - active_minipool_count_lte?: number; - /** - * Number of minipools created minus destroyed for this node operator (filter: gt) - */ - active_minipool_count_gt?: number; - /** - * Number of minipools created minus destroyed for this node operator (filter: gte) - */ - active_minipool_count_gte?: number; - /** - * Number of minipools created minus destroyed for this node operator (filter: between_min) - */ - active_minipool_count_between_min?: number; - /** - * Number of minipools created minus destroyed for this node operator (filter: between_max_value) - */ - active_minipool_count_between_max_value?: number; - /** - * Number of minipools created minus destroyed for this node operator (filter: in_values) (comma-separated list) - */ - active_minipool_count_in_values?: string; - /** - * Number of minipools created minus destroyed for this node operator (filter: not_in_values) (comma-separated list) - */ - active_minipool_count_not_in_values?: string; - /** - * Number of Saturn megapool validators for this node operator (filter: eq) - */ - megapool_validator_count_eq?: number; - /** - * Number of Saturn megapool validators for this node operator (filter: ne) - */ - megapool_validator_count_ne?: number; - /** - * Number of Saturn megapool validators for this node operator (filter: lt) - */ - megapool_validator_count_lt?: number; - /** - * Number of Saturn megapool validators for this node operator (filter: lte) - */ - megapool_validator_count_lte?: number; - /** - * Number of Saturn megapool validators for this node operator (filter: gt) - */ - megapool_validator_count_gt?: number; - /** - * Number of Saturn megapool validators for this node operator (filter: gte) - */ - megapool_validator_count_gte?: number; - /** - * Number of Saturn megapool validators for this node operator (filter: between_min) - */ - megapool_validator_count_between_min?: number; - /** - * Number of Saturn megapool validators for this node operator (filter: between_max_value) - */ - megapool_validator_count_between_max_value?: number; - /** - * Number of Saturn megapool validators for this node operator (filter: in_values) (comma-separated list) - */ - megapool_validator_count_in_values?: string; - /** - * Number of Saturn megapool validators for this node operator (filter: not_in_values) (comma-separated list) - */ - megapool_validator_count_not_in_values?: string; - /** - * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: eq) - */ - validator_count_eq?: number; - /** - * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: ne) - */ - validator_count_ne?: number; - /** - * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: lt) - */ - validator_count_lt?: number; - /** - * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: lte) - */ - validator_count_lte?: number; - /** - * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: gt) - */ - validator_count_gt?: number; - /** - * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: gte) - */ - validator_count_gte?: number; - /** - * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: between_min) - */ - validator_count_between_min?: number; - /** - * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: between_max_value) - */ - validator_count_between_max_value?: number; - /** - * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: in_values) (comma-separated list) - */ - validator_count_in_values?: string; - /** - * Total number of beacon chain validators (minipool and megapool) linked to this node operator (filter: not_in_values) (comma-separated list) - */ - validator_count_not_in_values?: string; - /** - * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: eq) - */ - rpl_staked_wei_eq?: string; - /** - * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: ne) - */ - rpl_staked_wei_ne?: string; - /** - * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: contains) - */ - rpl_staked_wei_contains?: string; - /** - * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: starts_with) - */ - rpl_staked_wei_starts_with?: string; - /** - * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: ends_with) - */ - rpl_staked_wei_ends_with?: string; - /** - * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: like) - */ - rpl_staked_wei_like?: string; - /** - * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: not_like) - */ - rpl_staked_wei_not_like?: string; - /** - * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: in_values) (comma-separated list) - */ - rpl_staked_wei_in_values?: string; - /** - * Net RPL staked in wei (lifetime staked minus withdrawn), derived from events (filter: not_in_values) (comma-separated list) - */ - rpl_staked_wei_not_in_values?: string; - /** - * Whether the node operator is currently registered for the smoothing pool (filter: eq) - */ - in_smoothing_pool_eq?: boolean; - /** - * Whether the node operator is currently registered for the smoothing pool (filter: ne) - */ - in_smoothing_pool_ne?: boolean; - /** - * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: eq) - */ - first_seen_date_time_eq?: number; - /** - * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: ne) - */ - first_seen_date_time_ne?: number; - /** - * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: lt) - */ - first_seen_date_time_lt?: number; - /** - * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: lte) - */ - first_seen_date_time_lte?: number; - /** - * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: gt) - */ - first_seen_date_time_gt?: number; - /** - * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: gte) - */ - first_seen_date_time_gte?: number; - /** - * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: between_min) - */ - first_seen_date_time_between_min?: number; - /** - * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: between_max_value) - */ - first_seen_date_time_between_max_value?: number; - /** - * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: in_values) (comma-separated list) - */ - first_seen_date_time_in_values?: string; - /** - * Wall clock time of the node operators earliest observed Rocket Pool activity (filter: not_in_values) (comma-separated list) - */ - first_seen_date_time_not_in_values?: string; - /** - * Wall clock time of the node operators latest observed minipool or megapool activity (filter: eq) - */ - last_activity_date_time_eq?: number; - /** - * Wall clock time of the node operators latest observed minipool or megapool activity (filter: ne) - */ - last_activity_date_time_ne?: number; - /** - * Wall clock time of the node operators latest observed minipool or megapool activity (filter: lt) - */ - last_activity_date_time_lt?: number; - /** - * Wall clock time of the node operators latest observed minipool or megapool activity (filter: lte) - */ - last_activity_date_time_lte?: number; - /** - * Wall clock time of the node operators latest observed minipool or megapool activity (filter: gt) - */ - last_activity_date_time_gt?: number; - /** - * Wall clock time of the node operators latest observed minipool or megapool activity (filter: gte) - */ - last_activity_date_time_gte?: number; - /** - * Wall clock time of the node operators latest observed minipool or megapool activity (filter: between_min) - */ - last_activity_date_time_between_min?: number; - /** - * Wall clock time of the node operators latest observed minipool or megapool activity (filter: between_max_value) - */ - last_activity_date_time_between_max_value?: number; - /** - * Wall clock time of the node operators latest observed minipool or megapool activity (filter: in_values) (comma-separated list) - */ - last_activity_date_time_in_values?: string; - /** - * Wall clock time of the node operators latest observed minipool or megapool activity (filter: not_in_values) (comma-separated list) - */ - last_activity_date_time_not_in_values?: string; - /** - * The maximum number of dim_rocketpool_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListDimRocketpoolNode` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/dim_rocketpool_node'; -}; - -export type DimRocketpoolNodeServiceListErrors = { + parent_call_frame_id_lte?: number; /** - * Default error response + * Parent frame ID (NULL for root frame) (filter: gt) */ - default: Status; -}; - -export type DimRocketpoolNodeServiceListError = DimRocketpoolNodeServiceListErrors[keyof DimRocketpoolNodeServiceListErrors]; - -export type DimRocketpoolNodeServiceListResponses = { + parent_call_frame_id_gt?: number; /** - * OK + * Parent frame ID (NULL for root frame) (filter: gte) */ - 200: ListDimRocketpoolNodeResponse; -}; - -export type DimRocketpoolNodeServiceListResponse = DimRocketpoolNodeServiceListResponses[keyof DimRocketpoolNodeServiceListResponses]; - -export type DimRocketpoolNodeServiceGetData = { - body?: never; - path: { - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed - */ - node_operator: string; - }; - query?: never; - url: '/api/v1/dim_rocketpool_node/{node_operator}'; -}; - -export type DimRocketpoolNodeServiceGetErrors = { + parent_call_frame_id_gte?: number; /** - * Default error response + * Parent frame ID (NULL for root frame) (filter: between_min) */ - default: Status; -}; - -export type DimRocketpoolNodeServiceGetError = DimRocketpoolNodeServiceGetErrors[keyof DimRocketpoolNodeServiceGetErrors]; - -export type DimRocketpoolNodeServiceGetResponses = { + parent_call_frame_id_between_min?: number; /** - * OK + * Parent frame ID (NULL for root frame) (filter: between_max_value) */ - 200: GetDimRocketpoolNodeResponse; -}; - -export type DimRocketpoolNodeServiceGetResponse = DimRocketpoolNodeServiceGetResponses[keyof DimRocketpoolNodeServiceGetResponses]; - -export type DimTokenContractServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The token contract address (filter: eq) - */ - contract_address_eq?: string; - /** - * The token contract address (filter: ne) - */ - contract_address_ne?: string; - /** - * The token contract address (filter: contains) - */ - contract_address_contains?: string; - /** - * The token contract address (filter: starts_with) - */ - contract_address_starts_with?: string; - /** - * The token contract address (filter: ends_with) - */ - contract_address_ends_with?: string; - /** - * The token contract address (filter: like) - */ - contract_address_like?: string; - /** - * The token contract address (filter: not_like) - */ - contract_address_not_like?: string; - /** - * The token contract address (filter: in_values) (comma-separated list) - */ - contract_address_in_values?: string; - /** - * The token contract address (filter: not_in_values) (comma-separated list) - */ - contract_address_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: eq) - */ - token_standard_eq?: string; - /** - * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: ne) - */ - token_standard_ne?: string; - /** - * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: contains) - */ - token_standard_contains?: string; - /** - * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: starts_with) - */ - token_standard_starts_with?: string; - /** - * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: ends_with) - */ - token_standard_ends_with?: string; - /** - * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: like) - */ - token_standard_like?: string; - /** - * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: not_like) - */ - token_standard_not_like?: string; - /** - * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: in_values) (comma-separated list) - */ - token_standard_in_values?: string; - /** - * Mutually-exclusive classification by the standard of the first Transfer event the contract emitted (first-come-first-serve): erc20 or erc721 (filter: not_in_values) (comma-separated list) - */ - token_standard_not_in_values?: string; - /** - * The maximum number of dim_token_contract to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListDimTokenContract` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/dim_token_contract'; -}; - -export type DimTokenContractServiceListErrors = { + parent_call_frame_id_between_max_value?: number; /** - * Default error response + * Parent frame ID (NULL for root frame) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type DimTokenContractServiceListError = DimTokenContractServiceListErrors[keyof DimTokenContractServiceListErrors]; - -export type DimTokenContractServiceListResponses = { + parent_call_frame_id_in_values?: string; /** - * OK + * Parent frame ID (NULL for root frame) (filter: not_in_values) (comma-separated list) */ - 200: ListDimTokenContractResponse; -}; - -export type DimTokenContractServiceListResponse = DimTokenContractServiceListResponses[keyof DimTokenContractServiceListResponses]; - -export type DimTokenContractServiceGetData = { - body?: never; - path: { - /** - * The token contract address - */ - contract_address: string; - }; - query?: never; - url: '/api/v1/dim_token_contract/{contract_address}'; -}; - -export type DimTokenContractServiceGetErrors = { + parent_call_frame_id_not_in_values?: string; /** - * Default error response + * Call depth (0 = root transaction execution) (filter: eq) */ - default: Status; -}; - -export type DimTokenContractServiceGetError = DimTokenContractServiceGetErrors[keyof DimTokenContractServiceGetErrors]; - -export type DimTokenContractServiceGetResponses = { + depth_eq?: number; /** - * OK + * Call depth (0 = root transaction execution) (filter: ne) */ - 200: GetDimTokenContractResponse; -}; - -export type DimTokenContractServiceGetResponse = DimTokenContractServiceGetResponses[keyof DimTokenContractServiceGetResponses]; - -export type DimValidatorPubkeyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The public key of the validator (filter: eq) - */ - pubkey_eq?: string; - /** - * The public key of the validator (filter: ne) - */ - pubkey_ne?: string; - /** - * The public key of the validator (filter: contains) - */ - pubkey_contains?: string; - /** - * The public key of the validator (filter: starts_with) - */ - pubkey_starts_with?: string; - /** - * The public key of the validator (filter: ends_with) - */ - pubkey_ends_with?: string; - /** - * The public key of the validator (filter: like) - */ - pubkey_like?: string; - /** - * The public key of the validator (filter: not_like) - */ - pubkey_not_like?: string; - /** - * The public key of the validator (filter: in_values) (comma-separated list) - */ - pubkey_in_values?: string; - /** - * The public key of the validator (filter: not_in_values) (comma-separated list) - */ - pubkey_not_in_values?: string; - /** - * The index of the validator (filter: eq) - */ - validator_index_eq?: number; - /** - * The index of the validator (filter: ne) - */ - validator_index_ne?: number; - /** - * The index of the validator (filter: lt) - */ - validator_index_lt?: number; - /** - * The index of the validator (filter: lte) - */ - validator_index_lte?: number; - /** - * The index of the validator (filter: gt) - */ - validator_index_gt?: number; - /** - * The index of the validator (filter: gte) - */ - validator_index_gte?: number; - /** - * The index of the validator (filter: between_min) - */ - validator_index_between_min?: number; - /** - * The index of the validator (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * The index of the validator (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * The index of the validator (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The maximum number of dim_validator_pubkey to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListDimValidatorPubkey` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/dim_validator_pubkey'; -}; - -export type DimValidatorPubkeyServiceListErrors = { + depth_ne?: number; /** - * Default error response + * Call depth (0 = root transaction execution) (filter: lt) */ - default: Status; -}; - -export type DimValidatorPubkeyServiceListError = DimValidatorPubkeyServiceListErrors[keyof DimValidatorPubkeyServiceListErrors]; - -export type DimValidatorPubkeyServiceListResponses = { + depth_lt?: number; /** - * OK + * Call depth (0 = root transaction execution) (filter: lte) */ - 200: ListDimValidatorPubkeyResponse; -}; - -export type DimValidatorPubkeyServiceListResponse = DimValidatorPubkeyServiceListResponses[keyof DimValidatorPubkeyServiceListResponses]; - -export type DimValidatorPubkeyServiceGetData = { - body?: never; - path: { - /** - * The public key of the validator - */ - pubkey: string; - }; - query?: never; - url: '/api/v1/dim_validator_pubkey/{pubkey}'; -}; - -export type DimValidatorPubkeyServiceGetErrors = { + depth_lte?: number; /** - * Default error response + * Call depth (0 = root transaction execution) (filter: gt) */ - default: Status; -}; - -export type DimValidatorPubkeyServiceGetError = DimValidatorPubkeyServiceGetErrors[keyof DimValidatorPubkeyServiceGetErrors]; - -export type DimValidatorPubkeyServiceGetResponses = { + depth_gt?: number; /** - * OK + * Call depth (0 = root transaction execution) (filter: gte) */ - 200: GetDimValidatorPubkeyResponse; -}; - -export type DimValidatorPubkeyServiceGetResponse = DimValidatorPubkeyServiceGetResponses[keyof DimValidatorPubkeyServiceGetResponses]; - -export type DimValidatorStatusServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The index of the validator (filter: eq) - */ - validator_index_eq?: number; - /** - * The index of the validator (filter: ne) - */ - validator_index_ne?: number; - /** - * The index of the validator (filter: lt) - */ - validator_index_lt?: number; - /** - * The index of the validator (filter: lte) - */ - validator_index_lte?: number; - /** - * The index of the validator (filter: gt) - */ - validator_index_gt?: number; - /** - * The index of the validator (filter: gte) - */ - validator_index_gte?: number; - /** - * The index of the validator (filter: between_min) - */ - validator_index_between_min?: number; - /** - * The index of the validator (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * The index of the validator (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * The index of the validator (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: eq) - */ - status_eq?: string; - /** - * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: ne) - */ - status_ne?: string; - /** - * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: contains) - */ - status_contains?: string; - /** - * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: starts_with) - */ - status_starts_with?: string; - /** - * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: ends_with) - */ - status_ends_with?: string; - /** - * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: like) - */ - status_like?: string; - /** - * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: not_like) - */ - status_not_like?: string; - /** - * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Beacon chain validator status (e.g. pending_initialized, active_ongoing) (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: eq) - */ - version_eq?: number; - /** - * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: ne) - */ - version_ne?: number; - /** - * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: lt) - */ - version_lt?: number; - /** - * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: lte) - */ - version_lte?: number; - /** - * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: gt) - */ - version_gt?: number; - /** - * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: gte) - */ - version_gte?: number; - /** - * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: between_min) - */ - version_between_min?: number; - /** - * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: between_max_value) - */ - version_between_max_value?: number; - /** - * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: in_values) (comma-separated list) - */ - version_in_values?: string; - /** - * ReplacingMergeTree version: 4294967295 - epoch, keeps earliest epoch (filter: not_in_values) (comma-separated list) - */ - version_not_in_values?: string; - /** - * The public key of the validator (filter: eq) - */ - pubkey_eq?: string; - /** - * The public key of the validator (filter: ne) - */ - pubkey_ne?: string; - /** - * The public key of the validator (filter: contains) - */ - pubkey_contains?: string; - /** - * The public key of the validator (filter: starts_with) - */ - pubkey_starts_with?: string; - /** - * The public key of the validator (filter: ends_with) - */ - pubkey_ends_with?: string; - /** - * The public key of the validator (filter: like) - */ - pubkey_like?: string; - /** - * The public key of the validator (filter: not_like) - */ - pubkey_not_like?: string; - /** - * The public key of the validator (filter: in_values) (comma-separated list) - */ - pubkey_in_values?: string; - /** - * The public key of the validator (filter: not_in_values) (comma-separated list) - */ - pubkey_not_in_values?: string; - /** - * First epoch this status was observed (filter: eq) - */ - epoch_eq?: number; - /** - * First epoch this status was observed (filter: ne) - */ - epoch_ne?: number; - /** - * First epoch this status was observed (filter: lt) - */ - epoch_lt?: number; - /** - * First epoch this status was observed (filter: lte) - */ - epoch_lte?: number; - /** - * First epoch this status was observed (filter: gt) - */ - epoch_gt?: number; - /** - * First epoch this status was observed (filter: gte) - */ - epoch_gte?: number; - /** - * First epoch this status was observed (filter: between_min) - */ - epoch_between_min?: number; - /** - * First epoch this status was observed (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * First epoch this status was observed (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * First epoch this status was observed (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * Wall clock time of the first observed epoch (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * Wall clock time of the first observed epoch (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * Wall clock time of the first observed epoch (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * Wall clock time of the first observed epoch (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * Wall clock time of the first observed epoch (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * Wall clock time of the first observed epoch (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * Wall clock time of the first observed epoch (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * Wall clock time of the first observed epoch (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * Wall clock time of the first observed epoch (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * Wall clock time of the first observed epoch (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Epoch when activation is/was scheduled (filter: eq) - */ - activation_epoch_eq?: number; - /** - * Epoch when activation is/was scheduled (filter: ne) - */ - activation_epoch_ne?: number; - /** - * Epoch when activation is/was scheduled (filter: lt) - */ - activation_epoch_lt?: number; - /** - * Epoch when activation is/was scheduled (filter: lte) - */ - activation_epoch_lte?: number; - /** - * Epoch when activation is/was scheduled (filter: gt) - */ - activation_epoch_gt?: number; - /** - * Epoch when activation is/was scheduled (filter: gte) - */ - activation_epoch_gte?: number; - /** - * Epoch when activation is/was scheduled (filter: between_min) - */ - activation_epoch_between_min?: number; - /** - * Epoch when activation is/was scheduled (filter: between_max_value) - */ - activation_epoch_between_max_value?: number; - /** - * Epoch when activation is/was scheduled (filter: in_values) (comma-separated list) - */ - activation_epoch_in_values?: string; - /** - * Epoch when activation is/was scheduled (filter: not_in_values) (comma-separated list) - */ - activation_epoch_not_in_values?: string; - /** - * Epoch when validator became eligible for activation (filter: eq) - */ - activation_eligibility_epoch_eq?: number; - /** - * Epoch when validator became eligible for activation (filter: ne) - */ - activation_eligibility_epoch_ne?: number; - /** - * Epoch when validator became eligible for activation (filter: lt) - */ - activation_eligibility_epoch_lt?: number; - /** - * Epoch when validator became eligible for activation (filter: lte) - */ - activation_eligibility_epoch_lte?: number; - /** - * Epoch when validator became eligible for activation (filter: gt) - */ - activation_eligibility_epoch_gt?: number; - /** - * Epoch when validator became eligible for activation (filter: gte) - */ - activation_eligibility_epoch_gte?: number; - /** - * Epoch when validator became eligible for activation (filter: between_min) - */ - activation_eligibility_epoch_between_min?: number; - /** - * Epoch when validator became eligible for activation (filter: between_max_value) - */ - activation_eligibility_epoch_between_max_value?: number; - /** - * Epoch when validator became eligible for activation (filter: in_values) (comma-separated list) - */ - activation_eligibility_epoch_in_values?: string; - /** - * Epoch when validator became eligible for activation (filter: not_in_values) (comma-separated list) - */ - activation_eligibility_epoch_not_in_values?: string; - /** - * Epoch when exit is/was scheduled (filter: eq) - */ - exit_epoch_eq?: number; - /** - * Epoch when exit is/was scheduled (filter: ne) - */ - exit_epoch_ne?: number; - /** - * Epoch when exit is/was scheduled (filter: lt) - */ - exit_epoch_lt?: number; - /** - * Epoch when exit is/was scheduled (filter: lte) - */ - exit_epoch_lte?: number; - /** - * Epoch when exit is/was scheduled (filter: gt) - */ - exit_epoch_gt?: number; - /** - * Epoch when exit is/was scheduled (filter: gte) - */ - exit_epoch_gte?: number; - /** - * Epoch when exit is/was scheduled (filter: between_min) - */ - exit_epoch_between_min?: number; - /** - * Epoch when exit is/was scheduled (filter: between_max_value) - */ - exit_epoch_between_max_value?: number; - /** - * Epoch when exit is/was scheduled (filter: in_values) (comma-separated list) - */ - exit_epoch_in_values?: string; - /** - * Epoch when exit is/was scheduled (filter: not_in_values) (comma-separated list) - */ - exit_epoch_not_in_values?: string; - /** - * Epoch when withdrawal becomes possible (filter: eq) - */ - withdrawable_epoch_eq?: number; - /** - * Epoch when withdrawal becomes possible (filter: ne) - */ - withdrawable_epoch_ne?: number; - /** - * Epoch when withdrawal becomes possible (filter: lt) - */ - withdrawable_epoch_lt?: number; - /** - * Epoch when withdrawal becomes possible (filter: lte) - */ - withdrawable_epoch_lte?: number; - /** - * Epoch when withdrawal becomes possible (filter: gt) - */ - withdrawable_epoch_gt?: number; - /** - * Epoch when withdrawal becomes possible (filter: gte) - */ - withdrawable_epoch_gte?: number; - /** - * Epoch when withdrawal becomes possible (filter: between_min) - */ - withdrawable_epoch_between_min?: number; - /** - * Epoch when withdrawal becomes possible (filter: between_max_value) - */ - withdrawable_epoch_between_max_value?: number; - /** - * Epoch when withdrawal becomes possible (filter: in_values) (comma-separated list) - */ - withdrawable_epoch_in_values?: string; - /** - * Epoch when withdrawal becomes possible (filter: not_in_values) (comma-separated list) - */ - withdrawable_epoch_not_in_values?: string; - /** - * Whether the validator was slashed at this transition (filter: eq) - */ - slashed_eq?: boolean; - /** - * Whether the validator was slashed at this transition (filter: ne) - */ - slashed_ne?: boolean; - /** - * The maximum number of dim_validator_status to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListDimValidatorStatus` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/dim_validator_status'; -}; - -export type DimValidatorStatusServiceListErrors = { + depth_gte?: number; /** - * Default error response + * Call depth (0 = root transaction execution) (filter: between_min) */ - default: Status; -}; - -export type DimValidatorStatusServiceListError = DimValidatorStatusServiceListErrors[keyof DimValidatorStatusServiceListErrors]; - -export type DimValidatorStatusServiceListResponses = { + depth_between_min?: number; /** - * OK + * Call depth (0 = root transaction execution) (filter: between_max_value) */ - 200: ListDimValidatorStatusResponse; -}; - -export type DimValidatorStatusServiceListResponse = DimValidatorStatusServiceListResponses[keyof DimValidatorStatusServiceListResponses]; - -export type DimValidatorStatusServiceGetData = { - body?: never; - path: { - /** - * The index of the validator - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/dim_validator_status/{validator_index}'; -}; - -export type DimValidatorStatusServiceGetErrors = { + depth_between_max_value?: number; /** - * Default error response + * Call depth (0 = root transaction execution) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type DimValidatorStatusServiceGetError = DimValidatorStatusServiceGetErrors[keyof DimValidatorStatusServiceGetErrors]; - -export type DimValidatorStatusServiceGetResponses = { + depth_in_values?: string; /** - * OK + * Call depth (0 = root transaction execution) (filter: not_in_values) (comma-separated list) */ - 200: GetDimValidatorStatusResponse; -}; - -export type DimValidatorStatusServiceGetResponse = DimValidatorStatusServiceGetResponses[keyof DimValidatorStatusServiceGetResponses]; - -export type FctAttestationCorrectnessByValidatorCanonicalServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The index of the validator attesting (filter: eq) - */ - attesting_validator_index_eq?: number; - /** - * The index of the validator attesting (filter: ne) - */ - attesting_validator_index_ne?: number; - /** - * The index of the validator attesting (filter: lt) - */ - attesting_validator_index_lt?: number; - /** - * The index of the validator attesting (filter: lte) - */ - attesting_validator_index_lte?: number; - /** - * The index of the validator attesting (filter: gt) - */ - attesting_validator_index_gt?: number; - /** - * The index of the validator attesting (filter: gte) - */ - attesting_validator_index_gte?: number; - /** - * The index of the validator attesting (filter: between_min) - */ - attesting_validator_index_between_min?: number; - /** - * The index of the validator attesting (filter: between_max_value) - */ - attesting_validator_index_between_max_value?: number; - /** - * The index of the validator attesting (filter: in_values) (comma-separated list) - */ - attesting_validator_index_in_values?: string; - /** - * The index of the validator attesting (filter: not_in_values) (comma-separated list) - */ - attesting_validator_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The beacon block root hash that was attested (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash that was attested (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash that was attested (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash that was attested (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash that was attested (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash that was attested (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash that was attested (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash that was attested (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash that was attested (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: eq) - */ - slot_distance_eq?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: ne) - */ - slot_distance_ne?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: lt) - */ - slot_distance_lt?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: lte) - */ - slot_distance_lte?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: gt) - */ - slot_distance_gt?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: gte) - */ - slot_distance_gte?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: between_min) - */ - slot_distance_between_min?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: between_max_value) - */ - slot_distance_between_max_value?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: in_values) (comma-separated list) - */ - slot_distance_in_values?: string; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: not_in_values) (comma-separated list) - */ - slot_distance_not_in_values?: string; - /** - * The distance from the slot when the attestation was included in a block (filter: eq) - */ - inclusion_distance_eq?: number; - /** - * The distance from the slot when the attestation was included in a block (filter: ne) - */ - inclusion_distance_ne?: number; - /** - * The distance from the slot when the attestation was included in a block (filter: lt) - */ - inclusion_distance_lt?: number; - /** - * The distance from the slot when the attestation was included in a block (filter: lte) - */ - inclusion_distance_lte?: number; - /** - * The distance from the slot when the attestation was included in a block (filter: gt) - */ - inclusion_distance_gt?: number; - /** - * The distance from the slot when the attestation was included in a block (filter: gte) - */ - inclusion_distance_gte?: number; - /** - * The distance from the slot when the attestation was included in a block (filter: between_min) - */ - inclusion_distance_between_min?: number; - /** - * The distance from the slot when the attestation was included in a block (filter: between_max_value) - */ - inclusion_distance_between_max_value?: number; - /** - * The distance from the slot when the attestation was included in a block (filter: in_values) (comma-separated list) - */ - inclusion_distance_in_values?: string; - /** - * The distance from the slot when the attestation was included in a block (filter: not_in_values) (comma-separated list) - */ - inclusion_distance_not_in_values?: string; - /** - * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: eq) - */ - status_eq?: string; - /** - * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: ne) - */ - status_ne?: string; - /** - * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: contains) - */ - status_contains?: string; - /** - * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: starts_with) - */ - status_starts_with?: string; - /** - * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: ends_with) - */ - status_ends_with?: string; - /** - * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: like) - */ - status_like?: string; - /** - * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: not_like) - */ - status_not_like?: string; - /** - * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Can be "canonical", "orphaned", "missed" or "unknown" (validator attested but block data not available) (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * The maximum number of fct_attestation_correctness_by_validator_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationCorrectnessByValidatorCanonical` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_correctness_by_validator_canonical'; -}; - -export type FctAttestationCorrectnessByValidatorCanonicalServiceListErrors = { + depth_not_in_values?: string; /** - * Default error response + * Contract address being called (hex encoded with 0x prefix) (filter: eq) */ - default: Status; -}; - -export type FctAttestationCorrectnessByValidatorCanonicalServiceListError = FctAttestationCorrectnessByValidatorCanonicalServiceListErrors[keyof FctAttestationCorrectnessByValidatorCanonicalServiceListErrors]; - -export type FctAttestationCorrectnessByValidatorCanonicalServiceListResponses = { + target_address_eq?: string; /** - * OK + * Contract address being called (hex encoded with 0x prefix) (filter: ne) */ - 200: ListFctAttestationCorrectnessByValidatorCanonicalResponse; -}; - -export type FctAttestationCorrectnessByValidatorCanonicalServiceListResponse = FctAttestationCorrectnessByValidatorCanonicalServiceListResponses[keyof FctAttestationCorrectnessByValidatorCanonicalServiceListResponses]; - -export type FctAttestationCorrectnessByValidatorCanonicalServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_attestation_correctness_by_validator_canonical/{slot_start_date_time}'; -}; - -export type FctAttestationCorrectnessByValidatorCanonicalServiceGetErrors = { + target_address_ne?: string; /** - * Default error response + * Contract address being called (hex encoded with 0x prefix) (filter: contains) */ - default: Status; -}; - -export type FctAttestationCorrectnessByValidatorCanonicalServiceGetError = FctAttestationCorrectnessByValidatorCanonicalServiceGetErrors[keyof FctAttestationCorrectnessByValidatorCanonicalServiceGetErrors]; - -export type FctAttestationCorrectnessByValidatorCanonicalServiceGetResponses = { + target_address_contains?: string; /** - * OK + * Contract address being called (hex encoded with 0x prefix) (filter: starts_with) */ - 200: GetFctAttestationCorrectnessByValidatorCanonicalResponse; -}; - -export type FctAttestationCorrectnessByValidatorCanonicalServiceGetResponse = FctAttestationCorrectnessByValidatorCanonicalServiceGetResponses[keyof FctAttestationCorrectnessByValidatorCanonicalServiceGetResponses]; - -export type FctAttestationCorrectnessByValidatorHeadServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The index of the validator attesting (filter: eq) - */ - attesting_validator_index_eq?: number; - /** - * The index of the validator attesting (filter: ne) - */ - attesting_validator_index_ne?: number; - /** - * The index of the validator attesting (filter: lt) - */ - attesting_validator_index_lt?: number; - /** - * The index of the validator attesting (filter: lte) - */ - attesting_validator_index_lte?: number; - /** - * The index of the validator attesting (filter: gt) - */ - attesting_validator_index_gt?: number; - /** - * The index of the validator attesting (filter: gte) - */ - attesting_validator_index_gte?: number; - /** - * The index of the validator attesting (filter: between_min) - */ - attesting_validator_index_between_min?: number; - /** - * The index of the validator attesting (filter: between_max_value) - */ - attesting_validator_index_between_max_value?: number; - /** - * The index of the validator attesting (filter: in_values) (comma-separated list) - */ - attesting_validator_index_in_values?: string; - /** - * The index of the validator attesting (filter: not_in_values) (comma-separated list) - */ - attesting_validator_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: eq) - */ - slot_distance_eq?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: ne) - */ - slot_distance_ne?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: lt) - */ - slot_distance_lt?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: lte) - */ - slot_distance_lte?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: gt) - */ - slot_distance_gt?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: gte) - */ - slot_distance_gte?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: between_min) - */ - slot_distance_between_min?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: between_max_value) - */ - slot_distance_between_max_value?: number; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: in_values) (comma-separated list) - */ - slot_distance_in_values?: string; - /** - * The distance from the slot to the attested block. If the attested block is the same as the slot, the distance is 0, if the attested block is the previous slot, the distance is 1, etc. If null, the attestation was missed, the block was orphaned and never seen by a sentry or the block was more than 64 slots ago (filter: not_in_values) (comma-separated list) - */ - slot_distance_not_in_values?: string; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: eq) - */ - propagation_distance_eq?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: ne) - */ - propagation_distance_ne?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: lt) - */ - propagation_distance_lt?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: lte) - */ - propagation_distance_lte?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: gt) - */ - propagation_distance_gt?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: gte) - */ - propagation_distance_gte?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: between_min) - */ - propagation_distance_between_min?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: between_max_value) - */ - propagation_distance_between_max_value?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: in_values) (comma-separated list) - */ - propagation_distance_in_values?: string; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: not_in_values) (comma-separated list) - */ - propagation_distance_not_in_values?: string; - /** - * The maximum number of fct_attestation_correctness_by_validator_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationCorrectnessByValidatorHead` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_correctness_by_validator_head'; -}; - -export type FctAttestationCorrectnessByValidatorHeadServiceListErrors = { + target_address_starts_with?: string; /** - * Default error response + * Contract address being called (hex encoded with 0x prefix) (filter: ends_with) */ - default: Status; -}; - -export type FctAttestationCorrectnessByValidatorHeadServiceListError = FctAttestationCorrectnessByValidatorHeadServiceListErrors[keyof FctAttestationCorrectnessByValidatorHeadServiceListErrors]; - -export type FctAttestationCorrectnessByValidatorHeadServiceListResponses = { + target_address_ends_with?: string; + /** + * Contract address being called (hex encoded with 0x prefix) (filter: like) + */ + target_address_like?: string; /** - * OK + * Contract address being called (hex encoded with 0x prefix) (filter: not_like) */ - 200: ListFctAttestationCorrectnessByValidatorHeadResponse; -}; - -export type FctAttestationCorrectnessByValidatorHeadServiceListResponse = FctAttestationCorrectnessByValidatorHeadServiceListResponses[keyof FctAttestationCorrectnessByValidatorHeadServiceListResponses]; - -export type FctAttestationCorrectnessByValidatorHeadServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_attestation_correctness_by_validator_head/{slot_start_date_time}'; -}; - -export type FctAttestationCorrectnessByValidatorHeadServiceGetErrors = { + target_address_not_like?: string; /** - * Default error response + * Contract address being called (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctAttestationCorrectnessByValidatorHeadServiceGetError = FctAttestationCorrectnessByValidatorHeadServiceGetErrors[keyof FctAttestationCorrectnessByValidatorHeadServiceGetErrors]; - -export type FctAttestationCorrectnessByValidatorHeadServiceGetResponses = { + target_address_in_values?: string; /** - * OK + * Contract address being called (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) */ - 200: GetFctAttestationCorrectnessByValidatorHeadResponse; -}; - -export type FctAttestationCorrectnessByValidatorHeadServiceGetResponse = FctAttestationCorrectnessByValidatorHeadServiceGetResponses[keyof FctAttestationCorrectnessByValidatorHeadServiceGetResponses]; - -export type FctAttestationCorrectnessCanonicalServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The beacon block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The maximum number of scheduled votes for the block (filter: eq) - */ - votes_max_eq?: number; - /** - * The maximum number of scheduled votes for the block (filter: ne) - */ - votes_max_ne?: number; - /** - * The maximum number of scheduled votes for the block (filter: lt) - */ - votes_max_lt?: number; - /** - * The maximum number of scheduled votes for the block (filter: lte) - */ - votes_max_lte?: number; - /** - * The maximum number of scheduled votes for the block (filter: gt) - */ - votes_max_gt?: number; - /** - * The maximum number of scheduled votes for the block (filter: gte) - */ - votes_max_gte?: number; - /** - * The maximum number of scheduled votes for the block (filter: between_min) - */ - votes_max_between_min?: number; - /** - * The maximum number of scheduled votes for the block (filter: between_max_value) - */ - votes_max_between_max_value?: number; - /** - * The maximum number of scheduled votes for the block (filter: in_values) (comma-separated list) - */ - votes_max_in_values?: string; - /** - * The maximum number of scheduled votes for the block (filter: not_in_values) (comma-separated list) - */ - votes_max_not_in_values?: string; - /** - * The number of votes for the block proposed in the current slot (filter: eq) - */ - votes_head_eq?: number; - /** - * The number of votes for the block proposed in the current slot (filter: ne) - */ - votes_head_ne?: number; - /** - * The number of votes for the block proposed in the current slot (filter: lt) - */ - votes_head_lt?: number; - /** - * The number of votes for the block proposed in the current slot (filter: lte) - */ - votes_head_lte?: number; - /** - * The number of votes for the block proposed in the current slot (filter: gt) - */ - votes_head_gt?: number; - /** - * The number of votes for the block proposed in the current slot (filter: gte) - */ - votes_head_gte?: number; - /** - * The number of votes for the block proposed in the current slot (filter: between_min) - */ - votes_head_between_min?: number; - /** - * The number of votes for the block proposed in the current slot (filter: between_max_value) - */ - votes_head_between_max_value?: number; - /** - * The number of votes for the block proposed in the current slot (filter: in_values) (comma-separated list) - */ - votes_head_in_values?: string; - /** - * The number of votes for the block proposed in the current slot (filter: not_in_values) (comma-separated list) - */ - votes_head_not_in_values?: string; - /** - * The number of votes for any blocks proposed in previous slots (filter: eq) - */ - votes_other_eq?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: ne) - */ - votes_other_ne?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: lt) - */ - votes_other_lt?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: lte) - */ - votes_other_lte?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: gt) - */ - votes_other_gt?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: gte) - */ - votes_other_gte?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: between_min) - */ - votes_other_between_min?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: between_max_value) - */ - votes_other_between_max_value?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: in_values) (comma-separated list) - */ - votes_other_in_values?: string; - /** - * The number of votes for any blocks proposed in previous slots (filter: not_in_values) (comma-separated list) - */ - votes_other_not_in_values?: string; - /** - * The maximum number of fct_attestation_correctness_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationCorrectnessCanonical` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_correctness_canonical'; -}; - -export type FctAttestationCorrectnessCanonicalServiceListErrors = { + target_address_not_in_values?: string; /** - * Default error response + * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: eq) */ - default: Status; -}; - -export type FctAttestationCorrectnessCanonicalServiceListError = FctAttestationCorrectnessCanonicalServiceListErrors[keyof FctAttestationCorrectnessCanonicalServiceListErrors]; - -export type FctAttestationCorrectnessCanonicalServiceListResponses = { + call_type_eq?: string; /** - * OK + * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: ne) */ - 200: ListFctAttestationCorrectnessCanonicalResponse; -}; - -export type FctAttestationCorrectnessCanonicalServiceListResponse = FctAttestationCorrectnessCanonicalServiceListResponses[keyof FctAttestationCorrectnessCanonicalServiceListResponses]; - -export type FctAttestationCorrectnessCanonicalServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_attestation_correctness_canonical/{slot_start_date_time}'; -}; - -export type FctAttestationCorrectnessCanonicalServiceGetErrors = { + call_type_ne?: string; /** - * Default error response + * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: contains) */ - default: Status; -}; - -export type FctAttestationCorrectnessCanonicalServiceGetError = FctAttestationCorrectnessCanonicalServiceGetErrors[keyof FctAttestationCorrectnessCanonicalServiceGetErrors]; - -export type FctAttestationCorrectnessCanonicalServiceGetResponses = { + call_type_contains?: string; /** - * OK + * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: starts_with) */ - 200: GetFctAttestationCorrectnessCanonicalResponse; -}; - -export type FctAttestationCorrectnessCanonicalServiceGetResponse = FctAttestationCorrectnessCanonicalServiceGetResponses[keyof FctAttestationCorrectnessCanonicalServiceGetResponses]; - -export type FctAttestationCorrectnessHeadServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The beacon block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The maximum number of scheduled votes for the block (filter: eq) - */ - votes_max_eq?: number; - /** - * The maximum number of scheduled votes for the block (filter: ne) - */ - votes_max_ne?: number; - /** - * The maximum number of scheduled votes for the block (filter: lt) - */ - votes_max_lt?: number; - /** - * The maximum number of scheduled votes for the block (filter: lte) - */ - votes_max_lte?: number; - /** - * The maximum number of scheduled votes for the block (filter: gt) - */ - votes_max_gt?: number; - /** - * The maximum number of scheduled votes for the block (filter: gte) - */ - votes_max_gte?: number; - /** - * The maximum number of scheduled votes for the block (filter: between_min) - */ - votes_max_between_min?: number; - /** - * The maximum number of scheduled votes for the block (filter: between_max_value) - */ - votes_max_between_max_value?: number; - /** - * The maximum number of scheduled votes for the block (filter: in_values) (comma-separated list) - */ - votes_max_in_values?: string; - /** - * The maximum number of scheduled votes for the block (filter: not_in_values) (comma-separated list) - */ - votes_max_not_in_values?: string; - /** - * The number of votes for the block proposed in the current slot (filter: eq) - */ - votes_head_eq?: number; - /** - * The number of votes for the block proposed in the current slot (filter: ne) - */ - votes_head_ne?: number; - /** - * The number of votes for the block proposed in the current slot (filter: lt) - */ - votes_head_lt?: number; - /** - * The number of votes for the block proposed in the current slot (filter: lte) - */ - votes_head_lte?: number; - /** - * The number of votes for the block proposed in the current slot (filter: gt) - */ - votes_head_gt?: number; - /** - * The number of votes for the block proposed in the current slot (filter: gte) - */ - votes_head_gte?: number; - /** - * The number of votes for the block proposed in the current slot (filter: between_min) - */ - votes_head_between_min?: number; - /** - * The number of votes for the block proposed in the current slot (filter: between_max_value) - */ - votes_head_between_max_value?: number; - /** - * The number of votes for the block proposed in the current slot (filter: in_values) (comma-separated list) - */ - votes_head_in_values?: string; - /** - * The number of votes for the block proposed in the current slot (filter: not_in_values) (comma-separated list) - */ - votes_head_not_in_values?: string; - /** - * The number of votes for any blocks proposed in previous slots (filter: eq) - */ - votes_other_eq?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: ne) - */ - votes_other_ne?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: lt) - */ - votes_other_lt?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: lte) - */ - votes_other_lte?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: gt) - */ - votes_other_gt?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: gte) - */ - votes_other_gte?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: between_min) - */ - votes_other_between_min?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: between_max_value) - */ - votes_other_between_max_value?: number; - /** - * The number of votes for any blocks proposed in previous slots (filter: in_values) (comma-separated list) - */ - votes_other_in_values?: string; - /** - * The number of votes for any blocks proposed in previous slots (filter: not_in_values) (comma-separated list) - */ - votes_other_not_in_values?: string; - /** - * The maximum number of fct_attestation_correctness_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationCorrectnessHead` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_correctness_head'; -}; - -export type FctAttestationCorrectnessHeadServiceListErrors = { + call_type_starts_with?: string; /** - * Default error response + * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: ends_with) */ - default: Status; -}; - -export type FctAttestationCorrectnessHeadServiceListError = FctAttestationCorrectnessHeadServiceListErrors[keyof FctAttestationCorrectnessHeadServiceListErrors]; - -export type FctAttestationCorrectnessHeadServiceListResponses = { + call_type_ends_with?: string; /** - * OK + * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: like) */ - 200: ListFctAttestationCorrectnessHeadResponse; -}; - -export type FctAttestationCorrectnessHeadServiceListResponse = FctAttestationCorrectnessHeadServiceListResponses[keyof FctAttestationCorrectnessHeadServiceListResponses]; - -export type FctAttestationCorrectnessHeadServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_attestation_correctness_head/{slot_start_date_time}'; -}; - -export type FctAttestationCorrectnessHeadServiceGetErrors = { + call_type_like?: string; /** - * Default error response + * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: not_like) */ - default: Status; -}; - -export type FctAttestationCorrectnessHeadServiceGetError = FctAttestationCorrectnessHeadServiceGetErrors[keyof FctAttestationCorrectnessHeadServiceGetErrors]; - -export type FctAttestationCorrectnessHeadServiceGetResponses = { + call_type_not_like?: string; /** - * OK + * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: in_values) (comma-separated list) */ - 200: GetFctAttestationCorrectnessHeadResponse; -}; - -export type FctAttestationCorrectnessHeadServiceGetResponse = FctAttestationCorrectnessHeadServiceGetResponses[keyof FctAttestationCorrectnessHeadServiceGetResponses]; - -export type FctAttestationFirstSeenByValidatorServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The validator index (filter: eq) - */ - validator_index_eq?: number; - /** - * The validator index (filter: ne) - */ - validator_index_ne?: number; - /** - * The validator index (filter: lt) - */ - validator_index_lt?: number; - /** - * The validator index (filter: lte) - */ - validator_index_lte?: number; - /** - * The validator index (filter: gt) - */ - validator_index_gt?: number; - /** - * The validator index (filter: gte) - */ - validator_index_gte?: number; - /** - * The validator index (filter: between_min) - */ - validator_index_between_min?: number; - /** - * The validator index (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * The validator index (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * The validator index (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * Head vote (beacon block root) for this attestation (filter: eq) - */ - block_root_eq?: string; - /** - * Head vote (beacon block root) for this attestation (filter: ne) - */ - block_root_ne?: string; - /** - * Head vote (beacon block root) for this attestation (filter: contains) - */ - block_root_contains?: string; - /** - * Head vote (beacon block root) for this attestation (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * Head vote (beacon block root) for this attestation (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * Head vote (beacon block root) for this attestation (filter: like) - */ - block_root_like?: string; - /** - * Head vote (beacon block root) for this attestation (filter: not_like) - */ - block_root_not_like?: string; - /** - * Head vote (beacon block root) for this attestation (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * Head vote (beacon block root) for this attestation (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Source checkpoint epoch for this attestation (filter: eq) - */ - source_epoch_eq?: number; - /** - * Source checkpoint epoch for this attestation (filter: ne) - */ - source_epoch_ne?: number; - /** - * Source checkpoint epoch for this attestation (filter: lt) - */ - source_epoch_lt?: number; - /** - * Source checkpoint epoch for this attestation (filter: lte) - */ - source_epoch_lte?: number; - /** - * Source checkpoint epoch for this attestation (filter: gt) - */ - source_epoch_gt?: number; - /** - * Source checkpoint epoch for this attestation (filter: gte) - */ - source_epoch_gte?: number; - /** - * Source checkpoint epoch for this attestation (filter: between_min) - */ - source_epoch_between_min?: number; - /** - * Source checkpoint epoch for this attestation (filter: between_max_value) - */ - source_epoch_between_max_value?: number; - /** - * Source checkpoint epoch for this attestation (filter: in_values) (comma-separated list) - */ - source_epoch_in_values?: string; - /** - * Source checkpoint epoch for this attestation (filter: not_in_values) (comma-separated list) - */ - source_epoch_not_in_values?: string; - /** - * Source checkpoint root for this attestation (filter: eq) - */ - source_root_eq?: string; - /** - * Source checkpoint root for this attestation (filter: ne) - */ - source_root_ne?: string; - /** - * Source checkpoint root for this attestation (filter: contains) - */ - source_root_contains?: string; - /** - * Source checkpoint root for this attestation (filter: starts_with) - */ - source_root_starts_with?: string; - /** - * Source checkpoint root for this attestation (filter: ends_with) - */ - source_root_ends_with?: string; - /** - * Source checkpoint root for this attestation (filter: like) - */ - source_root_like?: string; - /** - * Source checkpoint root for this attestation (filter: not_like) - */ - source_root_not_like?: string; - /** - * Source checkpoint root for this attestation (filter: in_values) (comma-separated list) - */ - source_root_in_values?: string; - /** - * Source checkpoint root for this attestation (filter: not_in_values) (comma-separated list) - */ - source_root_not_in_values?: string; - /** - * Target checkpoint epoch for this attestation (filter: eq) - */ - target_epoch_eq?: number; - /** - * Target checkpoint epoch for this attestation (filter: ne) - */ - target_epoch_ne?: number; - /** - * Target checkpoint epoch for this attestation (filter: lt) - */ - target_epoch_lt?: number; - /** - * Target checkpoint epoch for this attestation (filter: lte) - */ - target_epoch_lte?: number; - /** - * Target checkpoint epoch for this attestation (filter: gt) - */ - target_epoch_gt?: number; - /** - * Target checkpoint epoch for this attestation (filter: gte) - */ - target_epoch_gte?: number; - /** - * Target checkpoint epoch for this attestation (filter: between_min) - */ - target_epoch_between_min?: number; - /** - * Target checkpoint epoch for this attestation (filter: between_max_value) - */ - target_epoch_between_max_value?: number; - /** - * Target checkpoint epoch for this attestation (filter: in_values) (comma-separated list) - */ - target_epoch_in_values?: string; - /** - * Target checkpoint epoch for this attestation (filter: not_in_values) (comma-separated list) - */ - target_epoch_not_in_values?: string; - /** - * Target checkpoint root for this attestation (filter: eq) - */ - target_root_eq?: string; - /** - * Target checkpoint root for this attestation (filter: ne) - */ - target_root_ne?: string; - /** - * Target checkpoint root for this attestation (filter: contains) - */ - target_root_contains?: string; - /** - * Target checkpoint root for this attestation (filter: starts_with) - */ - target_root_starts_with?: string; - /** - * Target checkpoint root for this attestation (filter: ends_with) - */ - target_root_ends_with?: string; - /** - * Target checkpoint root for this attestation (filter: like) - */ - target_root_like?: string; - /** - * Target checkpoint root for this attestation (filter: not_like) - */ - target_root_not_like?: string; - /** - * Target checkpoint root for this attestation (filter: in_values) (comma-separated list) - */ - target_root_in_values?: string; - /** - * Target checkpoint root for this attestation (filter: not_in_values) (comma-separated list) - */ - target_root_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot the validator was attesting for (filter: eq) - */ - slot_eq?: number; - /** - * The slot the validator was attesting for (filter: ne) - */ - slot_ne?: number; - /** - * The slot the validator was attesting for (filter: lt) - */ - slot_lt?: number; - /** - * The slot the validator was attesting for (filter: lte) - */ - slot_lte?: number; - /** - * The slot the validator was attesting for (filter: gt) - */ - slot_gt?: number; - /** - * The slot the validator was attesting for (filter: gte) - */ - slot_gte?: number; - /** - * The slot the validator was attesting for (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot the validator was attesting for (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot the validator was attesting for (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot the validator was attesting for (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The committee the validator was assigned to for this slot (filter: eq) - */ - committee_index_eq?: string; - /** - * The committee the validator was assigned to for this slot (filter: ne) - */ - committee_index_ne?: string; - /** - * The committee the validator was assigned to for this slot (filter: contains) - */ - committee_index_contains?: string; - /** - * The committee the validator was assigned to for this slot (filter: starts_with) - */ - committee_index_starts_with?: string; - /** - * The committee the validator was assigned to for this slot (filter: ends_with) - */ - committee_index_ends_with?: string; - /** - * The committee the validator was assigned to for this slot (filter: like) - */ - committee_index_like?: string; - /** - * The committee the validator was assigned to for this slot (filter: not_like) - */ - committee_index_not_like?: string; - /** - * The committee the validator was assigned to for this slot (filter: in_values) (comma-separated list) - */ - committee_index_in_values?: string; - /** - * The committee the validator was assigned to for this slot (filter: not_in_values) (comma-separated list) - */ - committee_index_not_in_values?: string; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: eq) - */ - raw_seen_slot_start_diff_eq?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: ne) - */ - raw_seen_slot_start_diff_ne?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: lt) - */ - raw_seen_slot_start_diff_lt?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: lte) - */ - raw_seen_slot_start_diff_lte?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: gt) - */ - raw_seen_slot_start_diff_gt?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: gte) - */ - raw_seen_slot_start_diff_gte?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: between_min) - */ - raw_seen_slot_start_diff_between_min?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: between_max_value) - */ - raw_seen_slot_start_diff_between_max_value?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: in_values) (comma-separated list) - */ - raw_seen_slot_start_diff_in_values?: string; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen as an unaggregated attestation. NULL if never seen raw. (filter: not_in_values) (comma-separated list) - */ - raw_seen_slot_start_diff_not_in_values?: string; - /** - * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: eq) - */ - raw_source_eq?: string; - /** - * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: ne) - */ - raw_source_ne?: string; - /** - * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: contains) - */ - raw_source_contains?: string; - /** - * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: starts_with) - */ - raw_source_starts_with?: string; - /** - * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: ends_with) - */ - raw_source_ends_with?: string; - /** - * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: like) - */ - raw_source_like?: string; - /** - * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: not_like) - */ - raw_source_not_like?: string; - /** - * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: in_values) (comma-separated list) - */ - raw_source_in_values?: string; - /** - * Source the raw attestation was first observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_beacon_attestation, or empty) (filter: not_in_values) (comma-separated list) - */ - raw_source_not_in_values?: string; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: eq) - */ - agg_seen_slot_start_diff_eq?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: ne) - */ - agg_seen_slot_start_diff_ne?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: lt) - */ - agg_seen_slot_start_diff_lt?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: lte) - */ - agg_seen_slot_start_diff_lte?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: gt) - */ - agg_seen_slot_start_diff_gt?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: gte) - */ - agg_seen_slot_start_diff_gte?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: between_min) - */ - agg_seen_slot_start_diff_between_min?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: between_max_value) - */ - agg_seen_slot_start_diff_between_max_value?: number; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: in_values) (comma-separated list) - */ - agg_seen_slot_start_diff_in_values?: string; - /** - * Earliest time (ms after slot start) this (validator, vote) was seen inside an aggregate. NULL if never seen in an aggregate. (filter: not_in_values) (comma-separated list) - */ - agg_seen_slot_start_diff_not_in_values?: string; - /** - * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: eq) - */ - agg_source_eq?: string; - /** - * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: ne) - */ - agg_source_ne?: string; - /** - * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: contains) - */ - agg_source_contains?: string; - /** - * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: starts_with) - */ - agg_source_starts_with?: string; - /** - * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: ends_with) - */ - agg_source_ends_with?: string; - /** - * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: like) - */ - agg_source_like?: string; - /** - * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: not_like) - */ - agg_source_not_like?: string; - /** - * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: in_values) (comma-separated list) - */ - agg_source_in_values?: string; - /** - * Source the earliest aggregate was observed from (beacon_api_eth_v1_events_attestation, libp2p_gossipsub_aggregate_and_proof, or empty) (filter: not_in_values) (comma-separated list) - */ - agg_source_not_in_values?: string; - /** - * The maximum number of fct_attestation_first_seen_by_validator to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationFirstSeenByValidator` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_first_seen_by_validator'; -}; - -export type FctAttestationFirstSeenByValidatorServiceListErrors = { + call_type_in_values?: string; /** - * Default error response + * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctAttestationFirstSeenByValidatorServiceListError = FctAttestationFirstSeenByValidatorServiceListErrors[keyof FctAttestationFirstSeenByValidatorServiceListErrors]; - -export type FctAttestationFirstSeenByValidatorServiceListResponses = { + call_type_not_in_values?: string; /** - * OK + * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: eq) */ - 200: ListFctAttestationFirstSeenByValidatorResponse; -}; - -export type FctAttestationFirstSeenByValidatorServiceListResponse = FctAttestationFirstSeenByValidatorServiceListResponses[keyof FctAttestationFirstSeenByValidatorServiceListResponses]; - -export type FctAttestationFirstSeenByValidatorServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_attestation_first_seen_by_validator/{slot_start_date_time}'; -}; - -export type FctAttestationFirstSeenByValidatorServiceGetErrors = { + function_selector_eq?: string; /** - * Default error response + * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: ne) */ - default: Status; -}; - -export type FctAttestationFirstSeenByValidatorServiceGetError = FctAttestationFirstSeenByValidatorServiceGetErrors[keyof FctAttestationFirstSeenByValidatorServiceGetErrors]; - -export type FctAttestationFirstSeenByValidatorServiceGetResponses = { + function_selector_ne?: string; /** - * OK + * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: contains) */ - 200: GetFctAttestationFirstSeenByValidatorResponse; -}; - -export type FctAttestationFirstSeenByValidatorServiceGetResponse = FctAttestationFirstSeenByValidatorServiceGetResponses[keyof FctAttestationFirstSeenByValidatorServiceGetResponses]; - -export type FctAttestationFirstSeenChunked50MsServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash that was attested, null means the attestation was missed (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: eq) - */ - chunk_slot_start_diff_eq?: number; - /** - * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: ne) - */ - chunk_slot_start_diff_ne?: number; - /** - * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: lt) - */ - chunk_slot_start_diff_lt?: number; - /** - * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: lte) - */ - chunk_slot_start_diff_lte?: number; - /** - * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: gt) - */ - chunk_slot_start_diff_gt?: number; - /** - * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: gte) - */ - chunk_slot_start_diff_gte?: number; - /** - * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: between_min) - */ - chunk_slot_start_diff_between_min?: number; - /** - * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: between_max_value) - */ - chunk_slot_start_diff_between_max_value?: number; - /** - * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: in_values) (comma-separated list) - */ - chunk_slot_start_diff_in_values?: string; - /** - * The different between the chunk start time and slot_start_date_time. "1500" would mean this chunk contains attestations first seen between 1500ms 1550ms into the slot (filter: not_in_values) (comma-separated list) - */ - chunk_slot_start_diff_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The number of attestations in this chunk (filter: eq) - */ - attestation_count_eq?: number; - /** - * The number of attestations in this chunk (filter: ne) - */ - attestation_count_ne?: number; - /** - * The number of attestations in this chunk (filter: lt) - */ - attestation_count_lt?: number; - /** - * The number of attestations in this chunk (filter: lte) - */ - attestation_count_lte?: number; - /** - * The number of attestations in this chunk (filter: gt) - */ - attestation_count_gt?: number; - /** - * The number of attestations in this chunk (filter: gte) - */ - attestation_count_gte?: number; - /** - * The number of attestations in this chunk (filter: between_min) - */ - attestation_count_between_min?: number; - /** - * The number of attestations in this chunk (filter: between_max_value) - */ - attestation_count_between_max_value?: number; - /** - * The number of attestations in this chunk (filter: in_values) (comma-separated list) - */ - attestation_count_in_values?: string; - /** - * The number of attestations in this chunk (filter: not_in_values) (comma-separated list) - */ - attestation_count_not_in_values?: string; - /** - * The maximum number of fct_attestation_first_seen_chunked_50ms to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationFirstSeenChunked50ms` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_first_seen_chunked_50ms'; -}; - -export type FctAttestationFirstSeenChunked50MsServiceListErrors = { + function_selector_contains?: string; /** - * Default error response + * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: starts_with) */ - default: Status; -}; - -export type FctAttestationFirstSeenChunked50MsServiceListError = FctAttestationFirstSeenChunked50MsServiceListErrors[keyof FctAttestationFirstSeenChunked50MsServiceListErrors]; - -export type FctAttestationFirstSeenChunked50MsServiceListResponses = { + function_selector_starts_with?: string; /** - * OK + * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: ends_with) */ - 200: ListFctAttestationFirstSeenChunked50MsResponse; -}; - -export type FctAttestationFirstSeenChunked50MsServiceListResponse = FctAttestationFirstSeenChunked50MsServiceListResponses[keyof FctAttestationFirstSeenChunked50MsServiceListResponses]; - -export type FctAttestationFirstSeenChunked50MsServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_attestation_first_seen_chunked_50ms/{slot_start_date_time}'; -}; - -export type FctAttestationFirstSeenChunked50MsServiceGetErrors = { + function_selector_ends_with?: string; /** - * Default error response + * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: like) */ - default: Status; -}; - -export type FctAttestationFirstSeenChunked50MsServiceGetError = FctAttestationFirstSeenChunked50MsServiceGetErrors[keyof FctAttestationFirstSeenChunked50MsServiceGetErrors]; - -export type FctAttestationFirstSeenChunked50MsServiceGetResponses = { + function_selector_like?: string; /** - * OK + * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: not_like) */ - 200: GetFctAttestationFirstSeenChunked50MsResponse; -}; - -export type FctAttestationFirstSeenChunked50MsServiceGetResponse = FctAttestationFirstSeenChunked50MsServiceGetResponses[keyof FctAttestationFirstSeenChunked50MsServiceGetResponses]; - -export type FctAttestationInclusionDelayDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of slots in this day (filter: eq) - */ - slot_count_eq?: number; - /** - * Number of slots in this day (filter: ne) - */ - slot_count_ne?: number; - /** - * Number of slots in this day (filter: lt) - */ - slot_count_lt?: number; - /** - * Number of slots in this day (filter: lte) - */ - slot_count_lte?: number; - /** - * Number of slots in this day (filter: gt) - */ - slot_count_gt?: number; - /** - * Number of slots in this day (filter: gte) - */ - slot_count_gte?: number; - /** - * Number of slots in this day (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Number of slots in this day (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Number of slots in this day (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Number of slots in this day (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * Filter avg_inclusion_delay using value - */ - avg_inclusion_delay_value?: number; - /** - * Filter min_inclusion_delay using value - */ - min_inclusion_delay_value?: number; - /** - * Filter max_inclusion_delay using value - */ - max_inclusion_delay_value?: number; - /** - * Filter p05_inclusion_delay using value - */ - p05_inclusion_delay_value?: number; - /** - * Filter p50_inclusion_delay using value - */ - p50_inclusion_delay_value?: number; - /** - * Filter p95_inclusion_delay using value - */ - p95_inclusion_delay_value?: number; - /** - * Filter stddev_inclusion_delay using value - */ - stddev_inclusion_delay_value?: number; - /** - * Filter upper_band_inclusion_delay using value - */ - upper_band_inclusion_delay_value?: number; - /** - * Filter lower_band_inclusion_delay using value - */ - lower_band_inclusion_delay_value?: number; - /** - * Filter moving_avg_inclusion_delay using value - */ - moving_avg_inclusion_delay_value?: number; - /** - * The maximum number of fct_attestation_inclusion_delay_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationInclusionDelayDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_inclusion_delay_daily'; -}; - -export type FctAttestationInclusionDelayDailyServiceListErrors = { + function_selector_not_like?: string; /** - * Default error response + * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctAttestationInclusionDelayDailyServiceListError = FctAttestationInclusionDelayDailyServiceListErrors[keyof FctAttestationInclusionDelayDailyServiceListErrors]; - -export type FctAttestationInclusionDelayDailyServiceListResponses = { + function_selector_in_values?: string; /** - * OK + * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: not_in_values) (comma-separated list) */ - 200: ListFctAttestationInclusionDelayDailyResponse; -}; - -export type FctAttestationInclusionDelayDailyServiceListResponse = FctAttestationInclusionDelayDailyServiceListResponses[keyof FctAttestationInclusionDelayDailyServiceListResponses]; - -export type FctAttestationInclusionDelayDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_attestation_inclusion_delay_daily/{day_start_date}'; -}; - -export type FctAttestationInclusionDelayDailyServiceGetErrors = { + function_selector_not_in_values?: string; /** - * Default error response + * Number of opcodes executed in this frame (filter: eq) */ - default: Status; -}; - -export type FctAttestationInclusionDelayDailyServiceGetError = FctAttestationInclusionDelayDailyServiceGetErrors[keyof FctAttestationInclusionDelayDailyServiceGetErrors]; - -export type FctAttestationInclusionDelayDailyServiceGetResponses = { + opcode_count_eq?: number; /** - * OK + * Number of opcodes executed in this frame (filter: ne) */ - 200: GetFctAttestationInclusionDelayDailyResponse; -}; - -export type FctAttestationInclusionDelayDailyServiceGetResponse = FctAttestationInclusionDelayDailyServiceGetResponses[keyof FctAttestationInclusionDelayDailyServiceGetResponses]; - -export type FctAttestationInclusionDelayHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of slots in this hour (filter: eq) - */ - slot_count_eq?: number; - /** - * Number of slots in this hour (filter: ne) - */ - slot_count_ne?: number; - /** - * Number of slots in this hour (filter: lt) - */ - slot_count_lt?: number; - /** - * Number of slots in this hour (filter: lte) - */ - slot_count_lte?: number; - /** - * Number of slots in this hour (filter: gt) - */ - slot_count_gt?: number; - /** - * Number of slots in this hour (filter: gte) - */ - slot_count_gte?: number; - /** - * Number of slots in this hour (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Number of slots in this hour (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Number of slots in this hour (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Number of slots in this hour (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * Filter avg_inclusion_delay using value - */ - avg_inclusion_delay_value?: number; - /** - * Filter min_inclusion_delay using value - */ - min_inclusion_delay_value?: number; - /** - * Filter max_inclusion_delay using value - */ - max_inclusion_delay_value?: number; - /** - * Filter p05_inclusion_delay using value - */ - p05_inclusion_delay_value?: number; - /** - * Filter p50_inclusion_delay using value - */ - p50_inclusion_delay_value?: number; - /** - * Filter p95_inclusion_delay using value - */ - p95_inclusion_delay_value?: number; - /** - * Filter stddev_inclusion_delay using value - */ - stddev_inclusion_delay_value?: number; - /** - * Filter upper_band_inclusion_delay using value - */ - upper_band_inclusion_delay_value?: number; - /** - * Filter lower_band_inclusion_delay using value - */ - lower_band_inclusion_delay_value?: number; - /** - * Filter moving_avg_inclusion_delay using value - */ - moving_avg_inclusion_delay_value?: number; - /** - * The maximum number of fct_attestation_inclusion_delay_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationInclusionDelayHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_inclusion_delay_hourly'; -}; - -export type FctAttestationInclusionDelayHourlyServiceListErrors = { + opcode_count_ne?: number; /** - * Default error response + * Number of opcodes executed in this frame (filter: lt) */ - default: Status; -}; - -export type FctAttestationInclusionDelayHourlyServiceListError = FctAttestationInclusionDelayHourlyServiceListErrors[keyof FctAttestationInclusionDelayHourlyServiceListErrors]; - -export type FctAttestationInclusionDelayHourlyServiceListResponses = { + opcode_count_lt?: number; /** - * OK + * Number of opcodes executed in this frame (filter: lte) */ - 200: ListFctAttestationInclusionDelayHourlyResponse; -}; - -export type FctAttestationInclusionDelayHourlyServiceListResponse = FctAttestationInclusionDelayHourlyServiceListResponses[keyof FctAttestationInclusionDelayHourlyServiceListResponses]; - -export type FctAttestationInclusionDelayHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_attestation_inclusion_delay_hourly/{hour_start_date_time}'; -}; - -export type FctAttestationInclusionDelayHourlyServiceGetErrors = { + opcode_count_lte?: number; /** - * Default error response + * Number of opcodes executed in this frame (filter: gt) */ - default: Status; -}; - -export type FctAttestationInclusionDelayHourlyServiceGetError = FctAttestationInclusionDelayHourlyServiceGetErrors[keyof FctAttestationInclusionDelayHourlyServiceGetErrors]; - -export type FctAttestationInclusionDelayHourlyServiceGetResponses = { + opcode_count_gt?: number; /** - * OK + * Number of opcodes executed in this frame (filter: gte) */ - 200: GetFctAttestationInclusionDelayHourlyResponse; -}; - -export type FctAttestationInclusionDelayHourlyServiceGetResponse = FctAttestationInclusionDelayHourlyServiceGetResponses[keyof FctAttestationInclusionDelayHourlyServiceGetResponses]; - -export type FctAttestationLivenessByEntityHeadServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The entity (staking provider) associated with the validators, unknown if not mapped (filter: eq) - */ - entity_eq?: string; - /** - * The entity (staking provider) associated with the validators, unknown if not mapped (filter: ne) - */ - entity_ne?: string; - /** - * The entity (staking provider) associated with the validators, unknown if not mapped (filter: contains) - */ - entity_contains?: string; - /** - * The entity (staking provider) associated with the validators, unknown if not mapped (filter: starts_with) - */ - entity_starts_with?: string; - /** - * The entity (staking provider) associated with the validators, unknown if not mapped (filter: ends_with) - */ - entity_ends_with?: string; - /** - * The entity (staking provider) associated with the validators, unknown if not mapped (filter: like) - */ - entity_like?: string; - /** - * The entity (staking provider) associated with the validators, unknown if not mapped (filter: not_like) - */ - entity_not_like?: string; - /** - * The entity (staking provider) associated with the validators, unknown if not mapped (filter: in_values) (comma-separated list) - */ - entity_in_values?: string; - /** - * The entity (staking provider) associated with the validators, unknown if not mapped (filter: not_in_values) (comma-separated list) - */ - entity_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Number of attestations for this entity (filter: eq) - */ - attestation_count_eq?: number; - /** - * Number of attestations for this entity (filter: ne) - */ - attestation_count_ne?: number; - /** - * Number of attestations for this entity (filter: lt) - */ - attestation_count_lt?: number; - /** - * Number of attestations for this entity (filter: lte) - */ - attestation_count_lte?: number; - /** - * Number of attestations for this entity (filter: gt) - */ - attestation_count_gt?: number; - /** - * Number of attestations for this entity (filter: gte) - */ - attestation_count_gte?: number; - /** - * Number of attestations for this entity (filter: between_min) - */ - attestation_count_between_min?: number; - /** - * Number of attestations for this entity (filter: between_max_value) - */ - attestation_count_between_max_value?: number; - /** - * Number of attestations for this entity (filter: in_values) (comma-separated list) - */ - attestation_count_in_values?: string; - /** - * Number of attestations for this entity (filter: not_in_values) (comma-separated list) - */ - attestation_count_not_in_values?: string; - /** - * Number of missed attestations for this entity (filter: eq) - */ - missed_count_eq?: number; - /** - * Number of missed attestations for this entity (filter: ne) - */ - missed_count_ne?: number; - /** - * Number of missed attestations for this entity (filter: lt) - */ - missed_count_lt?: number; - /** - * Number of missed attestations for this entity (filter: lte) - */ - missed_count_lte?: number; - /** - * Number of missed attestations for this entity (filter: gt) - */ - missed_count_gt?: number; - /** - * Number of missed attestations for this entity (filter: gte) - */ - missed_count_gte?: number; - /** - * Number of missed attestations for this entity (filter: between_min) - */ - missed_count_between_min?: number; - /** - * Number of missed attestations for this entity (filter: between_max_value) - */ - missed_count_between_max_value?: number; - /** - * Number of missed attestations for this entity (filter: in_values) (comma-separated list) - */ - missed_count_in_values?: string; - /** - * Number of missed attestations for this entity (filter: not_in_values) (comma-separated list) - */ - missed_count_not_in_values?: string; - /** - * The maximum number of fct_attestation_liveness_by_entity_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationLivenessByEntityHead` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_liveness_by_entity_head'; -}; - -export type FctAttestationLivenessByEntityHeadServiceListErrors = { + opcode_count_gte?: number; /** - * Default error response + * Number of opcodes executed in this frame (filter: between_min) */ - default: Status; -}; - -export type FctAttestationLivenessByEntityHeadServiceListError = FctAttestationLivenessByEntityHeadServiceListErrors[keyof FctAttestationLivenessByEntityHeadServiceListErrors]; - -export type FctAttestationLivenessByEntityHeadServiceListResponses = { + opcode_count_between_min?: number; /** - * OK + * Number of opcodes executed in this frame (filter: between_max_value) */ - 200: ListFctAttestationLivenessByEntityHeadResponse; -}; - -export type FctAttestationLivenessByEntityHeadServiceListResponse = FctAttestationLivenessByEntityHeadServiceListResponses[keyof FctAttestationLivenessByEntityHeadServiceListResponses]; - -export type FctAttestationLivenessByEntityHeadServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_attestation_liveness_by_entity_head/{slot_start_date_time}'; -}; - -export type FctAttestationLivenessByEntityHeadServiceGetErrors = { + opcode_count_between_max_value?: number; /** - * Default error response + * Number of opcodes executed in this frame (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctAttestationLivenessByEntityHeadServiceGetError = FctAttestationLivenessByEntityHeadServiceGetErrors[keyof FctAttestationLivenessByEntityHeadServiceGetErrors]; - -export type FctAttestationLivenessByEntityHeadServiceGetResponses = { + opcode_count_in_values?: string; /** - * OK + * Number of opcodes executed in this frame (filter: not_in_values) (comma-separated list) */ - 200: GetFctAttestationLivenessByEntityHeadResponse; -}; - -export type FctAttestationLivenessByEntityHeadServiceGetResponse = FctAttestationLivenessByEntityHeadServiceGetResponses[keyof FctAttestationLivenessByEntityHeadServiceGetResponses]; - -export type FctAttestationObservationByNodeServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Name of the client (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the client (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the client (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the client (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the client (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the client (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the client (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the client (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Number of attestations observed by this node in this slot (filter: eq) - */ - attestation_count_eq?: number; - /** - * Number of attestations observed by this node in this slot (filter: ne) - */ - attestation_count_ne?: number; - /** - * Number of attestations observed by this node in this slot (filter: lt) - */ - attestation_count_lt?: number; - /** - * Number of attestations observed by this node in this slot (filter: lte) - */ - attestation_count_lte?: number; - /** - * Number of attestations observed by this node in this slot (filter: gt) - */ - attestation_count_gt?: number; - /** - * Number of attestations observed by this node in this slot (filter: gte) - */ - attestation_count_gte?: number; - /** - * Number of attestations observed by this node in this slot (filter: between_min) - */ - attestation_count_between_min?: number; - /** - * Number of attestations observed by this node in this slot (filter: between_max_value) - */ - attestation_count_between_max_value?: number; - /** - * Number of attestations observed by this node in this slot (filter: in_values) (comma-separated list) - */ - attestation_count_in_values?: string; - /** - * Number of attestations observed by this node in this slot (filter: not_in_values) (comma-separated list) - */ - attestation_count_not_in_values?: string; - /** - * Average time from slot start to see attestations (milliseconds, rounded) (filter: eq) - */ - avg_seen_slot_start_diff_eq?: number; - /** - * Average time from slot start to see attestations (milliseconds, rounded) (filter: ne) - */ - avg_seen_slot_start_diff_ne?: number; - /** - * Average time from slot start to see attestations (milliseconds, rounded) (filter: lt) - */ - avg_seen_slot_start_diff_lt?: number; - /** - * Average time from slot start to see attestations (milliseconds, rounded) (filter: lte) - */ - avg_seen_slot_start_diff_lte?: number; - /** - * Average time from slot start to see attestations (milliseconds, rounded) (filter: gt) - */ - avg_seen_slot_start_diff_gt?: number; - /** - * Average time from slot start to see attestations (milliseconds, rounded) (filter: gte) - */ - avg_seen_slot_start_diff_gte?: number; - /** - * Average time from slot start to see attestations (milliseconds, rounded) (filter: between_min) - */ - avg_seen_slot_start_diff_between_min?: number; - /** - * Average time from slot start to see attestations (milliseconds, rounded) (filter: between_max_value) - */ - avg_seen_slot_start_diff_between_max_value?: number; - /** - * Average time from slot start to see attestations (milliseconds, rounded) (filter: in_values) (comma-separated list) - */ - avg_seen_slot_start_diff_in_values?: string; - /** - * Average time from slot start to see attestations (milliseconds, rounded) (filter: not_in_values) (comma-separated list) - */ - avg_seen_slot_start_diff_not_in_values?: string; - /** - * Median time from slot start to see attestations (milliseconds, rounded) (filter: eq) - */ - median_seen_slot_start_diff_eq?: number; - /** - * Median time from slot start to see attestations (milliseconds, rounded) (filter: ne) - */ - median_seen_slot_start_diff_ne?: number; - /** - * Median time from slot start to see attestations (milliseconds, rounded) (filter: lt) - */ - median_seen_slot_start_diff_lt?: number; - /** - * Median time from slot start to see attestations (milliseconds, rounded) (filter: lte) - */ - median_seen_slot_start_diff_lte?: number; - /** - * Median time from slot start to see attestations (milliseconds, rounded) (filter: gt) - */ - median_seen_slot_start_diff_gt?: number; - /** - * Median time from slot start to see attestations (milliseconds, rounded) (filter: gte) - */ - median_seen_slot_start_diff_gte?: number; - /** - * Median time from slot start to see attestations (milliseconds, rounded) (filter: between_min) - */ - median_seen_slot_start_diff_between_min?: number; - /** - * Median time from slot start to see attestations (milliseconds, rounded) (filter: between_max_value) - */ - median_seen_slot_start_diff_between_max_value?: number; - /** - * Median time from slot start to see attestations (milliseconds, rounded) (filter: in_values) (comma-separated list) - */ - median_seen_slot_start_diff_in_values?: string; - /** - * Median time from slot start to see attestations (milliseconds, rounded) (filter: not_in_values) (comma-separated list) - */ - median_seen_slot_start_diff_not_in_values?: string; - /** - * Minimum time from slot start to see an attestation (milliseconds) (filter: eq) - */ - min_seen_slot_start_diff_eq?: number; - /** - * Minimum time from slot start to see an attestation (milliseconds) (filter: ne) - */ - min_seen_slot_start_diff_ne?: number; - /** - * Minimum time from slot start to see an attestation (milliseconds) (filter: lt) - */ - min_seen_slot_start_diff_lt?: number; - /** - * Minimum time from slot start to see an attestation (milliseconds) (filter: lte) - */ - min_seen_slot_start_diff_lte?: number; - /** - * Minimum time from slot start to see an attestation (milliseconds) (filter: gt) - */ - min_seen_slot_start_diff_gt?: number; - /** - * Minimum time from slot start to see an attestation (milliseconds) (filter: gte) - */ - min_seen_slot_start_diff_gte?: number; - /** - * Minimum time from slot start to see an attestation (milliseconds) (filter: between_min) - */ - min_seen_slot_start_diff_between_min?: number; - /** - * Minimum time from slot start to see an attestation (milliseconds) (filter: between_max_value) - */ - min_seen_slot_start_diff_between_max_value?: number; - /** - * Minimum time from slot start to see an attestation (milliseconds) (filter: in_values) (comma-separated list) - */ - min_seen_slot_start_diff_in_values?: string; - /** - * Minimum time from slot start to see an attestation (milliseconds) (filter: not_in_values) (comma-separated list) - */ - min_seen_slot_start_diff_not_in_values?: string; - /** - * Maximum time from slot start to see an attestation (milliseconds) (filter: eq) - */ - max_seen_slot_start_diff_eq?: number; - /** - * Maximum time from slot start to see an attestation (milliseconds) (filter: ne) - */ - max_seen_slot_start_diff_ne?: number; - /** - * Maximum time from slot start to see an attestation (milliseconds) (filter: lt) - */ - max_seen_slot_start_diff_lt?: number; - /** - * Maximum time from slot start to see an attestation (milliseconds) (filter: lte) - */ - max_seen_slot_start_diff_lte?: number; - /** - * Maximum time from slot start to see an attestation (milliseconds) (filter: gt) - */ - max_seen_slot_start_diff_gt?: number; - /** - * Maximum time from slot start to see an attestation (milliseconds) (filter: gte) - */ - max_seen_slot_start_diff_gte?: number; - /** - * Maximum time from slot start to see an attestation (milliseconds) (filter: between_min) - */ - max_seen_slot_start_diff_between_min?: number; - /** - * Maximum time from slot start to see an attestation (milliseconds) (filter: between_max_value) - */ - max_seen_slot_start_diff_between_max_value?: number; - /** - * Maximum time from slot start to see an attestation (milliseconds) (filter: in_values) (comma-separated list) - */ - max_seen_slot_start_diff_in_values?: string; - /** - * Maximum time from slot start to see an attestation (milliseconds) (filter: not_in_values) (comma-separated list) - */ - max_seen_slot_start_diff_not_in_values?: string; - /** - * Representative beacon block root (from most common attestation target) (filter: eq) - */ - block_root_eq?: string; - /** - * Representative beacon block root (from most common attestation target) (filter: ne) - */ - block_root_ne?: string; - /** - * Representative beacon block root (from most common attestation target) (filter: contains) - */ - block_root_contains?: string; - /** - * Representative beacon block root (from most common attestation target) (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * Representative beacon block root (from most common attestation target) (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * Representative beacon block root (from most common attestation target) (filter: like) - */ - block_root_like?: string; - /** - * Representative beacon block root (from most common attestation target) (filter: not_like) - */ - block_root_not_like?: string; - /** - * Representative beacon block root (from most common attestation target) (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * Representative beacon block root (from most common attestation target) (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Username of the node (filter: eq) - */ - username_eq?: string; - /** - * Username of the node (filter: ne) - */ - username_ne?: string; - /** - * Username of the node (filter: contains) - */ - username_contains?: string; - /** - * Username of the node (filter: starts_with) - */ - username_starts_with?: string; - /** - * Username of the node (filter: ends_with) - */ - username_ends_with?: string; - /** - * Username of the node (filter: like) - */ - username_like?: string; - /** - * Username of the node (filter: not_like) - */ - username_not_like?: string; - /** - * Username of the node (filter: in_values) (comma-separated list) - */ - username_in_values?: string; - /** - * Username of the node (filter: not_in_values) (comma-separated list) - */ - username_not_in_values?: string; - /** - * ID of the node (filter: eq) - */ - node_id_eq?: string; - /** - * ID of the node (filter: ne) - */ - node_id_ne?: string; - /** - * ID of the node (filter: contains) - */ - node_id_contains?: string; - /** - * ID of the node (filter: starts_with) - */ - node_id_starts_with?: string; - /** - * ID of the node (filter: ends_with) - */ - node_id_ends_with?: string; - /** - * ID of the node (filter: like) - */ - node_id_like?: string; - /** - * ID of the node (filter: not_like) - */ - node_id_not_like?: string; - /** - * ID of the node (filter: in_values) (comma-separated list) - */ - node_id_in_values?: string; - /** - * ID of the node (filter: not_in_values) (comma-separated list) - */ - node_id_not_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) - */ - classification_eq?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) - */ - classification_ne?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) - */ - classification_contains?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) - */ - classification_starts_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) - */ - classification_ends_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) - */ - classification_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) - */ - classification_not_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) - */ - classification_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) - */ - classification_not_in_values?: string; - /** - * Version of the client (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * Implementation of the client (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * City of the client (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * Continent code of the client (filter: eq) - */ - meta_client_geo_continent_code_eq?: string; - /** - * Continent code of the client (filter: ne) - */ - meta_client_geo_continent_code_ne?: string; - /** - * Continent code of the client (filter: contains) - */ - meta_client_geo_continent_code_contains?: string; - /** - * Continent code of the client (filter: starts_with) - */ - meta_client_geo_continent_code_starts_with?: string; - /** - * Continent code of the client (filter: ends_with) - */ - meta_client_geo_continent_code_ends_with?: string; - /** - * Continent code of the client (filter: like) - */ - meta_client_geo_continent_code_like?: string; - /** - * Continent code of the client (filter: not_like) - */ - meta_client_geo_continent_code_not_like?: string; - /** - * Continent code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_continent_code_in_values?: string; - /** - * Continent code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_continent_code_not_in_values?: string; - /** - * Filter meta_client_geo_longitude using value - */ - meta_client_geo_longitude_value?: number; - /** - * Filter meta_client_geo_latitude using value - */ - meta_client_geo_latitude_value?: number; - /** - * Autonomous system number of the client (filter: eq) - */ - meta_client_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the client (filter: ne) - */ - meta_client_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the client (filter: lt) - */ - meta_client_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the client (filter: lte) - */ - meta_client_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the client (filter: gt) - */ - meta_client_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the client (filter: gte) - */ - meta_client_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the client (filter: between_min) - */ - meta_client_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the client (filter: between_max_value) - */ - meta_client_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the client (filter: eq) - */ - meta_client_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the client (filter: ne) - */ - meta_client_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the client (filter: contains) - */ - meta_client_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the client (filter: starts_with) - */ - meta_client_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the client (filter: ends_with) - */ - meta_client_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the client (filter: like) - */ - meta_client_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the client (filter: not_like) - */ - meta_client_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_not_in_values?: string; - /** - * Ethereum consensus client version (filter: eq) - */ - meta_consensus_version_eq?: string; - /** - * Ethereum consensus client version (filter: ne) - */ - meta_consensus_version_ne?: string; - /** - * Ethereum consensus client version (filter: contains) - */ - meta_consensus_version_contains?: string; - /** - * Ethereum consensus client version (filter: starts_with) - */ - meta_consensus_version_starts_with?: string; - /** - * Ethereum consensus client version (filter: ends_with) - */ - meta_consensus_version_ends_with?: string; - /** - * Ethereum consensus client version (filter: like) - */ - meta_consensus_version_like?: string; - /** - * Ethereum consensus client version (filter: not_like) - */ - meta_consensus_version_not_like?: string; - /** - * Ethereum consensus client version (filter: in_values) (comma-separated list) - */ - meta_consensus_version_in_values?: string; - /** - * Ethereum consensus client version (filter: not_in_values) (comma-separated list) - */ - meta_consensus_version_not_in_values?: string; - /** - * Ethereum consensus client implementation (filter: eq) - */ - meta_consensus_implementation_eq?: string; - /** - * Ethereum consensus client implementation (filter: ne) - */ - meta_consensus_implementation_ne?: string; - /** - * Ethereum consensus client implementation (filter: contains) - */ - meta_consensus_implementation_contains?: string; - /** - * Ethereum consensus client implementation (filter: starts_with) - */ - meta_consensus_implementation_starts_with?: string; - /** - * Ethereum consensus client implementation (filter: ends_with) - */ - meta_consensus_implementation_ends_with?: string; - /** - * Ethereum consensus client implementation (filter: like) - */ - meta_consensus_implementation_like?: string; - /** - * Ethereum consensus client implementation (filter: not_like) - */ - meta_consensus_implementation_not_like?: string; - /** - * Ethereum consensus client implementation (filter: in_values) (comma-separated list) - */ - meta_consensus_implementation_in_values?: string; - /** - * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) - */ - meta_consensus_implementation_not_in_values?: string; - /** - * The maximum number of fct_attestation_observation_by_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationObservationByNode` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_observation_by_node'; -}; - -export type FctAttestationObservationByNodeServiceListErrors = { + opcode_count_not_in_values?: string; /** - * Default error response + * Number of opcodes that resulted in errors (filter: eq) */ - default: Status; -}; - -export type FctAttestationObservationByNodeServiceListError = FctAttestationObservationByNodeServiceListErrors[keyof FctAttestationObservationByNodeServiceListErrors]; - -export type FctAttestationObservationByNodeServiceListResponses = { + error_count_eq?: number; /** - * OK + * Number of opcodes that resulted in errors (filter: ne) */ - 200: ListFctAttestationObservationByNodeResponse; -}; - -export type FctAttestationObservationByNodeServiceListResponse = FctAttestationObservationByNodeServiceListResponses[keyof FctAttestationObservationByNodeServiceListResponses]; - -export type FctAttestationObservationByNodeServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_attestation_observation_by_node/{slot_start_date_time}'; -}; - -export type FctAttestationObservationByNodeServiceGetErrors = { + error_count_ne?: number; /** - * Default error response + * Number of opcodes that resulted in errors (filter: lt) */ - default: Status; -}; - -export type FctAttestationObservationByNodeServiceGetError = FctAttestationObservationByNodeServiceGetErrors[keyof FctAttestationObservationByNodeServiceGetErrors]; - -export type FctAttestationObservationByNodeServiceGetResponses = { + error_count_lt?: number; /** - * OK + * Number of opcodes that resulted in errors (filter: lte) */ - 200: GetFctAttestationObservationByNodeResponse; -}; - -export type FctAttestationObservationByNodeServiceGetResponse = FctAttestationObservationByNodeServiceGetResponses[keyof FctAttestationObservationByNodeServiceGetResponses]; - -export type FctAttestationParticipationRateDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of slots in this day (filter: eq) - */ - slot_count_eq?: number; - /** - * Number of slots in this day (filter: ne) - */ - slot_count_ne?: number; - /** - * Number of slots in this day (filter: lt) - */ - slot_count_lt?: number; - /** - * Number of slots in this day (filter: lte) - */ - slot_count_lte?: number; - /** - * Number of slots in this day (filter: gt) - */ - slot_count_gt?: number; - /** - * Number of slots in this day (filter: gte) - */ - slot_count_gte?: number; - /** - * Number of slots in this day (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Number of slots in this day (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Number of slots in this day (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Number of slots in this day (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * Filter avg_participation_rate using value - */ - avg_participation_rate_value?: number; - /** - * Filter min_participation_rate using value - */ - min_participation_rate_value?: number; - /** - * Filter max_participation_rate using value - */ - max_participation_rate_value?: number; - /** - * Filter p05_participation_rate using value - */ - p05_participation_rate_value?: number; - /** - * Filter p50_participation_rate using value - */ - p50_participation_rate_value?: number; - /** - * Filter p95_participation_rate using value - */ - p95_participation_rate_value?: number; - /** - * Filter stddev_participation_rate using value - */ - stddev_participation_rate_value?: number; - /** - * Filter upper_band_participation_rate using value - */ - upper_band_participation_rate_value?: number; - /** - * Filter lower_band_participation_rate using value - */ - lower_band_participation_rate_value?: number; - /** - * Filter moving_avg_participation_rate using value - */ - moving_avg_participation_rate_value?: number; - /** - * The maximum number of fct_attestation_participation_rate_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationParticipationRateDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_participation_rate_daily'; -}; - -export type FctAttestationParticipationRateDailyServiceListErrors = { + error_count_lte?: number; /** - * Default error response + * Number of opcodes that resulted in errors (filter: gt) */ - default: Status; -}; - -export type FctAttestationParticipationRateDailyServiceListError = FctAttestationParticipationRateDailyServiceListErrors[keyof FctAttestationParticipationRateDailyServiceListErrors]; - -export type FctAttestationParticipationRateDailyServiceListResponses = { + error_count_gt?: number; /** - * OK + * Number of opcodes that resulted in errors (filter: gte) */ - 200: ListFctAttestationParticipationRateDailyResponse; -}; - -export type FctAttestationParticipationRateDailyServiceListResponse = FctAttestationParticipationRateDailyServiceListResponses[keyof FctAttestationParticipationRateDailyServiceListResponses]; - -export type FctAttestationParticipationRateDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_attestation_participation_rate_daily/{day_start_date}'; -}; - -export type FctAttestationParticipationRateDailyServiceGetErrors = { + error_count_gte?: number; /** - * Default error response + * Number of opcodes that resulted in errors (filter: between_min) */ - default: Status; -}; - -export type FctAttestationParticipationRateDailyServiceGetError = FctAttestationParticipationRateDailyServiceGetErrors[keyof FctAttestationParticipationRateDailyServiceGetErrors]; - -export type FctAttestationParticipationRateDailyServiceGetResponses = { + error_count_between_min?: number; /** - * OK + * Number of opcodes that resulted in errors (filter: between_max_value) */ - 200: GetFctAttestationParticipationRateDailyResponse; -}; - -export type FctAttestationParticipationRateDailyServiceGetResponse = FctAttestationParticipationRateDailyServiceGetResponses[keyof FctAttestationParticipationRateDailyServiceGetResponses]; - -export type FctAttestationParticipationRateHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of slots in this hour (filter: eq) - */ - slot_count_eq?: number; - /** - * Number of slots in this hour (filter: ne) - */ - slot_count_ne?: number; - /** - * Number of slots in this hour (filter: lt) - */ - slot_count_lt?: number; - /** - * Number of slots in this hour (filter: lte) - */ - slot_count_lte?: number; - /** - * Number of slots in this hour (filter: gt) - */ - slot_count_gt?: number; - /** - * Number of slots in this hour (filter: gte) - */ - slot_count_gte?: number; - /** - * Number of slots in this hour (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Number of slots in this hour (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Number of slots in this hour (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Number of slots in this hour (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * Filter avg_participation_rate using value - */ - avg_participation_rate_value?: number; - /** - * Filter min_participation_rate using value - */ - min_participation_rate_value?: number; - /** - * Filter max_participation_rate using value - */ - max_participation_rate_value?: number; - /** - * Filter p05_participation_rate using value - */ - p05_participation_rate_value?: number; - /** - * Filter p50_participation_rate using value - */ - p50_participation_rate_value?: number; - /** - * Filter p95_participation_rate using value - */ - p95_participation_rate_value?: number; - /** - * Filter stddev_participation_rate using value - */ - stddev_participation_rate_value?: number; - /** - * Filter upper_band_participation_rate using value - */ - upper_band_participation_rate_value?: number; - /** - * Filter lower_band_participation_rate using value - */ - lower_band_participation_rate_value?: number; - /** - * Filter moving_avg_participation_rate using value - */ - moving_avg_participation_rate_value?: number; - /** - * The maximum number of fct_attestation_participation_rate_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationParticipationRateHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_participation_rate_hourly'; -}; - -export type FctAttestationParticipationRateHourlyServiceListErrors = { + error_count_between_max_value?: number; /** - * Default error response + * Number of opcodes that resulted in errors (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctAttestationParticipationRateHourlyServiceListError = FctAttestationParticipationRateHourlyServiceListErrors[keyof FctAttestationParticipationRateHourlyServiceListErrors]; - -export type FctAttestationParticipationRateHourlyServiceListResponses = { + error_count_in_values?: string; /** - * OK + * Number of opcodes that resulted in errors (filter: not_in_values) (comma-separated list) */ - 200: ListFctAttestationParticipationRateHourlyResponse; -}; - -export type FctAttestationParticipationRateHourlyServiceListResponse = FctAttestationParticipationRateHourlyServiceListResponses[keyof FctAttestationParticipationRateHourlyServiceListResponses]; - -export type FctAttestationParticipationRateHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_attestation_participation_rate_hourly/{hour_start_date_time}'; -}; - -export type FctAttestationParticipationRateHourlyServiceGetErrors = { + error_count_not_in_values?: string; /** - * Default error response + * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: eq) */ - default: Status; -}; - -export type FctAttestationParticipationRateHourlyServiceGetError = FctAttestationParticipationRateHourlyServiceGetErrors[keyof FctAttestationParticipationRateHourlyServiceGetErrors]; - -export type FctAttestationParticipationRateHourlyServiceGetResponses = { + gas_eq?: number; /** - * OK + * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: ne) */ - 200: GetFctAttestationParticipationRateHourlyResponse; -}; - -export type FctAttestationParticipationRateHourlyServiceGetResponse = FctAttestationParticipationRateHourlyServiceGetResponses[keyof FctAttestationParticipationRateHourlyServiceGetResponses]; - -export type FctAttestationVoteCorrectnessByValidatorServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The index of the validator (filter: eq) - */ - validator_index_eq?: number; - /** - * The index of the validator (filter: ne) - */ - validator_index_ne?: number; - /** - * The index of the validator (filter: lt) - */ - validator_index_lt?: number; - /** - * The index of the validator (filter: lte) - */ - validator_index_lte?: number; - /** - * The index of the validator (filter: gt) - */ - validator_index_gt?: number; - /** - * The index of the validator (filter: gte) - */ - validator_index_gte?: number; - /** - * The index of the validator (filter: between_min) - */ - validator_index_between_min?: number; - /** - * The index of the validator (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * The index of the validator (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * The index of the validator (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * The start time of the slot (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The start time of the slot (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The start time of the slot (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The start time of the slot (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The start time of the slot (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The start time of the slot (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The start time of the slot (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The start time of the slot (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The start time of the slot (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The start time of the slot (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Whether the validator attested in this slot (filter: eq) - */ - attested_eq?: boolean; - /** - * Whether the validator attested in this slot (filter: ne) - */ - attested_ne?: boolean; - /** - * Whether the head vote was correct. NULL if not attested (filter: eq) - */ - head_correct_eq?: boolean; - /** - * Whether the head vote was correct. NULL if not attested (filter: ne) - */ - head_correct_ne?: boolean; - /** - * Whether the target vote was correct. NULL if not attested (filter: eq) - */ - target_correct_eq?: boolean; - /** - * Whether the target vote was correct. NULL if not attested (filter: ne) - */ - target_correct_ne?: boolean; - /** - * Whether the source vote was correct. NULL if not attested (filter: eq) - */ - source_correct_eq?: boolean; - /** - * Whether the source vote was correct. NULL if not attested (filter: ne) - */ - source_correct_ne?: boolean; - /** - * Inclusion distance for the attestation. NULL if not attested (filter: eq) - */ - inclusion_distance_eq?: number; - /** - * Inclusion distance for the attestation. NULL if not attested (filter: ne) - */ - inclusion_distance_ne?: number; - /** - * Inclusion distance for the attestation. NULL if not attested (filter: lt) - */ - inclusion_distance_lt?: number; - /** - * Inclusion distance for the attestation. NULL if not attested (filter: lte) - */ - inclusion_distance_lte?: number; - /** - * Inclusion distance for the attestation. NULL if not attested (filter: gt) - */ - inclusion_distance_gt?: number; - /** - * Inclusion distance for the attestation. NULL if not attested (filter: gte) - */ - inclusion_distance_gte?: number; - /** - * Inclusion distance for the attestation. NULL if not attested (filter: between_min) - */ - inclusion_distance_between_min?: number; - /** - * Inclusion distance for the attestation. NULL if not attested (filter: between_max_value) - */ - inclusion_distance_between_max_value?: number; - /** - * Inclusion distance for the attestation. NULL if not attested (filter: in_values) (comma-separated list) - */ - inclusion_distance_in_values?: string; - /** - * Inclusion distance for the attestation. NULL if not attested (filter: not_in_values) (comma-separated list) - */ - inclusion_distance_not_in_values?: string; - /** - * The maximum number of fct_attestation_vote_correctness_by_validator to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationVoteCorrectnessByValidator` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_vote_correctness_by_validator'; -}; - -export type FctAttestationVoteCorrectnessByValidatorServiceListErrors = { + gas_ne?: number; /** - * Default error response + * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: lt) */ - default: Status; -}; - -export type FctAttestationVoteCorrectnessByValidatorServiceListError = FctAttestationVoteCorrectnessByValidatorServiceListErrors[keyof FctAttestationVoteCorrectnessByValidatorServiceListErrors]; - -export type FctAttestationVoteCorrectnessByValidatorServiceListResponses = { + gas_lt?: number; /** - * OK + * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: lte) */ - 200: ListFctAttestationVoteCorrectnessByValidatorResponse; -}; - -export type FctAttestationVoteCorrectnessByValidatorServiceListResponse = FctAttestationVoteCorrectnessByValidatorServiceListResponses[keyof FctAttestationVoteCorrectnessByValidatorServiceListResponses]; - -export type FctAttestationVoteCorrectnessByValidatorServiceGetData = { - body?: never; - path: { - /** - * The index of the validator - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/fct_attestation_vote_correctness_by_validator/{validator_index}'; -}; - -export type FctAttestationVoteCorrectnessByValidatorServiceGetErrors = { + gas_lte?: number; /** - * Default error response + * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: gt) */ - default: Status; -}; - -export type FctAttestationVoteCorrectnessByValidatorServiceGetError = FctAttestationVoteCorrectnessByValidatorServiceGetErrors[keyof FctAttestationVoteCorrectnessByValidatorServiceGetErrors]; - -export type FctAttestationVoteCorrectnessByValidatorServiceGetResponses = { + gas_gt?: number; + /** + * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: gte) + */ + gas_gte?: number; /** - * OK + * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: between_min) */ - 200: GetFctAttestationVoteCorrectnessByValidatorResponse; -}; - -export type FctAttestationVoteCorrectnessByValidatorServiceGetResponse = FctAttestationVoteCorrectnessByValidatorServiceGetResponses[keyof FctAttestationVoteCorrectnessByValidatorServiceGetResponses]; - -export type FctAttestationVoteCorrectnessByValidatorDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The index of the validator (filter: eq) - */ - validator_index_eq?: number; - /** - * The index of the validator (filter: ne) - */ - validator_index_ne?: number; - /** - * The index of the validator (filter: lt) - */ - validator_index_lt?: number; - /** - * The index of the validator (filter: lte) - */ - validator_index_lte?: number; - /** - * The index of the validator (filter: gt) - */ - validator_index_gt?: number; - /** - * The index of the validator (filter: gte) - */ - validator_index_gte?: number; - /** - * The index of the validator (filter: between_min) - */ - validator_index_between_min?: number; - /** - * The index of the validator (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * The index of the validator (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * The index of the validator (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * The start of the day for this aggregation (filter: eq) - */ - day_start_date_eq?: string; - /** - * The start of the day for this aggregation (filter: ne) - */ - day_start_date_ne?: string; - /** - * The start of the day for this aggregation (filter: contains) - */ - day_start_date_contains?: string; - /** - * The start of the day for this aggregation (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * The start of the day for this aggregation (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * The start of the day for this aggregation (filter: like) - */ - day_start_date_like?: string; - /** - * The start of the day for this aggregation (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * The start of the day for this aggregation (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * The start of the day for this aggregation (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total attestation duties for the validator in this day (filter: eq) - */ - total_duties_eq?: number; - /** - * Total attestation duties for the validator in this day (filter: ne) - */ - total_duties_ne?: number; - /** - * Total attestation duties for the validator in this day (filter: lt) - */ - total_duties_lt?: number; - /** - * Total attestation duties for the validator in this day (filter: lte) - */ - total_duties_lte?: number; - /** - * Total attestation duties for the validator in this day (filter: gt) - */ - total_duties_gt?: number; - /** - * Total attestation duties for the validator in this day (filter: gte) - */ - total_duties_gte?: number; - /** - * Total attestation duties for the validator in this day (filter: between_min) - */ - total_duties_between_min?: number; - /** - * Total attestation duties for the validator in this day (filter: between_max_value) - */ - total_duties_between_max_value?: number; - /** - * Total attestation duties for the validator in this day (filter: in_values) (comma-separated list) - */ - total_duties_in_values?: string; - /** - * Total attestation duties for the validator in this day (filter: not_in_values) (comma-separated list) - */ - total_duties_not_in_values?: string; - /** - * Number of attestations made (filter: eq) - */ - attested_count_eq?: number; - /** - * Number of attestations made (filter: ne) - */ - attested_count_ne?: number; - /** - * Number of attestations made (filter: lt) - */ - attested_count_lt?: number; - /** - * Number of attestations made (filter: lte) - */ - attested_count_lte?: number; - /** - * Number of attestations made (filter: gt) - */ - attested_count_gt?: number; - /** - * Number of attestations made (filter: gte) - */ - attested_count_gte?: number; - /** - * Number of attestations made (filter: between_min) - */ - attested_count_between_min?: number; - /** - * Number of attestations made (filter: between_max_value) - */ - attested_count_between_max_value?: number; - /** - * Number of attestations made (filter: in_values) (comma-separated list) - */ - attested_count_in_values?: string; - /** - * Number of attestations made (filter: not_in_values) (comma-separated list) - */ - attested_count_not_in_values?: string; - /** - * Number of attestations missed (filter: eq) - */ - missed_count_eq?: number; - /** - * Number of attestations missed (filter: ne) - */ - missed_count_ne?: number; - /** - * Number of attestations missed (filter: lt) - */ - missed_count_lt?: number; - /** - * Number of attestations missed (filter: lte) - */ - missed_count_lte?: number; - /** - * Number of attestations missed (filter: gt) - */ - missed_count_gt?: number; - /** - * Number of attestations missed (filter: gte) - */ - missed_count_gte?: number; - /** - * Number of attestations missed (filter: between_min) - */ - missed_count_between_min?: number; - /** - * Number of attestations missed (filter: between_max_value) - */ - missed_count_between_max_value?: number; - /** - * Number of attestations missed (filter: in_values) (comma-separated list) - */ - missed_count_in_values?: string; - /** - * Number of attestations missed (filter: not_in_values) (comma-separated list) - */ - missed_count_not_in_values?: string; - /** - * Number of head votes that were correct (filter: eq) - */ - head_correct_count_eq?: number; - /** - * Number of head votes that were correct (filter: ne) - */ - head_correct_count_ne?: number; - /** - * Number of head votes that were correct (filter: lt) - */ - head_correct_count_lt?: number; - /** - * Number of head votes that were correct (filter: lte) - */ - head_correct_count_lte?: number; - /** - * Number of head votes that were correct (filter: gt) - */ - head_correct_count_gt?: number; - /** - * Number of head votes that were correct (filter: gte) - */ - head_correct_count_gte?: number; - /** - * Number of head votes that were correct (filter: between_min) - */ - head_correct_count_between_min?: number; - /** - * Number of head votes that were correct (filter: between_max_value) - */ - head_correct_count_between_max_value?: number; - /** - * Number of head votes that were correct (filter: in_values) (comma-separated list) - */ - head_correct_count_in_values?: string; - /** - * Number of head votes that were correct (filter: not_in_values) (comma-separated list) - */ - head_correct_count_not_in_values?: string; - /** - * Number of target votes that were correct (filter: eq) - */ - target_correct_count_eq?: number; - /** - * Number of target votes that were correct (filter: ne) - */ - target_correct_count_ne?: number; - /** - * Number of target votes that were correct (filter: lt) - */ - target_correct_count_lt?: number; - /** - * Number of target votes that were correct (filter: lte) - */ - target_correct_count_lte?: number; - /** - * Number of target votes that were correct (filter: gt) - */ - target_correct_count_gt?: number; - /** - * Number of target votes that were correct (filter: gte) - */ - target_correct_count_gte?: number; - /** - * Number of target votes that were correct (filter: between_min) - */ - target_correct_count_between_min?: number; - /** - * Number of target votes that were correct (filter: between_max_value) - */ - target_correct_count_between_max_value?: number; - /** - * Number of target votes that were correct (filter: in_values) (comma-separated list) - */ - target_correct_count_in_values?: string; - /** - * Number of target votes that were correct (filter: not_in_values) (comma-separated list) - */ - target_correct_count_not_in_values?: string; - /** - * Number of source votes that were correct (filter: eq) - */ - source_correct_count_eq?: number; - /** - * Number of source votes that were correct (filter: ne) - */ - source_correct_count_ne?: number; - /** - * Number of source votes that were correct (filter: lt) - */ - source_correct_count_lt?: number; - /** - * Number of source votes that were correct (filter: lte) - */ - source_correct_count_lte?: number; - /** - * Number of source votes that were correct (filter: gt) - */ - source_correct_count_gt?: number; - /** - * Number of source votes that were correct (filter: gte) - */ - source_correct_count_gte?: number; - /** - * Number of source votes that were correct (filter: between_min) - */ - source_correct_count_between_min?: number; - /** - * Number of source votes that were correct (filter: between_max_value) - */ - source_correct_count_between_max_value?: number; - /** - * Number of source votes that were correct (filter: in_values) (comma-separated list) - */ - source_correct_count_in_values?: string; - /** - * Number of source votes that were correct (filter: not_in_values) (comma-separated list) - */ - source_correct_count_not_in_values?: string; - /** - * Filter avg_inclusion_distance using value - */ - avg_inclusion_distance_value?: number; - /** - * The maximum number of fct_attestation_vote_correctness_by_validator_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationVoteCorrectnessByValidatorDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_vote_correctness_by_validator_daily'; -}; - -export type FctAttestationVoteCorrectnessByValidatorDailyServiceListErrors = { + gas_between_min?: number; /** - * Default error response + * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: between_max_value) */ - default: Status; -}; - -export type FctAttestationVoteCorrectnessByValidatorDailyServiceListError = FctAttestationVoteCorrectnessByValidatorDailyServiceListErrors[keyof FctAttestationVoteCorrectnessByValidatorDailyServiceListErrors]; - -export type FctAttestationVoteCorrectnessByValidatorDailyServiceListResponses = { + gas_between_max_value?: number; /** - * OK + * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: in_values) (comma-separated list) */ - 200: ListFctAttestationVoteCorrectnessByValidatorDailyResponse; -}; - -export type FctAttestationVoteCorrectnessByValidatorDailyServiceListResponse = FctAttestationVoteCorrectnessByValidatorDailyServiceListResponses[keyof FctAttestationVoteCorrectnessByValidatorDailyServiceListResponses]; - -export type FctAttestationVoteCorrectnessByValidatorDailyServiceGetData = { - body?: never; - path: { - /** - * The index of the validator - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/fct_attestation_vote_correctness_by_validator_daily/{validator_index}'; -}; - -export type FctAttestationVoteCorrectnessByValidatorDailyServiceGetErrors = { + gas_in_values?: string; /** - * Default error response + * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctAttestationVoteCorrectnessByValidatorDailyServiceGetError = FctAttestationVoteCorrectnessByValidatorDailyServiceGetErrors[keyof FctAttestationVoteCorrectnessByValidatorDailyServiceGetErrors]; - -export type FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponses = { + gas_not_in_values?: string; /** - * OK + * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: eq) */ - 200: GetFctAttestationVoteCorrectnessByValidatorDailyResponse; -}; - -export type FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse = FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponses[keyof FctAttestationVoteCorrectnessByValidatorDailyServiceGetResponses]; - -export type FctAttestationVoteCorrectnessByValidatorHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The index of the validator (filter: eq) - */ - validator_index_eq?: number; - /** - * The index of the validator (filter: ne) - */ - validator_index_ne?: number; - /** - * The index of the validator (filter: lt) - */ - validator_index_lt?: number; - /** - * The index of the validator (filter: lte) - */ - validator_index_lte?: number; - /** - * The index of the validator (filter: gt) - */ - validator_index_gt?: number; - /** - * The index of the validator (filter: gte) - */ - validator_index_gte?: number; - /** - * The index of the validator (filter: between_min) - */ - validator_index_between_min?: number; - /** - * The index of the validator (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * The index of the validator (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * The index of the validator (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * The start of the hour for this aggregation (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * The start of the hour for this aggregation (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * The start of the hour for this aggregation (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * The start of the hour for this aggregation (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * The start of the hour for this aggregation (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * The start of the hour for this aggregation (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * The start of the hour for this aggregation (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * The start of the hour for this aggregation (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * The start of the hour for this aggregation (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * The start of the hour for this aggregation (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total attestation duties for the validator in this hour (filter: eq) - */ - total_duties_eq?: number; - /** - * Total attestation duties for the validator in this hour (filter: ne) - */ - total_duties_ne?: number; - /** - * Total attestation duties for the validator in this hour (filter: lt) - */ - total_duties_lt?: number; - /** - * Total attestation duties for the validator in this hour (filter: lte) - */ - total_duties_lte?: number; - /** - * Total attestation duties for the validator in this hour (filter: gt) - */ - total_duties_gt?: number; - /** - * Total attestation duties for the validator in this hour (filter: gte) - */ - total_duties_gte?: number; - /** - * Total attestation duties for the validator in this hour (filter: between_min) - */ - total_duties_between_min?: number; - /** - * Total attestation duties for the validator in this hour (filter: between_max_value) - */ - total_duties_between_max_value?: number; - /** - * Total attestation duties for the validator in this hour (filter: in_values) (comma-separated list) - */ - total_duties_in_values?: string; - /** - * Total attestation duties for the validator in this hour (filter: not_in_values) (comma-separated list) - */ - total_duties_not_in_values?: string; - /** - * Number of attestations made (filter: eq) - */ - attested_count_eq?: number; - /** - * Number of attestations made (filter: ne) - */ - attested_count_ne?: number; - /** - * Number of attestations made (filter: lt) - */ - attested_count_lt?: number; - /** - * Number of attestations made (filter: lte) - */ - attested_count_lte?: number; - /** - * Number of attestations made (filter: gt) - */ - attested_count_gt?: number; - /** - * Number of attestations made (filter: gte) - */ - attested_count_gte?: number; - /** - * Number of attestations made (filter: between_min) - */ - attested_count_between_min?: number; - /** - * Number of attestations made (filter: between_max_value) - */ - attested_count_between_max_value?: number; - /** - * Number of attestations made (filter: in_values) (comma-separated list) - */ - attested_count_in_values?: string; - /** - * Number of attestations made (filter: not_in_values) (comma-separated list) - */ - attested_count_not_in_values?: string; - /** - * Number of attestations missed (filter: eq) - */ - missed_count_eq?: number; - /** - * Number of attestations missed (filter: ne) - */ - missed_count_ne?: number; - /** - * Number of attestations missed (filter: lt) - */ - missed_count_lt?: number; - /** - * Number of attestations missed (filter: lte) - */ - missed_count_lte?: number; - /** - * Number of attestations missed (filter: gt) - */ - missed_count_gt?: number; - /** - * Number of attestations missed (filter: gte) - */ - missed_count_gte?: number; - /** - * Number of attestations missed (filter: between_min) - */ - missed_count_between_min?: number; - /** - * Number of attestations missed (filter: between_max_value) - */ - missed_count_between_max_value?: number; - /** - * Number of attestations missed (filter: in_values) (comma-separated list) - */ - missed_count_in_values?: string; - /** - * Number of attestations missed (filter: not_in_values) (comma-separated list) - */ - missed_count_not_in_values?: string; - /** - * Number of head votes that were correct (filter: eq) - */ - head_correct_count_eq?: number; - /** - * Number of head votes that were correct (filter: ne) - */ - head_correct_count_ne?: number; - /** - * Number of head votes that were correct (filter: lt) - */ - head_correct_count_lt?: number; - /** - * Number of head votes that were correct (filter: lte) - */ - head_correct_count_lte?: number; - /** - * Number of head votes that were correct (filter: gt) - */ - head_correct_count_gt?: number; - /** - * Number of head votes that were correct (filter: gte) - */ - head_correct_count_gte?: number; - /** - * Number of head votes that were correct (filter: between_min) - */ - head_correct_count_between_min?: number; - /** - * Number of head votes that were correct (filter: between_max_value) - */ - head_correct_count_between_max_value?: number; - /** - * Number of head votes that were correct (filter: in_values) (comma-separated list) - */ - head_correct_count_in_values?: string; - /** - * Number of head votes that were correct (filter: not_in_values) (comma-separated list) - */ - head_correct_count_not_in_values?: string; - /** - * Number of target votes that were correct (filter: eq) - */ - target_correct_count_eq?: number; - /** - * Number of target votes that were correct (filter: ne) - */ - target_correct_count_ne?: number; - /** - * Number of target votes that were correct (filter: lt) - */ - target_correct_count_lt?: number; - /** - * Number of target votes that were correct (filter: lte) - */ - target_correct_count_lte?: number; - /** - * Number of target votes that were correct (filter: gt) - */ - target_correct_count_gt?: number; - /** - * Number of target votes that were correct (filter: gte) - */ - target_correct_count_gte?: number; - /** - * Number of target votes that were correct (filter: between_min) - */ - target_correct_count_between_min?: number; - /** - * Number of target votes that were correct (filter: between_max_value) - */ - target_correct_count_between_max_value?: number; - /** - * Number of target votes that were correct (filter: in_values) (comma-separated list) - */ - target_correct_count_in_values?: string; - /** - * Number of target votes that were correct (filter: not_in_values) (comma-separated list) - */ - target_correct_count_not_in_values?: string; - /** - * Number of source votes that were correct (filter: eq) - */ - source_correct_count_eq?: number; - /** - * Number of source votes that were correct (filter: ne) - */ - source_correct_count_ne?: number; - /** - * Number of source votes that were correct (filter: lt) - */ - source_correct_count_lt?: number; - /** - * Number of source votes that were correct (filter: lte) - */ - source_correct_count_lte?: number; - /** - * Number of source votes that were correct (filter: gt) - */ - source_correct_count_gt?: number; - /** - * Number of source votes that were correct (filter: gte) - */ - source_correct_count_gte?: number; - /** - * Number of source votes that were correct (filter: between_min) - */ - source_correct_count_between_min?: number; - /** - * Number of source votes that were correct (filter: between_max_value) - */ - source_correct_count_between_max_value?: number; - /** - * Number of source votes that were correct (filter: in_values) (comma-separated list) - */ - source_correct_count_in_values?: string; - /** - * Number of source votes that were correct (filter: not_in_values) (comma-separated list) - */ - source_correct_count_not_in_values?: string; - /** - * Filter avg_inclusion_distance using value - */ - avg_inclusion_distance_value?: number; - /** - * The maximum number of fct_attestation_vote_correctness_by_validator_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctAttestationVoteCorrectnessByValidatorHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_attestation_vote_correctness_by_validator_hourly'; -}; - -export type FctAttestationVoteCorrectnessByValidatorHourlyServiceListErrors = { + gas_cumulative_eq?: number; /** - * Default error response + * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: ne) */ - default: Status; -}; - -export type FctAttestationVoteCorrectnessByValidatorHourlyServiceListError = FctAttestationVoteCorrectnessByValidatorHourlyServiceListErrors[keyof FctAttestationVoteCorrectnessByValidatorHourlyServiceListErrors]; - -export type FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponses = { + gas_cumulative_ne?: number; /** - * OK + * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: lt) */ - 200: ListFctAttestationVoteCorrectnessByValidatorHourlyResponse; -}; - -export type FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse = FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponses[keyof FctAttestationVoteCorrectnessByValidatorHourlyServiceListResponses]; - -export type FctAttestationVoteCorrectnessByValidatorHourlyServiceGetData = { - body?: never; - path: { - /** - * The index of the validator - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/fct_attestation_vote_correctness_by_validator_hourly/{validator_index}'; -}; - -export type FctAttestationVoteCorrectnessByValidatorHourlyServiceGetErrors = { + gas_cumulative_lt?: number; /** - * Default error response + * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: lte) */ - default: Status; -}; - -export type FctAttestationVoteCorrectnessByValidatorHourlyServiceGetError = FctAttestationVoteCorrectnessByValidatorHourlyServiceGetErrors[keyof FctAttestationVoteCorrectnessByValidatorHourlyServiceGetErrors]; - -export type FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponses = { + gas_cumulative_lte?: number; /** - * OK + * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: gt) */ - 200: GetFctAttestationVoteCorrectnessByValidatorHourlyResponse; -}; - -export type FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse = FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponses[keyof FctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponses]; - -export type FctBlobCountDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of slots with blobs in this day (filter: eq) - */ - block_count_eq?: number; - /** - * Number of slots with blobs in this day (filter: ne) - */ - block_count_ne?: number; - /** - * Number of slots with blobs in this day (filter: lt) - */ - block_count_lt?: number; - /** - * Number of slots with blobs in this day (filter: lte) - */ - block_count_lte?: number; - /** - * Number of slots with blobs in this day (filter: gt) - */ - block_count_gt?: number; - /** - * Number of slots with blobs in this day (filter: gte) - */ - block_count_gte?: number; - /** - * Number of slots with blobs in this day (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of slots with blobs in this day (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of slots with blobs in this day (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of slots with blobs in this day (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total blobs in this day (filter: eq) - */ - total_blobs_eq?: number; - /** - * Total blobs in this day (filter: ne) - */ - total_blobs_ne?: number; - /** - * Total blobs in this day (filter: lt) - */ - total_blobs_lt?: number; - /** - * Total blobs in this day (filter: lte) - */ - total_blobs_lte?: number; - /** - * Total blobs in this day (filter: gt) - */ - total_blobs_gt?: number; - /** - * Total blobs in this day (filter: gte) - */ - total_blobs_gte?: number; - /** - * Total blobs in this day (filter: between_min) - */ - total_blobs_between_min?: number; - /** - * Total blobs in this day (filter: between_max_value) - */ - total_blobs_between_max_value?: number; - /** - * Total blobs in this day (filter: in_values) (comma-separated list) - */ - total_blobs_in_values?: string; - /** - * Total blobs in this day (filter: not_in_values) (comma-separated list) - */ - total_blobs_not_in_values?: string; - /** - * Filter avg_blob_count using value - */ - avg_blob_count_value?: number; - /** - * Minimum blob count in a slot (filter: eq) - */ - min_blob_count_eq?: number; - /** - * Minimum blob count in a slot (filter: ne) - */ - min_blob_count_ne?: number; - /** - * Minimum blob count in a slot (filter: lt) - */ - min_blob_count_lt?: number; - /** - * Minimum blob count in a slot (filter: lte) - */ - min_blob_count_lte?: number; - /** - * Minimum blob count in a slot (filter: gt) - */ - min_blob_count_gt?: number; - /** - * Minimum blob count in a slot (filter: gte) - */ - min_blob_count_gte?: number; - /** - * Minimum blob count in a slot (filter: between_min) - */ - min_blob_count_between_min?: number; - /** - * Minimum blob count in a slot (filter: between_max_value) - */ - min_blob_count_between_max_value?: number; - /** - * Minimum blob count in a slot (filter: in_values) (comma-separated list) - */ - min_blob_count_in_values?: string; - /** - * Minimum blob count in a slot (filter: not_in_values) (comma-separated list) - */ - min_blob_count_not_in_values?: string; - /** - * Maximum blob count in a slot (filter: eq) - */ - max_blob_count_eq?: number; - /** - * Maximum blob count in a slot (filter: ne) - */ - max_blob_count_ne?: number; - /** - * Maximum blob count in a slot (filter: lt) - */ - max_blob_count_lt?: number; - /** - * Maximum blob count in a slot (filter: lte) - */ - max_blob_count_lte?: number; - /** - * Maximum blob count in a slot (filter: gt) - */ - max_blob_count_gt?: number; - /** - * Maximum blob count in a slot (filter: gte) - */ - max_blob_count_gte?: number; - /** - * Maximum blob count in a slot (filter: between_min) - */ - max_blob_count_between_min?: number; - /** - * Maximum blob count in a slot (filter: between_max_value) - */ - max_blob_count_between_max_value?: number; - /** - * Maximum blob count in a slot (filter: in_values) (comma-separated list) - */ - max_blob_count_in_values?: string; - /** - * Maximum blob count in a slot (filter: not_in_values) (comma-separated list) - */ - max_blob_count_not_in_values?: string; - /** - * Filter p05_blob_count using value - */ - p05_blob_count_value?: number; - /** - * Filter p50_blob_count using value - */ - p50_blob_count_value?: number; - /** - * Filter p95_blob_count using value - */ - p95_blob_count_value?: number; - /** - * Filter stddev_blob_count using value - */ - stddev_blob_count_value?: number; - /** - * Filter upper_band_blob_count using value - */ - upper_band_blob_count_value?: number; - /** - * Filter lower_band_blob_count using value - */ - lower_band_blob_count_value?: number; - /** - * Filter moving_avg_blob_count using value - */ - moving_avg_blob_count_value?: number; - /** - * The maximum number of fct_blob_count_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlobCountDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_blob_count_daily'; -}; - -export type FctBlobCountDailyServiceListErrors = { + gas_cumulative_gt?: number; /** - * Default error response + * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: gte) */ - default: Status; -}; - -export type FctBlobCountDailyServiceListError = FctBlobCountDailyServiceListErrors[keyof FctBlobCountDailyServiceListErrors]; - -export type FctBlobCountDailyServiceListResponses = { + gas_cumulative_gte?: number; /** - * OK + * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: between_min) */ - 200: ListFctBlobCountDailyResponse; -}; - -export type FctBlobCountDailyServiceListResponse = FctBlobCountDailyServiceListResponses[keyof FctBlobCountDailyServiceListResponses]; - -export type FctBlobCountDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_blob_count_daily/{day_start_date}'; -}; - -export type FctBlobCountDailyServiceGetErrors = { + gas_cumulative_between_min?: number; /** - * Default error response + * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: between_max_value) */ - default: Status; -}; - -export type FctBlobCountDailyServiceGetError = FctBlobCountDailyServiceGetErrors[keyof FctBlobCountDailyServiceGetErrors]; - -export type FctBlobCountDailyServiceGetResponses = { + gas_cumulative_between_max_value?: number; /** - * OK + * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: in_values) (comma-separated list) */ - 200: GetFctBlobCountDailyResponse; -}; - -export type FctBlobCountDailyServiceGetResponse = FctBlobCountDailyServiceGetResponses[keyof FctBlobCountDailyServiceGetResponses]; - -export type FctBlobCountHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of slots with blobs in this hour (filter: eq) - */ - block_count_eq?: number; - /** - * Number of slots with blobs in this hour (filter: ne) - */ - block_count_ne?: number; - /** - * Number of slots with blobs in this hour (filter: lt) - */ - block_count_lt?: number; - /** - * Number of slots with blobs in this hour (filter: lte) - */ - block_count_lte?: number; - /** - * Number of slots with blobs in this hour (filter: gt) - */ - block_count_gt?: number; - /** - * Number of slots with blobs in this hour (filter: gte) - */ - block_count_gte?: number; - /** - * Number of slots with blobs in this hour (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of slots with blobs in this hour (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of slots with blobs in this hour (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of slots with blobs in this hour (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total blobs in this hour (filter: eq) - */ - total_blobs_eq?: number; - /** - * Total blobs in this hour (filter: ne) - */ - total_blobs_ne?: number; - /** - * Total blobs in this hour (filter: lt) - */ - total_blobs_lt?: number; - /** - * Total blobs in this hour (filter: lte) - */ - total_blobs_lte?: number; - /** - * Total blobs in this hour (filter: gt) - */ - total_blobs_gt?: number; - /** - * Total blobs in this hour (filter: gte) - */ - total_blobs_gte?: number; - /** - * Total blobs in this hour (filter: between_min) - */ - total_blobs_between_min?: number; - /** - * Total blobs in this hour (filter: between_max_value) - */ - total_blobs_between_max_value?: number; - /** - * Total blobs in this hour (filter: in_values) (comma-separated list) - */ - total_blobs_in_values?: string; - /** - * Total blobs in this hour (filter: not_in_values) (comma-separated list) - */ - total_blobs_not_in_values?: string; - /** - * Filter avg_blob_count using value - */ - avg_blob_count_value?: number; - /** - * Minimum blob count in a slot (filter: eq) - */ - min_blob_count_eq?: number; - /** - * Minimum blob count in a slot (filter: ne) - */ - min_blob_count_ne?: number; - /** - * Minimum blob count in a slot (filter: lt) - */ - min_blob_count_lt?: number; - /** - * Minimum blob count in a slot (filter: lte) - */ - min_blob_count_lte?: number; - /** - * Minimum blob count in a slot (filter: gt) - */ - min_blob_count_gt?: number; - /** - * Minimum blob count in a slot (filter: gte) - */ - min_blob_count_gte?: number; - /** - * Minimum blob count in a slot (filter: between_min) - */ - min_blob_count_between_min?: number; - /** - * Minimum blob count in a slot (filter: between_max_value) - */ - min_blob_count_between_max_value?: number; - /** - * Minimum blob count in a slot (filter: in_values) (comma-separated list) - */ - min_blob_count_in_values?: string; - /** - * Minimum blob count in a slot (filter: not_in_values) (comma-separated list) - */ - min_blob_count_not_in_values?: string; - /** - * Maximum blob count in a slot (filter: eq) - */ - max_blob_count_eq?: number; - /** - * Maximum blob count in a slot (filter: ne) - */ - max_blob_count_ne?: number; - /** - * Maximum blob count in a slot (filter: lt) - */ - max_blob_count_lt?: number; - /** - * Maximum blob count in a slot (filter: lte) - */ - max_blob_count_lte?: number; - /** - * Maximum blob count in a slot (filter: gt) - */ - max_blob_count_gt?: number; - /** - * Maximum blob count in a slot (filter: gte) - */ - max_blob_count_gte?: number; - /** - * Maximum blob count in a slot (filter: between_min) - */ - max_blob_count_between_min?: number; - /** - * Maximum blob count in a slot (filter: between_max_value) - */ - max_blob_count_between_max_value?: number; - /** - * Maximum blob count in a slot (filter: in_values) (comma-separated list) - */ - max_blob_count_in_values?: string; - /** - * Maximum blob count in a slot (filter: not_in_values) (comma-separated list) - */ - max_blob_count_not_in_values?: string; - /** - * Filter p05_blob_count using value - */ - p05_blob_count_value?: number; - /** - * Filter p50_blob_count using value - */ - p50_blob_count_value?: number; - /** - * Filter p95_blob_count using value - */ - p95_blob_count_value?: number; - /** - * Filter stddev_blob_count using value - */ - stddev_blob_count_value?: number; - /** - * Filter upper_band_blob_count using value - */ - upper_band_blob_count_value?: number; - /** - * Filter lower_band_blob_count using value - */ - lower_band_blob_count_value?: number; - /** - * Filter moving_avg_blob_count using value - */ - moving_avg_blob_count_value?: number; - /** - * The maximum number of fct_blob_count_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlobCountHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_blob_count_hourly'; -}; - -export type FctBlobCountHourlyServiceListErrors = { + gas_cumulative_in_values?: string; /** - * Default error response + * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctBlobCountHourlyServiceListError = FctBlobCountHourlyServiceListErrors[keyof FctBlobCountHourlyServiceListErrors]; - -export type FctBlobCountHourlyServiceListResponses = { + gas_cumulative_not_in_values?: string; /** - * OK + * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: eq) */ - 200: ListFctBlobCountHourlyResponse; -}; - -export type FctBlobCountHourlyServiceListResponse = FctBlobCountHourlyServiceListResponses[keyof FctBlobCountHourlyServiceListResponses]; - -export type FctBlobCountHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_blob_count_hourly/{hour_start_date_time}'; -}; - -export type FctBlobCountHourlyServiceGetErrors = { + gas_refund_eq?: number; /** - * Default error response + * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: ne) */ - default: Status; -}; - -export type FctBlobCountHourlyServiceGetError = FctBlobCountHourlyServiceGetErrors[keyof FctBlobCountHourlyServiceGetErrors]; - -export type FctBlobCountHourlyServiceGetResponses = { + gas_refund_ne?: number; /** - * OK + * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: lt) */ - 200: GetFctBlobCountHourlyResponse; -}; - -export type FctBlobCountHourlyServiceGetResponse = FctBlobCountHourlyServiceGetResponses[keyof FctBlobCountHourlyServiceGetResponses]; - -export type FctBlockServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the reorg slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the reorg slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the reorg slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the reorg slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the reorg slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the reorg slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the reorg slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the reorg slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the reorg slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the reorg slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The root hash of the beacon block (filter: eq) - */ - block_root_eq?: string; - /** - * The root hash of the beacon block (filter: ne) - */ - block_root_ne?: string; - /** - * The root hash of the beacon block (filter: contains) - */ - block_root_contains?: string; - /** - * The root hash of the beacon block (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The root hash of the beacon block (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The root hash of the beacon block (filter: like) - */ - block_root_like?: string; - /** - * The root hash of the beacon block (filter: not_like) - */ - block_root_not_like?: string; - /** - * The root hash of the beacon block (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The root hash of the beacon block (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number from beacon block payload (filter: eq) - */ - slot_eq?: number; - /** - * The slot number from beacon block payload (filter: ne) - */ - slot_ne?: number; - /** - * The slot number from beacon block payload (filter: lt) - */ - slot_lt?: number; - /** - * The slot number from beacon block payload (filter: lte) - */ - slot_lte?: number; - /** - * The slot number from beacon block payload (filter: gt) - */ - slot_gt?: number; - /** - * The slot number from beacon block payload (filter: gte) - */ - slot_gte?: number; - /** - * The slot number from beacon block payload (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number from beacon block payload (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number from beacon block payload (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number from beacon block payload (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number from beacon block payload (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number from beacon block payload (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number from beacon block payload (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number from beacon block payload (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number from beacon block payload (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number from beacon block payload (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number from beacon block payload (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number from beacon block payload (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number from beacon block payload (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number from beacon block payload (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The version of the beacon block (filter: eq) - */ - block_version_eq?: string; - /** - * The version of the beacon block (filter: ne) - */ - block_version_ne?: string; - /** - * The version of the beacon block (filter: contains) - */ - block_version_contains?: string; - /** - * The version of the beacon block (filter: starts_with) - */ - block_version_starts_with?: string; - /** - * The version of the beacon block (filter: ends_with) - */ - block_version_ends_with?: string; - /** - * The version of the beacon block (filter: like) - */ - block_version_like?: string; - /** - * The version of the beacon block (filter: not_like) - */ - block_version_not_like?: string; - /** - * The version of the beacon block (filter: in_values) (comma-separated list) - */ - block_version_in_values?: string; - /** - * The version of the beacon block (filter: not_in_values) (comma-separated list) - */ - block_version_not_in_values?: string; - /** - * The total bytes of the beacon block payload (filter: eq) - */ - block_total_bytes_eq?: number; - /** - * The total bytes of the beacon block payload (filter: ne) - */ - block_total_bytes_ne?: number; - /** - * The total bytes of the beacon block payload (filter: lt) - */ - block_total_bytes_lt?: number; - /** - * The total bytes of the beacon block payload (filter: lte) - */ - block_total_bytes_lte?: number; - /** - * The total bytes of the beacon block payload (filter: gt) - */ - block_total_bytes_gt?: number; - /** - * The total bytes of the beacon block payload (filter: gte) - */ - block_total_bytes_gte?: number; - /** - * The total bytes of the beacon block payload (filter: between_min) - */ - block_total_bytes_between_min?: number; - /** - * The total bytes of the beacon block payload (filter: between_max_value) - */ - block_total_bytes_between_max_value?: number; - /** - * The total bytes of the beacon block payload (filter: in_values) (comma-separated list) - */ - block_total_bytes_in_values?: string; - /** - * The total bytes of the beacon block payload (filter: not_in_values) (comma-separated list) - */ - block_total_bytes_not_in_values?: string; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: eq) - */ - block_total_bytes_compressed_eq?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: ne) - */ - block_total_bytes_compressed_ne?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: lt) - */ - block_total_bytes_compressed_lt?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: lte) - */ - block_total_bytes_compressed_lte?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: gt) - */ - block_total_bytes_compressed_gt?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: gte) - */ - block_total_bytes_compressed_gte?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: between_min) - */ - block_total_bytes_compressed_between_min?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: between_max_value) - */ - block_total_bytes_compressed_between_max_value?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: in_values) (comma-separated list) - */ - block_total_bytes_compressed_in_values?: string; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: not_in_values) (comma-separated list) - */ - block_total_bytes_compressed_not_in_values?: string; - /** - * The root hash of the parent beacon block (filter: eq) - */ - parent_root_eq?: string; - /** - * The root hash of the parent beacon block (filter: ne) - */ - parent_root_ne?: string; - /** - * The root hash of the parent beacon block (filter: contains) - */ - parent_root_contains?: string; - /** - * The root hash of the parent beacon block (filter: starts_with) - */ - parent_root_starts_with?: string; - /** - * The root hash of the parent beacon block (filter: ends_with) - */ - parent_root_ends_with?: string; - /** - * The root hash of the parent beacon block (filter: like) - */ - parent_root_like?: string; - /** - * The root hash of the parent beacon block (filter: not_like) - */ - parent_root_not_like?: string; - /** - * The root hash of the parent beacon block (filter: in_values) (comma-separated list) - */ - parent_root_in_values?: string; - /** - * The root hash of the parent beacon block (filter: not_in_values) (comma-separated list) - */ - parent_root_not_in_values?: string; - /** - * The root hash of the beacon state at this block (filter: eq) - */ - state_root_eq?: string; - /** - * The root hash of the beacon state at this block (filter: ne) - */ - state_root_ne?: string; - /** - * The root hash of the beacon state at this block (filter: contains) - */ - state_root_contains?: string; - /** - * The root hash of the beacon state at this block (filter: starts_with) - */ - state_root_starts_with?: string; - /** - * The root hash of the beacon state at this block (filter: ends_with) - */ - state_root_ends_with?: string; - /** - * The root hash of the beacon state at this block (filter: like) - */ - state_root_like?: string; - /** - * The root hash of the beacon state at this block (filter: not_like) - */ - state_root_not_like?: string; - /** - * The root hash of the beacon state at this block (filter: in_values) (comma-separated list) - */ - state_root_in_values?: string; - /** - * The root hash of the beacon state at this block (filter: not_in_values) (comma-separated list) - */ - state_root_not_in_values?: string; - /** - * The index of the validator that proposed the beacon block (filter: eq) - */ - proposer_index_eq?: number; - /** - * The index of the validator that proposed the beacon block (filter: ne) - */ - proposer_index_ne?: number; - /** - * The index of the validator that proposed the beacon block (filter: lt) - */ - proposer_index_lt?: number; - /** - * The index of the validator that proposed the beacon block (filter: lte) - */ - proposer_index_lte?: number; - /** - * The index of the validator that proposed the beacon block (filter: gt) - */ - proposer_index_gt?: number; - /** - * The index of the validator that proposed the beacon block (filter: gte) - */ - proposer_index_gte?: number; - /** - * The index of the validator that proposed the beacon block (filter: between_min) - */ - proposer_index_between_min?: number; - /** - * The index of the validator that proposed the beacon block (filter: between_max_value) - */ - proposer_index_between_max_value?: number; - /** - * The index of the validator that proposed the beacon block (filter: in_values) (comma-separated list) - */ - proposer_index_in_values?: string; - /** - * The index of the validator that proposed the beacon block (filter: not_in_values) (comma-separated list) - */ - proposer_index_not_in_values?: string; - /** - * The block hash of the associated execution block (filter: eq) - */ - eth1_data_block_hash_eq?: string; - /** - * The block hash of the associated execution block (filter: ne) - */ - eth1_data_block_hash_ne?: string; - /** - * The block hash of the associated execution block (filter: contains) - */ - eth1_data_block_hash_contains?: string; - /** - * The block hash of the associated execution block (filter: starts_with) - */ - eth1_data_block_hash_starts_with?: string; - /** - * The block hash of the associated execution block (filter: ends_with) - */ - eth1_data_block_hash_ends_with?: string; - /** - * The block hash of the associated execution block (filter: like) - */ - eth1_data_block_hash_like?: string; - /** - * The block hash of the associated execution block (filter: not_like) - */ - eth1_data_block_hash_not_like?: string; - /** - * The block hash of the associated execution block (filter: in_values) (comma-separated list) - */ - eth1_data_block_hash_in_values?: string; - /** - * The block hash of the associated execution block (filter: not_in_values) (comma-separated list) - */ - eth1_data_block_hash_not_in_values?: string; - /** - * The root of the deposit tree in the associated execution block (filter: eq) - */ - eth1_data_deposit_root_eq?: string; - /** - * The root of the deposit tree in the associated execution block (filter: ne) - */ - eth1_data_deposit_root_ne?: string; - /** - * The root of the deposit tree in the associated execution block (filter: contains) - */ - eth1_data_deposit_root_contains?: string; - /** - * The root of the deposit tree in the associated execution block (filter: starts_with) - */ - eth1_data_deposit_root_starts_with?: string; - /** - * The root of the deposit tree in the associated execution block (filter: ends_with) - */ - eth1_data_deposit_root_ends_with?: string; - /** - * The root of the deposit tree in the associated execution block (filter: like) - */ - eth1_data_deposit_root_like?: string; - /** - * The root of the deposit tree in the associated execution block (filter: not_like) - */ - eth1_data_deposit_root_not_like?: string; - /** - * The root of the deposit tree in the associated execution block (filter: in_values) (comma-separated list) - */ - eth1_data_deposit_root_in_values?: string; - /** - * The root of the deposit tree in the associated execution block (filter: not_in_values) (comma-separated list) - */ - eth1_data_deposit_root_not_in_values?: string; - /** - * The block hash of the execution payload (filter: eq) - */ - execution_payload_block_hash_eq?: string; - /** - * The block hash of the execution payload (filter: ne) - */ - execution_payload_block_hash_ne?: string; - /** - * The block hash of the execution payload (filter: contains) - */ - execution_payload_block_hash_contains?: string; - /** - * The block hash of the execution payload (filter: starts_with) - */ - execution_payload_block_hash_starts_with?: string; - /** - * The block hash of the execution payload (filter: ends_with) - */ - execution_payload_block_hash_ends_with?: string; - /** - * The block hash of the execution payload (filter: like) - */ - execution_payload_block_hash_like?: string; - /** - * The block hash of the execution payload (filter: not_like) - */ - execution_payload_block_hash_not_like?: string; - /** - * The block hash of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_block_hash_in_values?: string; - /** - * The block hash of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_block_hash_not_in_values?: string; - /** - * The block number of the execution payload (filter: eq) - */ - execution_payload_block_number_eq?: number; - /** - * The block number of the execution payload (filter: ne) - */ - execution_payload_block_number_ne?: number; - /** - * The block number of the execution payload (filter: lt) - */ - execution_payload_block_number_lt?: number; - /** - * The block number of the execution payload (filter: lte) - */ - execution_payload_block_number_lte?: number; - /** - * The block number of the execution payload (filter: gt) - */ - execution_payload_block_number_gt?: number; - /** - * The block number of the execution payload (filter: gte) - */ - execution_payload_block_number_gte?: number; - /** - * The block number of the execution payload (filter: between_min) - */ - execution_payload_block_number_between_min?: number; - /** - * The block number of the execution payload (filter: between_max_value) - */ - execution_payload_block_number_between_max_value?: number; - /** - * The block number of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_block_number_in_values?: string; - /** - * The block number of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_block_number_not_in_values?: string; - /** - * The recipient of the fee for this execution payload (filter: eq) - */ - execution_payload_fee_recipient_eq?: string; - /** - * The recipient of the fee for this execution payload (filter: ne) - */ - execution_payload_fee_recipient_ne?: string; - /** - * The recipient of the fee for this execution payload (filter: contains) - */ - execution_payload_fee_recipient_contains?: string; - /** - * The recipient of the fee for this execution payload (filter: starts_with) - */ - execution_payload_fee_recipient_starts_with?: string; - /** - * The recipient of the fee for this execution payload (filter: ends_with) - */ - execution_payload_fee_recipient_ends_with?: string; - /** - * The recipient of the fee for this execution payload (filter: like) - */ - execution_payload_fee_recipient_like?: string; - /** - * The recipient of the fee for this execution payload (filter: not_like) - */ - execution_payload_fee_recipient_not_like?: string; - /** - * The recipient of the fee for this execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_fee_recipient_in_values?: string; - /** - * The recipient of the fee for this execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_fee_recipient_not_in_values?: string; - /** - * Base fee per gas for execution payload (filter: eq) - */ - execution_payload_base_fee_per_gas_eq?: string; - /** - * Base fee per gas for execution payload (filter: ne) - */ - execution_payload_base_fee_per_gas_ne?: string; - /** - * Base fee per gas for execution payload (filter: contains) - */ - execution_payload_base_fee_per_gas_contains?: string; - /** - * Base fee per gas for execution payload (filter: starts_with) - */ - execution_payload_base_fee_per_gas_starts_with?: string; - /** - * Base fee per gas for execution payload (filter: ends_with) - */ - execution_payload_base_fee_per_gas_ends_with?: string; - /** - * Base fee per gas for execution payload (filter: like) - */ - execution_payload_base_fee_per_gas_like?: string; - /** - * Base fee per gas for execution payload (filter: not_like) - */ - execution_payload_base_fee_per_gas_not_like?: string; - /** - * Base fee per gas for execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_base_fee_per_gas_in_values?: string; - /** - * Base fee per gas for execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_base_fee_per_gas_not_in_values?: string; - /** - * Gas used for blobs in execution payload (filter: eq) - */ - execution_payload_blob_gas_used_eq?: number; - /** - * Gas used for blobs in execution payload (filter: ne) - */ - execution_payload_blob_gas_used_ne?: number; - /** - * Gas used for blobs in execution payload (filter: lt) - */ - execution_payload_blob_gas_used_lt?: number; - /** - * Gas used for blobs in execution payload (filter: lte) - */ - execution_payload_blob_gas_used_lte?: number; - /** - * Gas used for blobs in execution payload (filter: gt) - */ - execution_payload_blob_gas_used_gt?: number; - /** - * Gas used for blobs in execution payload (filter: gte) - */ - execution_payload_blob_gas_used_gte?: number; - /** - * Gas used for blobs in execution payload (filter: between_min) - */ - execution_payload_blob_gas_used_between_min?: number; - /** - * Gas used for blobs in execution payload (filter: between_max_value) - */ - execution_payload_blob_gas_used_between_max_value?: number; - /** - * Gas used for blobs in execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_blob_gas_used_in_values?: string; - /** - * Gas used for blobs in execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_blob_gas_used_not_in_values?: string; - /** - * Excess gas used for blobs in execution payload (filter: eq) - */ - execution_payload_excess_blob_gas_eq?: number; - /** - * Excess gas used for blobs in execution payload (filter: ne) - */ - execution_payload_excess_blob_gas_ne?: number; - /** - * Excess gas used for blobs in execution payload (filter: lt) - */ - execution_payload_excess_blob_gas_lt?: number; - /** - * Excess gas used for blobs in execution payload (filter: lte) - */ - execution_payload_excess_blob_gas_lte?: number; - /** - * Excess gas used for blobs in execution payload (filter: gt) - */ - execution_payload_excess_blob_gas_gt?: number; - /** - * Excess gas used for blobs in execution payload (filter: gte) - */ - execution_payload_excess_blob_gas_gte?: number; - /** - * Excess gas used for blobs in execution payload (filter: between_min) - */ - execution_payload_excess_blob_gas_between_min?: number; - /** - * Excess gas used for blobs in execution payload (filter: between_max_value) - */ - execution_payload_excess_blob_gas_between_max_value?: number; - /** - * Excess gas used for blobs in execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_excess_blob_gas_in_values?: string; - /** - * Excess gas used for blobs in execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_excess_blob_gas_not_in_values?: string; - /** - * Gas limit for execution payload (filter: eq) - */ - execution_payload_gas_limit_eq?: number; - /** - * Gas limit for execution payload (filter: ne) - */ - execution_payload_gas_limit_ne?: number; - /** - * Gas limit for execution payload (filter: lt) - */ - execution_payload_gas_limit_lt?: number; - /** - * Gas limit for execution payload (filter: lte) - */ - execution_payload_gas_limit_lte?: number; - /** - * Gas limit for execution payload (filter: gt) - */ - execution_payload_gas_limit_gt?: number; - /** - * Gas limit for execution payload (filter: gte) - */ - execution_payload_gas_limit_gte?: number; - /** - * Gas limit for execution payload (filter: between_min) - */ - execution_payload_gas_limit_between_min?: number; - /** - * Gas limit for execution payload (filter: between_max_value) - */ - execution_payload_gas_limit_between_max_value?: number; - /** - * Gas limit for execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_gas_limit_in_values?: string; - /** - * Gas limit for execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_gas_limit_not_in_values?: string; - /** - * Gas used for execution payload (filter: eq) - */ - execution_payload_gas_used_eq?: number; - /** - * Gas used for execution payload (filter: ne) - */ - execution_payload_gas_used_ne?: number; - /** - * Gas used for execution payload (filter: lt) - */ - execution_payload_gas_used_lt?: number; - /** - * Gas used for execution payload (filter: lte) - */ - execution_payload_gas_used_lte?: number; - /** - * Gas used for execution payload (filter: gt) - */ - execution_payload_gas_used_gt?: number; - /** - * Gas used for execution payload (filter: gte) - */ - execution_payload_gas_used_gte?: number; - /** - * Gas used for execution payload (filter: between_min) - */ - execution_payload_gas_used_between_min?: number; - /** - * Gas used for execution payload (filter: between_max_value) - */ - execution_payload_gas_used_between_max_value?: number; - /** - * Gas used for execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_gas_used_in_values?: string; - /** - * Gas used for execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_gas_used_not_in_values?: string; - /** - * The state root of the execution payload (filter: eq) - */ - execution_payload_state_root_eq?: string; - /** - * The state root of the execution payload (filter: ne) - */ - execution_payload_state_root_ne?: string; - /** - * The state root of the execution payload (filter: contains) - */ - execution_payload_state_root_contains?: string; - /** - * The state root of the execution payload (filter: starts_with) - */ - execution_payload_state_root_starts_with?: string; - /** - * The state root of the execution payload (filter: ends_with) - */ - execution_payload_state_root_ends_with?: string; - /** - * The state root of the execution payload (filter: like) - */ - execution_payload_state_root_like?: string; - /** - * The state root of the execution payload (filter: not_like) - */ - execution_payload_state_root_not_like?: string; - /** - * The state root of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_state_root_in_values?: string; - /** - * The state root of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_state_root_not_in_values?: string; - /** - * The parent hash of the execution payload (filter: eq) - */ - execution_payload_parent_hash_eq?: string; - /** - * The parent hash of the execution payload (filter: ne) - */ - execution_payload_parent_hash_ne?: string; - /** - * The parent hash of the execution payload (filter: contains) - */ - execution_payload_parent_hash_contains?: string; - /** - * The parent hash of the execution payload (filter: starts_with) - */ - execution_payload_parent_hash_starts_with?: string; - /** - * The parent hash of the execution payload (filter: ends_with) - */ - execution_payload_parent_hash_ends_with?: string; - /** - * The parent hash of the execution payload (filter: like) - */ - execution_payload_parent_hash_like?: string; - /** - * The parent hash of the execution payload (filter: not_like) - */ - execution_payload_parent_hash_not_like?: string; - /** - * The parent hash of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_parent_hash_in_values?: string; - /** - * The parent hash of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_parent_hash_not_in_values?: string; - /** - * The transaction count of the execution payload (filter: eq) - */ - execution_payload_transactions_count_eq?: number; - /** - * The transaction count of the execution payload (filter: ne) - */ - execution_payload_transactions_count_ne?: number; - /** - * The transaction count of the execution payload (filter: lt) - */ - execution_payload_transactions_count_lt?: number; - /** - * The transaction count of the execution payload (filter: lte) - */ - execution_payload_transactions_count_lte?: number; - /** - * The transaction count of the execution payload (filter: gt) - */ - execution_payload_transactions_count_gt?: number; - /** - * The transaction count of the execution payload (filter: gte) - */ - execution_payload_transactions_count_gte?: number; - /** - * The transaction count of the execution payload (filter: between_min) - */ - execution_payload_transactions_count_between_min?: number; - /** - * The transaction count of the execution payload (filter: between_max_value) - */ - execution_payload_transactions_count_between_max_value?: number; - /** - * The transaction count of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_transactions_count_in_values?: string; - /** - * The transaction count of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_transactions_count_not_in_values?: string; - /** - * The transaction total bytes of the execution payload (filter: eq) - */ - execution_payload_transactions_total_bytes_eq?: number; - /** - * The transaction total bytes of the execution payload (filter: ne) - */ - execution_payload_transactions_total_bytes_ne?: number; - /** - * The transaction total bytes of the execution payload (filter: lt) - */ - execution_payload_transactions_total_bytes_lt?: number; - /** - * The transaction total bytes of the execution payload (filter: lte) - */ - execution_payload_transactions_total_bytes_lte?: number; - /** - * The transaction total bytes of the execution payload (filter: gt) - */ - execution_payload_transactions_total_bytes_gt?: number; - /** - * The transaction total bytes of the execution payload (filter: gte) - */ - execution_payload_transactions_total_bytes_gte?: number; - /** - * The transaction total bytes of the execution payload (filter: between_min) - */ - execution_payload_transactions_total_bytes_between_min?: number; - /** - * The transaction total bytes of the execution payload (filter: between_max_value) - */ - execution_payload_transactions_total_bytes_between_max_value?: number; - /** - * The transaction total bytes of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_in_values?: string; - /** - * The transaction total bytes of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_not_in_values?: string; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: eq) - */ - execution_payload_transactions_total_bytes_compressed_eq?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: ne) - */ - execution_payload_transactions_total_bytes_compressed_ne?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: lt) - */ - execution_payload_transactions_total_bytes_compressed_lt?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: lte) - */ - execution_payload_transactions_total_bytes_compressed_lte?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: gt) - */ - execution_payload_transactions_total_bytes_compressed_gt?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: gte) - */ - execution_payload_transactions_total_bytes_compressed_gte?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: between_min) - */ - execution_payload_transactions_total_bytes_compressed_between_min?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: between_max_value) - */ - execution_payload_transactions_total_bytes_compressed_between_max_value?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_compressed_in_values?: string; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: not_in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_compressed_not_in_values?: string; - /** - * Can be "canonical" or "orphaned" (filter: eq) - */ - status_eq?: string; - /** - * Can be "canonical" or "orphaned" (filter: ne) - */ - status_ne?: string; - /** - * Can be "canonical" or "orphaned" (filter: contains) - */ - status_contains?: string; - /** - * Can be "canonical" or "orphaned" (filter: starts_with) - */ - status_starts_with?: string; - /** - * Can be "canonical" or "orphaned" (filter: ends_with) - */ - status_ends_with?: string; - /** - * Can be "canonical" or "orphaned" (filter: like) - */ - status_like?: string; - /** - * Can be "canonical" or "orphaned" (filter: not_like) - */ - status_not_like?: string; - /** - * Can be "canonical" or "orphaned" (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Can be "canonical" or "orphaned" (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * The maximum number of fct_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlock` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block'; -}; - -export type FctBlockServiceListErrors = { + gas_refund_lt?: number; /** - * Default error response + * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: lte) */ - default: Status; -}; - -export type FctBlockServiceListError = FctBlockServiceListErrors[keyof FctBlockServiceListErrors]; - -export type FctBlockServiceListResponses = { + gas_refund_lte?: number; /** - * OK + * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: gt) */ - 200: ListFctBlockResponse; -}; - -export type FctBlockServiceListResponse = FctBlockServiceListResponses[keyof FctBlockServiceListResponses]; - -export type FctBlockServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the reorg slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block/{slot_start_date_time}'; -}; - -export type FctBlockServiceGetErrors = { + gas_refund_gt?: number; /** - * Default error response + * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: gte) */ - default: Status; -}; - -export type FctBlockServiceGetError = FctBlockServiceGetErrors[keyof FctBlockServiceGetErrors]; - -export type FctBlockServiceGetResponses = { + gas_refund_gte?: number; /** - * OK + * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: between_min) */ - 200: GetFctBlockResponse; -}; - -export type FctBlockServiceGetResponse = FctBlockServiceGetResponses[keyof FctBlockServiceGetResponses]; - -export type FctBlockBlobCountServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The beacon block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The number of blobs in the block (filter: eq) - */ - blob_count_eq?: number; - /** - * The number of blobs in the block (filter: ne) - */ - blob_count_ne?: number; - /** - * The number of blobs in the block (filter: lt) - */ - blob_count_lt?: number; - /** - * The number of blobs in the block (filter: lte) - */ - blob_count_lte?: number; - /** - * The number of blobs in the block (filter: gt) - */ - blob_count_gt?: number; - /** - * The number of blobs in the block (filter: gte) - */ - blob_count_gte?: number; - /** - * The number of blobs in the block (filter: between_min) - */ - blob_count_between_min?: number; - /** - * The number of blobs in the block (filter: between_max_value) - */ - blob_count_between_max_value?: number; - /** - * The number of blobs in the block (filter: in_values) (comma-separated list) - */ - blob_count_in_values?: string; - /** - * The number of blobs in the block (filter: not_in_values) (comma-separated list) - */ - blob_count_not_in_values?: string; - /** - * Can be "canonical" or "orphaned" (filter: eq) - */ - status_eq?: string; - /** - * Can be "canonical" or "orphaned" (filter: ne) - */ - status_ne?: string; - /** - * Can be "canonical" or "orphaned" (filter: contains) - */ - status_contains?: string; - /** - * Can be "canonical" or "orphaned" (filter: starts_with) - */ - status_starts_with?: string; - /** - * Can be "canonical" or "orphaned" (filter: ends_with) - */ - status_ends_with?: string; - /** - * Can be "canonical" or "orphaned" (filter: like) - */ - status_like?: string; - /** - * Can be "canonical" or "orphaned" (filter: not_like) - */ - status_not_like?: string; - /** - * Can be "canonical" or "orphaned" (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Can be "canonical" or "orphaned" (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * The maximum number of fct_block_blob_count to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockBlobCount` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_blob_count'; -}; - -export type FctBlockBlobCountServiceListErrors = { + gas_refund_between_min?: number; /** - * Default error response + * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: between_max_value) */ - default: Status; -}; - -export type FctBlockBlobCountServiceListError = FctBlockBlobCountServiceListErrors[keyof FctBlockBlobCountServiceListErrors]; - -export type FctBlockBlobCountServiceListResponses = { + gas_refund_between_max_value?: number; /** - * OK + * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: in_values) (comma-separated list) */ - 200: ListFctBlockBlobCountResponse; -}; - -export type FctBlockBlobCountServiceListResponse = FctBlockBlobCountServiceListResponses[keyof FctBlockBlobCountServiceListResponses]; - -export type FctBlockBlobCountServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_blob_count/{slot_start_date_time}'; -}; - -export type FctBlockBlobCountServiceGetErrors = { + gas_refund_in_values?: string; /** - * Default error response + * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctBlockBlobCountServiceGetError = FctBlockBlobCountServiceGetErrors[keyof FctBlockBlobCountServiceGetErrors]; - -export type FctBlockBlobCountServiceGetResponses = { + gas_refund_not_in_values?: string; /** - * OK + * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: eq) */ - 200: GetFctBlockBlobCountResponse; -}; - -export type FctBlockBlobCountServiceGetResponse = FctBlockBlobCountServiceGetResponses[keyof FctBlockBlobCountServiceGetResponses]; - -export type FctBlockBlobCountHeadServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The beacon block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The number of blobs in the block (filter: eq) - */ - blob_count_eq?: number; - /** - * The number of blobs in the block (filter: ne) - */ - blob_count_ne?: number; - /** - * The number of blobs in the block (filter: lt) - */ - blob_count_lt?: number; - /** - * The number of blobs in the block (filter: lte) - */ - blob_count_lte?: number; - /** - * The number of blobs in the block (filter: gt) - */ - blob_count_gt?: number; - /** - * The number of blobs in the block (filter: gte) - */ - blob_count_gte?: number; - /** - * The number of blobs in the block (filter: between_min) - */ - blob_count_between_min?: number; - /** - * The number of blobs in the block (filter: between_max_value) - */ - blob_count_between_max_value?: number; - /** - * The number of blobs in the block (filter: in_values) (comma-separated list) - */ - blob_count_in_values?: string; - /** - * The number of blobs in the block (filter: not_in_values) (comma-separated list) - */ - blob_count_not_in_values?: string; - /** - * The maximum number of fct_block_blob_count_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockBlobCountHead` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_blob_count_head'; -}; - -export type FctBlockBlobCountHeadServiceListErrors = { + intrinsic_gas_eq?: number; /** - * Default error response + * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: ne) */ - default: Status; -}; - -export type FctBlockBlobCountHeadServiceListError = FctBlockBlobCountHeadServiceListErrors[keyof FctBlockBlobCountHeadServiceListErrors]; - -export type FctBlockBlobCountHeadServiceListResponses = { + intrinsic_gas_ne?: number; /** - * OK + * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: lt) */ - 200: ListFctBlockBlobCountHeadResponse; -}; - -export type FctBlockBlobCountHeadServiceListResponse = FctBlockBlobCountHeadServiceListResponses[keyof FctBlockBlobCountHeadServiceListResponses]; - -export type FctBlockBlobCountHeadServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_blob_count_head/{slot_start_date_time}'; -}; - -export type FctBlockBlobCountHeadServiceGetErrors = { + intrinsic_gas_lt?: number; /** - * Default error response + * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: lte) */ - default: Status; -}; - -export type FctBlockBlobCountHeadServiceGetError = FctBlockBlobCountHeadServiceGetErrors[keyof FctBlockBlobCountHeadServiceGetErrors]; - -export type FctBlockBlobCountHeadServiceGetResponses = { + intrinsic_gas_lte?: number; /** - * OK + * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: gt) */ - 200: GetFctBlockBlobCountHeadResponse; -}; - -export type FctBlockBlobCountHeadServiceGetResponse = FctBlockBlobCountHeadServiceGetResponses[keyof FctBlockBlobCountHeadServiceGetResponses]; - -export type FctBlockBlobFirstSeenByNodeServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The beacon block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The blob index (filter: eq) - */ - blob_index_eq?: number; - /** - * The blob index (filter: ne) - */ - blob_index_ne?: number; - /** - * The blob index (filter: lt) - */ - blob_index_lt?: number; - /** - * The blob index (filter: lte) - */ - blob_index_lte?: number; - /** - * The blob index (filter: gt) - */ - blob_index_gt?: number; - /** - * The blob index (filter: gte) - */ - blob_index_gte?: number; - /** - * The blob index (filter: between_min) - */ - blob_index_between_min?: number; - /** - * The blob index (filter: between_max_value) - */ - blob_index_between_max_value?: number; - /** - * The blob index (filter: in_values) (comma-separated list) - */ - blob_index_in_values?: string; - /** - * The blob index (filter: not_in_values) (comma-separated list) - */ - blob_index_not_in_values?: string; - /** - * Name of the client (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the client (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the client (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the client (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the client (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the client (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the client (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the client (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Source of the event (filter: eq) - */ - source_eq?: string; - /** - * Source of the event (filter: ne) - */ - source_ne?: string; - /** - * Source of the event (filter: contains) - */ - source_contains?: string; - /** - * Source of the event (filter: starts_with) - */ - source_starts_with?: string; - /** - * Source of the event (filter: ends_with) - */ - source_ends_with?: string; - /** - * Source of the event (filter: like) - */ - source_like?: string; - /** - * Source of the event (filter: not_like) - */ - source_not_like?: string; - /** - * Source of the event (filter: in_values) (comma-separated list) - */ - source_in_values?: string; - /** - * Source of the event (filter: not_in_values) (comma-separated list) - */ - source_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The time from slot start for the client to see the block (filter: eq) - */ - seen_slot_start_diff_eq?: number; - /** - * The time from slot start for the client to see the block (filter: ne) - */ - seen_slot_start_diff_ne?: number; - /** - * The time from slot start for the client to see the block (filter: lt) - */ - seen_slot_start_diff_lt?: number; - /** - * The time from slot start for the client to see the block (filter: lte) - */ - seen_slot_start_diff_lte?: number; - /** - * The time from slot start for the client to see the block (filter: gt) - */ - seen_slot_start_diff_gt?: number; - /** - * The time from slot start for the client to see the block (filter: gte) - */ - seen_slot_start_diff_gte?: number; - /** - * The time from slot start for the client to see the block (filter: between_min) - */ - seen_slot_start_diff_between_min?: number; - /** - * The time from slot start for the client to see the block (filter: between_max_value) - */ - seen_slot_start_diff_between_max_value?: number; - /** - * The time from slot start for the client to see the block (filter: in_values) (comma-separated list) - */ - seen_slot_start_diff_in_values?: string; - /** - * The time from slot start for the client to see the block (filter: not_in_values) (comma-separated list) - */ - seen_slot_start_diff_not_in_values?: string; - /** - * Username of the node (filter: eq) - */ - username_eq?: string; - /** - * Username of the node (filter: ne) - */ - username_ne?: string; - /** - * Username of the node (filter: contains) - */ - username_contains?: string; - /** - * Username of the node (filter: starts_with) - */ - username_starts_with?: string; - /** - * Username of the node (filter: ends_with) - */ - username_ends_with?: string; - /** - * Username of the node (filter: like) - */ - username_like?: string; - /** - * Username of the node (filter: not_like) - */ - username_not_like?: string; - /** - * Username of the node (filter: in_values) (comma-separated list) - */ - username_in_values?: string; - /** - * Username of the node (filter: not_in_values) (comma-separated list) - */ - username_not_in_values?: string; - /** - * ID of the node (filter: eq) - */ - node_id_eq?: string; - /** - * ID of the node (filter: ne) - */ - node_id_ne?: string; - /** - * ID of the node (filter: contains) - */ - node_id_contains?: string; - /** - * ID of the node (filter: starts_with) - */ - node_id_starts_with?: string; - /** - * ID of the node (filter: ends_with) - */ - node_id_ends_with?: string; - /** - * ID of the node (filter: like) - */ - node_id_like?: string; - /** - * ID of the node (filter: not_like) - */ - node_id_not_like?: string; - /** - * ID of the node (filter: in_values) (comma-separated list) - */ - node_id_in_values?: string; - /** - * ID of the node (filter: not_in_values) (comma-separated list) - */ - node_id_not_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) - */ - classification_eq?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) - */ - classification_ne?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) - */ - classification_contains?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) - */ - classification_starts_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) - */ - classification_ends_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) - */ - classification_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) - */ - classification_not_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) - */ - classification_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) - */ - classification_not_in_values?: string; - /** - * Version of the client (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * Implementation of the client (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * City of the client (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * Continent code of the client (filter: eq) - */ - meta_client_geo_continent_code_eq?: string; - /** - * Continent code of the client (filter: ne) - */ - meta_client_geo_continent_code_ne?: string; - /** - * Continent code of the client (filter: contains) - */ - meta_client_geo_continent_code_contains?: string; - /** - * Continent code of the client (filter: starts_with) - */ - meta_client_geo_continent_code_starts_with?: string; - /** - * Continent code of the client (filter: ends_with) - */ - meta_client_geo_continent_code_ends_with?: string; - /** - * Continent code of the client (filter: like) - */ - meta_client_geo_continent_code_like?: string; - /** - * Continent code of the client (filter: not_like) - */ - meta_client_geo_continent_code_not_like?: string; - /** - * Continent code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_continent_code_in_values?: string; - /** - * Continent code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_continent_code_not_in_values?: string; - /** - * Filter meta_client_geo_longitude using value - */ - meta_client_geo_longitude_value?: number; - /** - * Filter meta_client_geo_latitude using value - */ - meta_client_geo_latitude_value?: number; - /** - * Autonomous system number of the client (filter: eq) - */ - meta_client_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the client (filter: ne) - */ - meta_client_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the client (filter: lt) - */ - meta_client_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the client (filter: lte) - */ - meta_client_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the client (filter: gt) - */ - meta_client_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the client (filter: gte) - */ - meta_client_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the client (filter: between_min) - */ - meta_client_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the client (filter: between_max_value) - */ - meta_client_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the client (filter: eq) - */ - meta_client_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the client (filter: ne) - */ - meta_client_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the client (filter: contains) - */ - meta_client_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the client (filter: starts_with) - */ - meta_client_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the client (filter: ends_with) - */ - meta_client_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the client (filter: like) - */ - meta_client_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the client (filter: not_like) - */ - meta_client_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_not_in_values?: string; - /** - * Ethereum consensus client version (filter: eq) - */ - meta_consensus_version_eq?: string; - /** - * Ethereum consensus client version (filter: ne) - */ - meta_consensus_version_ne?: string; - /** - * Ethereum consensus client version (filter: contains) - */ - meta_consensus_version_contains?: string; - /** - * Ethereum consensus client version (filter: starts_with) - */ - meta_consensus_version_starts_with?: string; - /** - * Ethereum consensus client version (filter: ends_with) - */ - meta_consensus_version_ends_with?: string; - /** - * Ethereum consensus client version (filter: like) - */ - meta_consensus_version_like?: string; - /** - * Ethereum consensus client version (filter: not_like) - */ - meta_consensus_version_not_like?: string; - /** - * Ethereum consensus client version (filter: in_values) (comma-separated list) - */ - meta_consensus_version_in_values?: string; - /** - * Ethereum consensus client version (filter: not_in_values) (comma-separated list) - */ - meta_consensus_version_not_in_values?: string; - /** - * Ethereum consensus client implementation (filter: eq) - */ - meta_consensus_implementation_eq?: string; - /** - * Ethereum consensus client implementation (filter: ne) - */ - meta_consensus_implementation_ne?: string; - /** - * Ethereum consensus client implementation (filter: contains) - */ - meta_consensus_implementation_contains?: string; - /** - * Ethereum consensus client implementation (filter: starts_with) - */ - meta_consensus_implementation_starts_with?: string; - /** - * Ethereum consensus client implementation (filter: ends_with) - */ - meta_consensus_implementation_ends_with?: string; - /** - * Ethereum consensus client implementation (filter: like) - */ - meta_consensus_implementation_like?: string; - /** - * Ethereum consensus client implementation (filter: not_like) - */ - meta_consensus_implementation_not_like?: string; - /** - * Ethereum consensus client implementation (filter: in_values) (comma-separated list) - */ - meta_consensus_implementation_in_values?: string; - /** - * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) - */ - meta_consensus_implementation_not_in_values?: string; - /** - * The maximum number of fct_block_blob_first_seen_by_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockBlobFirstSeenByNode` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_blob_first_seen_by_node'; -}; - -export type FctBlockBlobFirstSeenByNodeServiceListErrors = { + intrinsic_gas_gt?: number; /** - * Default error response + * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: gte) */ - default: Status; -}; - -export type FctBlockBlobFirstSeenByNodeServiceListError = FctBlockBlobFirstSeenByNodeServiceListErrors[keyof FctBlockBlobFirstSeenByNodeServiceListErrors]; - -export type FctBlockBlobFirstSeenByNodeServiceListResponses = { + intrinsic_gas_gte?: number; /** - * OK + * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: between_min) */ - 200: ListFctBlockBlobFirstSeenByNodeResponse; -}; - -export type FctBlockBlobFirstSeenByNodeServiceListResponse = FctBlockBlobFirstSeenByNodeServiceListResponses[keyof FctBlockBlobFirstSeenByNodeServiceListResponses]; - -export type FctBlockBlobFirstSeenByNodeServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_blob_first_seen_by_node/{slot_start_date_time}'; -}; - -export type FctBlockBlobFirstSeenByNodeServiceGetErrors = { + intrinsic_gas_between_min?: number; /** - * Default error response + * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: between_max_value) */ - default: Status; -}; - -export type FctBlockBlobFirstSeenByNodeServiceGetError = FctBlockBlobFirstSeenByNodeServiceGetErrors[keyof FctBlockBlobFirstSeenByNodeServiceGetErrors]; - -export type FctBlockBlobFirstSeenByNodeServiceGetResponses = { + intrinsic_gas_between_max_value?: number; /** - * OK + * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: in_values) (comma-separated list) */ - 200: GetFctBlockBlobFirstSeenByNodeResponse; -}; - -export type FctBlockBlobFirstSeenByNodeServiceGetResponse = FctBlockBlobFirstSeenByNodeServiceGetResponses[keyof FctBlockBlobFirstSeenByNodeServiceGetResponses]; - -export type FctBlockBlobHeadServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The beacon block root hash containing the blob (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash containing the blob (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash containing the blob (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash containing the blob (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash containing the blob (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash containing the blob (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash containing the blob (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash containing the blob (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash containing the blob (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The index of the blob within the block (filter: eq) - */ - blob_index_eq?: number; - /** - * The index of the blob within the block (filter: ne) - */ - blob_index_ne?: number; - /** - * The index of the blob within the block (filter: lt) - */ - blob_index_lt?: number; - /** - * The index of the blob within the block (filter: lte) - */ - blob_index_lte?: number; - /** - * The index of the blob within the block (filter: gt) - */ - blob_index_gt?: number; - /** - * The index of the blob within the block (filter: gte) - */ - blob_index_gte?: number; - /** - * The index of the blob within the block (filter: between_min) - */ - blob_index_between_min?: number; - /** - * The index of the blob within the block (filter: between_max_value) - */ - blob_index_between_max_value?: number; - /** - * The index of the blob within the block (filter: in_values) (comma-separated list) - */ - blob_index_in_values?: string; - /** - * The index of the blob within the block (filter: not_in_values) (comma-separated list) - */ - blob_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: eq) - */ - versioned_hash_eq?: string; - /** - * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: ne) - */ - versioned_hash_ne?: string; - /** - * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: contains) - */ - versioned_hash_contains?: string; - /** - * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: starts_with) - */ - versioned_hash_starts_with?: string; - /** - * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: ends_with) - */ - versioned_hash_ends_with?: string; - /** - * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: like) - */ - versioned_hash_like?: string; - /** - * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: not_like) - */ - versioned_hash_not_like?: string; - /** - * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: in_values) (comma-separated list) - */ - versioned_hash_in_values?: string; - /** - * The versioned hash derived from the KZG commitment, used as the blob archive key (filter: not_in_values) (comma-separated list) - */ - versioned_hash_not_in_values?: string; - /** - * The KZG commitment of the blob (filter: eq) - */ - kzg_commitment_eq?: string; - /** - * The KZG commitment of the blob (filter: ne) - */ - kzg_commitment_ne?: string; - /** - * The KZG commitment of the blob (filter: contains) - */ - kzg_commitment_contains?: string; - /** - * The KZG commitment of the blob (filter: starts_with) - */ - kzg_commitment_starts_with?: string; - /** - * The KZG commitment of the blob (filter: ends_with) - */ - kzg_commitment_ends_with?: string; - /** - * The KZG commitment of the blob (filter: like) - */ - kzg_commitment_like?: string; - /** - * The KZG commitment of the blob (filter: not_like) - */ - kzg_commitment_not_like?: string; - /** - * The KZG commitment of the blob (filter: in_values) (comma-separated list) - */ - kzg_commitment_in_values?: string; - /** - * The KZG commitment of the blob (filter: not_in_values) (comma-separated list) - */ - kzg_commitment_not_in_values?: string; - /** - * The maximum number of fct_block_blob_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockBlobHead` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_blob_head'; -}; - -export type FctBlockBlobHeadServiceListErrors = { + intrinsic_gas_in_values?: string; /** - * Default error response + * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctBlockBlobHeadServiceListError = FctBlockBlobHeadServiceListErrors[keyof FctBlockBlobHeadServiceListErrors]; - -export type FctBlockBlobHeadServiceListResponses = { + intrinsic_gas_not_in_values?: string; /** - * OK + * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: eq) */ - 200: ListFctBlockBlobHeadResponse; -}; - -export type FctBlockBlobHeadServiceListResponse = FctBlockBlobHeadServiceListResponses[keyof FctBlockBlobHeadServiceListResponses]; - -export type FctBlockBlobHeadServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_blob_head/{slot_start_date_time}'; -}; - -export type FctBlockBlobHeadServiceGetErrors = { + receipt_gas_used_eq?: number; /** - * Default error response + * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: ne) */ - default: Status; -}; - -export type FctBlockBlobHeadServiceGetError = FctBlockBlobHeadServiceGetErrors[keyof FctBlockBlobHeadServiceGetErrors]; - -export type FctBlockBlobHeadServiceGetResponses = { + receipt_gas_used_ne?: number; /** - * OK + * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: lt) */ - 200: GetFctBlockBlobHeadResponse; -}; - -export type FctBlockBlobHeadServiceGetResponse = FctBlockBlobHeadServiceGetResponses[keyof FctBlockBlobHeadServiceGetResponses]; - -export type FctBlockDataColumnSidecarFirstSeenServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The beacon block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The data column index (filter: eq) - */ - column_index_eq?: number; - /** - * The data column index (filter: ne) - */ - column_index_ne?: number; - /** - * The data column index (filter: lt) - */ - column_index_lt?: number; - /** - * The data column index (filter: lte) - */ - column_index_lte?: number; - /** - * The data column index (filter: gt) - */ - column_index_gt?: number; - /** - * The data column index (filter: gte) - */ - column_index_gte?: number; - /** - * The data column index (filter: between_min) - */ - column_index_between_min?: number; - /** - * The data column index (filter: between_max_value) - */ - column_index_between_max_value?: number; - /** - * The data column index (filter: in_values) (comma-separated list) - */ - column_index_in_values?: string; - /** - * The data column index (filter: not_in_values) (comma-separated list) - */ - column_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Source of the event (filter: eq) - */ - source_eq?: string; - /** - * Source of the event (filter: ne) - */ - source_ne?: string; - /** - * Source of the event (filter: contains) - */ - source_contains?: string; - /** - * Source of the event (filter: starts_with) - */ - source_starts_with?: string; - /** - * Source of the event (filter: ends_with) - */ - source_ends_with?: string; - /** - * Source of the event (filter: like) - */ - source_like?: string; - /** - * Source of the event (filter: not_like) - */ - source_not_like?: string; - /** - * Source of the event (filter: in_values) (comma-separated list) - */ - source_in_values?: string; - /** - * Source of the event (filter: not_in_values) (comma-separated list) - */ - source_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The time from slot start until the data column was first seen by any node (filter: eq) - */ - seen_slot_start_diff_eq?: number; - /** - * The time from slot start until the data column was first seen by any node (filter: ne) - */ - seen_slot_start_diff_ne?: number; - /** - * The time from slot start until the data column was first seen by any node (filter: lt) - */ - seen_slot_start_diff_lt?: number; - /** - * The time from slot start until the data column was first seen by any node (filter: lte) - */ - seen_slot_start_diff_lte?: number; - /** - * The time from slot start until the data column was first seen by any node (filter: gt) - */ - seen_slot_start_diff_gt?: number; - /** - * The time from slot start until the data column was first seen by any node (filter: gte) - */ - seen_slot_start_diff_gte?: number; - /** - * The time from slot start until the data column was first seen by any node (filter: between_min) - */ - seen_slot_start_diff_between_min?: number; - /** - * The time from slot start until the data column was first seen by any node (filter: between_max_value) - */ - seen_slot_start_diff_between_max_value?: number; - /** - * The time from slot start until the data column was first seen by any node (filter: in_values) (comma-separated list) - */ - seen_slot_start_diff_in_values?: string; - /** - * The time from slot start until the data column was first seen by any node (filter: not_in_values) (comma-separated list) - */ - seen_slot_start_diff_not_in_values?: string; - /** - * The number of rows (blobs) in the data column sidecar (filter: eq) - */ - row_count_eq?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: ne) - */ - row_count_ne?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: lt) - */ - row_count_lt?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: lte) - */ - row_count_lte?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: gt) - */ - row_count_gt?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: gte) - */ - row_count_gte?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: between_min) - */ - row_count_between_min?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: between_max_value) - */ - row_count_between_max_value?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: in_values) (comma-separated list) - */ - row_count_in_values?: string; - /** - * The number of rows (blobs) in the data column sidecar (filter: not_in_values) (comma-separated list) - */ - row_count_not_in_values?: string; - /** - * Username of the node that first saw the data column (filter: eq) - */ - username_eq?: string; - /** - * Username of the node that first saw the data column (filter: ne) - */ - username_ne?: string; - /** - * Username of the node that first saw the data column (filter: contains) - */ - username_contains?: string; - /** - * Username of the node that first saw the data column (filter: starts_with) - */ - username_starts_with?: string; - /** - * Username of the node that first saw the data column (filter: ends_with) - */ - username_ends_with?: string; - /** - * Username of the node that first saw the data column (filter: like) - */ - username_like?: string; - /** - * Username of the node that first saw the data column (filter: not_like) - */ - username_not_like?: string; - /** - * Username of the node that first saw the data column (filter: in_values) (comma-separated list) - */ - username_in_values?: string; - /** - * Username of the node that first saw the data column (filter: not_in_values) (comma-separated list) - */ - username_not_in_values?: string; - /** - * ID of the node that first saw the data column (filter: eq) - */ - node_id_eq?: string; - /** - * ID of the node that first saw the data column (filter: ne) - */ - node_id_ne?: string; - /** - * ID of the node that first saw the data column (filter: contains) - */ - node_id_contains?: string; - /** - * ID of the node that first saw the data column (filter: starts_with) - */ - node_id_starts_with?: string; - /** - * ID of the node that first saw the data column (filter: ends_with) - */ - node_id_ends_with?: string; - /** - * ID of the node that first saw the data column (filter: like) - */ - node_id_like?: string; - /** - * ID of the node that first saw the data column (filter: not_like) - */ - node_id_not_like?: string; - /** - * ID of the node that first saw the data column (filter: in_values) (comma-separated list) - */ - node_id_in_values?: string; - /** - * ID of the node that first saw the data column (filter: not_in_values) (comma-separated list) - */ - node_id_not_in_values?: string; - /** - * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) - */ - classification_eq?: string; - /** - * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) - */ - classification_ne?: string; - /** - * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) - */ - classification_contains?: string; - /** - * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) - */ - classification_starts_with?: string; - /** - * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) - */ - classification_ends_with?: string; - /** - * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) - */ - classification_like?: string; - /** - * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) - */ - classification_not_like?: string; - /** - * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) - */ - classification_in_values?: string; - /** - * Classification of the node that first saw the data column, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) - */ - classification_not_in_values?: string; - /** - * Name of the client that first saw the data column (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the client that first saw the data column (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the client that first saw the data column (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the client that first saw the data column (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the client that first saw the data column (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the client that first saw the data column (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the client that first saw the data column (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the client that first saw the data column (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the client that first saw the data column (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * Version of the client that first saw the data column (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client that first saw the data column (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client that first saw the data column (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client that first saw the data column (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client that first saw the data column (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client that first saw the data column (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client that first saw the data column (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client that first saw the data column (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client that first saw the data column (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * Implementation of the client that first saw the data column (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client that first saw the data column (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client that first saw the data column (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client that first saw the data column (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client that first saw the data column (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client that first saw the data column (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client that first saw the data column (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client that first saw the data column (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client that first saw the data column (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * City of the client that first saw the data column (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client that first saw the data column (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client that first saw the data column (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client that first saw the data column (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client that first saw the data column (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client that first saw the data column (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client that first saw the data column (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client that first saw the data column (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client that first saw the data column (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client that first saw the data column (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client that first saw the data column (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client that first saw the data column (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client that first saw the data column (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client that first saw the data column (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client that first saw the data column (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client that first saw the data column (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client that first saw the data column (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client that first saw the data column (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client that first saw the data column (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client that first saw the data column (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client that first saw the data column (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client that first saw the data column (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client that first saw the data column (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client that first saw the data column (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client that first saw the data column (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client that first saw the data column (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client that first saw the data column (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * Continent code of the client that first saw the data column (filter: eq) - */ - meta_client_geo_continent_code_eq?: string; - /** - * Continent code of the client that first saw the data column (filter: ne) - */ - meta_client_geo_continent_code_ne?: string; - /** - * Continent code of the client that first saw the data column (filter: contains) - */ - meta_client_geo_continent_code_contains?: string; - /** - * Continent code of the client that first saw the data column (filter: starts_with) - */ - meta_client_geo_continent_code_starts_with?: string; - /** - * Continent code of the client that first saw the data column (filter: ends_with) - */ - meta_client_geo_continent_code_ends_with?: string; - /** - * Continent code of the client that first saw the data column (filter: like) - */ - meta_client_geo_continent_code_like?: string; - /** - * Continent code of the client that first saw the data column (filter: not_like) - */ - meta_client_geo_continent_code_not_like?: string; - /** - * Continent code of the client that first saw the data column (filter: in_values) (comma-separated list) - */ - meta_client_geo_continent_code_in_values?: string; - /** - * Continent code of the client that first saw the data column (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_continent_code_not_in_values?: string; - /** - * Filter meta_client_geo_longitude using value - */ - meta_client_geo_longitude_value?: number; - /** - * Filter meta_client_geo_latitude using value - */ - meta_client_geo_latitude_value?: number; - /** - * Autonomous system number of the client that first saw the data column (filter: eq) - */ - meta_client_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the client that first saw the data column (filter: ne) - */ - meta_client_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the client that first saw the data column (filter: lt) - */ - meta_client_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the client that first saw the data column (filter: lte) - */ - meta_client_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the client that first saw the data column (filter: gt) - */ - meta_client_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the client that first saw the data column (filter: gte) - */ - meta_client_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the client that first saw the data column (filter: between_min) - */ - meta_client_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the client that first saw the data column (filter: between_max_value) - */ - meta_client_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the client that first saw the data column (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the client that first saw the data column (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the client that first saw the data column (filter: eq) - */ - meta_client_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the client that first saw the data column (filter: ne) - */ - meta_client_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the client that first saw the data column (filter: contains) - */ - meta_client_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the client that first saw the data column (filter: starts_with) - */ - meta_client_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the client that first saw the data column (filter: ends_with) - */ - meta_client_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the client that first saw the data column (filter: like) - */ - meta_client_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the client that first saw the data column (filter: not_like) - */ - meta_client_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the client that first saw the data column (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the client that first saw the data column (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_not_in_values?: string; - /** - * Ethereum consensus client version of the client that first saw the data column (filter: eq) - */ - meta_consensus_version_eq?: string; - /** - * Ethereum consensus client version of the client that first saw the data column (filter: ne) - */ - meta_consensus_version_ne?: string; - /** - * Ethereum consensus client version of the client that first saw the data column (filter: contains) - */ - meta_consensus_version_contains?: string; - /** - * Ethereum consensus client version of the client that first saw the data column (filter: starts_with) - */ - meta_consensus_version_starts_with?: string; - /** - * Ethereum consensus client version of the client that first saw the data column (filter: ends_with) - */ - meta_consensus_version_ends_with?: string; - /** - * Ethereum consensus client version of the client that first saw the data column (filter: like) - */ - meta_consensus_version_like?: string; - /** - * Ethereum consensus client version of the client that first saw the data column (filter: not_like) - */ - meta_consensus_version_not_like?: string; - /** - * Ethereum consensus client version of the client that first saw the data column (filter: in_values) (comma-separated list) - */ - meta_consensus_version_in_values?: string; - /** - * Ethereum consensus client version of the client that first saw the data column (filter: not_in_values) (comma-separated list) - */ - meta_consensus_version_not_in_values?: string; - /** - * Ethereum consensus client implementation of the client that first saw the data column (filter: eq) - */ - meta_consensus_implementation_eq?: string; - /** - * Ethereum consensus client implementation of the client that first saw the data column (filter: ne) - */ - meta_consensus_implementation_ne?: string; - /** - * Ethereum consensus client implementation of the client that first saw the data column (filter: contains) - */ - meta_consensus_implementation_contains?: string; - /** - * Ethereum consensus client implementation of the client that first saw the data column (filter: starts_with) - */ - meta_consensus_implementation_starts_with?: string; - /** - * Ethereum consensus client implementation of the client that first saw the data column (filter: ends_with) - */ - meta_consensus_implementation_ends_with?: string; - /** - * Ethereum consensus client implementation of the client that first saw the data column (filter: like) - */ - meta_consensus_implementation_like?: string; - /** - * Ethereum consensus client implementation of the client that first saw the data column (filter: not_like) - */ - meta_consensus_implementation_not_like?: string; - /** - * Ethereum consensus client implementation of the client that first saw the data column (filter: in_values) (comma-separated list) - */ - meta_consensus_implementation_in_values?: string; - /** - * Ethereum consensus client implementation of the client that first saw the data column (filter: not_in_values) (comma-separated list) - */ - meta_consensus_implementation_not_in_values?: string; - /** - * The maximum number of fct_block_data_column_sidecar_first_seen to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockDataColumnSidecarFirstSeen` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_data_column_sidecar_first_seen'; -}; - -export type FctBlockDataColumnSidecarFirstSeenServiceListErrors = { + receipt_gas_used_lt?: number; /** - * Default error response + * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: lte) */ - default: Status; -}; - -export type FctBlockDataColumnSidecarFirstSeenServiceListError = FctBlockDataColumnSidecarFirstSeenServiceListErrors[keyof FctBlockDataColumnSidecarFirstSeenServiceListErrors]; - -export type FctBlockDataColumnSidecarFirstSeenServiceListResponses = { + receipt_gas_used_lte?: number; /** - * OK + * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: gt) */ - 200: ListFctBlockDataColumnSidecarFirstSeenResponse; -}; - -export type FctBlockDataColumnSidecarFirstSeenServiceListResponse = FctBlockDataColumnSidecarFirstSeenServiceListResponses[keyof FctBlockDataColumnSidecarFirstSeenServiceListResponses]; - -export type FctBlockDataColumnSidecarFirstSeenServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_data_column_sidecar_first_seen/{slot_start_date_time}'; -}; - -export type FctBlockDataColumnSidecarFirstSeenServiceGetErrors = { + receipt_gas_used_gt?: number; /** - * Default error response + * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: gte) */ - default: Status; -}; - -export type FctBlockDataColumnSidecarFirstSeenServiceGetError = FctBlockDataColumnSidecarFirstSeenServiceGetErrors[keyof FctBlockDataColumnSidecarFirstSeenServiceGetErrors]; - -export type FctBlockDataColumnSidecarFirstSeenServiceGetResponses = { + receipt_gas_used_gte?: number; /** - * OK + * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: between_min) */ - 200: GetFctBlockDataColumnSidecarFirstSeenResponse; -}; - -export type FctBlockDataColumnSidecarFirstSeenServiceGetResponse = FctBlockDataColumnSidecarFirstSeenServiceGetResponses[keyof FctBlockDataColumnSidecarFirstSeenServiceGetResponses]; - -export type FctBlockDataColumnSidecarFirstSeenByNodeServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The beacon block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The data column index (filter: eq) - */ - column_index_eq?: number; - /** - * The data column index (filter: ne) - */ - column_index_ne?: number; - /** - * The data column index (filter: lt) - */ - column_index_lt?: number; - /** - * The data column index (filter: lte) - */ - column_index_lte?: number; - /** - * The data column index (filter: gt) - */ - column_index_gt?: number; - /** - * The data column index (filter: gte) - */ - column_index_gte?: number; - /** - * The data column index (filter: between_min) - */ - column_index_between_min?: number; - /** - * The data column index (filter: between_max_value) - */ - column_index_between_max_value?: number; - /** - * The data column index (filter: in_values) (comma-separated list) - */ - column_index_in_values?: string; - /** - * The data column index (filter: not_in_values) (comma-separated list) - */ - column_index_not_in_values?: string; - /** - * Name of the client (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the client (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the client (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the client (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the client (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the client (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the client (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the client (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Source of the event (filter: eq) - */ - source_eq?: string; - /** - * Source of the event (filter: ne) - */ - source_ne?: string; - /** - * Source of the event (filter: contains) - */ - source_contains?: string; - /** - * Source of the event (filter: starts_with) - */ - source_starts_with?: string; - /** - * Source of the event (filter: ends_with) - */ - source_ends_with?: string; - /** - * Source of the event (filter: like) - */ - source_like?: string; - /** - * Source of the event (filter: not_like) - */ - source_not_like?: string; - /** - * Source of the event (filter: in_values) (comma-separated list) - */ - source_in_values?: string; - /** - * Source of the event (filter: not_in_values) (comma-separated list) - */ - source_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The time from slot start for the client to see the data column (filter: eq) - */ - seen_slot_start_diff_eq?: number; - /** - * The time from slot start for the client to see the data column (filter: ne) - */ - seen_slot_start_diff_ne?: number; - /** - * The time from slot start for the client to see the data column (filter: lt) - */ - seen_slot_start_diff_lt?: number; - /** - * The time from slot start for the client to see the data column (filter: lte) - */ - seen_slot_start_diff_lte?: number; - /** - * The time from slot start for the client to see the data column (filter: gt) - */ - seen_slot_start_diff_gt?: number; - /** - * The time from slot start for the client to see the data column (filter: gte) - */ - seen_slot_start_diff_gte?: number; - /** - * The time from slot start for the client to see the data column (filter: between_min) - */ - seen_slot_start_diff_between_min?: number; - /** - * The time from slot start for the client to see the data column (filter: between_max_value) - */ - seen_slot_start_diff_between_max_value?: number; - /** - * The time from slot start for the client to see the data column (filter: in_values) (comma-separated list) - */ - seen_slot_start_diff_in_values?: string; - /** - * The time from slot start for the client to see the data column (filter: not_in_values) (comma-separated list) - */ - seen_slot_start_diff_not_in_values?: string; - /** - * The number of rows (blobs) in the data column sidecar (filter: eq) - */ - row_count_eq?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: ne) - */ - row_count_ne?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: lt) - */ - row_count_lt?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: lte) - */ - row_count_lte?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: gt) - */ - row_count_gt?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: gte) - */ - row_count_gte?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: between_min) - */ - row_count_between_min?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: between_max_value) - */ - row_count_between_max_value?: number; - /** - * The number of rows (blobs) in the data column sidecar (filter: in_values) (comma-separated list) - */ - row_count_in_values?: string; - /** - * The number of rows (blobs) in the data column sidecar (filter: not_in_values) (comma-separated list) - */ - row_count_not_in_values?: string; - /** - * Username of the node (filter: eq) - */ - username_eq?: string; - /** - * Username of the node (filter: ne) - */ - username_ne?: string; - /** - * Username of the node (filter: contains) - */ - username_contains?: string; - /** - * Username of the node (filter: starts_with) - */ - username_starts_with?: string; - /** - * Username of the node (filter: ends_with) - */ - username_ends_with?: string; - /** - * Username of the node (filter: like) - */ - username_like?: string; - /** - * Username of the node (filter: not_like) - */ - username_not_like?: string; - /** - * Username of the node (filter: in_values) (comma-separated list) - */ - username_in_values?: string; - /** - * Username of the node (filter: not_in_values) (comma-separated list) - */ - username_not_in_values?: string; - /** - * ID of the node (filter: eq) - */ - node_id_eq?: string; - /** - * ID of the node (filter: ne) - */ - node_id_ne?: string; - /** - * ID of the node (filter: contains) - */ - node_id_contains?: string; - /** - * ID of the node (filter: starts_with) - */ - node_id_starts_with?: string; - /** - * ID of the node (filter: ends_with) - */ - node_id_ends_with?: string; - /** - * ID of the node (filter: like) - */ - node_id_like?: string; - /** - * ID of the node (filter: not_like) - */ - node_id_not_like?: string; - /** - * ID of the node (filter: in_values) (comma-separated list) - */ - node_id_in_values?: string; - /** - * ID of the node (filter: not_in_values) (comma-separated list) - */ - node_id_not_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) - */ - classification_eq?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) - */ - classification_ne?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) - */ - classification_contains?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) - */ - classification_starts_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) - */ - classification_ends_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) - */ - classification_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) - */ - classification_not_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) - */ - classification_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) - */ - classification_not_in_values?: string; - /** - * Version of the client (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * Implementation of the client (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * City of the client (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * Continent code of the client (filter: eq) - */ - meta_client_geo_continent_code_eq?: string; - /** - * Continent code of the client (filter: ne) - */ - meta_client_geo_continent_code_ne?: string; - /** - * Continent code of the client (filter: contains) - */ - meta_client_geo_continent_code_contains?: string; - /** - * Continent code of the client (filter: starts_with) - */ - meta_client_geo_continent_code_starts_with?: string; - /** - * Continent code of the client (filter: ends_with) - */ - meta_client_geo_continent_code_ends_with?: string; - /** - * Continent code of the client (filter: like) - */ - meta_client_geo_continent_code_like?: string; - /** - * Continent code of the client (filter: not_like) - */ - meta_client_geo_continent_code_not_like?: string; - /** - * Continent code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_continent_code_in_values?: string; - /** - * Continent code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_continent_code_not_in_values?: string; - /** - * Filter meta_client_geo_longitude using value - */ - meta_client_geo_longitude_value?: number; - /** - * Filter meta_client_geo_latitude using value - */ - meta_client_geo_latitude_value?: number; - /** - * Autonomous system number of the client (filter: eq) - */ - meta_client_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the client (filter: ne) - */ - meta_client_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the client (filter: lt) - */ - meta_client_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the client (filter: lte) - */ - meta_client_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the client (filter: gt) - */ - meta_client_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the client (filter: gte) - */ - meta_client_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the client (filter: between_min) - */ - meta_client_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the client (filter: between_max_value) - */ - meta_client_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the client (filter: eq) - */ - meta_client_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the client (filter: ne) - */ - meta_client_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the client (filter: contains) - */ - meta_client_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the client (filter: starts_with) - */ - meta_client_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the client (filter: ends_with) - */ - meta_client_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the client (filter: like) - */ - meta_client_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the client (filter: not_like) - */ - meta_client_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_not_in_values?: string; - /** - * Ethereum consensus client version (filter: eq) - */ - meta_consensus_version_eq?: string; - /** - * Ethereum consensus client version (filter: ne) - */ - meta_consensus_version_ne?: string; - /** - * Ethereum consensus client version (filter: contains) - */ - meta_consensus_version_contains?: string; - /** - * Ethereum consensus client version (filter: starts_with) - */ - meta_consensus_version_starts_with?: string; - /** - * Ethereum consensus client version (filter: ends_with) - */ - meta_consensus_version_ends_with?: string; - /** - * Ethereum consensus client version (filter: like) - */ - meta_consensus_version_like?: string; - /** - * Ethereum consensus client version (filter: not_like) - */ - meta_consensus_version_not_like?: string; - /** - * Ethereum consensus client version (filter: in_values) (comma-separated list) - */ - meta_consensus_version_in_values?: string; - /** - * Ethereum consensus client version (filter: not_in_values) (comma-separated list) - */ - meta_consensus_version_not_in_values?: string; - /** - * Ethereum consensus client implementation (filter: eq) - */ - meta_consensus_implementation_eq?: string; - /** - * Ethereum consensus client implementation (filter: ne) - */ - meta_consensus_implementation_ne?: string; - /** - * Ethereum consensus client implementation (filter: contains) - */ - meta_consensus_implementation_contains?: string; - /** - * Ethereum consensus client implementation (filter: starts_with) - */ - meta_consensus_implementation_starts_with?: string; - /** - * Ethereum consensus client implementation (filter: ends_with) - */ - meta_consensus_implementation_ends_with?: string; - /** - * Ethereum consensus client implementation (filter: like) - */ - meta_consensus_implementation_like?: string; - /** - * Ethereum consensus client implementation (filter: not_like) - */ - meta_consensus_implementation_not_like?: string; - /** - * Ethereum consensus client implementation (filter: in_values) (comma-separated list) - */ - meta_consensus_implementation_in_values?: string; - /** - * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) - */ - meta_consensus_implementation_not_in_values?: string; - /** - * The maximum number of fct_block_data_column_sidecar_first_seen_by_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockDataColumnSidecarFirstSeenByNode` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_data_column_sidecar_first_seen_by_node'; -}; - -export type FctBlockDataColumnSidecarFirstSeenByNodeServiceListErrors = { + receipt_gas_used_between_min?: number; /** - * Default error response + * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: between_max_value) */ - default: Status; -}; - -export type FctBlockDataColumnSidecarFirstSeenByNodeServiceListError = FctBlockDataColumnSidecarFirstSeenByNodeServiceListErrors[keyof FctBlockDataColumnSidecarFirstSeenByNodeServiceListErrors]; - -export type FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponses = { + receipt_gas_used_between_max_value?: number; /** - * OK + * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: in_values) (comma-separated list) */ - 200: ListFctBlockDataColumnSidecarFirstSeenByNodeResponse; -}; - -export type FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse = FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponses[keyof FctBlockDataColumnSidecarFirstSeenByNodeServiceListResponses]; - -export type FctBlockDataColumnSidecarFirstSeenByNodeServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_data_column_sidecar_first_seen_by_node/{slot_start_date_time}'; -}; - -export type FctBlockDataColumnSidecarFirstSeenByNodeServiceGetErrors = { + receipt_gas_used_in_values?: string; /** - * Default error response + * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctBlockDataColumnSidecarFirstSeenByNodeServiceGetError = FctBlockDataColumnSidecarFirstSeenByNodeServiceGetErrors[keyof FctBlockDataColumnSidecarFirstSeenByNodeServiceGetErrors]; - -export type FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponses = { + receipt_gas_used_not_in_values?: string; /** - * OK + * The maximum number of int_transaction_call_frame to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - 200: GetFctBlockDataColumnSidecarFirstSeenByNodeResponse; -}; - -export type FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse = FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponses[keyof FctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponses]; - -export type FctBlockFirstSeenByNodeServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The beacon block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Name of the client (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the client (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the client (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the client (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the client (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the client (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the client (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the client (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Source of the event (filter: eq) - */ - source_eq?: string; - /** - * Source of the event (filter: ne) - */ - source_ne?: string; - /** - * Source of the event (filter: contains) - */ - source_contains?: string; - /** - * Source of the event (filter: starts_with) - */ - source_starts_with?: string; - /** - * Source of the event (filter: ends_with) - */ - source_ends_with?: string; - /** - * Source of the event (filter: like) - */ - source_like?: string; - /** - * Source of the event (filter: not_like) - */ - source_not_like?: string; - /** - * Source of the event (filter: in_values) (comma-separated list) - */ - source_in_values?: string; - /** - * Source of the event (filter: not_in_values) (comma-separated list) - */ - source_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The time from slot start for the client to see the block (filter: eq) - */ - seen_slot_start_diff_eq?: number; - /** - * The time from slot start for the client to see the block (filter: ne) - */ - seen_slot_start_diff_ne?: number; - /** - * The time from slot start for the client to see the block (filter: lt) - */ - seen_slot_start_diff_lt?: number; - /** - * The time from slot start for the client to see the block (filter: lte) - */ - seen_slot_start_diff_lte?: number; - /** - * The time from slot start for the client to see the block (filter: gt) - */ - seen_slot_start_diff_gt?: number; - /** - * The time from slot start for the client to see the block (filter: gte) - */ - seen_slot_start_diff_gte?: number; - /** - * The time from slot start for the client to see the block (filter: between_min) - */ - seen_slot_start_diff_between_min?: number; - /** - * The time from slot start for the client to see the block (filter: between_max_value) - */ - seen_slot_start_diff_between_max_value?: number; - /** - * The time from slot start for the client to see the block (filter: in_values) (comma-separated list) - */ - seen_slot_start_diff_in_values?: string; - /** - * The time from slot start for the client to see the block (filter: not_in_values) (comma-separated list) - */ - seen_slot_start_diff_not_in_values?: string; - /** - * Username of the node (filter: eq) - */ - username_eq?: string; - /** - * Username of the node (filter: ne) - */ - username_ne?: string; - /** - * Username of the node (filter: contains) - */ - username_contains?: string; - /** - * Username of the node (filter: starts_with) - */ - username_starts_with?: string; - /** - * Username of the node (filter: ends_with) - */ - username_ends_with?: string; - /** - * Username of the node (filter: like) - */ - username_like?: string; - /** - * Username of the node (filter: not_like) - */ - username_not_like?: string; - /** - * Username of the node (filter: in_values) (comma-separated list) - */ - username_in_values?: string; - /** - * Username of the node (filter: not_in_values) (comma-separated list) - */ - username_not_in_values?: string; - /** - * ID of the node (filter: eq) - */ - node_id_eq?: string; - /** - * ID of the node (filter: ne) - */ - node_id_ne?: string; - /** - * ID of the node (filter: contains) - */ - node_id_contains?: string; - /** - * ID of the node (filter: starts_with) - */ - node_id_starts_with?: string; - /** - * ID of the node (filter: ends_with) - */ - node_id_ends_with?: string; - /** - * ID of the node (filter: like) - */ - node_id_like?: string; - /** - * ID of the node (filter: not_like) - */ - node_id_not_like?: string; - /** - * ID of the node (filter: in_values) (comma-separated list) - */ - node_id_in_values?: string; - /** - * ID of the node (filter: not_in_values) (comma-separated list) - */ - node_id_not_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) - */ - classification_eq?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) - */ - classification_ne?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) - */ - classification_contains?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) - */ - classification_starts_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) - */ - classification_ends_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) - */ - classification_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) - */ - classification_not_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) - */ - classification_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) - */ - classification_not_in_values?: string; - /** - * Version of the client (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * Implementation of the client (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * City of the client (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * Continent code of the client (filter: eq) - */ - meta_client_geo_continent_code_eq?: string; - /** - * Continent code of the client (filter: ne) - */ - meta_client_geo_continent_code_ne?: string; - /** - * Continent code of the client (filter: contains) - */ - meta_client_geo_continent_code_contains?: string; - /** - * Continent code of the client (filter: starts_with) - */ - meta_client_geo_continent_code_starts_with?: string; - /** - * Continent code of the client (filter: ends_with) - */ - meta_client_geo_continent_code_ends_with?: string; - /** - * Continent code of the client (filter: like) - */ - meta_client_geo_continent_code_like?: string; - /** - * Continent code of the client (filter: not_like) - */ - meta_client_geo_continent_code_not_like?: string; - /** - * Continent code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_continent_code_in_values?: string; - /** - * Continent code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_continent_code_not_in_values?: string; - /** - * Filter meta_client_geo_longitude using value - */ - meta_client_geo_longitude_value?: number; - /** - * Filter meta_client_geo_latitude using value - */ - meta_client_geo_latitude_value?: number; - /** - * Autonomous system number of the client (filter: eq) - */ - meta_client_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the client (filter: ne) - */ - meta_client_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the client (filter: lt) - */ - meta_client_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the client (filter: lte) - */ - meta_client_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the client (filter: gt) - */ - meta_client_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the client (filter: gte) - */ - meta_client_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the client (filter: between_min) - */ - meta_client_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the client (filter: between_max_value) - */ - meta_client_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the client (filter: eq) - */ - meta_client_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the client (filter: ne) - */ - meta_client_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the client (filter: contains) - */ - meta_client_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the client (filter: starts_with) - */ - meta_client_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the client (filter: ends_with) - */ - meta_client_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the client (filter: like) - */ - meta_client_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the client (filter: not_like) - */ - meta_client_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_not_in_values?: string; - /** - * Ethereum consensus client version (filter: eq) - */ - meta_consensus_version_eq?: string; - /** - * Ethereum consensus client version (filter: ne) - */ - meta_consensus_version_ne?: string; - /** - * Ethereum consensus client version (filter: contains) - */ - meta_consensus_version_contains?: string; - /** - * Ethereum consensus client version (filter: starts_with) - */ - meta_consensus_version_starts_with?: string; - /** - * Ethereum consensus client version (filter: ends_with) - */ - meta_consensus_version_ends_with?: string; - /** - * Ethereum consensus client version (filter: like) - */ - meta_consensus_version_like?: string; - /** - * Ethereum consensus client version (filter: not_like) - */ - meta_consensus_version_not_like?: string; - /** - * Ethereum consensus client version (filter: in_values) (comma-separated list) - */ - meta_consensus_version_in_values?: string; - /** - * Ethereum consensus client version (filter: not_in_values) (comma-separated list) - */ - meta_consensus_version_not_in_values?: string; - /** - * Ethereum consensus client implementation (filter: eq) - */ - meta_consensus_implementation_eq?: string; - /** - * Ethereum consensus client implementation (filter: ne) - */ - meta_consensus_implementation_ne?: string; - /** - * Ethereum consensus client implementation (filter: contains) - */ - meta_consensus_implementation_contains?: string; - /** - * Ethereum consensus client implementation (filter: starts_with) - */ - meta_consensus_implementation_starts_with?: string; - /** - * Ethereum consensus client implementation (filter: ends_with) - */ - meta_consensus_implementation_ends_with?: string; - /** - * Ethereum consensus client implementation (filter: like) - */ - meta_consensus_implementation_like?: string; - /** - * Ethereum consensus client implementation (filter: not_like) - */ - meta_consensus_implementation_not_like?: string; - /** - * Ethereum consensus client implementation (filter: in_values) (comma-separated list) - */ - meta_consensus_implementation_in_values?: string; - /** - * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) - */ - meta_consensus_implementation_not_in_values?: string; - /** - * The maximum number of fct_block_first_seen_by_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockFirstSeenByNode` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_first_seen_by_node'; -}; - -export type FctBlockFirstSeenByNodeServiceListErrors = { + page_size?: number; + /** + * A page token, received from a previous `ListIntTransactionCallFrame` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; /** - * Default error response + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - default: Status; + order_by?: string; + }; + url: '/api/v1/int_transaction_call_frame'; }; -export type FctBlockFirstSeenByNodeServiceListError = FctBlockFirstSeenByNodeServiceListErrors[keyof FctBlockFirstSeenByNodeServiceListErrors]; - -export type FctBlockFirstSeenByNodeServiceListResponses = { - /** - * OK - */ - 200: ListFctBlockFirstSeenByNodeResponse; +export type IntTransactionCallFrameServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -export type FctBlockFirstSeenByNodeServiceListResponse = FctBlockFirstSeenByNodeServiceListResponses[keyof FctBlockFirstSeenByNodeServiceListResponses]; +export type IntTransactionCallFrameServiceListError = + IntTransactionCallFrameServiceListErrors[keyof IntTransactionCallFrameServiceListErrors]; -export type FctBlockFirstSeenByNodeServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_first_seen_by_node/{slot_start_date_time}'; +export type IntTransactionCallFrameServiceListResponses = { + /** + * OK + */ + 200: ListIntTransactionCallFrameResponse; }; -export type FctBlockFirstSeenByNodeServiceGetErrors = { +export type IntTransactionCallFrameServiceListResponse = + IntTransactionCallFrameServiceListResponses[keyof IntTransactionCallFrameServiceListResponses]; + +export type IntTransactionCallFrameServiceGetData = { + body?: never; + path: { /** - * Default error response + * The block number containing this transaction */ - default: Status; + block_number: number; + }; + query?: never; + url: '/api/v1/int_transaction_call_frame/{block_number}'; }; -export type FctBlockFirstSeenByNodeServiceGetError = FctBlockFirstSeenByNodeServiceGetErrors[keyof FctBlockFirstSeenByNodeServiceGetErrors]; - -export type FctBlockFirstSeenByNodeServiceGetResponses = { - /** - * OK - */ - 200: GetFctBlockFirstSeenByNodeResponse; +export type IntTransactionCallFrameServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -export type FctBlockFirstSeenByNodeServiceGetResponse = FctBlockFirstSeenByNodeServiceGetResponses[keyof FctBlockFirstSeenByNodeServiceGetResponses]; +export type IntTransactionCallFrameServiceGetError = + IntTransactionCallFrameServiceGetErrors[keyof IntTransactionCallFrameServiceGetErrors]; -export type FctBlockHeadServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the reorg slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the reorg slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the reorg slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the reorg slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the reorg slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the reorg slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the reorg slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the reorg slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the reorg slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the reorg slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The root hash of the beacon block (filter: eq) - */ - block_root_eq?: string; - /** - * The root hash of the beacon block (filter: ne) - */ - block_root_ne?: string; - /** - * The root hash of the beacon block (filter: contains) - */ - block_root_contains?: string; - /** - * The root hash of the beacon block (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The root hash of the beacon block (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The root hash of the beacon block (filter: like) - */ - block_root_like?: string; - /** - * The root hash of the beacon block (filter: not_like) - */ - block_root_not_like?: string; - /** - * The root hash of the beacon block (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The root hash of the beacon block (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number from beacon block payload (filter: eq) - */ - slot_eq?: number; - /** - * The slot number from beacon block payload (filter: ne) - */ - slot_ne?: number; - /** - * The slot number from beacon block payload (filter: lt) - */ - slot_lt?: number; - /** - * The slot number from beacon block payload (filter: lte) - */ - slot_lte?: number; - /** - * The slot number from beacon block payload (filter: gt) - */ - slot_gt?: number; - /** - * The slot number from beacon block payload (filter: gte) - */ - slot_gte?: number; - /** - * The slot number from beacon block payload (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number from beacon block payload (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number from beacon block payload (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number from beacon block payload (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number from beacon block payload (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number from beacon block payload (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number from beacon block payload (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number from beacon block payload (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number from beacon block payload (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number from beacon block payload (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number from beacon block payload (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number from beacon block payload (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number from beacon block payload (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number from beacon block payload (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The version of the beacon block (filter: eq) - */ - block_version_eq?: string; - /** - * The version of the beacon block (filter: ne) - */ - block_version_ne?: string; - /** - * The version of the beacon block (filter: contains) - */ - block_version_contains?: string; - /** - * The version of the beacon block (filter: starts_with) - */ - block_version_starts_with?: string; - /** - * The version of the beacon block (filter: ends_with) - */ - block_version_ends_with?: string; - /** - * The version of the beacon block (filter: like) - */ - block_version_like?: string; - /** - * The version of the beacon block (filter: not_like) - */ - block_version_not_like?: string; - /** - * The version of the beacon block (filter: in_values) (comma-separated list) - */ - block_version_in_values?: string; - /** - * The version of the beacon block (filter: not_in_values) (comma-separated list) - */ - block_version_not_in_values?: string; - /** - * The total bytes of the beacon block payload (filter: eq) - */ - block_total_bytes_eq?: number; - /** - * The total bytes of the beacon block payload (filter: ne) - */ - block_total_bytes_ne?: number; - /** - * The total bytes of the beacon block payload (filter: lt) - */ - block_total_bytes_lt?: number; - /** - * The total bytes of the beacon block payload (filter: lte) - */ - block_total_bytes_lte?: number; - /** - * The total bytes of the beacon block payload (filter: gt) - */ - block_total_bytes_gt?: number; - /** - * The total bytes of the beacon block payload (filter: gte) - */ - block_total_bytes_gte?: number; - /** - * The total bytes of the beacon block payload (filter: between_min) - */ - block_total_bytes_between_min?: number; - /** - * The total bytes of the beacon block payload (filter: between_max_value) - */ - block_total_bytes_between_max_value?: number; - /** - * The total bytes of the beacon block payload (filter: in_values) (comma-separated list) - */ - block_total_bytes_in_values?: string; - /** - * The total bytes of the beacon block payload (filter: not_in_values) (comma-separated list) - */ - block_total_bytes_not_in_values?: string; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: eq) - */ - block_total_bytes_compressed_eq?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: ne) - */ - block_total_bytes_compressed_ne?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: lt) - */ - block_total_bytes_compressed_lt?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: lte) - */ - block_total_bytes_compressed_lte?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: gt) - */ - block_total_bytes_compressed_gt?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: gte) - */ - block_total_bytes_compressed_gte?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: between_min) - */ - block_total_bytes_compressed_between_min?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: between_max_value) - */ - block_total_bytes_compressed_between_max_value?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: in_values) (comma-separated list) - */ - block_total_bytes_compressed_in_values?: string; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: not_in_values) (comma-separated list) - */ - block_total_bytes_compressed_not_in_values?: string; - /** - * The root hash of the parent beacon block (filter: eq) - */ - parent_root_eq?: string; - /** - * The root hash of the parent beacon block (filter: ne) - */ - parent_root_ne?: string; - /** - * The root hash of the parent beacon block (filter: contains) - */ - parent_root_contains?: string; - /** - * The root hash of the parent beacon block (filter: starts_with) - */ - parent_root_starts_with?: string; - /** - * The root hash of the parent beacon block (filter: ends_with) - */ - parent_root_ends_with?: string; - /** - * The root hash of the parent beacon block (filter: like) - */ - parent_root_like?: string; - /** - * The root hash of the parent beacon block (filter: not_like) - */ - parent_root_not_like?: string; - /** - * The root hash of the parent beacon block (filter: in_values) (comma-separated list) - */ - parent_root_in_values?: string; - /** - * The root hash of the parent beacon block (filter: not_in_values) (comma-separated list) - */ - parent_root_not_in_values?: string; - /** - * The root hash of the beacon state at this block (filter: eq) - */ - state_root_eq?: string; - /** - * The root hash of the beacon state at this block (filter: ne) - */ - state_root_ne?: string; - /** - * The root hash of the beacon state at this block (filter: contains) - */ - state_root_contains?: string; - /** - * The root hash of the beacon state at this block (filter: starts_with) - */ - state_root_starts_with?: string; - /** - * The root hash of the beacon state at this block (filter: ends_with) - */ - state_root_ends_with?: string; - /** - * The root hash of the beacon state at this block (filter: like) - */ - state_root_like?: string; - /** - * The root hash of the beacon state at this block (filter: not_like) - */ - state_root_not_like?: string; - /** - * The root hash of the beacon state at this block (filter: in_values) (comma-separated list) - */ - state_root_in_values?: string; - /** - * The root hash of the beacon state at this block (filter: not_in_values) (comma-separated list) - */ - state_root_not_in_values?: string; - /** - * The index of the validator that proposed the beacon block (filter: eq) - */ - proposer_index_eq?: number; - /** - * The index of the validator that proposed the beacon block (filter: ne) - */ - proposer_index_ne?: number; - /** - * The index of the validator that proposed the beacon block (filter: lt) - */ - proposer_index_lt?: number; - /** - * The index of the validator that proposed the beacon block (filter: lte) - */ - proposer_index_lte?: number; - /** - * The index of the validator that proposed the beacon block (filter: gt) - */ - proposer_index_gt?: number; - /** - * The index of the validator that proposed the beacon block (filter: gte) - */ - proposer_index_gte?: number; - /** - * The index of the validator that proposed the beacon block (filter: between_min) - */ - proposer_index_between_min?: number; - /** - * The index of the validator that proposed the beacon block (filter: between_max_value) - */ - proposer_index_between_max_value?: number; - /** - * The index of the validator that proposed the beacon block (filter: in_values) (comma-separated list) - */ - proposer_index_in_values?: string; - /** - * The index of the validator that proposed the beacon block (filter: not_in_values) (comma-separated list) - */ - proposer_index_not_in_values?: string; - /** - * The block hash of the associated execution block (filter: eq) - */ - eth1_data_block_hash_eq?: string; - /** - * The block hash of the associated execution block (filter: ne) - */ - eth1_data_block_hash_ne?: string; - /** - * The block hash of the associated execution block (filter: contains) - */ - eth1_data_block_hash_contains?: string; - /** - * The block hash of the associated execution block (filter: starts_with) - */ - eth1_data_block_hash_starts_with?: string; - /** - * The block hash of the associated execution block (filter: ends_with) - */ - eth1_data_block_hash_ends_with?: string; - /** - * The block hash of the associated execution block (filter: like) - */ - eth1_data_block_hash_like?: string; - /** - * The block hash of the associated execution block (filter: not_like) - */ - eth1_data_block_hash_not_like?: string; - /** - * The block hash of the associated execution block (filter: in_values) (comma-separated list) - */ - eth1_data_block_hash_in_values?: string; - /** - * The block hash of the associated execution block (filter: not_in_values) (comma-separated list) - */ - eth1_data_block_hash_not_in_values?: string; - /** - * The root of the deposit tree in the associated execution block (filter: eq) - */ - eth1_data_deposit_root_eq?: string; - /** - * The root of the deposit tree in the associated execution block (filter: ne) - */ - eth1_data_deposit_root_ne?: string; - /** - * The root of the deposit tree in the associated execution block (filter: contains) - */ - eth1_data_deposit_root_contains?: string; - /** - * The root of the deposit tree in the associated execution block (filter: starts_with) - */ - eth1_data_deposit_root_starts_with?: string; - /** - * The root of the deposit tree in the associated execution block (filter: ends_with) - */ - eth1_data_deposit_root_ends_with?: string; - /** - * The root of the deposit tree in the associated execution block (filter: like) - */ - eth1_data_deposit_root_like?: string; - /** - * The root of the deposit tree in the associated execution block (filter: not_like) - */ - eth1_data_deposit_root_not_like?: string; - /** - * The root of the deposit tree in the associated execution block (filter: in_values) (comma-separated list) - */ - eth1_data_deposit_root_in_values?: string; - /** - * The root of the deposit tree in the associated execution block (filter: not_in_values) (comma-separated list) - */ - eth1_data_deposit_root_not_in_values?: string; - /** - * The block hash of the execution payload (filter: eq) - */ - execution_payload_block_hash_eq?: string; - /** - * The block hash of the execution payload (filter: ne) - */ - execution_payload_block_hash_ne?: string; - /** - * The block hash of the execution payload (filter: contains) - */ - execution_payload_block_hash_contains?: string; - /** - * The block hash of the execution payload (filter: starts_with) - */ - execution_payload_block_hash_starts_with?: string; - /** - * The block hash of the execution payload (filter: ends_with) - */ - execution_payload_block_hash_ends_with?: string; - /** - * The block hash of the execution payload (filter: like) - */ - execution_payload_block_hash_like?: string; - /** - * The block hash of the execution payload (filter: not_like) - */ - execution_payload_block_hash_not_like?: string; - /** - * The block hash of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_block_hash_in_values?: string; - /** - * The block hash of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_block_hash_not_in_values?: string; - /** - * The block number of the execution payload (filter: eq) - */ - execution_payload_block_number_eq?: number; - /** - * The block number of the execution payload (filter: ne) - */ - execution_payload_block_number_ne?: number; - /** - * The block number of the execution payload (filter: lt) - */ - execution_payload_block_number_lt?: number; - /** - * The block number of the execution payload (filter: lte) - */ - execution_payload_block_number_lte?: number; - /** - * The block number of the execution payload (filter: gt) - */ - execution_payload_block_number_gt?: number; - /** - * The block number of the execution payload (filter: gte) - */ - execution_payload_block_number_gte?: number; - /** - * The block number of the execution payload (filter: between_min) - */ - execution_payload_block_number_between_min?: number; - /** - * The block number of the execution payload (filter: between_max_value) - */ - execution_payload_block_number_between_max_value?: number; - /** - * The block number of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_block_number_in_values?: string; - /** - * The block number of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_block_number_not_in_values?: string; - /** - * The recipient of the fee for this execution payload (filter: eq) - */ - execution_payload_fee_recipient_eq?: string; - /** - * The recipient of the fee for this execution payload (filter: ne) - */ - execution_payload_fee_recipient_ne?: string; - /** - * The recipient of the fee for this execution payload (filter: contains) - */ - execution_payload_fee_recipient_contains?: string; - /** - * The recipient of the fee for this execution payload (filter: starts_with) - */ - execution_payload_fee_recipient_starts_with?: string; - /** - * The recipient of the fee for this execution payload (filter: ends_with) - */ - execution_payload_fee_recipient_ends_with?: string; - /** - * The recipient of the fee for this execution payload (filter: like) - */ - execution_payload_fee_recipient_like?: string; - /** - * The recipient of the fee for this execution payload (filter: not_like) - */ - execution_payload_fee_recipient_not_like?: string; - /** - * The recipient of the fee for this execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_fee_recipient_in_values?: string; - /** - * The recipient of the fee for this execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_fee_recipient_not_in_values?: string; - /** - * Base fee per gas for execution payload (filter: eq) - */ - execution_payload_base_fee_per_gas_eq?: string; - /** - * Base fee per gas for execution payload (filter: ne) - */ - execution_payload_base_fee_per_gas_ne?: string; - /** - * Base fee per gas for execution payload (filter: contains) - */ - execution_payload_base_fee_per_gas_contains?: string; - /** - * Base fee per gas for execution payload (filter: starts_with) - */ - execution_payload_base_fee_per_gas_starts_with?: string; - /** - * Base fee per gas for execution payload (filter: ends_with) - */ - execution_payload_base_fee_per_gas_ends_with?: string; - /** - * Base fee per gas for execution payload (filter: like) - */ - execution_payload_base_fee_per_gas_like?: string; - /** - * Base fee per gas for execution payload (filter: not_like) - */ - execution_payload_base_fee_per_gas_not_like?: string; - /** - * Base fee per gas for execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_base_fee_per_gas_in_values?: string; - /** - * Base fee per gas for execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_base_fee_per_gas_not_in_values?: string; - /** - * Gas used for blobs in execution payload (filter: eq) - */ - execution_payload_blob_gas_used_eq?: number; - /** - * Gas used for blobs in execution payload (filter: ne) - */ - execution_payload_blob_gas_used_ne?: number; - /** - * Gas used for blobs in execution payload (filter: lt) - */ - execution_payload_blob_gas_used_lt?: number; - /** - * Gas used for blobs in execution payload (filter: lte) - */ - execution_payload_blob_gas_used_lte?: number; - /** - * Gas used for blobs in execution payload (filter: gt) - */ - execution_payload_blob_gas_used_gt?: number; - /** - * Gas used for blobs in execution payload (filter: gte) - */ - execution_payload_blob_gas_used_gte?: number; - /** - * Gas used for blobs in execution payload (filter: between_min) - */ - execution_payload_blob_gas_used_between_min?: number; - /** - * Gas used for blobs in execution payload (filter: between_max_value) - */ - execution_payload_blob_gas_used_between_max_value?: number; - /** - * Gas used for blobs in execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_blob_gas_used_in_values?: string; - /** - * Gas used for blobs in execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_blob_gas_used_not_in_values?: string; - /** - * Excess gas used for blobs in execution payload (filter: eq) - */ - execution_payload_excess_blob_gas_eq?: number; - /** - * Excess gas used for blobs in execution payload (filter: ne) - */ - execution_payload_excess_blob_gas_ne?: number; - /** - * Excess gas used for blobs in execution payload (filter: lt) - */ - execution_payload_excess_blob_gas_lt?: number; - /** - * Excess gas used for blobs in execution payload (filter: lte) - */ - execution_payload_excess_blob_gas_lte?: number; - /** - * Excess gas used for blobs in execution payload (filter: gt) - */ - execution_payload_excess_blob_gas_gt?: number; - /** - * Excess gas used for blobs in execution payload (filter: gte) - */ - execution_payload_excess_blob_gas_gte?: number; - /** - * Excess gas used for blobs in execution payload (filter: between_min) - */ - execution_payload_excess_blob_gas_between_min?: number; - /** - * Excess gas used for blobs in execution payload (filter: between_max_value) - */ - execution_payload_excess_blob_gas_between_max_value?: number; - /** - * Excess gas used for blobs in execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_excess_blob_gas_in_values?: string; - /** - * Excess gas used for blobs in execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_excess_blob_gas_not_in_values?: string; - /** - * Gas limit for execution payload (filter: eq) - */ - execution_payload_gas_limit_eq?: number; - /** - * Gas limit for execution payload (filter: ne) - */ - execution_payload_gas_limit_ne?: number; - /** - * Gas limit for execution payload (filter: lt) - */ - execution_payload_gas_limit_lt?: number; - /** - * Gas limit for execution payload (filter: lte) - */ - execution_payload_gas_limit_lte?: number; - /** - * Gas limit for execution payload (filter: gt) - */ - execution_payload_gas_limit_gt?: number; - /** - * Gas limit for execution payload (filter: gte) - */ - execution_payload_gas_limit_gte?: number; - /** - * Gas limit for execution payload (filter: between_min) - */ - execution_payload_gas_limit_between_min?: number; - /** - * Gas limit for execution payload (filter: between_max_value) - */ - execution_payload_gas_limit_between_max_value?: number; - /** - * Gas limit for execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_gas_limit_in_values?: string; - /** - * Gas limit for execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_gas_limit_not_in_values?: string; - /** - * Gas used for execution payload (filter: eq) - */ - execution_payload_gas_used_eq?: number; - /** - * Gas used for execution payload (filter: ne) - */ - execution_payload_gas_used_ne?: number; - /** - * Gas used for execution payload (filter: lt) - */ - execution_payload_gas_used_lt?: number; - /** - * Gas used for execution payload (filter: lte) - */ - execution_payload_gas_used_lte?: number; - /** - * Gas used for execution payload (filter: gt) - */ - execution_payload_gas_used_gt?: number; - /** - * Gas used for execution payload (filter: gte) - */ - execution_payload_gas_used_gte?: number; - /** - * Gas used for execution payload (filter: between_min) - */ - execution_payload_gas_used_between_min?: number; - /** - * Gas used for execution payload (filter: between_max_value) - */ - execution_payload_gas_used_between_max_value?: number; - /** - * Gas used for execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_gas_used_in_values?: string; - /** - * Gas used for execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_gas_used_not_in_values?: string; - /** - * The state root of the execution payload (filter: eq) - */ - execution_payload_state_root_eq?: string; - /** - * The state root of the execution payload (filter: ne) - */ - execution_payload_state_root_ne?: string; - /** - * The state root of the execution payload (filter: contains) - */ - execution_payload_state_root_contains?: string; - /** - * The state root of the execution payload (filter: starts_with) - */ - execution_payload_state_root_starts_with?: string; - /** - * The state root of the execution payload (filter: ends_with) - */ - execution_payload_state_root_ends_with?: string; - /** - * The state root of the execution payload (filter: like) - */ - execution_payload_state_root_like?: string; - /** - * The state root of the execution payload (filter: not_like) - */ - execution_payload_state_root_not_like?: string; - /** - * The state root of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_state_root_in_values?: string; - /** - * The state root of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_state_root_not_in_values?: string; - /** - * The parent hash of the execution payload (filter: eq) - */ - execution_payload_parent_hash_eq?: string; - /** - * The parent hash of the execution payload (filter: ne) - */ - execution_payload_parent_hash_ne?: string; - /** - * The parent hash of the execution payload (filter: contains) - */ - execution_payload_parent_hash_contains?: string; - /** - * The parent hash of the execution payload (filter: starts_with) - */ - execution_payload_parent_hash_starts_with?: string; - /** - * The parent hash of the execution payload (filter: ends_with) - */ - execution_payload_parent_hash_ends_with?: string; - /** - * The parent hash of the execution payload (filter: like) - */ - execution_payload_parent_hash_like?: string; - /** - * The parent hash of the execution payload (filter: not_like) - */ - execution_payload_parent_hash_not_like?: string; - /** - * The parent hash of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_parent_hash_in_values?: string; - /** - * The parent hash of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_parent_hash_not_in_values?: string; - /** - * The transaction count of the execution payload (filter: eq) - */ - execution_payload_transactions_count_eq?: number; - /** - * The transaction count of the execution payload (filter: ne) - */ - execution_payload_transactions_count_ne?: number; - /** - * The transaction count of the execution payload (filter: lt) - */ - execution_payload_transactions_count_lt?: number; - /** - * The transaction count of the execution payload (filter: lte) - */ - execution_payload_transactions_count_lte?: number; - /** - * The transaction count of the execution payload (filter: gt) - */ - execution_payload_transactions_count_gt?: number; - /** - * The transaction count of the execution payload (filter: gte) - */ - execution_payload_transactions_count_gte?: number; - /** - * The transaction count of the execution payload (filter: between_min) - */ - execution_payload_transactions_count_between_min?: number; - /** - * The transaction count of the execution payload (filter: between_max_value) - */ - execution_payload_transactions_count_between_max_value?: number; - /** - * The transaction count of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_transactions_count_in_values?: string; - /** - * The transaction count of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_transactions_count_not_in_values?: string; - /** - * The transaction total bytes of the execution payload (filter: eq) - */ - execution_payload_transactions_total_bytes_eq?: number; - /** - * The transaction total bytes of the execution payload (filter: ne) - */ - execution_payload_transactions_total_bytes_ne?: number; - /** - * The transaction total bytes of the execution payload (filter: lt) - */ - execution_payload_transactions_total_bytes_lt?: number; - /** - * The transaction total bytes of the execution payload (filter: lte) - */ - execution_payload_transactions_total_bytes_lte?: number; - /** - * The transaction total bytes of the execution payload (filter: gt) - */ - execution_payload_transactions_total_bytes_gt?: number; - /** - * The transaction total bytes of the execution payload (filter: gte) - */ - execution_payload_transactions_total_bytes_gte?: number; - /** - * The transaction total bytes of the execution payload (filter: between_min) - */ - execution_payload_transactions_total_bytes_between_min?: number; - /** - * The transaction total bytes of the execution payload (filter: between_max_value) - */ - execution_payload_transactions_total_bytes_between_max_value?: number; - /** - * The transaction total bytes of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_in_values?: string; - /** - * The transaction total bytes of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_not_in_values?: string; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: eq) - */ - execution_payload_transactions_total_bytes_compressed_eq?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: ne) - */ - execution_payload_transactions_total_bytes_compressed_ne?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: lt) - */ - execution_payload_transactions_total_bytes_compressed_lt?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: lte) - */ - execution_payload_transactions_total_bytes_compressed_lte?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: gt) - */ - execution_payload_transactions_total_bytes_compressed_gt?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: gte) - */ - execution_payload_transactions_total_bytes_compressed_gte?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: between_min) - */ - execution_payload_transactions_total_bytes_compressed_between_min?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: between_max_value) - */ - execution_payload_transactions_total_bytes_compressed_between_max_value?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_compressed_in_values?: string; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: not_in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_compressed_not_in_values?: string; - /** - * The maximum number of fct_block_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockHead` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_head'; +export type IntTransactionCallFrameServiceGetResponses = { + /** + * OK + */ + 200: GetIntTransactionCallFrameResponse; }; -export type FctBlockHeadServiceListErrors = { +export type IntTransactionCallFrameServiceGetResponse = + IntTransactionCallFrameServiceGetResponses[keyof IntTransactionCallFrameServiceGetResponses]; + +export type IntTransactionCallFrameOpcodeGasServiceListData = { + body?: never; + path?: never; + query?: { /** - * Default error response + * The block number containing the transaction (filter: eq) */ - default: Status; -}; - -export type FctBlockHeadServiceListError = FctBlockHeadServiceListErrors[keyof FctBlockHeadServiceListErrors]; - -export type FctBlockHeadServiceListResponses = { + block_number_eq?: number; /** - * OK + * The block number containing the transaction (filter: ne) */ - 200: ListFctBlockHeadResponse; -}; - -export type FctBlockHeadServiceListResponse = FctBlockHeadServiceListResponses[keyof FctBlockHeadServiceListResponses]; - -export type FctBlockHeadServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the reorg slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_head/{slot_start_date_time}'; -}; - -export type FctBlockHeadServiceGetErrors = { + block_number_ne?: number; /** - * Default error response + * The block number containing the transaction (filter: lt) */ - default: Status; -}; - -export type FctBlockHeadServiceGetError = FctBlockHeadServiceGetErrors[keyof FctBlockHeadServiceGetErrors]; - -export type FctBlockHeadServiceGetResponses = { + block_number_lt?: number; /** - * OK + * The block number containing the transaction (filter: lte) */ - 200: GetFctBlockHeadResponse; -}; - -export type FctBlockHeadServiceGetResponse = FctBlockHeadServiceGetResponses[keyof FctBlockHeadServiceGetResponses]; - -export type FctBlockMevServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The start time for the slot that the proposer payload is for (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The start time for the slot that the proposer payload is for (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The start time for the slot that the proposer payload is for (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The start time for the slot that the proposer payload is for (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The start time for the slot that the proposer payload is for (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The start time for the slot that the proposer payload is for (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The start time for the slot that the proposer payload is for (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The start time for the slot that the proposer payload is for (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The start time for the slot that the proposer payload is for (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The start time for the slot that the proposer payload is for (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The root hash of the beacon block (filter: eq) - */ - block_root_eq?: string; - /** - * The root hash of the beacon block (filter: ne) - */ - block_root_ne?: string; - /** - * The root hash of the beacon block (filter: contains) - */ - block_root_contains?: string; - /** - * The root hash of the beacon block (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The root hash of the beacon block (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The root hash of the beacon block (filter: like) - */ - block_root_like?: string; - /** - * The root hash of the beacon block (filter: not_like) - */ - block_root_not_like?: string; - /** - * The root hash of the beacon block (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The root hash of the beacon block (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number within the block proposer payload (filter: eq) - */ - slot_eq?: number; - /** - * Slot number within the block proposer payload (filter: ne) - */ - slot_ne?: number; - /** - * Slot number within the block proposer payload (filter: lt) - */ - slot_lt?: number; - /** - * Slot number within the block proposer payload (filter: lte) - */ - slot_lte?: number; - /** - * Slot number within the block proposer payload (filter: gt) - */ - slot_gt?: number; - /** - * Slot number within the block proposer payload (filter: gte) - */ - slot_gte?: number; - /** - * Slot number within the block proposer payload (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number within the block proposer payload (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number within the block proposer payload (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number within the block proposer payload (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The start time for the epoch that the proposer payload is for (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The start time for the epoch that the proposer payload is for (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: eq) - */ - earliest_bid_date_time_eq?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: ne) - */ - earliest_bid_date_time_ne?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: lt) - */ - earliest_bid_date_time_lt?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: lte) - */ - earliest_bid_date_time_lte?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: gt) - */ - earliest_bid_date_time_gt?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: gte) - */ - earliest_bid_date_time_gte?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: between_min) - */ - earliest_bid_date_time_between_min?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: between_max_value) - */ - earliest_bid_date_time_between_max_value?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: in_values) (comma-separated list) - */ - earliest_bid_date_time_in_values?: string; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: not_in_values) (comma-separated list) - */ - earliest_bid_date_time_not_in_values?: string; - /** - * The relay names that delivered the proposer payload (filter: has) - */ - relay_names_has?: string; - /** - * The relay names that delivered the proposer payload (filter: has_all_values) - */ - relay_names_has_all_values?: Array; - /** - * The relay names that delivered the proposer payload (filter: has_any_values) - */ - relay_names_has_any_values?: Array; - /** - * The relay names that delivered the proposer payload (filter: length_eq) - */ - relay_names_length_eq?: number; - /** - * The relay names that delivered the proposer payload (filter: length_gt) - */ - relay_names_length_gt?: number; - /** - * The relay names that delivered the proposer payload (filter: length_gte) - */ - relay_names_length_gte?: number; - /** - * The relay names that delivered the proposer payload (filter: length_lt) - */ - relay_names_length_lt?: number; - /** - * The relay names that delivered the proposer payload (filter: length_lte) - */ - relay_names_length_lte?: number; - /** - * The parent hash of the proposer payload (filter: eq) - */ - parent_hash_eq?: string; - /** - * The parent hash of the proposer payload (filter: ne) - */ - parent_hash_ne?: string; - /** - * The parent hash of the proposer payload (filter: contains) - */ - parent_hash_contains?: string; - /** - * The parent hash of the proposer payload (filter: starts_with) - */ - parent_hash_starts_with?: string; - /** - * The parent hash of the proposer payload (filter: ends_with) - */ - parent_hash_ends_with?: string; - /** - * The parent hash of the proposer payload (filter: like) - */ - parent_hash_like?: string; - /** - * The parent hash of the proposer payload (filter: not_like) - */ - parent_hash_not_like?: string; - /** - * The parent hash of the proposer payload (filter: in_values) (comma-separated list) - */ - parent_hash_in_values?: string; - /** - * The parent hash of the proposer payload (filter: not_in_values) (comma-separated list) - */ - parent_hash_not_in_values?: string; - /** - * The block number of the proposer payload (filter: eq) - */ - block_number_eq?: number; - /** - * The block number of the proposer payload (filter: ne) - */ - block_number_ne?: number; - /** - * The block number of the proposer payload (filter: lt) - */ - block_number_lt?: number; - /** - * The block number of the proposer payload (filter: lte) - */ - block_number_lte?: number; - /** - * The block number of the proposer payload (filter: gt) - */ - block_number_gt?: number; - /** - * The block number of the proposer payload (filter: gte) - */ - block_number_gte?: number; - /** - * The block number of the proposer payload (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number of the proposer payload (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number of the proposer payload (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number of the proposer payload (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The block hash of the proposer payload (filter: eq) - */ - block_hash_eq?: string; - /** - * The block hash of the proposer payload (filter: ne) - */ - block_hash_ne?: string; - /** - * The block hash of the proposer payload (filter: contains) - */ - block_hash_contains?: string; - /** - * The block hash of the proposer payload (filter: starts_with) - */ - block_hash_starts_with?: string; - /** - * The block hash of the proposer payload (filter: ends_with) - */ - block_hash_ends_with?: string; - /** - * The block hash of the proposer payload (filter: like) - */ - block_hash_like?: string; - /** - * The block hash of the proposer payload (filter: not_like) - */ - block_hash_not_like?: string; - /** - * The block hash of the proposer payload (filter: in_values) (comma-separated list) - */ - block_hash_in_values?: string; - /** - * The block hash of the proposer payload (filter: not_in_values) (comma-separated list) - */ - block_hash_not_in_values?: string; - /** - * The builder pubkey of the proposer payload (filter: eq) - */ - builder_pubkey_eq?: string; - /** - * The builder pubkey of the proposer payload (filter: ne) - */ - builder_pubkey_ne?: string; - /** - * The builder pubkey of the proposer payload (filter: contains) - */ - builder_pubkey_contains?: string; - /** - * The builder pubkey of the proposer payload (filter: starts_with) - */ - builder_pubkey_starts_with?: string; - /** - * The builder pubkey of the proposer payload (filter: ends_with) - */ - builder_pubkey_ends_with?: string; - /** - * The builder pubkey of the proposer payload (filter: like) - */ - builder_pubkey_like?: string; - /** - * The builder pubkey of the proposer payload (filter: not_like) - */ - builder_pubkey_not_like?: string; - /** - * The builder pubkey of the proposer payload (filter: in_values) (comma-separated list) - */ - builder_pubkey_in_values?: string; - /** - * The builder pubkey of the proposer payload (filter: not_in_values) (comma-separated list) - */ - builder_pubkey_not_in_values?: string; - /** - * The proposer pubkey of the proposer payload (filter: eq) - */ - proposer_pubkey_eq?: string; - /** - * The proposer pubkey of the proposer payload (filter: ne) - */ - proposer_pubkey_ne?: string; - /** - * The proposer pubkey of the proposer payload (filter: contains) - */ - proposer_pubkey_contains?: string; - /** - * The proposer pubkey of the proposer payload (filter: starts_with) - */ - proposer_pubkey_starts_with?: string; - /** - * The proposer pubkey of the proposer payload (filter: ends_with) - */ - proposer_pubkey_ends_with?: string; - /** - * The proposer pubkey of the proposer payload (filter: like) - */ - proposer_pubkey_like?: string; - /** - * The proposer pubkey of the proposer payload (filter: not_like) - */ - proposer_pubkey_not_like?: string; - /** - * The proposer pubkey of the proposer payload (filter: in_values) (comma-separated list) - */ - proposer_pubkey_in_values?: string; - /** - * The proposer pubkey of the proposer payload (filter: not_in_values) (comma-separated list) - */ - proposer_pubkey_not_in_values?: string; - /** - * The proposer fee recipient of the proposer payload (filter: eq) - */ - proposer_fee_recipient_eq?: string; - /** - * The proposer fee recipient of the proposer payload (filter: ne) - */ - proposer_fee_recipient_ne?: string; - /** - * The proposer fee recipient of the proposer payload (filter: contains) - */ - proposer_fee_recipient_contains?: string; - /** - * The proposer fee recipient of the proposer payload (filter: starts_with) - */ - proposer_fee_recipient_starts_with?: string; - /** - * The proposer fee recipient of the proposer payload (filter: ends_with) - */ - proposer_fee_recipient_ends_with?: string; - /** - * The proposer fee recipient of the proposer payload (filter: like) - */ - proposer_fee_recipient_like?: string; - /** - * The proposer fee recipient of the proposer payload (filter: not_like) - */ - proposer_fee_recipient_not_like?: string; - /** - * The proposer fee recipient of the proposer payload (filter: in_values) (comma-separated list) - */ - proposer_fee_recipient_in_values?: string; - /** - * The proposer fee recipient of the proposer payload (filter: not_in_values) (comma-separated list) - */ - proposer_fee_recipient_not_in_values?: string; - /** - * The gas limit of the proposer payload (filter: eq) - */ - gas_limit_eq?: number; - /** - * The gas limit of the proposer payload (filter: ne) - */ - gas_limit_ne?: number; - /** - * The gas limit of the proposer payload (filter: lt) - */ - gas_limit_lt?: number; - /** - * The gas limit of the proposer payload (filter: lte) - */ - gas_limit_lte?: number; - /** - * The gas limit of the proposer payload (filter: gt) - */ - gas_limit_gt?: number; - /** - * The gas limit of the proposer payload (filter: gte) - */ - gas_limit_gte?: number; - /** - * The gas limit of the proposer payload (filter: between_min) - */ - gas_limit_between_min?: number; - /** - * The gas limit of the proposer payload (filter: between_max_value) - */ - gas_limit_between_max_value?: number; - /** - * The gas limit of the proposer payload (filter: in_values) (comma-separated list) - */ - gas_limit_in_values?: string; - /** - * The gas limit of the proposer payload (filter: not_in_values) (comma-separated list) - */ - gas_limit_not_in_values?: string; - /** - * The gas used of the proposer payload (filter: eq) - */ - gas_used_eq?: number; - /** - * The gas used of the proposer payload (filter: ne) - */ - gas_used_ne?: number; - /** - * The gas used of the proposer payload (filter: lt) - */ - gas_used_lt?: number; - /** - * The gas used of the proposer payload (filter: lte) - */ - gas_used_lte?: number; - /** - * The gas used of the proposer payload (filter: gt) - */ - gas_used_gt?: number; - /** - * The gas used of the proposer payload (filter: gte) - */ - gas_used_gte?: number; - /** - * The gas used of the proposer payload (filter: between_min) - */ - gas_used_between_min?: number; - /** - * The gas used of the proposer payload (filter: between_max_value) - */ - gas_used_between_max_value?: number; - /** - * The gas used of the proposer payload (filter: in_values) (comma-separated list) - */ - gas_used_in_values?: string; - /** - * The gas used of the proposer payload (filter: not_in_values) (comma-separated list) - */ - gas_used_not_in_values?: string; - /** - * The transaction value in wei (filter: eq) - */ - value_eq?: string; - /** - * The transaction value in wei (filter: ne) - */ - value_ne?: string; - /** - * The transaction value in wei (filter: contains) - */ - value_contains?: string; - /** - * The transaction value in wei (filter: starts_with) - */ - value_starts_with?: string; - /** - * The transaction value in wei (filter: ends_with) - */ - value_ends_with?: string; - /** - * The transaction value in wei (filter: like) - */ - value_like?: string; - /** - * The transaction value in wei (filter: not_like) - */ - value_not_like?: string; - /** - * The transaction value in wei (filter: in_values) (comma-separated list) - */ - value_in_values?: string; - /** - * The transaction value in wei (filter: not_in_values) (comma-separated list) - */ - value_not_in_values?: string; - /** - * The number of transactions in the proposer payload (filter: eq) - */ - transaction_count_eq?: number; - /** - * The number of transactions in the proposer payload (filter: ne) - */ - transaction_count_ne?: number; - /** - * The number of transactions in the proposer payload (filter: lt) - */ - transaction_count_lt?: number; - /** - * The number of transactions in the proposer payload (filter: lte) - */ - transaction_count_lte?: number; - /** - * The number of transactions in the proposer payload (filter: gt) - */ - transaction_count_gt?: number; - /** - * The number of transactions in the proposer payload (filter: gte) - */ - transaction_count_gte?: number; - /** - * The number of transactions in the proposer payload (filter: between_min) - */ - transaction_count_between_min?: number; - /** - * The number of transactions in the proposer payload (filter: between_max_value) - */ - transaction_count_between_max_value?: number; - /** - * The number of transactions in the proposer payload (filter: in_values) (comma-separated list) - */ - transaction_count_in_values?: string; - /** - * The number of transactions in the proposer payload (filter: not_in_values) (comma-separated list) - */ - transaction_count_not_in_values?: string; - /** - * Can be "canonical" or "orphaned" (filter: eq) - */ - status_eq?: string; - /** - * Can be "canonical" or "orphaned" (filter: ne) - */ - status_ne?: string; - /** - * Can be "canonical" or "orphaned" (filter: contains) - */ - status_contains?: string; - /** - * Can be "canonical" or "orphaned" (filter: starts_with) - */ - status_starts_with?: string; - /** - * Can be "canonical" or "orphaned" (filter: ends_with) - */ - status_ends_with?: string; - /** - * Can be "canonical" or "orphaned" (filter: like) - */ - status_like?: string; - /** - * Can be "canonical" or "orphaned" (filter: not_like) - */ - status_not_like?: string; - /** - * Can be "canonical" or "orphaned" (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Can be "canonical" or "orphaned" (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * The maximum number of fct_block_mev to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockMev` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_mev'; -}; - -export type FctBlockMevServiceListErrors = { + block_number_lte?: number; /** - * Default error response + * The block number containing the transaction (filter: gt) */ - default: Status; -}; - -export type FctBlockMevServiceListError = FctBlockMevServiceListErrors[keyof FctBlockMevServiceListErrors]; - -export type FctBlockMevServiceListResponses = { + block_number_gt?: number; /** - * OK + * The block number containing the transaction (filter: gte) */ - 200: ListFctBlockMevResponse; -}; - -export type FctBlockMevServiceListResponse = FctBlockMevServiceListResponses[keyof FctBlockMevServiceListResponses]; - -export type FctBlockMevServiceGetData = { - body?: never; - path: { - /** - * The start time for the slot that the proposer payload is for - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_mev/{slot_start_date_time}'; -}; - -export type FctBlockMevServiceGetErrors = { + block_number_gte?: number; /** - * Default error response + * The block number containing the transaction (filter: between_min) */ - default: Status; -}; - -export type FctBlockMevServiceGetError = FctBlockMevServiceGetErrors[keyof FctBlockMevServiceGetErrors]; - -export type FctBlockMevServiceGetResponses = { + block_number_between_min?: number; /** - * OK + * The block number containing the transaction (filter: between_max_value) */ - 200: GetFctBlockMevResponse; -}; - -export type FctBlockMevServiceGetResponse = FctBlockMevServiceGetResponses[keyof FctBlockMevServiceGetResponses]; - -export type FctBlockMevHeadServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The start time for the slot that the proposer payload is for (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The start time for the slot that the proposer payload is for (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The start time for the slot that the proposer payload is for (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The start time for the slot that the proposer payload is for (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The start time for the slot that the proposer payload is for (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The start time for the slot that the proposer payload is for (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The start time for the slot that the proposer payload is for (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The start time for the slot that the proposer payload is for (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The start time for the slot that the proposer payload is for (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The start time for the slot that the proposer payload is for (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The root hash of the beacon block (filter: eq) - */ - block_root_eq?: string; - /** - * The root hash of the beacon block (filter: ne) - */ - block_root_ne?: string; - /** - * The root hash of the beacon block (filter: contains) - */ - block_root_contains?: string; - /** - * The root hash of the beacon block (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The root hash of the beacon block (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The root hash of the beacon block (filter: like) - */ - block_root_like?: string; - /** - * The root hash of the beacon block (filter: not_like) - */ - block_root_not_like?: string; - /** - * The root hash of the beacon block (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The root hash of the beacon block (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number within the block proposer payload (filter: eq) - */ - slot_eq?: number; - /** - * Slot number within the block proposer payload (filter: ne) - */ - slot_ne?: number; - /** - * Slot number within the block proposer payload (filter: lt) - */ - slot_lt?: number; - /** - * Slot number within the block proposer payload (filter: lte) - */ - slot_lte?: number; - /** - * Slot number within the block proposer payload (filter: gt) - */ - slot_gt?: number; - /** - * Slot number within the block proposer payload (filter: gte) - */ - slot_gte?: number; - /** - * Slot number within the block proposer payload (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number within the block proposer payload (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number within the block proposer payload (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number within the block proposer payload (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The start time for the epoch that the proposer payload is for (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The start time for the epoch that the proposer payload is for (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: eq) - */ - earliest_bid_date_time_eq?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: ne) - */ - earliest_bid_date_time_ne?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: lt) - */ - earliest_bid_date_time_lt?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: lte) - */ - earliest_bid_date_time_lte?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: gt) - */ - earliest_bid_date_time_gt?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: gte) - */ - earliest_bid_date_time_gte?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: between_min) - */ - earliest_bid_date_time_between_min?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: between_max_value) - */ - earliest_bid_date_time_between_max_value?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: in_values) (comma-separated list) - */ - earliest_bid_date_time_in_values?: string; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: not_in_values) (comma-separated list) - */ - earliest_bid_date_time_not_in_values?: string; - /** - * The relay names that delivered the proposer payload (filter: has) - */ - relay_names_has?: string; - /** - * The relay names that delivered the proposer payload (filter: has_all_values) - */ - relay_names_has_all_values?: Array; - /** - * The relay names that delivered the proposer payload (filter: has_any_values) - */ - relay_names_has_any_values?: Array; - /** - * The relay names that delivered the proposer payload (filter: length_eq) - */ - relay_names_length_eq?: number; - /** - * The relay names that delivered the proposer payload (filter: length_gt) - */ - relay_names_length_gt?: number; - /** - * The relay names that delivered the proposer payload (filter: length_gte) - */ - relay_names_length_gte?: number; - /** - * The relay names that delivered the proposer payload (filter: length_lt) - */ - relay_names_length_lt?: number; - /** - * The relay names that delivered the proposer payload (filter: length_lte) - */ - relay_names_length_lte?: number; - /** - * The parent hash of the proposer payload (filter: eq) - */ - parent_hash_eq?: string; - /** - * The parent hash of the proposer payload (filter: ne) - */ - parent_hash_ne?: string; - /** - * The parent hash of the proposer payload (filter: contains) - */ - parent_hash_contains?: string; - /** - * The parent hash of the proposer payload (filter: starts_with) - */ - parent_hash_starts_with?: string; - /** - * The parent hash of the proposer payload (filter: ends_with) - */ - parent_hash_ends_with?: string; - /** - * The parent hash of the proposer payload (filter: like) - */ - parent_hash_like?: string; - /** - * The parent hash of the proposer payload (filter: not_like) - */ - parent_hash_not_like?: string; - /** - * The parent hash of the proposer payload (filter: in_values) (comma-separated list) - */ - parent_hash_in_values?: string; - /** - * The parent hash of the proposer payload (filter: not_in_values) (comma-separated list) - */ - parent_hash_not_in_values?: string; - /** - * The block number of the proposer payload (filter: eq) - */ - block_number_eq?: number; - /** - * The block number of the proposer payload (filter: ne) - */ - block_number_ne?: number; - /** - * The block number of the proposer payload (filter: lt) - */ - block_number_lt?: number; - /** - * The block number of the proposer payload (filter: lte) - */ - block_number_lte?: number; - /** - * The block number of the proposer payload (filter: gt) - */ - block_number_gt?: number; - /** - * The block number of the proposer payload (filter: gte) - */ - block_number_gte?: number; - /** - * The block number of the proposer payload (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number of the proposer payload (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number of the proposer payload (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number of the proposer payload (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The block hash of the proposer payload (filter: eq) - */ - block_hash_eq?: string; - /** - * The block hash of the proposer payload (filter: ne) - */ - block_hash_ne?: string; - /** - * The block hash of the proposer payload (filter: contains) - */ - block_hash_contains?: string; - /** - * The block hash of the proposer payload (filter: starts_with) - */ - block_hash_starts_with?: string; - /** - * The block hash of the proposer payload (filter: ends_with) - */ - block_hash_ends_with?: string; - /** - * The block hash of the proposer payload (filter: like) - */ - block_hash_like?: string; - /** - * The block hash of the proposer payload (filter: not_like) - */ - block_hash_not_like?: string; - /** - * The block hash of the proposer payload (filter: in_values) (comma-separated list) - */ - block_hash_in_values?: string; - /** - * The block hash of the proposer payload (filter: not_in_values) (comma-separated list) - */ - block_hash_not_in_values?: string; - /** - * The builder pubkey of the proposer payload (filter: eq) - */ - builder_pubkey_eq?: string; - /** - * The builder pubkey of the proposer payload (filter: ne) - */ - builder_pubkey_ne?: string; - /** - * The builder pubkey of the proposer payload (filter: contains) - */ - builder_pubkey_contains?: string; - /** - * The builder pubkey of the proposer payload (filter: starts_with) - */ - builder_pubkey_starts_with?: string; - /** - * The builder pubkey of the proposer payload (filter: ends_with) - */ - builder_pubkey_ends_with?: string; - /** - * The builder pubkey of the proposer payload (filter: like) - */ - builder_pubkey_like?: string; - /** - * The builder pubkey of the proposer payload (filter: not_like) - */ - builder_pubkey_not_like?: string; - /** - * The builder pubkey of the proposer payload (filter: in_values) (comma-separated list) - */ - builder_pubkey_in_values?: string; - /** - * The builder pubkey of the proposer payload (filter: not_in_values) (comma-separated list) - */ - builder_pubkey_not_in_values?: string; - /** - * The proposer pubkey of the proposer payload (filter: eq) - */ - proposer_pubkey_eq?: string; - /** - * The proposer pubkey of the proposer payload (filter: ne) - */ - proposer_pubkey_ne?: string; - /** - * The proposer pubkey of the proposer payload (filter: contains) - */ - proposer_pubkey_contains?: string; - /** - * The proposer pubkey of the proposer payload (filter: starts_with) - */ - proposer_pubkey_starts_with?: string; - /** - * The proposer pubkey of the proposer payload (filter: ends_with) - */ - proposer_pubkey_ends_with?: string; - /** - * The proposer pubkey of the proposer payload (filter: like) - */ - proposer_pubkey_like?: string; - /** - * The proposer pubkey of the proposer payload (filter: not_like) - */ - proposer_pubkey_not_like?: string; - /** - * The proposer pubkey of the proposer payload (filter: in_values) (comma-separated list) - */ - proposer_pubkey_in_values?: string; - /** - * The proposer pubkey of the proposer payload (filter: not_in_values) (comma-separated list) - */ - proposer_pubkey_not_in_values?: string; - /** - * The proposer fee recipient of the proposer payload (filter: eq) - */ - proposer_fee_recipient_eq?: string; - /** - * The proposer fee recipient of the proposer payload (filter: ne) - */ - proposer_fee_recipient_ne?: string; - /** - * The proposer fee recipient of the proposer payload (filter: contains) - */ - proposer_fee_recipient_contains?: string; - /** - * The proposer fee recipient of the proposer payload (filter: starts_with) - */ - proposer_fee_recipient_starts_with?: string; - /** - * The proposer fee recipient of the proposer payload (filter: ends_with) - */ - proposer_fee_recipient_ends_with?: string; - /** - * The proposer fee recipient of the proposer payload (filter: like) - */ - proposer_fee_recipient_like?: string; - /** - * The proposer fee recipient of the proposer payload (filter: not_like) - */ - proposer_fee_recipient_not_like?: string; - /** - * The proposer fee recipient of the proposer payload (filter: in_values) (comma-separated list) - */ - proposer_fee_recipient_in_values?: string; - /** - * The proposer fee recipient of the proposer payload (filter: not_in_values) (comma-separated list) - */ - proposer_fee_recipient_not_in_values?: string; - /** - * The gas limit of the proposer payload (filter: eq) - */ - gas_limit_eq?: number; - /** - * The gas limit of the proposer payload (filter: ne) - */ - gas_limit_ne?: number; - /** - * The gas limit of the proposer payload (filter: lt) - */ - gas_limit_lt?: number; - /** - * The gas limit of the proposer payload (filter: lte) - */ - gas_limit_lte?: number; - /** - * The gas limit of the proposer payload (filter: gt) - */ - gas_limit_gt?: number; - /** - * The gas limit of the proposer payload (filter: gte) - */ - gas_limit_gte?: number; - /** - * The gas limit of the proposer payload (filter: between_min) - */ - gas_limit_between_min?: number; - /** - * The gas limit of the proposer payload (filter: between_max_value) - */ - gas_limit_between_max_value?: number; - /** - * The gas limit of the proposer payload (filter: in_values) (comma-separated list) - */ - gas_limit_in_values?: string; - /** - * The gas limit of the proposer payload (filter: not_in_values) (comma-separated list) - */ - gas_limit_not_in_values?: string; - /** - * The gas used of the proposer payload (filter: eq) - */ - gas_used_eq?: number; - /** - * The gas used of the proposer payload (filter: ne) - */ - gas_used_ne?: number; - /** - * The gas used of the proposer payload (filter: lt) - */ - gas_used_lt?: number; - /** - * The gas used of the proposer payload (filter: lte) - */ - gas_used_lte?: number; - /** - * The gas used of the proposer payload (filter: gt) - */ - gas_used_gt?: number; - /** - * The gas used of the proposer payload (filter: gte) - */ - gas_used_gte?: number; - /** - * The gas used of the proposer payload (filter: between_min) - */ - gas_used_between_min?: number; - /** - * The gas used of the proposer payload (filter: between_max_value) - */ - gas_used_between_max_value?: number; - /** - * The gas used of the proposer payload (filter: in_values) (comma-separated list) - */ - gas_used_in_values?: string; - /** - * The gas used of the proposer payload (filter: not_in_values) (comma-separated list) - */ - gas_used_not_in_values?: string; - /** - * The transaction value in wei (filter: eq) - */ - value_eq?: string; - /** - * The transaction value in wei (filter: ne) - */ - value_ne?: string; - /** - * The transaction value in wei (filter: contains) - */ - value_contains?: string; - /** - * The transaction value in wei (filter: starts_with) - */ - value_starts_with?: string; - /** - * The transaction value in wei (filter: ends_with) - */ - value_ends_with?: string; - /** - * The transaction value in wei (filter: like) - */ - value_like?: string; - /** - * The transaction value in wei (filter: not_like) - */ - value_not_like?: string; - /** - * The transaction value in wei (filter: in_values) (comma-separated list) - */ - value_in_values?: string; - /** - * The transaction value in wei (filter: not_in_values) (comma-separated list) - */ - value_not_in_values?: string; - /** - * The number of transactions in the proposer payload (filter: eq) - */ - transaction_count_eq?: number; - /** - * The number of transactions in the proposer payload (filter: ne) - */ - transaction_count_ne?: number; - /** - * The number of transactions in the proposer payload (filter: lt) - */ - transaction_count_lt?: number; - /** - * The number of transactions in the proposer payload (filter: lte) - */ - transaction_count_lte?: number; - /** - * The number of transactions in the proposer payload (filter: gt) - */ - transaction_count_gt?: number; - /** - * The number of transactions in the proposer payload (filter: gte) - */ - transaction_count_gte?: number; - /** - * The number of transactions in the proposer payload (filter: between_min) - */ - transaction_count_between_min?: number; - /** - * The number of transactions in the proposer payload (filter: between_max_value) - */ - transaction_count_between_max_value?: number; - /** - * The number of transactions in the proposer payload (filter: in_values) (comma-separated list) - */ - transaction_count_in_values?: string; - /** - * The number of transactions in the proposer payload (filter: not_in_values) (comma-separated list) - */ - transaction_count_not_in_values?: string; - /** - * The maximum number of fct_block_mev_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockMevHead` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_mev_head'; -}; - -export type FctBlockMevHeadServiceListErrors = { + block_number_between_max_value?: number; /** - * Default error response + * The block number containing the transaction (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctBlockMevHeadServiceListError = FctBlockMevHeadServiceListErrors[keyof FctBlockMevHeadServiceListErrors]; - -export type FctBlockMevHeadServiceListResponses = { + block_number_in_values?: string; /** - * OK + * The block number containing the transaction (filter: not_in_values) (comma-separated list) */ - 200: ListFctBlockMevHeadResponse; -}; - -export type FctBlockMevHeadServiceListResponse = FctBlockMevHeadServiceListResponses[keyof FctBlockMevHeadServiceListResponses]; - -export type FctBlockMevHeadServiceGetData = { - body?: never; - path: { - /** - * The start time for the slot that the proposer payload is for - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_mev_head/{slot_start_date_time}'; -}; - -export type FctBlockMevHeadServiceGetErrors = { + block_number_not_in_values?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: eq) */ - default: Status; -}; - -export type FctBlockMevHeadServiceGetError = FctBlockMevHeadServiceGetErrors[keyof FctBlockMevHeadServiceGetErrors]; - -export type FctBlockMevHeadServiceGetResponses = { + transaction_hash_eq?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: ne) */ - 200: GetFctBlockMevHeadResponse; -}; - -export type FctBlockMevHeadServiceGetResponse = FctBlockMevHeadServiceGetResponses[keyof FctBlockMevHeadServiceGetResponses]; - -export type FctBlockProposalStatusDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: eq) - */ - status_eq?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: ne) - */ - status_ne?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: contains) - */ - status_contains?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: starts_with) - */ - status_starts_with?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: ends_with) - */ - status_ends_with?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: like) - */ - status_like?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: not_like) - */ - status_not_like?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of slots with this status (filter: eq) - */ - slot_count_eq?: number; - /** - * Number of slots with this status (filter: ne) - */ - slot_count_ne?: number; - /** - * Number of slots with this status (filter: lt) - */ - slot_count_lt?: number; - /** - * Number of slots with this status (filter: lte) - */ - slot_count_lte?: number; - /** - * Number of slots with this status (filter: gt) - */ - slot_count_gt?: number; - /** - * Number of slots with this status (filter: gte) - */ - slot_count_gte?: number; - /** - * Number of slots with this status (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Number of slots with this status (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Number of slots with this status (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Number of slots with this status (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * The maximum number of fct_block_proposal_status_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockProposalStatusDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_proposal_status_daily'; -}; - -export type FctBlockProposalStatusDailyServiceListErrors = { + transaction_hash_ne?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: contains) */ - default: Status; -}; - -export type FctBlockProposalStatusDailyServiceListError = FctBlockProposalStatusDailyServiceListErrors[keyof FctBlockProposalStatusDailyServiceListErrors]; - -export type FctBlockProposalStatusDailyServiceListResponses = { + transaction_hash_contains?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: starts_with) */ - 200: ListFctBlockProposalStatusDailyResponse; -}; - -export type FctBlockProposalStatusDailyServiceListResponse = FctBlockProposalStatusDailyServiceListResponses[keyof FctBlockProposalStatusDailyServiceListResponses]; - -export type FctBlockProposalStatusDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_block_proposal_status_daily/{day_start_date}'; -}; - -export type FctBlockProposalStatusDailyServiceGetErrors = { + transaction_hash_starts_with?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: ends_with) */ - default: Status; -}; - -export type FctBlockProposalStatusDailyServiceGetError = FctBlockProposalStatusDailyServiceGetErrors[keyof FctBlockProposalStatusDailyServiceGetErrors]; - -export type FctBlockProposalStatusDailyServiceGetResponses = { + transaction_hash_ends_with?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: like) */ - 200: GetFctBlockProposalStatusDailyResponse; -}; - -export type FctBlockProposalStatusDailyServiceGetResponse = FctBlockProposalStatusDailyServiceGetResponses[keyof FctBlockProposalStatusDailyServiceGetResponses]; - -export type FctBlockProposalStatusHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: eq) - */ - status_eq?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: ne) - */ - status_ne?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: contains) - */ - status_contains?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: starts_with) - */ - status_starts_with?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: ends_with) - */ - status_ends_with?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: like) - */ - status_like?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: not_like) - */ - status_not_like?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Block proposal status (canonical, orphaned, missed) (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of slots with this status (filter: eq) - */ - slot_count_eq?: number; - /** - * Number of slots with this status (filter: ne) - */ - slot_count_ne?: number; - /** - * Number of slots with this status (filter: lt) - */ - slot_count_lt?: number; - /** - * Number of slots with this status (filter: lte) - */ - slot_count_lte?: number; - /** - * Number of slots with this status (filter: gt) - */ - slot_count_gt?: number; - /** - * Number of slots with this status (filter: gte) - */ - slot_count_gte?: number; - /** - * Number of slots with this status (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Number of slots with this status (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Number of slots with this status (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Number of slots with this status (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * The maximum number of fct_block_proposal_status_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockProposalStatusHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_proposal_status_hourly'; -}; - -export type FctBlockProposalStatusHourlyServiceListErrors = { + transaction_hash_like?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: not_like) */ - default: Status; -}; - -export type FctBlockProposalStatusHourlyServiceListError = FctBlockProposalStatusHourlyServiceListErrors[keyof FctBlockProposalStatusHourlyServiceListErrors]; - -export type FctBlockProposalStatusHourlyServiceListResponses = { + transaction_hash_not_like?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) */ - 200: ListFctBlockProposalStatusHourlyResponse; -}; - -export type FctBlockProposalStatusHourlyServiceListResponse = FctBlockProposalStatusHourlyServiceListResponses[keyof FctBlockProposalStatusHourlyServiceListResponses]; - -export type FctBlockProposalStatusHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_proposal_status_hourly/{hour_start_date_time}'; -}; - -export type FctBlockProposalStatusHourlyServiceGetErrors = { + transaction_hash_in_values?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctBlockProposalStatusHourlyServiceGetError = FctBlockProposalStatusHourlyServiceGetErrors[keyof FctBlockProposalStatusHourlyServiceGetErrors]; - -export type FctBlockProposalStatusHourlyServiceGetResponses = { + transaction_hash_not_in_values?: string; /** - * OK + * Sequential frame ID within transaction (0 = root) (filter: eq) */ - 200: GetFctBlockProposalStatusHourlyResponse; -}; - -export type FctBlockProposalStatusHourlyServiceGetResponse = FctBlockProposalStatusHourlyServiceGetResponses[keyof FctBlockProposalStatusHourlyServiceGetResponses]; - -export type FctBlockProposerServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The validator index of the proposer for the slot (filter: eq) - */ - proposer_validator_index_eq?: number; - /** - * The validator index of the proposer for the slot (filter: ne) - */ - proposer_validator_index_ne?: number; - /** - * The validator index of the proposer for the slot (filter: lt) - */ - proposer_validator_index_lt?: number; - /** - * The validator index of the proposer for the slot (filter: lte) - */ - proposer_validator_index_lte?: number; - /** - * The validator index of the proposer for the slot (filter: gt) - */ - proposer_validator_index_gt?: number; - /** - * The validator index of the proposer for the slot (filter: gte) - */ - proposer_validator_index_gte?: number; - /** - * The validator index of the proposer for the slot (filter: between_min) - */ - proposer_validator_index_between_min?: number; - /** - * The validator index of the proposer for the slot (filter: between_max_value) - */ - proposer_validator_index_between_max_value?: number; - /** - * The validator index of the proposer for the slot (filter: in_values) (comma-separated list) - */ - proposer_validator_index_in_values?: string; - /** - * The validator index of the proposer for the slot (filter: not_in_values) (comma-separated list) - */ - proposer_validator_index_not_in_values?: string; - /** - * The public key of the validator proposer (filter: eq) - */ - proposer_pubkey_eq?: string; - /** - * The public key of the validator proposer (filter: ne) - */ - proposer_pubkey_ne?: string; - /** - * The public key of the validator proposer (filter: contains) - */ - proposer_pubkey_contains?: string; - /** - * The public key of the validator proposer (filter: starts_with) - */ - proposer_pubkey_starts_with?: string; - /** - * The public key of the validator proposer (filter: ends_with) - */ - proposer_pubkey_ends_with?: string; - /** - * The public key of the validator proposer (filter: like) - */ - proposer_pubkey_like?: string; - /** - * The public key of the validator proposer (filter: not_like) - */ - proposer_pubkey_not_like?: string; - /** - * The public key of the validator proposer (filter: in_values) (comma-separated list) - */ - proposer_pubkey_in_values?: string; - /** - * The public key of the validator proposer (filter: not_in_values) (comma-separated list) - */ - proposer_pubkey_not_in_values?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry, aka "missed" (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: eq) - */ - status_eq?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: ne) - */ - status_ne?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: contains) - */ - status_contains?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: starts_with) - */ - status_starts_with?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: ends_with) - */ - status_ends_with?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: like) - */ - status_like?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: not_like) - */ - status_not_like?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * The maximum number of fct_block_proposer to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockProposer` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_proposer'; -}; - -export type FctBlockProposerServiceListErrors = { + call_frame_id_eq?: number; /** - * Default error response + * Sequential frame ID within transaction (0 = root) (filter: ne) */ - default: Status; -}; - -export type FctBlockProposerServiceListError = FctBlockProposerServiceListErrors[keyof FctBlockProposerServiceListErrors]; - -export type FctBlockProposerServiceListResponses = { + call_frame_id_ne?: number; /** - * OK + * Sequential frame ID within transaction (0 = root) (filter: lt) */ - 200: ListFctBlockProposerResponse; -}; - -export type FctBlockProposerServiceListResponse = FctBlockProposerServiceListResponses[keyof FctBlockProposerServiceListResponses]; - -export type FctBlockProposerServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_proposer/{slot_start_date_time}'; -}; - -export type FctBlockProposerServiceGetErrors = { + call_frame_id_lt?: number; /** - * Default error response + * Sequential frame ID within transaction (0 = root) (filter: lte) */ - default: Status; -}; - -export type FctBlockProposerServiceGetError = FctBlockProposerServiceGetErrors[keyof FctBlockProposerServiceGetErrors]; - -export type FctBlockProposerServiceGetResponses = { + call_frame_id_lte?: number; /** - * OK + * Sequential frame ID within transaction (0 = root) (filter: gt) */ - 200: GetFctBlockProposerResponse; -}; - -export type FctBlockProposerServiceGetResponse = FctBlockProposerServiceGetResponses[keyof FctBlockProposerServiceGetResponses]; - -export type FctBlockProposerByValidatorServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The validator index of the proposer (filter: eq) - */ - validator_index_eq?: number; - /** - * The validator index of the proposer (filter: ne) - */ - validator_index_ne?: number; - /** - * The validator index of the proposer (filter: lt) - */ - validator_index_lt?: number; - /** - * The validator index of the proposer (filter: lte) - */ - validator_index_lte?: number; - /** - * The validator index of the proposer (filter: gt) - */ - validator_index_gt?: number; - /** - * The validator index of the proposer (filter: gte) - */ - validator_index_gte?: number; - /** - * The validator index of the proposer (filter: between_min) - */ - validator_index_between_min?: number; - /** - * The validator index of the proposer (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * The validator index of the proposer (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * The validator index of the proposer (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The public key of the proposer (filter: eq) - */ - pubkey_eq?: string; - /** - * The public key of the proposer (filter: ne) - */ - pubkey_ne?: string; - /** - * The public key of the proposer (filter: contains) - */ - pubkey_contains?: string; - /** - * The public key of the proposer (filter: starts_with) - */ - pubkey_starts_with?: string; - /** - * The public key of the proposer (filter: ends_with) - */ - pubkey_ends_with?: string; - /** - * The public key of the proposer (filter: like) - */ - pubkey_like?: string; - /** - * The public key of the proposer (filter: not_like) - */ - pubkey_not_like?: string; - /** - * The public key of the proposer (filter: in_values) (comma-separated list) - */ - pubkey_in_values?: string; - /** - * The public key of the proposer (filter: not_in_values) (comma-separated list) - */ - pubkey_not_in_values?: string; - /** - * The beacon block root hash. NULL if missed (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash. NULL if missed (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash. NULL if missed (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash. NULL if missed (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash. NULL if missed (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash. NULL if missed (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash. NULL if missed (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash. NULL if missed (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash. NULL if missed (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: eq) - */ - status_eq?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: ne) - */ - status_ne?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: contains) - */ - status_contains?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: starts_with) - */ - status_starts_with?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: ends_with) - */ - status_ends_with?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: like) - */ - status_like?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: not_like) - */ - status_not_like?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Can be "canonical", "orphaned" or "missed" (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * The maximum number of fct_block_proposer_by_validator to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockProposerByValidator` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_proposer_by_validator'; -}; - -export type FctBlockProposerByValidatorServiceListErrors = { + call_frame_id_gt?: number; /** - * Default error response + * Sequential frame ID within transaction (0 = root) (filter: gte) */ - default: Status; -}; - -export type FctBlockProposerByValidatorServiceListError = FctBlockProposerByValidatorServiceListErrors[keyof FctBlockProposerByValidatorServiceListErrors]; - -export type FctBlockProposerByValidatorServiceListResponses = { + call_frame_id_gte?: number; /** - * OK + * Sequential frame ID within transaction (0 = root) (filter: between_min) */ - 200: ListFctBlockProposerByValidatorResponse; -}; - -export type FctBlockProposerByValidatorServiceListResponse = FctBlockProposerByValidatorServiceListResponses[keyof FctBlockProposerByValidatorServiceListResponses]; - -export type FctBlockProposerByValidatorServiceGetData = { - body?: never; - path: { - /** - * The validator index of the proposer - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/fct_block_proposer_by_validator/{validator_index}'; -}; - -export type FctBlockProposerByValidatorServiceGetErrors = { + call_frame_id_between_min?: number; /** - * Default error response + * Sequential frame ID within transaction (0 = root) (filter: between_max_value) */ - default: Status; -}; - -export type FctBlockProposerByValidatorServiceGetError = FctBlockProposerByValidatorServiceGetErrors[keyof FctBlockProposerByValidatorServiceGetErrors]; - -export type FctBlockProposerByValidatorServiceGetResponses = { + call_frame_id_between_max_value?: number; /** - * OK + * Sequential frame ID within transaction (0 = root) (filter: in_values) (comma-separated list) */ - 200: GetFctBlockProposerByValidatorResponse; -}; - -export type FctBlockProposerByValidatorServiceGetResponse = FctBlockProposerByValidatorServiceGetResponses[keyof FctBlockProposerByValidatorServiceGetResponses]; - -export type FctBlockProposerEntityServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The entity that proposed the block (filter: eq) - */ - entity_eq?: string; - /** - * The entity that proposed the block (filter: ne) - */ - entity_ne?: string; - /** - * The entity that proposed the block (filter: contains) - */ - entity_contains?: string; - /** - * The entity that proposed the block (filter: starts_with) - */ - entity_starts_with?: string; - /** - * The entity that proposed the block (filter: ends_with) - */ - entity_ends_with?: string; - /** - * The entity that proposed the block (filter: like) - */ - entity_like?: string; - /** - * The entity that proposed the block (filter: not_like) - */ - entity_not_like?: string; - /** - * The entity that proposed the block (filter: in_values) (comma-separated list) - */ - entity_in_values?: string; - /** - * The entity that proposed the block (filter: not_in_values) (comma-separated list) - */ - entity_not_in_values?: string; - /** - * The maximum number of fct_block_proposer_entity to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockProposerEntity` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_proposer_entity'; -}; - -export type FctBlockProposerEntityServiceListErrors = { + call_frame_id_in_values?: string; /** - * Default error response + * Sequential frame ID within transaction (0 = root) (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctBlockProposerEntityServiceListError = FctBlockProposerEntityServiceListErrors[keyof FctBlockProposerEntityServiceListErrors]; - -export type FctBlockProposerEntityServiceListResponses = { + call_frame_id_not_in_values?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: eq) */ - 200: ListFctBlockProposerEntityResponse; -}; - -export type FctBlockProposerEntityServiceListResponse = FctBlockProposerEntityServiceListResponses[keyof FctBlockProposerEntityServiceListResponses]; - -export type FctBlockProposerEntityServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_proposer_entity/{slot_start_date_time}'; -}; - -export type FctBlockProposerEntityServiceGetErrors = { + opcode_eq?: string; /** - * Default error response + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ne) */ - default: Status; -}; - -export type FctBlockProposerEntityServiceGetError = FctBlockProposerEntityServiceGetErrors[keyof FctBlockProposerEntityServiceGetErrors]; - -export type FctBlockProposerEntityServiceGetResponses = { + opcode_ne?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: contains) */ - 200: GetFctBlockProposerEntityResponse; -}; - -export type FctBlockProposerEntityServiceGetResponse = FctBlockProposerEntityServiceGetResponses[keyof FctBlockProposerEntityServiceGetResponses]; - -export type FctBlockProposerHeadServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The validator index of the proposer for the slot (filter: eq) - */ - proposer_validator_index_eq?: number; - /** - * The validator index of the proposer for the slot (filter: ne) - */ - proposer_validator_index_ne?: number; - /** - * The validator index of the proposer for the slot (filter: lt) - */ - proposer_validator_index_lt?: number; - /** - * The validator index of the proposer for the slot (filter: lte) - */ - proposer_validator_index_lte?: number; - /** - * The validator index of the proposer for the slot (filter: gt) - */ - proposer_validator_index_gt?: number; - /** - * The validator index of the proposer for the slot (filter: gte) - */ - proposer_validator_index_gte?: number; - /** - * The validator index of the proposer for the slot (filter: between_min) - */ - proposer_validator_index_between_min?: number; - /** - * The validator index of the proposer for the slot (filter: between_max_value) - */ - proposer_validator_index_between_max_value?: number; - /** - * The validator index of the proposer for the slot (filter: in_values) (comma-separated list) - */ - proposer_validator_index_in_values?: string; - /** - * The validator index of the proposer for the slot (filter: not_in_values) (comma-separated list) - */ - proposer_validator_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The public key of the validator proposer (filter: eq) - */ - proposer_pubkey_eq?: string; - /** - * The public key of the validator proposer (filter: ne) - */ - proposer_pubkey_ne?: string; - /** - * The public key of the validator proposer (filter: contains) - */ - proposer_pubkey_contains?: string; - /** - * The public key of the validator proposer (filter: starts_with) - */ - proposer_pubkey_starts_with?: string; - /** - * The public key of the validator proposer (filter: ends_with) - */ - proposer_pubkey_ends_with?: string; - /** - * The public key of the validator proposer (filter: like) - */ - proposer_pubkey_like?: string; - /** - * The public key of the validator proposer (filter: not_like) - */ - proposer_pubkey_not_like?: string; - /** - * The public key of the validator proposer (filter: in_values) (comma-separated list) - */ - proposer_pubkey_in_values?: string; - /** - * The public key of the validator proposer (filter: not_in_values) (comma-separated list) - */ - proposer_pubkey_not_in_values?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash. Null if a block was never seen by a sentry (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The maximum number of fct_block_proposer_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctBlockProposerHead` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_block_proposer_head'; -}; - -export type FctBlockProposerHeadServiceListErrors = { + opcode_contains?: string; /** - * Default error response + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: starts_with) */ - default: Status; -}; - -export type FctBlockProposerHeadServiceListError = FctBlockProposerHeadServiceListErrors[keyof FctBlockProposerHeadServiceListErrors]; - -export type FctBlockProposerHeadServiceListResponses = { + opcode_starts_with?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ends_with) */ - 200: ListFctBlockProposerHeadResponse; -}; - -export type FctBlockProposerHeadServiceListResponse = FctBlockProposerHeadServiceListResponses[keyof FctBlockProposerHeadServiceListResponses]; - -export type FctBlockProposerHeadServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_block_proposer_head/{slot_start_date_time}'; -}; - -export type FctBlockProposerHeadServiceGetErrors = { + opcode_ends_with?: string; /** - * Default error response + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: like) */ - default: Status; -}; - -export type FctBlockProposerHeadServiceGetError = FctBlockProposerHeadServiceGetErrors[keyof FctBlockProposerHeadServiceGetErrors]; - -export type FctBlockProposerHeadServiceGetResponses = { + opcode_like?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_like) */ - 200: GetFctBlockProposerHeadResponse; -}; - -export type FctBlockProposerHeadServiceGetResponse = FctBlockProposerHeadServiceGetResponses[keyof FctBlockProposerHeadServiceGetResponses]; - -export type FctContractStorageStateByAddressDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative count of active storage slots at end of day (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at end of day (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at end of day (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at end of day (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at end of day (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at end of day (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at end of day (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at end of day (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at end of day (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at end of day (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at end of day (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at end of day (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of fct_contract_storage_state_by_address_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctContractStorageStateByAddressDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_contract_storage_state_by_address_daily'; -}; - -export type FctContractStorageStateByAddressDailyServiceListErrors = { + opcode_not_like?: string; /** - * Default error response + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctContractStorageStateByAddressDailyServiceListError = FctContractStorageStateByAddressDailyServiceListErrors[keyof FctContractStorageStateByAddressDailyServiceListErrors]; - -export type FctContractStorageStateByAddressDailyServiceListResponses = { + opcode_in_values?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_in_values) (comma-separated list) */ - 200: ListFctContractStorageStateByAddressDailyResponse; -}; - -export type FctContractStorageStateByAddressDailyServiceListResponse = FctContractStorageStateByAddressDailyServiceListResponses[keyof FctContractStorageStateByAddressDailyServiceListResponses]; - -export type FctContractStorageStateByAddressDailyServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/fct_contract_storage_state_by_address_daily/{address}'; -}; - -export type FctContractStorageStateByAddressDailyServiceGetErrors = { + opcode_not_in_values?: string; + /** + * The name of the network (filter: eq) + */ + meta_network_name_eq?: string; + /** + * The name of the network (filter: ne) + */ + meta_network_name_ne?: string; + /** + * The name of the network (filter: contains) + */ + meta_network_name_contains?: string; + /** + * The name of the network (filter: starts_with) + */ + meta_network_name_starts_with?: string; + /** + * The name of the network (filter: ends_with) + */ + meta_network_name_ends_with?: string; + /** + * The name of the network (filter: like) + */ + meta_network_name_like?: string; + /** + * The name of the network (filter: not_like) + */ + meta_network_name_not_like?: string; + /** + * The name of the network (filter: in_values) (comma-separated list) + */ + meta_network_name_in_values?: string; /** - * Default error response + * The name of the network (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctContractStorageStateByAddressDailyServiceGetError = FctContractStorageStateByAddressDailyServiceGetErrors[keyof FctContractStorageStateByAddressDailyServiceGetErrors]; - -export type FctContractStorageStateByAddressDailyServiceGetResponses = { + meta_network_name_not_in_values?: string; /** - * OK + * Timestamp when the record was last updated (filter: eq) */ - 200: GetFctContractStorageStateByAddressDailyResponse; -}; - -export type FctContractStorageStateByAddressDailyServiceGetResponse = FctContractStorageStateByAddressDailyServiceGetResponses[keyof FctContractStorageStateByAddressDailyServiceGetResponses]; - -export type FctContractStorageStateByAddressHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative count of active storage slots at end of hour (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at end of hour (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at end of hour (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at end of hour (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of fct_contract_storage_state_by_address_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctContractStorageStateByAddressHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_contract_storage_state_by_address_hourly'; -}; - -export type FctContractStorageStateByAddressHourlyServiceListErrors = { + updated_date_time_eq?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: ne) */ - default: Status; -}; - -export type FctContractStorageStateByAddressHourlyServiceListError = FctContractStorageStateByAddressHourlyServiceListErrors[keyof FctContractStorageStateByAddressHourlyServiceListErrors]; - -export type FctContractStorageStateByAddressHourlyServiceListResponses = { + updated_date_time_ne?: number; /** - * OK + * Timestamp when the record was last updated (filter: lt) */ - 200: ListFctContractStorageStateByAddressHourlyResponse; -}; - -export type FctContractStorageStateByAddressHourlyServiceListResponse = FctContractStorageStateByAddressHourlyServiceListResponses[keyof FctContractStorageStateByAddressHourlyServiceListResponses]; - -export type FctContractStorageStateByAddressHourlyServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/fct_contract_storage_state_by_address_hourly/{address}'; -}; - -export type FctContractStorageStateByAddressHourlyServiceGetErrors = { + updated_date_time_lt?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: lte) */ - default: Status; -}; - -export type FctContractStorageStateByAddressHourlyServiceGetError = FctContractStorageStateByAddressHourlyServiceGetErrors[keyof FctContractStorageStateByAddressHourlyServiceGetErrors]; - -export type FctContractStorageStateByAddressHourlyServiceGetResponses = { + updated_date_time_lte?: number; /** - * OK + * Timestamp when the record was last updated (filter: gt) */ - 200: GetFctContractStorageStateByAddressHourlyResponse; -}; - -export type FctContractStorageStateByAddressHourlyServiceGetResponse = FctContractStorageStateByAddressHourlyServiceGetResponses[keyof FctContractStorageStateByAddressHourlyServiceGetResponses]; - -export type FctContractStorageStateByBlockDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative count of active storage slots at end of day (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at end of day (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at end of day (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at end of day (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at end of day (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at end of day (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at end of day (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at end of day (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at end of day (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at end of day (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at end of day (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at end of day (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * Cumulative count of contracts with at least one active slot at end of day (filter: eq) - */ - active_contracts_eq?: number; - /** - * Cumulative count of contracts with at least one active slot at end of day (filter: ne) - */ - active_contracts_ne?: number; - /** - * Cumulative count of contracts with at least one active slot at end of day (filter: lt) - */ - active_contracts_lt?: number; - /** - * Cumulative count of contracts with at least one active slot at end of day (filter: lte) - */ - active_contracts_lte?: number; - /** - * Cumulative count of contracts with at least one active slot at end of day (filter: gt) - */ - active_contracts_gt?: number; - /** - * Cumulative count of contracts with at least one active slot at end of day (filter: gte) - */ - active_contracts_gte?: number; - /** - * Cumulative count of contracts with at least one active slot at end of day (filter: between_min) - */ - active_contracts_between_min?: number; - /** - * Cumulative count of contracts with at least one active slot at end of day (filter: between_max_value) - */ - active_contracts_between_max_value?: number; - /** - * Cumulative count of contracts with at least one active slot at end of day (filter: in_values) (comma-separated list) - */ - active_contracts_in_values?: string; - /** - * Cumulative count of contracts with at least one active slot at end of day (filter: not_in_values) (comma-separated list) - */ - active_contracts_not_in_values?: string; - /** - * The maximum number of fct_contract_storage_state_by_block_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctContractStorageStateByBlockDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_contract_storage_state_by_block_daily'; -}; - -export type FctContractStorageStateByBlockDailyServiceListErrors = { + updated_date_time_gt?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: gte) */ - default: Status; -}; - -export type FctContractStorageStateByBlockDailyServiceListError = FctContractStorageStateByBlockDailyServiceListErrors[keyof FctContractStorageStateByBlockDailyServiceListErrors]; - -export type FctContractStorageStateByBlockDailyServiceListResponses = { + updated_date_time_gte?: number; /** - * OK + * Timestamp when the record was last updated (filter: between_min) */ - 200: ListFctContractStorageStateByBlockDailyResponse; -}; - -export type FctContractStorageStateByBlockDailyServiceListResponse = FctContractStorageStateByBlockDailyServiceListResponses[keyof FctContractStorageStateByBlockDailyServiceListResponses]; - -export type FctContractStorageStateByBlockDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_contract_storage_state_by_block_daily/{day_start_date}'; -}; - -export type FctContractStorageStateByBlockDailyServiceGetErrors = { + updated_date_time_between_min?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: between_max_value) */ - default: Status; -}; - -export type FctContractStorageStateByBlockDailyServiceGetError = FctContractStorageStateByBlockDailyServiceGetErrors[keyof FctContractStorageStateByBlockDailyServiceGetErrors]; - -export type FctContractStorageStateByBlockDailyServiceGetResponses = { + updated_date_time_between_max_value?: number; /** - * OK + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - 200: GetFctContractStorageStateByBlockDailyResponse; -}; - -export type FctContractStorageStateByBlockDailyServiceGetResponse = FctContractStorageStateByBlockDailyServiceGetResponses[keyof FctContractStorageStateByBlockDailyServiceGetResponses]; - -export type FctContractStorageStateByBlockHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative count of active storage slots at end of hour (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at end of hour (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at end of hour (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at end of hour (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * Cumulative count of contracts with at least one active slot at end of hour (filter: eq) - */ - active_contracts_eq?: number; - /** - * Cumulative count of contracts with at least one active slot at end of hour (filter: ne) - */ - active_contracts_ne?: number; - /** - * Cumulative count of contracts with at least one active slot at end of hour (filter: lt) - */ - active_contracts_lt?: number; - /** - * Cumulative count of contracts with at least one active slot at end of hour (filter: lte) - */ - active_contracts_lte?: number; - /** - * Cumulative count of contracts with at least one active slot at end of hour (filter: gt) - */ - active_contracts_gt?: number; - /** - * Cumulative count of contracts with at least one active slot at end of hour (filter: gte) - */ - active_contracts_gte?: number; - /** - * Cumulative count of contracts with at least one active slot at end of hour (filter: between_min) - */ - active_contracts_between_min?: number; - /** - * Cumulative count of contracts with at least one active slot at end of hour (filter: between_max_value) - */ - active_contracts_between_max_value?: number; - /** - * Cumulative count of contracts with at least one active slot at end of hour (filter: in_values) (comma-separated list) - */ - active_contracts_in_values?: string; - /** - * Cumulative count of contracts with at least one active slot at end of hour (filter: not_in_values) (comma-separated list) - */ - active_contracts_not_in_values?: string; - /** - * The maximum number of fct_contract_storage_state_by_block_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctContractStorageStateByBlockHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_contract_storage_state_by_block_hourly'; -}; - -export type FctContractStorageStateByBlockHourlyServiceListErrors = { + updated_date_time_in_values?: string; /** - * Default error response + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctContractStorageStateByBlockHourlyServiceListError = FctContractStorageStateByBlockHourlyServiceListErrors[keyof FctContractStorageStateByBlockHourlyServiceListErrors]; - -export type FctContractStorageStateByBlockHourlyServiceListResponses = { + updated_date_time_not_in_values?: string; /** - * OK + * The index of the transaction within the block (filter: eq) */ - 200: ListFctContractStorageStateByBlockHourlyResponse; -}; - -export type FctContractStorageStateByBlockHourlyServiceListResponse = FctContractStorageStateByBlockHourlyServiceListResponses[keyof FctContractStorageStateByBlockHourlyServiceListResponses]; - -export type FctContractStorageStateByBlockHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_contract_storage_state_by_block_hourly/{hour_start_date_time}'; -}; - -export type FctContractStorageStateByBlockHourlyServiceGetErrors = { + transaction_index_eq?: number; /** - * Default error response + * The index of the transaction within the block (filter: ne) */ - default: Status; -}; - -export type FctContractStorageStateByBlockHourlyServiceGetError = FctContractStorageStateByBlockHourlyServiceGetErrors[keyof FctContractStorageStateByBlockHourlyServiceGetErrors]; - -export type FctContractStorageStateByBlockHourlyServiceGetResponses = { + transaction_index_ne?: number; /** - * OK + * The index of the transaction within the block (filter: lt) */ - 200: GetFctContractStorageStateByBlockHourlyResponse; -}; - -export type FctContractStorageStateByBlockHourlyServiceGetResponse = FctContractStorageStateByBlockHourlyServiceGetResponses[keyof FctContractStorageStateByBlockHourlyServiceGetResponses]; - -export type FctContractStorageStateWithExpiryByAddressDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Active storage slots in this contract at end of day (0 if expired) (filter: eq) - */ - active_slots_eq?: number; - /** - * Active storage slots in this contract at end of day (0 if expired) (filter: ne) - */ - active_slots_ne?: number; - /** - * Active storage slots in this contract at end of day (0 if expired) (filter: lt) - */ - active_slots_lt?: number; - /** - * Active storage slots in this contract at end of day (0 if expired) (filter: lte) - */ - active_slots_lte?: number; - /** - * Active storage slots in this contract at end of day (0 if expired) (filter: gt) - */ - active_slots_gt?: number; - /** - * Active storage slots in this contract at end of day (0 if expired) (filter: gte) - */ - active_slots_gte?: number; - /** - * Active storage slots in this contract at end of day (0 if expired) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Active storage slots in this contract at end of day (0 if expired) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Active storage slots in this contract at end of day (0 if expired) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Active storage slots in this contract at end of day (0 if expired) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Effective bytes at end of day (0 if expired) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Effective bytes at end of day (0 if expired) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Effective bytes at end of day (0 if expired) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Effective bytes at end of day (0 if expired) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Effective bytes at end of day (0 if expired) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Effective bytes at end of day (0 if expired) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Effective bytes at end of day (0 if expired) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Effective bytes at end of day (0 if expired) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Effective bytes at end of day (0 if expired) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Effective bytes at end of day (0 if expired) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of fct_contract_storage_state_with_expiry_by_address_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctContractStorageStateWithExpiryByAddressDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_contract_storage_state_with_expiry_by_address_daily'; -}; - -export type FctContractStorageStateWithExpiryByAddressDailyServiceListErrors = { + transaction_index_lt?: number; /** - * Default error response + * The index of the transaction within the block (filter: lte) */ - default: Status; -}; - -export type FctContractStorageStateWithExpiryByAddressDailyServiceListError = FctContractStorageStateWithExpiryByAddressDailyServiceListErrors[keyof FctContractStorageStateWithExpiryByAddressDailyServiceListErrors]; - -export type FctContractStorageStateWithExpiryByAddressDailyServiceListResponses = { + transaction_index_lte?: number; /** - * OK + * The index of the transaction within the block (filter: gt) */ - 200: ListFctContractStorageStateWithExpiryByAddressDailyResponse; -}; - -export type FctContractStorageStateWithExpiryByAddressDailyServiceListResponse = FctContractStorageStateWithExpiryByAddressDailyServiceListResponses[keyof FctContractStorageStateWithExpiryByAddressDailyServiceListResponses]; - -export type FctContractStorageStateWithExpiryByAddressDailyServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/fct_contract_storage_state_with_expiry_by_address_daily/{address}'; -}; - -export type FctContractStorageStateWithExpiryByAddressDailyServiceGetErrors = { + transaction_index_gt?: number; /** - * Default error response + * The index of the transaction within the block (filter: gte) */ - default: Status; -}; - -export type FctContractStorageStateWithExpiryByAddressDailyServiceGetError = FctContractStorageStateWithExpiryByAddressDailyServiceGetErrors[keyof FctContractStorageStateWithExpiryByAddressDailyServiceGetErrors]; - -export type FctContractStorageStateWithExpiryByAddressDailyServiceGetResponses = { + transaction_index_gte?: number; /** - * OK + * The index of the transaction within the block (filter: between_min) */ - 200: GetFctContractStorageStateWithExpiryByAddressDailyResponse; -}; - -export type FctContractStorageStateWithExpiryByAddressDailyServiceGetResponse = FctContractStorageStateWithExpiryByAddressDailyServiceGetResponses[keyof FctContractStorageStateWithExpiryByAddressDailyServiceGetResponses]; - -export type FctContractStorageStateWithExpiryByAddressHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Active storage slots in this contract at end of hour (0 if expired) (filter: eq) - */ - active_slots_eq?: number; - /** - * Active storage slots in this contract at end of hour (0 if expired) (filter: ne) - */ - active_slots_ne?: number; - /** - * Active storage slots in this contract at end of hour (0 if expired) (filter: lt) - */ - active_slots_lt?: number; - /** - * Active storage slots in this contract at end of hour (0 if expired) (filter: lte) - */ - active_slots_lte?: number; - /** - * Active storage slots in this contract at end of hour (0 if expired) (filter: gt) - */ - active_slots_gt?: number; - /** - * Active storage slots in this contract at end of hour (0 if expired) (filter: gte) - */ - active_slots_gte?: number; - /** - * Active storage slots in this contract at end of hour (0 if expired) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Active storage slots in this contract at end of hour (0 if expired) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Active storage slots in this contract at end of hour (0 if expired) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Active storage slots in this contract at end of hour (0 if expired) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Effective bytes at end of hour (0 if expired) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Effective bytes at end of hour (0 if expired) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Effective bytes at end of hour (0 if expired) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Effective bytes at end of hour (0 if expired) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Effective bytes at end of hour (0 if expired) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Effective bytes at end of hour (0 if expired) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Effective bytes at end of hour (0 if expired) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Effective bytes at end of hour (0 if expired) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Effective bytes at end of hour (0 if expired) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Effective bytes at end of hour (0 if expired) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of fct_contract_storage_state_with_expiry_by_address_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctContractStorageStateWithExpiryByAddressHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_contract_storage_state_with_expiry_by_address_hourly'; -}; - -export type FctContractStorageStateWithExpiryByAddressHourlyServiceListErrors = { + transaction_index_between_min?: number; /** - * Default error response + * The index of the transaction within the block (filter: between_max_value) */ - default: Status; -}; - -export type FctContractStorageStateWithExpiryByAddressHourlyServiceListError = FctContractStorageStateWithExpiryByAddressHourlyServiceListErrors[keyof FctContractStorageStateWithExpiryByAddressHourlyServiceListErrors]; - -export type FctContractStorageStateWithExpiryByAddressHourlyServiceListResponses = { + transaction_index_between_max_value?: number; /** - * OK + * The index of the transaction within the block (filter: in_values) (comma-separated list) */ - 200: ListFctContractStorageStateWithExpiryByAddressHourlyResponse; -}; - -export type FctContractStorageStateWithExpiryByAddressHourlyServiceListResponse = FctContractStorageStateWithExpiryByAddressHourlyServiceListResponses[keyof FctContractStorageStateWithExpiryByAddressHourlyServiceListResponses]; - -export type FctContractStorageStateWithExpiryByAddressHourlyServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/fct_contract_storage_state_with_expiry_by_address_hourly/{address}'; -}; - -export type FctContractStorageStateWithExpiryByAddressHourlyServiceGetErrors = { + transaction_index_in_values?: string; /** - * Default error response + * The index of the transaction within the block (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctContractStorageStateWithExpiryByAddressHourlyServiceGetError = FctContractStorageStateWithExpiryByAddressHourlyServiceGetErrors[keyof FctContractStorageStateWithExpiryByAddressHourlyServiceGetErrors]; - -export type FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponses = { + transaction_index_not_in_values?: string; /** - * OK + * Number of times this opcode was executed in this frame (filter: eq) */ - 200: GetFctContractStorageStateWithExpiryByAddressHourlyResponse; -}; - -export type FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse = FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponses[keyof FctContractStorageStateWithExpiryByAddressHourlyServiceGetResponses]; - -export type FctContractStorageStateWithExpiryByBlockDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total active storage slots at end of day (with expiry applied) (filter: eq) - */ - active_slots_eq?: number; - /** - * Total active storage slots at end of day (with expiry applied) (filter: ne) - */ - active_slots_ne?: number; - /** - * Total active storage slots at end of day (with expiry applied) (filter: lt) - */ - active_slots_lt?: number; - /** - * Total active storage slots at end of day (with expiry applied) (filter: lte) - */ - active_slots_lte?: number; - /** - * Total active storage slots at end of day (with expiry applied) (filter: gt) - */ - active_slots_gt?: number; - /** - * Total active storage slots at end of day (with expiry applied) (filter: gte) - */ - active_slots_gte?: number; - /** - * Total active storage slots at end of day (with expiry applied) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Total active storage slots at end of day (with expiry applied) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Total active storage slots at end of day (with expiry applied) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Total active storage slots at end of day (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Total effective bytes at end of day (with expiry applied) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Total effective bytes at end of day (with expiry applied) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Total effective bytes at end of day (with expiry applied) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Total effective bytes at end of day (with expiry applied) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Total effective bytes at end of day (with expiry applied) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Total effective bytes at end of day (with expiry applied) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Total effective bytes at end of day (with expiry applied) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Total effective bytes at end of day (with expiry applied) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Total effective bytes at end of day (with expiry applied) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Total effective bytes at end of day (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * Count of contracts with active_slots > 0 at end of day (filter: eq) - */ - active_contracts_eq?: number; - /** - * Count of contracts with active_slots > 0 at end of day (filter: ne) - */ - active_contracts_ne?: number; - /** - * Count of contracts with active_slots > 0 at end of day (filter: lt) - */ - active_contracts_lt?: number; - /** - * Count of contracts with active_slots > 0 at end of day (filter: lte) - */ - active_contracts_lte?: number; - /** - * Count of contracts with active_slots > 0 at end of day (filter: gt) - */ - active_contracts_gt?: number; - /** - * Count of contracts with active_slots > 0 at end of day (filter: gte) - */ - active_contracts_gte?: number; - /** - * Count of contracts with active_slots > 0 at end of day (filter: between_min) - */ - active_contracts_between_min?: number; - /** - * Count of contracts with active_slots > 0 at end of day (filter: between_max_value) - */ - active_contracts_between_max_value?: number; - /** - * Count of contracts with active_slots > 0 at end of day (filter: in_values) (comma-separated list) - */ - active_contracts_in_values?: string; - /** - * Count of contracts with active_slots > 0 at end of day (filter: not_in_values) (comma-separated list) - */ - active_contracts_not_in_values?: string; - /** - * The maximum number of fct_contract_storage_state_with_expiry_by_block_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctContractStorageStateWithExpiryByBlockDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_contract_storage_state_with_expiry_by_block_daily'; -}; - -export type FctContractStorageStateWithExpiryByBlockDailyServiceListErrors = { + count_eq?: number; /** - * Default error response + * Number of times this opcode was executed in this frame (filter: ne) */ - default: Status; -}; - -export type FctContractStorageStateWithExpiryByBlockDailyServiceListError = FctContractStorageStateWithExpiryByBlockDailyServiceListErrors[keyof FctContractStorageStateWithExpiryByBlockDailyServiceListErrors]; - -export type FctContractStorageStateWithExpiryByBlockDailyServiceListResponses = { + count_ne?: number; /** - * OK + * Number of times this opcode was executed in this frame (filter: lt) */ - 200: ListFctContractStorageStateWithExpiryByBlockDailyResponse; -}; - -export type FctContractStorageStateWithExpiryByBlockDailyServiceListResponse = FctContractStorageStateWithExpiryByBlockDailyServiceListResponses[keyof FctContractStorageStateWithExpiryByBlockDailyServiceListResponses]; - -export type FctContractStorageStateWithExpiryByBlockDailyServiceGetData = { - body?: never; - path: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy: string; - }; - query?: never; - url: '/api/v1/fct_contract_storage_state_with_expiry_by_block_daily/{expiry_policy}'; -}; - -export type FctContractStorageStateWithExpiryByBlockDailyServiceGetErrors = { + count_lt?: number; /** - * Default error response + * Number of times this opcode was executed in this frame (filter: lte) */ - default: Status; -}; - -export type FctContractStorageStateWithExpiryByBlockDailyServiceGetError = FctContractStorageStateWithExpiryByBlockDailyServiceGetErrors[keyof FctContractStorageStateWithExpiryByBlockDailyServiceGetErrors]; - -export type FctContractStorageStateWithExpiryByBlockDailyServiceGetResponses = { + count_lte?: number; /** - * OK + * Number of times this opcode was executed in this frame (filter: gt) */ - 200: GetFctContractStorageStateWithExpiryByBlockDailyResponse; -}; - -export type FctContractStorageStateWithExpiryByBlockDailyServiceGetResponse = FctContractStorageStateWithExpiryByBlockDailyServiceGetResponses[keyof FctContractStorageStateWithExpiryByBlockDailyServiceGetResponses]; - -export type FctContractStorageStateWithExpiryByBlockHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total active storage slots at end of hour (with expiry applied) (filter: eq) - */ - active_slots_eq?: number; - /** - * Total active storage slots at end of hour (with expiry applied) (filter: ne) - */ - active_slots_ne?: number; - /** - * Total active storage slots at end of hour (with expiry applied) (filter: lt) - */ - active_slots_lt?: number; - /** - * Total active storage slots at end of hour (with expiry applied) (filter: lte) - */ - active_slots_lte?: number; - /** - * Total active storage slots at end of hour (with expiry applied) (filter: gt) - */ - active_slots_gt?: number; - /** - * Total active storage slots at end of hour (with expiry applied) (filter: gte) - */ - active_slots_gte?: number; - /** - * Total active storage slots at end of hour (with expiry applied) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Total active storage slots at end of hour (with expiry applied) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Total active storage slots at end of hour (with expiry applied) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Total active storage slots at end of hour (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Total effective bytes at end of hour (with expiry applied) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Total effective bytes at end of hour (with expiry applied) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Total effective bytes at end of hour (with expiry applied) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Total effective bytes at end of hour (with expiry applied) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Total effective bytes at end of hour (with expiry applied) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Total effective bytes at end of hour (with expiry applied) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Total effective bytes at end of hour (with expiry applied) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Total effective bytes at end of hour (with expiry applied) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Total effective bytes at end of hour (with expiry applied) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Total effective bytes at end of hour (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * Count of contracts with active_slots > 0 at end of hour (filter: eq) - */ - active_contracts_eq?: number; - /** - * Count of contracts with active_slots > 0 at end of hour (filter: ne) - */ - active_contracts_ne?: number; - /** - * Count of contracts with active_slots > 0 at end of hour (filter: lt) - */ - active_contracts_lt?: number; - /** - * Count of contracts with active_slots > 0 at end of hour (filter: lte) - */ - active_contracts_lte?: number; - /** - * Count of contracts with active_slots > 0 at end of hour (filter: gt) - */ - active_contracts_gt?: number; - /** - * Count of contracts with active_slots > 0 at end of hour (filter: gte) - */ - active_contracts_gte?: number; - /** - * Count of contracts with active_slots > 0 at end of hour (filter: between_min) - */ - active_contracts_between_min?: number; - /** - * Count of contracts with active_slots > 0 at end of hour (filter: between_max_value) - */ - active_contracts_between_max_value?: number; - /** - * Count of contracts with active_slots > 0 at end of hour (filter: in_values) (comma-separated list) - */ - active_contracts_in_values?: string; - /** - * Count of contracts with active_slots > 0 at end of hour (filter: not_in_values) (comma-separated list) - */ - active_contracts_not_in_values?: string; - /** - * The maximum number of fct_contract_storage_state_with_expiry_by_block_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctContractStorageStateWithExpiryByBlockHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_contract_storage_state_with_expiry_by_block_hourly'; -}; - -export type FctContractStorageStateWithExpiryByBlockHourlyServiceListErrors = { + count_gt?: number; /** - * Default error response + * Number of times this opcode was executed in this frame (filter: gte) */ - default: Status; -}; - -export type FctContractStorageStateWithExpiryByBlockHourlyServiceListError = FctContractStorageStateWithExpiryByBlockHourlyServiceListErrors[keyof FctContractStorageStateWithExpiryByBlockHourlyServiceListErrors]; - -export type FctContractStorageStateWithExpiryByBlockHourlyServiceListResponses = { + count_gte?: number; /** - * OK + * Number of times this opcode was executed in this frame (filter: between_min) */ - 200: ListFctContractStorageStateWithExpiryByBlockHourlyResponse; -}; - -export type FctContractStorageStateWithExpiryByBlockHourlyServiceListResponse = FctContractStorageStateWithExpiryByBlockHourlyServiceListResponses[keyof FctContractStorageStateWithExpiryByBlockHourlyServiceListResponses]; - -export type FctContractStorageStateWithExpiryByBlockHourlyServiceGetData = { - body?: never; - path: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy: string; - }; - query?: never; - url: '/api/v1/fct_contract_storage_state_with_expiry_by_block_hourly/{expiry_policy}'; -}; - -export type FctContractStorageStateWithExpiryByBlockHourlyServiceGetErrors = { + count_between_min?: number; /** - * Default error response + * Number of times this opcode was executed in this frame (filter: between_max_value) */ - default: Status; -}; - -export type FctContractStorageStateWithExpiryByBlockHourlyServiceGetError = FctContractStorageStateWithExpiryByBlockHourlyServiceGetErrors[keyof FctContractStorageStateWithExpiryByBlockHourlyServiceGetErrors]; - -export type FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponses = { + count_between_max_value?: number; /** - * OK + * Number of times this opcode was executed in this frame (filter: in_values) (comma-separated list) */ - 200: GetFctContractStorageStateWithExpiryByBlockHourlyResponse; -}; - -export type FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse = FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponses[keyof FctContractStorageStateWithExpiryByBlockHourlyServiceGetResponses]; - -export type FctDataColumnAvailabilityByEpochServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Column index (0-127) (filter: eq) - */ - column_index_eq?: number; - /** - * Column index (0-127) (filter: ne) - */ - column_index_ne?: number; - /** - * Column index (0-127) (filter: lt) - */ - column_index_lt?: number; - /** - * Column index (0-127) (filter: lte) - */ - column_index_lte?: number; - /** - * Column index (0-127) (filter: gt) - */ - column_index_gt?: number; - /** - * Column index (0-127) (filter: gte) - */ - column_index_gte?: number; - /** - * Column index (0-127) (filter: between_min) - */ - column_index_between_min?: number; - /** - * Column index (0-127) (filter: between_max_value) - */ - column_index_between_max_value?: number; - /** - * Column index (0-127) (filter: in_values) (comma-separated list) - */ - column_index_in_values?: string; - /** - * Column index (0-127) (filter: not_in_values) (comma-separated list) - */ - column_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Epoch number (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * Earliest slot start time in this epoch (used for CBT position tracking) (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * Earliest slot start time in this epoch (used for CBT position tracking) (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * Earliest slot start time in this epoch (used for CBT position tracking) (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * Earliest slot start time in this epoch (used for CBT position tracking) (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * Earliest slot start time in this epoch (used for CBT position tracking) (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * Earliest slot start time in this epoch (used for CBT position tracking) (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * Earliest slot start time in this epoch (used for CBT position tracking) (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * Earliest slot start time in this epoch (used for CBT position tracking) (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * Earliest slot start time in this epoch (used for CBT position tracking) (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * Earliest slot start time in this epoch (used for CBT position tracking) (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Number of slots in this epoch aggregation (filter: eq) - */ - slot_count_eq?: number; - /** - * Number of slots in this epoch aggregation (filter: ne) - */ - slot_count_ne?: number; - /** - * Number of slots in this epoch aggregation (filter: lt) - */ - slot_count_lt?: number; - /** - * Number of slots in this epoch aggregation (filter: lte) - */ - slot_count_lte?: number; - /** - * Number of slots in this epoch aggregation (filter: gt) - */ - slot_count_gt?: number; - /** - * Number of slots in this epoch aggregation (filter: gte) - */ - slot_count_gte?: number; - /** - * Number of slots in this epoch aggregation (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Number of slots in this epoch aggregation (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Number of slots in this epoch aggregation (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Number of slots in this epoch aggregation (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * Total probe count across all slots (filter: eq) - */ - total_probe_count_eq?: number; - /** - * Total probe count across all slots (filter: ne) - */ - total_probe_count_ne?: number; - /** - * Total probe count across all slots (filter: lt) - */ - total_probe_count_lt?: number; - /** - * Total probe count across all slots (filter: lte) - */ - total_probe_count_lte?: number; - /** - * Total probe count across all slots (filter: gt) - */ - total_probe_count_gt?: number; - /** - * Total probe count across all slots (filter: gte) - */ - total_probe_count_gte?: number; - /** - * Total probe count across all slots (filter: between_min) - */ - total_probe_count_between_min?: number; - /** - * Total probe count across all slots (filter: between_max_value) - */ - total_probe_count_between_max_value?: number; - /** - * Total probe count across all slots (filter: in_values) (comma-separated list) - */ - total_probe_count_in_values?: string; - /** - * Total probe count across all slots (filter: not_in_values) (comma-separated list) - */ - total_probe_count_not_in_values?: string; - /** - * Total successful probes across all slots (filter: eq) - */ - total_success_count_eq?: number; - /** - * Total successful probes across all slots (filter: ne) - */ - total_success_count_ne?: number; - /** - * Total successful probes across all slots (filter: lt) - */ - total_success_count_lt?: number; - /** - * Total successful probes across all slots (filter: lte) - */ - total_success_count_lte?: number; - /** - * Total successful probes across all slots (filter: gt) - */ - total_success_count_gt?: number; - /** - * Total successful probes across all slots (filter: gte) - */ - total_success_count_gte?: number; - /** - * Total successful probes across all slots (filter: between_min) - */ - total_success_count_between_min?: number; - /** - * Total successful probes across all slots (filter: between_max_value) - */ - total_success_count_between_max_value?: number; - /** - * Total successful probes across all slots (filter: in_values) (comma-separated list) - */ - total_success_count_in_values?: string; - /** - * Total successful probes across all slots (filter: not_in_values) (comma-separated list) - */ - total_success_count_not_in_values?: string; - /** - * Total failed probes across all slots (result = failure) (filter: eq) - */ - total_failure_count_eq?: number; - /** - * Total failed probes across all slots (result = failure) (filter: ne) - */ - total_failure_count_ne?: number; - /** - * Total failed probes across all slots (result = failure) (filter: lt) - */ - total_failure_count_lt?: number; - /** - * Total failed probes across all slots (result = failure) (filter: lte) - */ - total_failure_count_lte?: number; - /** - * Total failed probes across all slots (result = failure) (filter: gt) - */ - total_failure_count_gt?: number; - /** - * Total failed probes across all slots (result = failure) (filter: gte) - */ - total_failure_count_gte?: number; - /** - * Total failed probes across all slots (result = failure) (filter: between_min) - */ - total_failure_count_between_min?: number; - /** - * Total failed probes across all slots (result = failure) (filter: between_max_value) - */ - total_failure_count_between_max_value?: number; - /** - * Total failed probes across all slots (result = failure) (filter: in_values) (comma-separated list) - */ - total_failure_count_in_values?: string; - /** - * Total failed probes across all slots (result = failure) (filter: not_in_values) (comma-separated list) - */ - total_failure_count_not_in_values?: string; - /** - * Total missing probes across all slots (result = missing) (filter: eq) - */ - total_missing_count_eq?: number; - /** - * Total missing probes across all slots (result = missing) (filter: ne) - */ - total_missing_count_ne?: number; - /** - * Total missing probes across all slots (result = missing) (filter: lt) - */ - total_missing_count_lt?: number; - /** - * Total missing probes across all slots (result = missing) (filter: lte) - */ - total_missing_count_lte?: number; - /** - * Total missing probes across all slots (result = missing) (filter: gt) - */ - total_missing_count_gt?: number; - /** - * Total missing probes across all slots (result = missing) (filter: gte) - */ - total_missing_count_gte?: number; - /** - * Total missing probes across all slots (result = missing) (filter: between_min) - */ - total_missing_count_between_min?: number; - /** - * Total missing probes across all slots (result = missing) (filter: between_max_value) - */ - total_missing_count_between_max_value?: number; - /** - * Total missing probes across all slots (result = missing) (filter: in_values) (comma-separated list) - */ - total_missing_count_in_values?: string; - /** - * Total missing probes across all slots (result = missing) (filter: not_in_values) (comma-separated list) - */ - total_missing_count_not_in_values?: string; - /** - * Filter avg_availability_pct using value - */ - avg_availability_pct_value?: number; - /** - * Filter min_availability_pct using value - */ - min_availability_pct_value?: number; - /** - * Filter max_availability_pct using value - */ - max_availability_pct_value?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: eq) - */ - min_response_time_ms_eq?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: ne) - */ - min_response_time_ms_ne?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: lt) - */ - min_response_time_ms_lt?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: lte) - */ - min_response_time_ms_lte?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: gt) - */ - min_response_time_ms_gt?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: gte) - */ - min_response_time_ms_gte?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_min) - */ - min_response_time_ms_between_min?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_max_value) - */ - min_response_time_ms_between_max_value?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - min_response_time_ms_in_values?: string; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - min_response_time_ms_not_in_values?: string; - /** - * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: eq) - */ - avg_p50_response_time_ms_eq?: number; - /** - * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: ne) - */ - avg_p50_response_time_ms_ne?: number; - /** - * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: lt) - */ - avg_p50_response_time_ms_lt?: number; - /** - * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: lte) - */ - avg_p50_response_time_ms_lte?: number; - /** - * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: gt) - */ - avg_p50_response_time_ms_gt?: number; - /** - * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: gte) - */ - avg_p50_response_time_ms_gte?: number; - /** - * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: between_min) - */ - avg_p50_response_time_ms_between_min?: number; - /** - * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: between_max_value) - */ - avg_p50_response_time_ms_between_max_value?: number; - /** - * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - avg_p50_response_time_ms_in_values?: string; - /** - * Average of p50 response times across slots for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - avg_p50_response_time_ms_not_in_values?: string; - /** - * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: eq) - */ - avg_p95_response_time_ms_eq?: number; - /** - * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: ne) - */ - avg_p95_response_time_ms_ne?: number; - /** - * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: lt) - */ - avg_p95_response_time_ms_lt?: number; - /** - * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: lte) - */ - avg_p95_response_time_ms_lte?: number; - /** - * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: gt) - */ - avg_p95_response_time_ms_gt?: number; - /** - * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: gte) - */ - avg_p95_response_time_ms_gte?: number; - /** - * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: between_min) - */ - avg_p95_response_time_ms_between_min?: number; - /** - * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: between_max_value) - */ - avg_p95_response_time_ms_between_max_value?: number; - /** - * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - avg_p95_response_time_ms_in_values?: string; - /** - * Average of p95 response times across slots for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - avg_p95_response_time_ms_not_in_values?: string; - /** - * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: eq) - */ - avg_p99_response_time_ms_eq?: number; - /** - * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: ne) - */ - avg_p99_response_time_ms_ne?: number; - /** - * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: lt) - */ - avg_p99_response_time_ms_lt?: number; - /** - * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: lte) - */ - avg_p99_response_time_ms_lte?: number; - /** - * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: gt) - */ - avg_p99_response_time_ms_gt?: number; - /** - * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: gte) - */ - avg_p99_response_time_ms_gte?: number; - /** - * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: between_min) - */ - avg_p99_response_time_ms_between_min?: number; - /** - * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: between_max_value) - */ - avg_p99_response_time_ms_between_max_value?: number; - /** - * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - avg_p99_response_time_ms_in_values?: string; - /** - * Average of p99 response times across slots for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - avg_p99_response_time_ms_not_in_values?: string; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: eq) - */ - max_response_time_ms_eq?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: ne) - */ - max_response_time_ms_ne?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: lt) - */ - max_response_time_ms_lt?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: lte) - */ - max_response_time_ms_lte?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: gt) - */ - max_response_time_ms_gt?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: gte) - */ - max_response_time_ms_gte?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_min) - */ - max_response_time_ms_between_min?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_max_value) - */ - max_response_time_ms_between_max_value?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - max_response_time_ms_in_values?: string; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - max_response_time_ms_not_in_values?: string; - /** - * Maximum blob count observed in this epoch (filter: eq) - */ - max_blob_count_eq?: number; - /** - * Maximum blob count observed in this epoch (filter: ne) - */ - max_blob_count_ne?: number; - /** - * Maximum blob count observed in this epoch (filter: lt) - */ - max_blob_count_lt?: number; - /** - * Maximum blob count observed in this epoch (filter: lte) - */ - max_blob_count_lte?: number; - /** - * Maximum blob count observed in this epoch (filter: gt) - */ - max_blob_count_gt?: number; - /** - * Maximum blob count observed in this epoch (filter: gte) - */ - max_blob_count_gte?: number; - /** - * Maximum blob count observed in this epoch (filter: between_min) - */ - max_blob_count_between_min?: number; - /** - * Maximum blob count observed in this epoch (filter: between_max_value) - */ - max_blob_count_between_max_value?: number; - /** - * Maximum blob count observed in this epoch (filter: in_values) (comma-separated list) - */ - max_blob_count_in_values?: string; - /** - * Maximum blob count observed in this epoch (filter: not_in_values) (comma-separated list) - */ - max_blob_count_not_in_values?: string; - /** - * The maximum number of fct_data_column_availability_by_epoch to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctDataColumnAvailabilityByEpoch` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_data_column_availability_by_epoch'; -}; - -export type FctDataColumnAvailabilityByEpochServiceListErrors = { + count_in_values?: string; /** - * Default error response + * Number of times this opcode was executed in this frame (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctDataColumnAvailabilityByEpochServiceListError = FctDataColumnAvailabilityByEpochServiceListErrors[keyof FctDataColumnAvailabilityByEpochServiceListErrors]; - -export type FctDataColumnAvailabilityByEpochServiceListResponses = { + count_not_in_values?: string; /** - * OK + * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: eq) */ - 200: ListFctDataColumnAvailabilityByEpochResponse; -}; - -export type FctDataColumnAvailabilityByEpochServiceListResponse = FctDataColumnAvailabilityByEpochServiceListResponses[keyof FctDataColumnAvailabilityByEpochServiceListResponses]; - -export type FctDataColumnAvailabilityByEpochServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the epoch started - */ - epoch_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_data_column_availability_by_epoch/{epoch_start_date_time}'; -}; - -export type FctDataColumnAvailabilityByEpochServiceGetErrors = { + gas_eq?: number; /** - * Default error response + * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: ne) */ - default: Status; -}; - -export type FctDataColumnAvailabilityByEpochServiceGetError = FctDataColumnAvailabilityByEpochServiceGetErrors[keyof FctDataColumnAvailabilityByEpochServiceGetErrors]; - -export type FctDataColumnAvailabilityByEpochServiceGetResponses = { + gas_ne?: number; /** - * OK + * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: lt) */ - 200: GetFctDataColumnAvailabilityByEpochResponse; -}; - -export type FctDataColumnAvailabilityByEpochServiceGetResponse = FctDataColumnAvailabilityByEpochServiceGetResponses[keyof FctDataColumnAvailabilityByEpochServiceGetResponses]; - -export type FctDataColumnAvailabilityBySlotServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Column index being probed (0-127) (filter: eq) - */ - column_index_eq?: number; - /** - * Column index being probed (0-127) (filter: ne) - */ - column_index_ne?: number; - /** - * Column index being probed (0-127) (filter: lt) - */ - column_index_lt?: number; - /** - * Column index being probed (0-127) (filter: lte) - */ - column_index_lte?: number; - /** - * Column index being probed (0-127) (filter: gt) - */ - column_index_gt?: number; - /** - * Column index being probed (0-127) (filter: gte) - */ - column_index_gte?: number; - /** - * Column index being probed (0-127) (filter: between_min) - */ - column_index_between_min?: number; - /** - * Column index being probed (0-127) (filter: between_max_value) - */ - column_index_between_max_value?: number; - /** - * Column index being probed (0-127) (filter: in_values) (comma-separated list) - */ - column_index_in_values?: string; - /** - * Column index being probed (0-127) (filter: not_in_values) (comma-separated list) - */ - column_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number being probed (filter: eq) - */ - slot_eq?: number; - /** - * Slot number being probed (filter: ne) - */ - slot_ne?: number; - /** - * Slot number being probed (filter: lt) - */ - slot_lt?: number; - /** - * Slot number being probed (filter: lte) - */ - slot_lte?: number; - /** - * Slot number being probed (filter: gt) - */ - slot_gt?: number; - /** - * Slot number being probed (filter: gte) - */ - slot_gte?: number; - /** - * Slot number being probed (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number being probed (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number being probed (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number being probed (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The wallclock slot when the request was sent (filter: eq) - */ - wallclock_request_slot_eq?: number; - /** - * The wallclock slot when the request was sent (filter: ne) - */ - wallclock_request_slot_ne?: number; - /** - * The wallclock slot when the request was sent (filter: lt) - */ - wallclock_request_slot_lt?: number; - /** - * The wallclock slot when the request was sent (filter: lte) - */ - wallclock_request_slot_lte?: number; - /** - * The wallclock slot when the request was sent (filter: gt) - */ - wallclock_request_slot_gt?: number; - /** - * The wallclock slot when the request was sent (filter: gte) - */ - wallclock_request_slot_gte?: number; - /** - * The wallclock slot when the request was sent (filter: between_min) - */ - wallclock_request_slot_between_min?: number; - /** - * The wallclock slot when the request was sent (filter: between_max_value) - */ - wallclock_request_slot_between_max_value?: number; - /** - * The wallclock slot when the request was sent (filter: in_values) (comma-separated list) - */ - wallclock_request_slot_in_values?: string; - /** - * The wallclock slot when the request was sent (filter: not_in_values) (comma-separated list) - */ - wallclock_request_slot_not_in_values?: string; - /** - * The start time for the slot when the request was sent (filter: eq) - */ - wallclock_request_slot_start_date_time_eq?: number; - /** - * The start time for the slot when the request was sent (filter: ne) - */ - wallclock_request_slot_start_date_time_ne?: number; - /** - * The start time for the slot when the request was sent (filter: lt) - */ - wallclock_request_slot_start_date_time_lt?: number; - /** - * The start time for the slot when the request was sent (filter: lte) - */ - wallclock_request_slot_start_date_time_lte?: number; - /** - * The start time for the slot when the request was sent (filter: gt) - */ - wallclock_request_slot_start_date_time_gt?: number; - /** - * The start time for the slot when the request was sent (filter: gte) - */ - wallclock_request_slot_start_date_time_gte?: number; - /** - * The start time for the slot when the request was sent (filter: between_min) - */ - wallclock_request_slot_start_date_time_between_min?: number; - /** - * The start time for the slot when the request was sent (filter: between_max_value) - */ - wallclock_request_slot_start_date_time_between_max_value?: number; - /** - * The start time for the slot when the request was sent (filter: in_values) (comma-separated list) - */ - wallclock_request_slot_start_date_time_in_values?: string; - /** - * The start time for the slot when the request was sent (filter: not_in_values) (comma-separated list) - */ - wallclock_request_slot_start_date_time_not_in_values?: string; - /** - * The wallclock epoch when the request was sent (filter: eq) - */ - wallclock_request_epoch_eq?: number; - /** - * The wallclock epoch when the request was sent (filter: ne) - */ - wallclock_request_epoch_ne?: number; - /** - * The wallclock epoch when the request was sent (filter: lt) - */ - wallclock_request_epoch_lt?: number; - /** - * The wallclock epoch when the request was sent (filter: lte) - */ - wallclock_request_epoch_lte?: number; - /** - * The wallclock epoch when the request was sent (filter: gt) - */ - wallclock_request_epoch_gt?: number; - /** - * The wallclock epoch when the request was sent (filter: gte) - */ - wallclock_request_epoch_gte?: number; - /** - * The wallclock epoch when the request was sent (filter: between_min) - */ - wallclock_request_epoch_between_min?: number; - /** - * The wallclock epoch when the request was sent (filter: between_max_value) - */ - wallclock_request_epoch_between_max_value?: number; - /** - * The wallclock epoch when the request was sent (filter: in_values) (comma-separated list) - */ - wallclock_request_epoch_in_values?: string; - /** - * The wallclock epoch when the request was sent (filter: not_in_values) (comma-separated list) - */ - wallclock_request_epoch_not_in_values?: string; - /** - * The start time for the wallclock epoch when the request was sent (filter: eq) - */ - wallclock_request_epoch_start_date_time_eq?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: ne) - */ - wallclock_request_epoch_start_date_time_ne?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: lt) - */ - wallclock_request_epoch_start_date_time_lt?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: lte) - */ - wallclock_request_epoch_start_date_time_lte?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: gt) - */ - wallclock_request_epoch_start_date_time_gt?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: gte) - */ - wallclock_request_epoch_start_date_time_gte?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: between_min) - */ - wallclock_request_epoch_start_date_time_between_min?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: between_max_value) - */ - wallclock_request_epoch_start_date_time_between_max_value?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: in_values) (comma-separated list) - */ - wallclock_request_epoch_start_date_time_in_values?: string; - /** - * The start time for the wallclock epoch when the request was sent (filter: not_in_values) (comma-separated list) - */ - wallclock_request_epoch_start_date_time_not_in_values?: string; - /** - * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: eq) - */ - beacon_block_root_eq?: string; - /** - * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: ne) - */ - beacon_block_root_ne?: string; - /** - * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: contains) - */ - beacon_block_root_contains?: string; - /** - * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: starts_with) - */ - beacon_block_root_starts_with?: string; - /** - * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: ends_with) - */ - beacon_block_root_ends_with?: string; - /** - * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: like) - */ - beacon_block_root_like?: string; - /** - * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: not_like) - */ - beacon_block_root_not_like?: string; - /** - * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: in_values) (comma-separated list) - */ - beacon_block_root_in_values?: string; - /** - * Beacon block root for this slot (from earliest observation, handles reorgs, NULL if unavailable) (filter: not_in_values) (comma-separated list) - */ - beacon_block_root_not_in_values?: string; - /** - * Number of unique block roots observed (>1 indicates reorg/fork) (filter: eq) - */ - beacon_block_root_variants_eq?: number; - /** - * Number of unique block roots observed (>1 indicates reorg/fork) (filter: ne) - */ - beacon_block_root_variants_ne?: number; - /** - * Number of unique block roots observed (>1 indicates reorg/fork) (filter: lt) - */ - beacon_block_root_variants_lt?: number; - /** - * Number of unique block roots observed (>1 indicates reorg/fork) (filter: lte) - */ - beacon_block_root_variants_lte?: number; - /** - * Number of unique block roots observed (>1 indicates reorg/fork) (filter: gt) - */ - beacon_block_root_variants_gt?: number; - /** - * Number of unique block roots observed (>1 indicates reorg/fork) (filter: gte) - */ - beacon_block_root_variants_gte?: number; - /** - * Number of unique block roots observed (>1 indicates reorg/fork) (filter: between_min) - */ - beacon_block_root_variants_between_min?: number; - /** - * Number of unique block roots observed (>1 indicates reorg/fork) (filter: between_max_value) - */ - beacon_block_root_variants_between_max_value?: number; - /** - * Number of unique block roots observed (>1 indicates reorg/fork) (filter: in_values) (comma-separated list) - */ - beacon_block_root_variants_in_values?: string; - /** - * Number of unique block roots observed (>1 indicates reorg/fork) (filter: not_in_values) (comma-separated list) - */ - beacon_block_root_variants_not_in_values?: string; - /** - * Number of blobs in the slot (max column_rows_count) (filter: eq) - */ - blob_count_eq?: number; - /** - * Number of blobs in the slot (max column_rows_count) (filter: ne) - */ - blob_count_ne?: number; - /** - * Number of blobs in the slot (max column_rows_count) (filter: lt) - */ - blob_count_lt?: number; - /** - * Number of blobs in the slot (max column_rows_count) (filter: lte) - */ - blob_count_lte?: number; - /** - * Number of blobs in the slot (max column_rows_count) (filter: gt) - */ - blob_count_gt?: number; - /** - * Number of blobs in the slot (max column_rows_count) (filter: gte) - */ - blob_count_gte?: number; - /** - * Number of blobs in the slot (max column_rows_count) (filter: between_min) - */ - blob_count_between_min?: number; - /** - * Number of blobs in the slot (max column_rows_count) (filter: between_max_value) - */ - blob_count_between_max_value?: number; - /** - * Number of blobs in the slot (max column_rows_count) (filter: in_values) (comma-separated list) - */ - blob_count_in_values?: string; - /** - * Number of blobs in the slot (max column_rows_count) (filter: not_in_values) (comma-separated list) - */ - blob_count_not_in_values?: string; - /** - * Count of successful probes (filter: eq) - */ - success_count_eq?: number; - /** - * Count of successful probes (filter: ne) - */ - success_count_ne?: number; - /** - * Count of successful probes (filter: lt) - */ - success_count_lt?: number; - /** - * Count of successful probes (filter: lte) - */ - success_count_lte?: number; - /** - * Count of successful probes (filter: gt) - */ - success_count_gt?: number; - /** - * Count of successful probes (filter: gte) - */ - success_count_gte?: number; - /** - * Count of successful probes (filter: between_min) - */ - success_count_between_min?: number; - /** - * Count of successful probes (filter: between_max_value) - */ - success_count_between_max_value?: number; - /** - * Count of successful probes (filter: in_values) (comma-separated list) - */ - success_count_in_values?: string; - /** - * Count of successful probes (filter: not_in_values) (comma-separated list) - */ - success_count_not_in_values?: string; - /** - * Count of failed probes (result = failure) (filter: eq) - */ - failure_count_eq?: number; - /** - * Count of failed probes (result = failure) (filter: ne) - */ - failure_count_ne?: number; - /** - * Count of failed probes (result = failure) (filter: lt) - */ - failure_count_lt?: number; - /** - * Count of failed probes (result = failure) (filter: lte) - */ - failure_count_lte?: number; - /** - * Count of failed probes (result = failure) (filter: gt) - */ - failure_count_gt?: number; - /** - * Count of failed probes (result = failure) (filter: gte) - */ - failure_count_gte?: number; - /** - * Count of failed probes (result = failure) (filter: between_min) - */ - failure_count_between_min?: number; - /** - * Count of failed probes (result = failure) (filter: between_max_value) - */ - failure_count_between_max_value?: number; - /** - * Count of failed probes (result = failure) (filter: in_values) (comma-separated list) - */ - failure_count_in_values?: string; - /** - * Count of failed probes (result = failure) (filter: not_in_values) (comma-separated list) - */ - failure_count_not_in_values?: string; - /** - * Count of missing probes (result = missing) (filter: eq) - */ - missing_count_eq?: number; - /** - * Count of missing probes (result = missing) (filter: ne) - */ - missing_count_ne?: number; - /** - * Count of missing probes (result = missing) (filter: lt) - */ - missing_count_lt?: number; - /** - * Count of missing probes (result = missing) (filter: lte) - */ - missing_count_lte?: number; - /** - * Count of missing probes (result = missing) (filter: gt) - */ - missing_count_gt?: number; - /** - * Count of missing probes (result = missing) (filter: gte) - */ - missing_count_gte?: number; - /** - * Count of missing probes (result = missing) (filter: between_min) - */ - missing_count_between_min?: number; - /** - * Count of missing probes (result = missing) (filter: between_max_value) - */ - missing_count_between_max_value?: number; - /** - * Count of missing probes (result = missing) (filter: in_values) (comma-separated list) - */ - missing_count_in_values?: string; - /** - * Count of missing probes (result = missing) (filter: not_in_values) (comma-separated list) - */ - missing_count_not_in_values?: string; - /** - * Total count of probes (filter: eq) - */ - probe_count_eq?: number; - /** - * Total count of probes (filter: ne) - */ - probe_count_ne?: number; - /** - * Total count of probes (filter: lt) - */ - probe_count_lt?: number; - /** - * Total count of probes (filter: lte) - */ - probe_count_lte?: number; - /** - * Total count of probes (filter: gt) - */ - probe_count_gt?: number; - /** - * Total count of probes (filter: gte) - */ - probe_count_gte?: number; - /** - * Total count of probes (filter: between_min) - */ - probe_count_between_min?: number; - /** - * Total count of probes (filter: between_max_value) - */ - probe_count_between_max_value?: number; - /** - * Total count of probes (filter: in_values) (comma-separated list) - */ - probe_count_in_values?: string; - /** - * Total count of probes (filter: not_in_values) (comma-separated list) - */ - probe_count_not_in_values?: string; - /** - * Filter availability_pct using value - */ - availability_pct_value?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: eq) - */ - min_response_time_ms_eq?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: ne) - */ - min_response_time_ms_ne?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: lt) - */ - min_response_time_ms_lt?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: lte) - */ - min_response_time_ms_lte?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: gt) - */ - min_response_time_ms_gt?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: gte) - */ - min_response_time_ms_gte?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: between_min) - */ - min_response_time_ms_between_min?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: between_max_value) - */ - min_response_time_ms_between_max_value?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) - */ - min_response_time_ms_in_values?: string; - /** - * Minimum response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) - */ - min_response_time_ms_not_in_values?: string; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: eq) - */ - p50_response_time_ms_eq?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: ne) - */ - p50_response_time_ms_ne?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: lt) - */ - p50_response_time_ms_lt?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: lte) - */ - p50_response_time_ms_lte?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: gt) - */ - p50_response_time_ms_gt?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: gte) - */ - p50_response_time_ms_gte?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: between_min) - */ - p50_response_time_ms_between_min?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: between_max_value) - */ - p50_response_time_ms_between_max_value?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) - */ - p50_response_time_ms_in_values?: string; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) - */ - p50_response_time_ms_not_in_values?: string; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: eq) - */ - p95_response_time_ms_eq?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: ne) - */ - p95_response_time_ms_ne?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: lt) - */ - p95_response_time_ms_lt?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: lte) - */ - p95_response_time_ms_lte?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: gt) - */ - p95_response_time_ms_gt?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: gte) - */ - p95_response_time_ms_gte?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: between_min) - */ - p95_response_time_ms_between_min?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: between_max_value) - */ - p95_response_time_ms_between_max_value?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) - */ - p95_response_time_ms_in_values?: string; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) - */ - p95_response_time_ms_not_in_values?: string; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: eq) - */ - p99_response_time_ms_eq?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: ne) - */ - p99_response_time_ms_ne?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: lt) - */ - p99_response_time_ms_lt?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: lte) - */ - p99_response_time_ms_lte?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: gt) - */ - p99_response_time_ms_gt?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: gte) - */ - p99_response_time_ms_gte?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: between_min) - */ - p99_response_time_ms_between_min?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: between_max_value) - */ - p99_response_time_ms_between_max_value?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) - */ - p99_response_time_ms_in_values?: string; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) - */ - p99_response_time_ms_not_in_values?: string; - /** - * Maximum response time in milliseconds for successful probes only (filter: eq) - */ - max_response_time_ms_eq?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: ne) - */ - max_response_time_ms_ne?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: lt) - */ - max_response_time_ms_lt?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: lte) - */ - max_response_time_ms_lte?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: gt) - */ - max_response_time_ms_gt?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: gte) - */ - max_response_time_ms_gte?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: between_min) - */ - max_response_time_ms_between_min?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: between_max_value) - */ - max_response_time_ms_between_max_value?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) - */ - max_response_time_ms_in_values?: string; - /** - * Maximum response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) - */ - max_response_time_ms_not_in_values?: string; - /** - * Count of unique peers probed (filter: eq) - */ - unique_peer_count_eq?: number; - /** - * Count of unique peers probed (filter: ne) - */ - unique_peer_count_ne?: number; - /** - * Count of unique peers probed (filter: lt) - */ - unique_peer_count_lt?: number; - /** - * Count of unique peers probed (filter: lte) - */ - unique_peer_count_lte?: number; - /** - * Count of unique peers probed (filter: gt) - */ - unique_peer_count_gt?: number; - /** - * Count of unique peers probed (filter: gte) - */ - unique_peer_count_gte?: number; - /** - * Count of unique peers probed (filter: between_min) - */ - unique_peer_count_between_min?: number; - /** - * Count of unique peers probed (filter: between_max_value) - */ - unique_peer_count_between_max_value?: number; - /** - * Count of unique peers probed (filter: in_values) (comma-separated list) - */ - unique_peer_count_in_values?: string; - /** - * Count of unique peers probed (filter: not_in_values) (comma-separated list) - */ - unique_peer_count_not_in_values?: string; - /** - * Count of unique client names (filter: eq) - */ - unique_client_count_eq?: number; - /** - * Count of unique client names (filter: ne) - */ - unique_client_count_ne?: number; - /** - * Count of unique client names (filter: lt) - */ - unique_client_count_lt?: number; - /** - * Count of unique client names (filter: lte) - */ - unique_client_count_lte?: number; - /** - * Count of unique client names (filter: gt) - */ - unique_client_count_gt?: number; - /** - * Count of unique client names (filter: gte) - */ - unique_client_count_gte?: number; - /** - * Count of unique client names (filter: between_min) - */ - unique_client_count_between_min?: number; - /** - * Count of unique client names (filter: between_max_value) - */ - unique_client_count_between_max_value?: number; - /** - * Count of unique client names (filter: in_values) (comma-separated list) - */ - unique_client_count_in_values?: string; - /** - * Count of unique client names (filter: not_in_values) (comma-separated list) - */ - unique_client_count_not_in_values?: string; - /** - * Count of unique client implementations (filter: eq) - */ - unique_implementation_count_eq?: number; - /** - * Count of unique client implementations (filter: ne) - */ - unique_implementation_count_ne?: number; - /** - * Count of unique client implementations (filter: lt) - */ - unique_implementation_count_lt?: number; - /** - * Count of unique client implementations (filter: lte) - */ - unique_implementation_count_lte?: number; - /** - * Count of unique client implementations (filter: gt) - */ - unique_implementation_count_gt?: number; - /** - * Count of unique client implementations (filter: gte) - */ - unique_implementation_count_gte?: number; - /** - * Count of unique client implementations (filter: between_min) - */ - unique_implementation_count_between_min?: number; - /** - * Count of unique client implementations (filter: between_max_value) - */ - unique_implementation_count_between_max_value?: number; - /** - * Count of unique client implementations (filter: in_values) (comma-separated list) - */ - unique_implementation_count_in_values?: string; - /** - * Count of unique client implementations (filter: not_in_values) (comma-separated list) - */ - unique_implementation_count_not_in_values?: string; - /** - * Count of observations from active RPC custody probes (filter: eq) - */ - custody_probe_count_eq?: number; - /** - * Count of observations from active RPC custody probes (filter: ne) - */ - custody_probe_count_ne?: number; - /** - * Count of observations from active RPC custody probes (filter: lt) - */ - custody_probe_count_lt?: number; - /** - * Count of observations from active RPC custody probes (filter: lte) - */ - custody_probe_count_lte?: number; - /** - * Count of observations from active RPC custody probes (filter: gt) - */ - custody_probe_count_gt?: number; - /** - * Count of observations from active RPC custody probes (filter: gte) - */ - custody_probe_count_gte?: number; - /** - * Count of observations from active RPC custody probes (filter: between_min) - */ - custody_probe_count_between_min?: number; - /** - * Count of observations from active RPC custody probes (filter: between_max_value) - */ - custody_probe_count_between_max_value?: number; - /** - * Count of observations from active RPC custody probes (filter: in_values) (comma-separated list) - */ - custody_probe_count_in_values?: string; - /** - * Count of observations from active RPC custody probes (filter: not_in_values) (comma-separated list) - */ - custody_probe_count_not_in_values?: string; - /** - * Count of observations from passive gossipsub propagation (filter: eq) - */ - gossipsub_count_eq?: number; - /** - * Count of observations from passive gossipsub propagation (filter: ne) - */ - gossipsub_count_ne?: number; - /** - * Count of observations from passive gossipsub propagation (filter: lt) - */ - gossipsub_count_lt?: number; - /** - * Count of observations from passive gossipsub propagation (filter: lte) - */ - gossipsub_count_lte?: number; - /** - * Count of observations from passive gossipsub propagation (filter: gt) - */ - gossipsub_count_gt?: number; - /** - * Count of observations from passive gossipsub propagation (filter: gte) - */ - gossipsub_count_gte?: number; - /** - * Count of observations from passive gossipsub propagation (filter: between_min) - */ - gossipsub_count_between_min?: number; - /** - * Count of observations from passive gossipsub propagation (filter: between_max_value) - */ - gossipsub_count_between_max_value?: number; - /** - * Count of observations from passive gossipsub propagation (filter: in_values) (comma-separated list) - */ - gossipsub_count_in_values?: string; - /** - * Count of observations from passive gossipsub propagation (filter: not_in_values) (comma-separated list) - */ - gossipsub_count_not_in_values?: string; - /** - * The maximum number of fct_data_column_availability_by_slot to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctDataColumnAvailabilityBySlot` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_data_column_availability_by_slot'; -}; - -export type FctDataColumnAvailabilityBySlotServiceListErrors = { + gas_lt?: number; /** - * Default error response + * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: lte) */ - default: Status; -}; - -export type FctDataColumnAvailabilityBySlotServiceListError = FctDataColumnAvailabilityBySlotServiceListErrors[keyof FctDataColumnAvailabilityBySlotServiceListErrors]; - -export type FctDataColumnAvailabilityBySlotServiceListResponses = { + gas_lte?: number; /** - * OK + * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: gt) */ - 200: ListFctDataColumnAvailabilityBySlotResponse; -}; - -export type FctDataColumnAvailabilityBySlotServiceListResponse = FctDataColumnAvailabilityBySlotServiceListResponses[keyof FctDataColumnAvailabilityBySlotServiceListResponses]; - -export type FctDataColumnAvailabilityBySlotServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_data_column_availability_by_slot/{slot_start_date_time}'; -}; - -export type FctDataColumnAvailabilityBySlotServiceGetErrors = { + gas_gt?: number; /** - * Default error response + * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: gte) */ - default: Status; -}; - -export type FctDataColumnAvailabilityBySlotServiceGetError = FctDataColumnAvailabilityBySlotServiceGetErrors[keyof FctDataColumnAvailabilityBySlotServiceGetErrors]; - -export type FctDataColumnAvailabilityBySlotServiceGetResponses = { + gas_gte?: number; /** - * OK + * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: between_min) */ - 200: GetFctDataColumnAvailabilityBySlotResponse; -}; - -export type FctDataColumnAvailabilityBySlotServiceGetResponse = FctDataColumnAvailabilityBySlotServiceGetResponses[keyof FctDataColumnAvailabilityBySlotServiceGetResponses]; - -export type FctDataColumnAvailabilityBySlotBlobServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Blob index within the slot (0-based, typically 0-5) (filter: eq) - */ - blob_index_eq?: number; - /** - * Blob index within the slot (0-based, typically 0-5) (filter: ne) - */ - blob_index_ne?: number; - /** - * Blob index within the slot (0-based, typically 0-5) (filter: lt) - */ - blob_index_lt?: number; - /** - * Blob index within the slot (0-based, typically 0-5) (filter: lte) - */ - blob_index_lte?: number; - /** - * Blob index within the slot (0-based, typically 0-5) (filter: gt) - */ - blob_index_gt?: number; - /** - * Blob index within the slot (0-based, typically 0-5) (filter: gte) - */ - blob_index_gte?: number; - /** - * Blob index within the slot (0-based, typically 0-5) (filter: between_min) - */ - blob_index_between_min?: number; - /** - * Blob index within the slot (0-based, typically 0-5) (filter: between_max_value) - */ - blob_index_between_max_value?: number; - /** - * Blob index within the slot (0-based, typically 0-5) (filter: in_values) (comma-separated list) - */ - blob_index_in_values?: string; - /** - * Blob index within the slot (0-based, typically 0-5) (filter: not_in_values) (comma-separated list) - */ - blob_index_not_in_values?: string; - /** - * Column index being probed (0-127) (filter: eq) - */ - column_index_eq?: number; - /** - * Column index being probed (0-127) (filter: ne) - */ - column_index_ne?: number; - /** - * Column index being probed (0-127) (filter: lt) - */ - column_index_lt?: number; - /** - * Column index being probed (0-127) (filter: lte) - */ - column_index_lte?: number; - /** - * Column index being probed (0-127) (filter: gt) - */ - column_index_gt?: number; - /** - * Column index being probed (0-127) (filter: gte) - */ - column_index_gte?: number; - /** - * Column index being probed (0-127) (filter: between_min) - */ - column_index_between_min?: number; - /** - * Column index being probed (0-127) (filter: between_max_value) - */ - column_index_between_max_value?: number; - /** - * Column index being probed (0-127) (filter: in_values) (comma-separated list) - */ - column_index_in_values?: string; - /** - * Column index being probed (0-127) (filter: not_in_values) (comma-separated list) - */ - column_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number being probed (filter: eq) - */ - slot_eq?: number; - /** - * Slot number being probed (filter: ne) - */ - slot_ne?: number; - /** - * Slot number being probed (filter: lt) - */ - slot_lt?: number; - /** - * Slot number being probed (filter: lte) - */ - slot_lte?: number; - /** - * Slot number being probed (filter: gt) - */ - slot_gt?: number; - /** - * Slot number being probed (filter: gte) - */ - slot_gte?: number; - /** - * Slot number being probed (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number being probed (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number being probed (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number being probed (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The wallclock slot when the request was sent (filter: eq) - */ - wallclock_request_slot_eq?: number; - /** - * The wallclock slot when the request was sent (filter: ne) - */ - wallclock_request_slot_ne?: number; - /** - * The wallclock slot when the request was sent (filter: lt) - */ - wallclock_request_slot_lt?: number; - /** - * The wallclock slot when the request was sent (filter: lte) - */ - wallclock_request_slot_lte?: number; - /** - * The wallclock slot when the request was sent (filter: gt) - */ - wallclock_request_slot_gt?: number; - /** - * The wallclock slot when the request was sent (filter: gte) - */ - wallclock_request_slot_gte?: number; - /** - * The wallclock slot when the request was sent (filter: between_min) - */ - wallclock_request_slot_between_min?: number; - /** - * The wallclock slot when the request was sent (filter: between_max_value) - */ - wallclock_request_slot_between_max_value?: number; - /** - * The wallclock slot when the request was sent (filter: in_values) (comma-separated list) - */ - wallclock_request_slot_in_values?: string; - /** - * The wallclock slot when the request was sent (filter: not_in_values) (comma-separated list) - */ - wallclock_request_slot_not_in_values?: string; - /** - * The start time for the slot when the request was sent (filter: eq) - */ - wallclock_request_slot_start_date_time_eq?: number; - /** - * The start time for the slot when the request was sent (filter: ne) - */ - wallclock_request_slot_start_date_time_ne?: number; - /** - * The start time for the slot when the request was sent (filter: lt) - */ - wallclock_request_slot_start_date_time_lt?: number; - /** - * The start time for the slot when the request was sent (filter: lte) - */ - wallclock_request_slot_start_date_time_lte?: number; - /** - * The start time for the slot when the request was sent (filter: gt) - */ - wallclock_request_slot_start_date_time_gt?: number; - /** - * The start time for the slot when the request was sent (filter: gte) - */ - wallclock_request_slot_start_date_time_gte?: number; - /** - * The start time for the slot when the request was sent (filter: between_min) - */ - wallclock_request_slot_start_date_time_between_min?: number; - /** - * The start time for the slot when the request was sent (filter: between_max_value) - */ - wallclock_request_slot_start_date_time_between_max_value?: number; - /** - * The start time for the slot when the request was sent (filter: in_values) (comma-separated list) - */ - wallclock_request_slot_start_date_time_in_values?: string; - /** - * The start time for the slot when the request was sent (filter: not_in_values) (comma-separated list) - */ - wallclock_request_slot_start_date_time_not_in_values?: string; - /** - * The wallclock epoch when the request was sent (filter: eq) - */ - wallclock_request_epoch_eq?: number; - /** - * The wallclock epoch when the request was sent (filter: ne) - */ - wallclock_request_epoch_ne?: number; - /** - * The wallclock epoch when the request was sent (filter: lt) - */ - wallclock_request_epoch_lt?: number; - /** - * The wallclock epoch when the request was sent (filter: lte) - */ - wallclock_request_epoch_lte?: number; - /** - * The wallclock epoch when the request was sent (filter: gt) - */ - wallclock_request_epoch_gt?: number; - /** - * The wallclock epoch when the request was sent (filter: gte) - */ - wallclock_request_epoch_gte?: number; - /** - * The wallclock epoch when the request was sent (filter: between_min) - */ - wallclock_request_epoch_between_min?: number; - /** - * The wallclock epoch when the request was sent (filter: between_max_value) - */ - wallclock_request_epoch_between_max_value?: number; - /** - * The wallclock epoch when the request was sent (filter: in_values) (comma-separated list) - */ - wallclock_request_epoch_in_values?: string; - /** - * The wallclock epoch when the request was sent (filter: not_in_values) (comma-separated list) - */ - wallclock_request_epoch_not_in_values?: string; - /** - * The start time for the wallclock epoch when the request was sent (filter: eq) - */ - wallclock_request_epoch_start_date_time_eq?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: ne) - */ - wallclock_request_epoch_start_date_time_ne?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: lt) - */ - wallclock_request_epoch_start_date_time_lt?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: lte) - */ - wallclock_request_epoch_start_date_time_lte?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: gt) - */ - wallclock_request_epoch_start_date_time_gt?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: gte) - */ - wallclock_request_epoch_start_date_time_gte?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: between_min) - */ - wallclock_request_epoch_start_date_time_between_min?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: between_max_value) - */ - wallclock_request_epoch_start_date_time_between_max_value?: number; - /** - * The start time for the wallclock epoch when the request was sent (filter: in_values) (comma-separated list) - */ - wallclock_request_epoch_start_date_time_in_values?: string; - /** - * The start time for the wallclock epoch when the request was sent (filter: not_in_values) (comma-separated list) - */ - wallclock_request_epoch_start_date_time_not_in_values?: string; - /** - * Total number of blobs in the slot (filter: eq) - */ - blob_count_eq?: number; - /** - * Total number of blobs in the slot (filter: ne) - */ - blob_count_ne?: number; - /** - * Total number of blobs in the slot (filter: lt) - */ - blob_count_lt?: number; - /** - * Total number of blobs in the slot (filter: lte) - */ - blob_count_lte?: number; - /** - * Total number of blobs in the slot (filter: gt) - */ - blob_count_gt?: number; - /** - * Total number of blobs in the slot (filter: gte) - */ - blob_count_gte?: number; - /** - * Total number of blobs in the slot (filter: between_min) - */ - blob_count_between_min?: number; - /** - * Total number of blobs in the slot (filter: between_max_value) - */ - blob_count_between_max_value?: number; - /** - * Total number of blobs in the slot (filter: in_values) (comma-separated list) - */ - blob_count_in_values?: string; - /** - * Total number of blobs in the slot (filter: not_in_values) (comma-separated list) - */ - blob_count_not_in_values?: string; - /** - * Filter availability_pct using value - */ - availability_pct_value?: number; - /** - * Count of successful probes (filter: eq) - */ - success_count_eq?: number; - /** - * Count of successful probes (filter: ne) - */ - success_count_ne?: number; - /** - * Count of successful probes (filter: lt) - */ - success_count_lt?: number; - /** - * Count of successful probes (filter: lte) - */ - success_count_lte?: number; - /** - * Count of successful probes (filter: gt) - */ - success_count_gt?: number; - /** - * Count of successful probes (filter: gte) - */ - success_count_gte?: number; - /** - * Count of successful probes (filter: between_min) - */ - success_count_between_min?: number; - /** - * Count of successful probes (filter: between_max_value) - */ - success_count_between_max_value?: number; - /** - * Count of successful probes (filter: in_values) (comma-separated list) - */ - success_count_in_values?: string; - /** - * Count of successful probes (filter: not_in_values) (comma-separated list) - */ - success_count_not_in_values?: string; - /** - * Count of failed probes (result = failure) (filter: eq) - */ - failure_count_eq?: number; - /** - * Count of failed probes (result = failure) (filter: ne) - */ - failure_count_ne?: number; - /** - * Count of failed probes (result = failure) (filter: lt) - */ - failure_count_lt?: number; - /** - * Count of failed probes (result = failure) (filter: lte) - */ - failure_count_lte?: number; - /** - * Count of failed probes (result = failure) (filter: gt) - */ - failure_count_gt?: number; - /** - * Count of failed probes (result = failure) (filter: gte) - */ - failure_count_gte?: number; - /** - * Count of failed probes (result = failure) (filter: between_min) - */ - failure_count_between_min?: number; - /** - * Count of failed probes (result = failure) (filter: between_max_value) - */ - failure_count_between_max_value?: number; - /** - * Count of failed probes (result = failure) (filter: in_values) (comma-separated list) - */ - failure_count_in_values?: string; - /** - * Count of failed probes (result = failure) (filter: not_in_values) (comma-separated list) - */ - failure_count_not_in_values?: string; - /** - * Count of missing probes (result = missing) (filter: eq) - */ - missing_count_eq?: number; - /** - * Count of missing probes (result = missing) (filter: ne) - */ - missing_count_ne?: number; - /** - * Count of missing probes (result = missing) (filter: lt) - */ - missing_count_lt?: number; - /** - * Count of missing probes (result = missing) (filter: lte) - */ - missing_count_lte?: number; - /** - * Count of missing probes (result = missing) (filter: gt) - */ - missing_count_gt?: number; - /** - * Count of missing probes (result = missing) (filter: gte) - */ - missing_count_gte?: number; - /** - * Count of missing probes (result = missing) (filter: between_min) - */ - missing_count_between_min?: number; - /** - * Count of missing probes (result = missing) (filter: between_max_value) - */ - missing_count_between_max_value?: number; - /** - * Count of missing probes (result = missing) (filter: in_values) (comma-separated list) - */ - missing_count_in_values?: string; - /** - * Count of missing probes (result = missing) (filter: not_in_values) (comma-separated list) - */ - missing_count_not_in_values?: string; - /** - * Total count of probes (filter: eq) - */ - probe_count_eq?: number; - /** - * Total count of probes (filter: ne) - */ - probe_count_ne?: number; - /** - * Total count of probes (filter: lt) - */ - probe_count_lt?: number; - /** - * Total count of probes (filter: lte) - */ - probe_count_lte?: number; - /** - * Total count of probes (filter: gt) - */ - probe_count_gt?: number; - /** - * Total count of probes (filter: gte) - */ - probe_count_gte?: number; - /** - * Total count of probes (filter: between_min) - */ - probe_count_between_min?: number; - /** - * Total count of probes (filter: between_max_value) - */ - probe_count_between_max_value?: number; - /** - * Total count of probes (filter: in_values) (comma-separated list) - */ - probe_count_in_values?: string; - /** - * Total count of probes (filter: not_in_values) (comma-separated list) - */ - probe_count_not_in_values?: string; - /** - * Minimum response time in milliseconds for successful probes only (filter: eq) - */ - min_response_time_ms_eq?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: ne) - */ - min_response_time_ms_ne?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: lt) - */ - min_response_time_ms_lt?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: lte) - */ - min_response_time_ms_lte?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: gt) - */ - min_response_time_ms_gt?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: gte) - */ - min_response_time_ms_gte?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: between_min) - */ - min_response_time_ms_between_min?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: between_max_value) - */ - min_response_time_ms_between_max_value?: number; - /** - * Minimum response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) - */ - min_response_time_ms_in_values?: string; - /** - * Minimum response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) - */ - min_response_time_ms_not_in_values?: string; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: eq) - */ - p50_response_time_ms_eq?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: ne) - */ - p50_response_time_ms_ne?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: lt) - */ - p50_response_time_ms_lt?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: lte) - */ - p50_response_time_ms_lte?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: gt) - */ - p50_response_time_ms_gt?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: gte) - */ - p50_response_time_ms_gte?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: between_min) - */ - p50_response_time_ms_between_min?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: between_max_value) - */ - p50_response_time_ms_between_max_value?: number; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) - */ - p50_response_time_ms_in_values?: string; - /** - * Median (p50) response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) - */ - p50_response_time_ms_not_in_values?: string; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: eq) - */ - p95_response_time_ms_eq?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: ne) - */ - p95_response_time_ms_ne?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: lt) - */ - p95_response_time_ms_lt?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: lte) - */ - p95_response_time_ms_lte?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: gt) - */ - p95_response_time_ms_gt?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: gte) - */ - p95_response_time_ms_gte?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: between_min) - */ - p95_response_time_ms_between_min?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: between_max_value) - */ - p95_response_time_ms_between_max_value?: number; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) - */ - p95_response_time_ms_in_values?: string; - /** - * 95th percentile response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) - */ - p95_response_time_ms_not_in_values?: string; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: eq) - */ - p99_response_time_ms_eq?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: ne) - */ - p99_response_time_ms_ne?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: lt) - */ - p99_response_time_ms_lt?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: lte) - */ - p99_response_time_ms_lte?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: gt) - */ - p99_response_time_ms_gt?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: gte) - */ - p99_response_time_ms_gte?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: between_min) - */ - p99_response_time_ms_between_min?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: between_max_value) - */ - p99_response_time_ms_between_max_value?: number; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) - */ - p99_response_time_ms_in_values?: string; - /** - * 99th percentile response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) - */ - p99_response_time_ms_not_in_values?: string; - /** - * Maximum response time in milliseconds for successful probes only (filter: eq) - */ - max_response_time_ms_eq?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: ne) - */ - max_response_time_ms_ne?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: lt) - */ - max_response_time_ms_lt?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: lte) - */ - max_response_time_ms_lte?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: gt) - */ - max_response_time_ms_gt?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: gte) - */ - max_response_time_ms_gte?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: between_min) - */ - max_response_time_ms_between_min?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: between_max_value) - */ - max_response_time_ms_between_max_value?: number; - /** - * Maximum response time in milliseconds for successful probes only (filter: in_values) (comma-separated list) - */ - max_response_time_ms_in_values?: string; - /** - * Maximum response time in milliseconds for successful probes only (filter: not_in_values) (comma-separated list) - */ - max_response_time_ms_not_in_values?: string; - /** - * Count of unique peers probed (filter: eq) - */ - unique_peer_count_eq?: number; - /** - * Count of unique peers probed (filter: ne) - */ - unique_peer_count_ne?: number; - /** - * Count of unique peers probed (filter: lt) - */ - unique_peer_count_lt?: number; - /** - * Count of unique peers probed (filter: lte) - */ - unique_peer_count_lte?: number; - /** - * Count of unique peers probed (filter: gt) - */ - unique_peer_count_gt?: number; - /** - * Count of unique peers probed (filter: gte) - */ - unique_peer_count_gte?: number; - /** - * Count of unique peers probed (filter: between_min) - */ - unique_peer_count_between_min?: number; - /** - * Count of unique peers probed (filter: between_max_value) - */ - unique_peer_count_between_max_value?: number; - /** - * Count of unique peers probed (filter: in_values) (comma-separated list) - */ - unique_peer_count_in_values?: string; - /** - * Count of unique peers probed (filter: not_in_values) (comma-separated list) - */ - unique_peer_count_not_in_values?: string; - /** - * Count of unique client names (filter: eq) - */ - unique_client_count_eq?: number; - /** - * Count of unique client names (filter: ne) - */ - unique_client_count_ne?: number; - /** - * Count of unique client names (filter: lt) - */ - unique_client_count_lt?: number; - /** - * Count of unique client names (filter: lte) - */ - unique_client_count_lte?: number; - /** - * Count of unique client names (filter: gt) - */ - unique_client_count_gt?: number; - /** - * Count of unique client names (filter: gte) - */ - unique_client_count_gte?: number; - /** - * Count of unique client names (filter: between_min) - */ - unique_client_count_between_min?: number; - /** - * Count of unique client names (filter: between_max_value) - */ - unique_client_count_between_max_value?: number; - /** - * Count of unique client names (filter: in_values) (comma-separated list) - */ - unique_client_count_in_values?: string; - /** - * Count of unique client names (filter: not_in_values) (comma-separated list) - */ - unique_client_count_not_in_values?: string; - /** - * Count of unique client implementations (filter: eq) - */ - unique_implementation_count_eq?: number; - /** - * Count of unique client implementations (filter: ne) - */ - unique_implementation_count_ne?: number; - /** - * Count of unique client implementations (filter: lt) - */ - unique_implementation_count_lt?: number; - /** - * Count of unique client implementations (filter: lte) - */ - unique_implementation_count_lte?: number; - /** - * Count of unique client implementations (filter: gt) - */ - unique_implementation_count_gt?: number; - /** - * Count of unique client implementations (filter: gte) - */ - unique_implementation_count_gte?: number; - /** - * Count of unique client implementations (filter: between_min) - */ - unique_implementation_count_between_min?: number; - /** - * Count of unique client implementations (filter: between_max_value) - */ - unique_implementation_count_between_max_value?: number; - /** - * Count of unique client implementations (filter: in_values) (comma-separated list) - */ - unique_implementation_count_in_values?: string; - /** - * Count of unique client implementations (filter: not_in_values) (comma-separated list) - */ - unique_implementation_count_not_in_values?: string; - /** - * The maximum number of fct_data_column_availability_by_slot_blob to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctDataColumnAvailabilityBySlotBlob` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_data_column_availability_by_slot_blob'; -}; - -export type FctDataColumnAvailabilityBySlotBlobServiceListErrors = { + gas_between_min?: number; /** - * Default error response + * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: between_max_value) */ - default: Status; -}; - -export type FctDataColumnAvailabilityBySlotBlobServiceListError = FctDataColumnAvailabilityBySlotBlobServiceListErrors[keyof FctDataColumnAvailabilityBySlotBlobServiceListErrors]; - -export type FctDataColumnAvailabilityBySlotBlobServiceListResponses = { + gas_between_max_value?: number; /** - * OK + * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: in_values) (comma-separated list) */ - 200: ListFctDataColumnAvailabilityBySlotBlobResponse; -}; - -export type FctDataColumnAvailabilityBySlotBlobServiceListResponse = FctDataColumnAvailabilityBySlotBlobServiceListResponses[keyof FctDataColumnAvailabilityBySlotBlobServiceListResponses]; - -export type FctDataColumnAvailabilityBySlotBlobServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_data_column_availability_by_slot_blob/{slot_start_date_time}'; -}; - -export type FctDataColumnAvailabilityBySlotBlobServiceGetErrors = { + gas_in_values?: string; /** - * Default error response + * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctDataColumnAvailabilityBySlotBlobServiceGetError = FctDataColumnAvailabilityBySlotBlobServiceGetErrors[keyof FctDataColumnAvailabilityBySlotBlobServiceGetErrors]; - -export type FctDataColumnAvailabilityBySlotBlobServiceGetResponses = { + gas_not_in_values?: string; /** - * OK + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: eq) */ - 200: GetFctDataColumnAvailabilityBySlotBlobResponse; -}; - -export type FctDataColumnAvailabilityBySlotBlobServiceGetResponse = FctDataColumnAvailabilityBySlotBlobServiceGetResponses[keyof FctDataColumnAvailabilityBySlotBlobServiceGetResponses]; - -export type FctDataColumnAvailabilityDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Date of the aggregation (filter: eq) - */ - date_eq?: string; - /** - * Date of the aggregation (filter: ne) - */ - date_ne?: string; - /** - * Date of the aggregation (filter: contains) - */ - date_contains?: string; - /** - * Date of the aggregation (filter: starts_with) - */ - date_starts_with?: string; - /** - * Date of the aggregation (filter: ends_with) - */ - date_ends_with?: string; - /** - * Date of the aggregation (filter: like) - */ - date_like?: string; - /** - * Date of the aggregation (filter: not_like) - */ - date_not_like?: string; - /** - * Date of the aggregation (filter: in_values) (comma-separated list) - */ - date_in_values?: string; - /** - * Date of the aggregation (filter: not_in_values) (comma-separated list) - */ - date_not_in_values?: string; - /** - * Column index (0-127) (filter: eq) - */ - column_index_eq?: number; - /** - * Column index (0-127) (filter: ne) - */ - column_index_ne?: number; - /** - * Column index (0-127) (filter: lt) - */ - column_index_lt?: number; - /** - * Column index (0-127) (filter: lte) - */ - column_index_lte?: number; - /** - * Column index (0-127) (filter: gt) - */ - column_index_gt?: number; - /** - * Column index (0-127) (filter: gte) - */ - column_index_gte?: number; - /** - * Column index (0-127) (filter: between_min) - */ - column_index_between_min?: number; - /** - * Column index (0-127) (filter: between_max_value) - */ - column_index_between_max_value?: number; - /** - * Column index (0-127) (filter: in_values) (comma-separated list) - */ - column_index_in_values?: string; - /** - * Column index (0-127) (filter: not_in_values) (comma-separated list) - */ - column_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of hours in this day aggregation (filter: eq) - */ - hour_count_eq?: number; - /** - * Number of hours in this day aggregation (filter: ne) - */ - hour_count_ne?: number; - /** - * Number of hours in this day aggregation (filter: lt) - */ - hour_count_lt?: number; - /** - * Number of hours in this day aggregation (filter: lte) - */ - hour_count_lte?: number; - /** - * Number of hours in this day aggregation (filter: gt) - */ - hour_count_gt?: number; - /** - * Number of hours in this day aggregation (filter: gte) - */ - hour_count_gte?: number; - /** - * Number of hours in this day aggregation (filter: between_min) - */ - hour_count_between_min?: number; - /** - * Number of hours in this day aggregation (filter: between_max_value) - */ - hour_count_between_max_value?: number; - /** - * Number of hours in this day aggregation (filter: in_values) (comma-separated list) - */ - hour_count_in_values?: string; - /** - * Number of hours in this day aggregation (filter: not_in_values) (comma-separated list) - */ - hour_count_not_in_values?: string; - /** - * Filter avg_availability_pct using value - */ - avg_availability_pct_value?: number; - /** - * Filter min_availability_pct using value - */ - min_availability_pct_value?: number; - /** - * Filter max_availability_pct using value - */ - max_availability_pct_value?: number; - /** - * Total probe count across all hours (filter: eq) - */ - total_probe_count_eq?: number; - /** - * Total probe count across all hours (filter: ne) - */ - total_probe_count_ne?: number; - /** - * Total probe count across all hours (filter: lt) - */ - total_probe_count_lt?: number; - /** - * Total probe count across all hours (filter: lte) - */ - total_probe_count_lte?: number; - /** - * Total probe count across all hours (filter: gt) - */ - total_probe_count_gt?: number; - /** - * Total probe count across all hours (filter: gte) - */ - total_probe_count_gte?: number; - /** - * Total probe count across all hours (filter: between_min) - */ - total_probe_count_between_min?: number; - /** - * Total probe count across all hours (filter: between_max_value) - */ - total_probe_count_between_max_value?: number; - /** - * Total probe count across all hours (filter: in_values) (comma-separated list) - */ - total_probe_count_in_values?: string; - /** - * Total probe count across all hours (filter: not_in_values) (comma-separated list) - */ - total_probe_count_not_in_values?: string; - /** - * Total successful probes across all hours (filter: eq) - */ - total_success_count_eq?: number; - /** - * Total successful probes across all hours (filter: ne) - */ - total_success_count_ne?: number; - /** - * Total successful probes across all hours (filter: lt) - */ - total_success_count_lt?: number; - /** - * Total successful probes across all hours (filter: lte) - */ - total_success_count_lte?: number; - /** - * Total successful probes across all hours (filter: gt) - */ - total_success_count_gt?: number; - /** - * Total successful probes across all hours (filter: gte) - */ - total_success_count_gte?: number; - /** - * Total successful probes across all hours (filter: between_min) - */ - total_success_count_between_min?: number; - /** - * Total successful probes across all hours (filter: between_max_value) - */ - total_success_count_between_max_value?: number; - /** - * Total successful probes across all hours (filter: in_values) (comma-separated list) - */ - total_success_count_in_values?: string; - /** - * Total successful probes across all hours (filter: not_in_values) (comma-separated list) - */ - total_success_count_not_in_values?: string; - /** - * Total failed probes across all hours (result = failure) (filter: eq) - */ - total_failure_count_eq?: number; - /** - * Total failed probes across all hours (result = failure) (filter: ne) - */ - total_failure_count_ne?: number; - /** - * Total failed probes across all hours (result = failure) (filter: lt) - */ - total_failure_count_lt?: number; - /** - * Total failed probes across all hours (result = failure) (filter: lte) - */ - total_failure_count_lte?: number; - /** - * Total failed probes across all hours (result = failure) (filter: gt) - */ - total_failure_count_gt?: number; - /** - * Total failed probes across all hours (result = failure) (filter: gte) - */ - total_failure_count_gte?: number; - /** - * Total failed probes across all hours (result = failure) (filter: between_min) - */ - total_failure_count_between_min?: number; - /** - * Total failed probes across all hours (result = failure) (filter: between_max_value) - */ - total_failure_count_between_max_value?: number; - /** - * Total failed probes across all hours (result = failure) (filter: in_values) (comma-separated list) - */ - total_failure_count_in_values?: string; - /** - * Total failed probes across all hours (result = failure) (filter: not_in_values) (comma-separated list) - */ - total_failure_count_not_in_values?: string; - /** - * Total missing probes across all hours (result = missing) (filter: eq) - */ - total_missing_count_eq?: number; - /** - * Total missing probes across all hours (result = missing) (filter: ne) - */ - total_missing_count_ne?: number; - /** - * Total missing probes across all hours (result = missing) (filter: lt) - */ - total_missing_count_lt?: number; - /** - * Total missing probes across all hours (result = missing) (filter: lte) - */ - total_missing_count_lte?: number; - /** - * Total missing probes across all hours (result = missing) (filter: gt) - */ - total_missing_count_gt?: number; - /** - * Total missing probes across all hours (result = missing) (filter: gte) - */ - total_missing_count_gte?: number; - /** - * Total missing probes across all hours (result = missing) (filter: between_min) - */ - total_missing_count_between_min?: number; - /** - * Total missing probes across all hours (result = missing) (filter: between_max_value) - */ - total_missing_count_between_max_value?: number; - /** - * Total missing probes across all hours (result = missing) (filter: in_values) (comma-separated list) - */ - total_missing_count_in_values?: string; - /** - * Total missing probes across all hours (result = missing) (filter: not_in_values) (comma-separated list) - */ - total_missing_count_not_in_values?: string; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: eq) - */ - min_response_time_ms_eq?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: ne) - */ - min_response_time_ms_ne?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: lt) - */ - min_response_time_ms_lt?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: lte) - */ - min_response_time_ms_lte?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: gt) - */ - min_response_time_ms_gt?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: gte) - */ - min_response_time_ms_gte?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_min) - */ - min_response_time_ms_between_min?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_max_value) - */ - min_response_time_ms_between_max_value?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - min_response_time_ms_in_values?: string; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - min_response_time_ms_not_in_values?: string; - /** - * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: eq) - */ - avg_p50_response_time_ms_eq?: number; - /** - * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: ne) - */ - avg_p50_response_time_ms_ne?: number; - /** - * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: lt) - */ - avg_p50_response_time_ms_lt?: number; - /** - * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: lte) - */ - avg_p50_response_time_ms_lte?: number; - /** - * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: gt) - */ - avg_p50_response_time_ms_gt?: number; - /** - * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: gte) - */ - avg_p50_response_time_ms_gte?: number; - /** - * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: between_min) - */ - avg_p50_response_time_ms_between_min?: number; - /** - * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: between_max_value) - */ - avg_p50_response_time_ms_between_max_value?: number; - /** - * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - avg_p50_response_time_ms_in_values?: string; - /** - * Average of p50 response times across hours for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - avg_p50_response_time_ms_not_in_values?: string; - /** - * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: eq) - */ - avg_p95_response_time_ms_eq?: number; - /** - * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: ne) - */ - avg_p95_response_time_ms_ne?: number; - /** - * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: lt) - */ - avg_p95_response_time_ms_lt?: number; - /** - * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: lte) - */ - avg_p95_response_time_ms_lte?: number; - /** - * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: gt) - */ - avg_p95_response_time_ms_gt?: number; - /** - * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: gte) - */ - avg_p95_response_time_ms_gte?: number; - /** - * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: between_min) - */ - avg_p95_response_time_ms_between_min?: number; - /** - * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: between_max_value) - */ - avg_p95_response_time_ms_between_max_value?: number; - /** - * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - avg_p95_response_time_ms_in_values?: string; - /** - * Average of p95 response times across hours for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - avg_p95_response_time_ms_not_in_values?: string; - /** - * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: eq) - */ - avg_p99_response_time_ms_eq?: number; - /** - * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: ne) - */ - avg_p99_response_time_ms_ne?: number; - /** - * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: lt) - */ - avg_p99_response_time_ms_lt?: number; - /** - * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: lte) - */ - avg_p99_response_time_ms_lte?: number; - /** - * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: gt) - */ - avg_p99_response_time_ms_gt?: number; - /** - * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: gte) - */ - avg_p99_response_time_ms_gte?: number; - /** - * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: between_min) - */ - avg_p99_response_time_ms_between_min?: number; - /** - * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: between_max_value) - */ - avg_p99_response_time_ms_between_max_value?: number; - /** - * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - avg_p99_response_time_ms_in_values?: string; - /** - * Average of p99 response times across hours for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - avg_p99_response_time_ms_not_in_values?: string; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: eq) - */ - max_response_time_ms_eq?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: ne) - */ - max_response_time_ms_ne?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: lt) - */ - max_response_time_ms_lt?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: lte) - */ - max_response_time_ms_lte?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: gt) - */ - max_response_time_ms_gt?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: gte) - */ - max_response_time_ms_gte?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_min) - */ - max_response_time_ms_between_min?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_max_value) - */ - max_response_time_ms_between_max_value?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - max_response_time_ms_in_values?: string; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - max_response_time_ms_not_in_values?: string; - /** - * Maximum blob count observed in this day (filter: eq) - */ - max_blob_count_eq?: number; - /** - * Maximum blob count observed in this day (filter: ne) - */ - max_blob_count_ne?: number; - /** - * Maximum blob count observed in this day (filter: lt) - */ - max_blob_count_lt?: number; - /** - * Maximum blob count observed in this day (filter: lte) - */ - max_blob_count_lte?: number; - /** - * Maximum blob count observed in this day (filter: gt) - */ - max_blob_count_gt?: number; - /** - * Maximum blob count observed in this day (filter: gte) - */ - max_blob_count_gte?: number; - /** - * Maximum blob count observed in this day (filter: between_min) - */ - max_blob_count_between_min?: number; - /** - * Maximum blob count observed in this day (filter: between_max_value) - */ - max_blob_count_between_max_value?: number; - /** - * Maximum blob count observed in this day (filter: in_values) (comma-separated list) - */ - max_blob_count_in_values?: string; - /** - * Maximum blob count observed in this day (filter: not_in_values) (comma-separated list) - */ - max_blob_count_not_in_values?: string; - /** - * The maximum number of fct_data_column_availability_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctDataColumnAvailabilityDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_data_column_availability_daily'; -}; - -export type FctDataColumnAvailabilityDailyServiceListErrors = { + gas_cumulative_eq?: number; /** - * Default error response + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: ne) */ - default: Status; -}; - -export type FctDataColumnAvailabilityDailyServiceListError = FctDataColumnAvailabilityDailyServiceListErrors[keyof FctDataColumnAvailabilityDailyServiceListErrors]; - -export type FctDataColumnAvailabilityDailyServiceListResponses = { + gas_cumulative_ne?: number; /** - * OK + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: lt) */ - 200: ListFctDataColumnAvailabilityDailyResponse; -}; - -export type FctDataColumnAvailabilityDailyServiceListResponse = FctDataColumnAvailabilityDailyServiceListResponses[keyof FctDataColumnAvailabilityDailyServiceListResponses]; - -export type FctDataColumnAvailabilityDailyServiceGetData = { - body?: never; - path: { - /** - * Date of the aggregation - */ - date: string; - }; - query?: never; - url: '/api/v1/fct_data_column_availability_daily/{date}'; -}; - -export type FctDataColumnAvailabilityDailyServiceGetErrors = { + gas_cumulative_lt?: number; /** - * Default error response + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: lte) */ - default: Status; -}; - -export type FctDataColumnAvailabilityDailyServiceGetError = FctDataColumnAvailabilityDailyServiceGetErrors[keyof FctDataColumnAvailabilityDailyServiceGetErrors]; - -export type FctDataColumnAvailabilityDailyServiceGetResponses = { + gas_cumulative_lte?: number; /** - * OK + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: gt) */ - 200: GetFctDataColumnAvailabilityDailyResponse; -}; - -export type FctDataColumnAvailabilityDailyServiceGetResponse = FctDataColumnAvailabilityDailyServiceGetResponses[keyof FctDataColumnAvailabilityDailyServiceGetResponses]; - -export type FctDataColumnAvailabilityHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Column index (0-127) (filter: eq) - */ - column_index_eq?: number; - /** - * Column index (0-127) (filter: ne) - */ - column_index_ne?: number; - /** - * Column index (0-127) (filter: lt) - */ - column_index_lt?: number; - /** - * Column index (0-127) (filter: lte) - */ - column_index_lte?: number; - /** - * Column index (0-127) (filter: gt) - */ - column_index_gt?: number; - /** - * Column index (0-127) (filter: gte) - */ - column_index_gte?: number; - /** - * Column index (0-127) (filter: between_min) - */ - column_index_between_min?: number; - /** - * Column index (0-127) (filter: between_max_value) - */ - column_index_between_max_value?: number; - /** - * Column index (0-127) (filter: in_values) (comma-separated list) - */ - column_index_in_values?: string; - /** - * Column index (0-127) (filter: not_in_values) (comma-separated list) - */ - column_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of epochs in this hour aggregation (filter: eq) - */ - epoch_count_eq?: number; - /** - * Number of epochs in this hour aggregation (filter: ne) - */ - epoch_count_ne?: number; - /** - * Number of epochs in this hour aggregation (filter: lt) - */ - epoch_count_lt?: number; - /** - * Number of epochs in this hour aggregation (filter: lte) - */ - epoch_count_lte?: number; - /** - * Number of epochs in this hour aggregation (filter: gt) - */ - epoch_count_gt?: number; - /** - * Number of epochs in this hour aggregation (filter: gte) - */ - epoch_count_gte?: number; - /** - * Number of epochs in this hour aggregation (filter: between_min) - */ - epoch_count_between_min?: number; - /** - * Number of epochs in this hour aggregation (filter: between_max_value) - */ - epoch_count_between_max_value?: number; - /** - * Number of epochs in this hour aggregation (filter: in_values) (comma-separated list) - */ - epoch_count_in_values?: string; - /** - * Number of epochs in this hour aggregation (filter: not_in_values) (comma-separated list) - */ - epoch_count_not_in_values?: string; - /** - * Filter avg_availability_pct using value - */ - avg_availability_pct_value?: number; - /** - * Filter min_availability_pct using value - */ - min_availability_pct_value?: number; - /** - * Filter max_availability_pct using value - */ - max_availability_pct_value?: number; - /** - * Total probe count across all epochs (filter: eq) - */ - total_probe_count_eq?: number; - /** - * Total probe count across all epochs (filter: ne) - */ - total_probe_count_ne?: number; - /** - * Total probe count across all epochs (filter: lt) - */ - total_probe_count_lt?: number; - /** - * Total probe count across all epochs (filter: lte) - */ - total_probe_count_lte?: number; - /** - * Total probe count across all epochs (filter: gt) - */ - total_probe_count_gt?: number; - /** - * Total probe count across all epochs (filter: gte) - */ - total_probe_count_gte?: number; - /** - * Total probe count across all epochs (filter: between_min) - */ - total_probe_count_between_min?: number; - /** - * Total probe count across all epochs (filter: between_max_value) - */ - total_probe_count_between_max_value?: number; - /** - * Total probe count across all epochs (filter: in_values) (comma-separated list) - */ - total_probe_count_in_values?: string; - /** - * Total probe count across all epochs (filter: not_in_values) (comma-separated list) - */ - total_probe_count_not_in_values?: string; - /** - * Total successful probes across all epochs (filter: eq) - */ - total_success_count_eq?: number; - /** - * Total successful probes across all epochs (filter: ne) - */ - total_success_count_ne?: number; - /** - * Total successful probes across all epochs (filter: lt) - */ - total_success_count_lt?: number; - /** - * Total successful probes across all epochs (filter: lte) - */ - total_success_count_lte?: number; - /** - * Total successful probes across all epochs (filter: gt) - */ - total_success_count_gt?: number; - /** - * Total successful probes across all epochs (filter: gte) - */ - total_success_count_gte?: number; - /** - * Total successful probes across all epochs (filter: between_min) - */ - total_success_count_between_min?: number; - /** - * Total successful probes across all epochs (filter: between_max_value) - */ - total_success_count_between_max_value?: number; - /** - * Total successful probes across all epochs (filter: in_values) (comma-separated list) - */ - total_success_count_in_values?: string; - /** - * Total successful probes across all epochs (filter: not_in_values) (comma-separated list) - */ - total_success_count_not_in_values?: string; - /** - * Total failed probes across all epochs (result = failure) (filter: eq) - */ - total_failure_count_eq?: number; - /** - * Total failed probes across all epochs (result = failure) (filter: ne) - */ - total_failure_count_ne?: number; - /** - * Total failed probes across all epochs (result = failure) (filter: lt) - */ - total_failure_count_lt?: number; - /** - * Total failed probes across all epochs (result = failure) (filter: lte) - */ - total_failure_count_lte?: number; - /** - * Total failed probes across all epochs (result = failure) (filter: gt) - */ - total_failure_count_gt?: number; - /** - * Total failed probes across all epochs (result = failure) (filter: gte) - */ - total_failure_count_gte?: number; - /** - * Total failed probes across all epochs (result = failure) (filter: between_min) - */ - total_failure_count_between_min?: number; - /** - * Total failed probes across all epochs (result = failure) (filter: between_max_value) - */ - total_failure_count_between_max_value?: number; - /** - * Total failed probes across all epochs (result = failure) (filter: in_values) (comma-separated list) - */ - total_failure_count_in_values?: string; - /** - * Total failed probes across all epochs (result = failure) (filter: not_in_values) (comma-separated list) - */ - total_failure_count_not_in_values?: string; - /** - * Total missing probes across all epochs (result = missing) (filter: eq) - */ - total_missing_count_eq?: number; - /** - * Total missing probes across all epochs (result = missing) (filter: ne) - */ - total_missing_count_ne?: number; - /** - * Total missing probes across all epochs (result = missing) (filter: lt) - */ - total_missing_count_lt?: number; - /** - * Total missing probes across all epochs (result = missing) (filter: lte) - */ - total_missing_count_lte?: number; - /** - * Total missing probes across all epochs (result = missing) (filter: gt) - */ - total_missing_count_gt?: number; - /** - * Total missing probes across all epochs (result = missing) (filter: gte) - */ - total_missing_count_gte?: number; - /** - * Total missing probes across all epochs (result = missing) (filter: between_min) - */ - total_missing_count_between_min?: number; - /** - * Total missing probes across all epochs (result = missing) (filter: between_max_value) - */ - total_missing_count_between_max_value?: number; - /** - * Total missing probes across all epochs (result = missing) (filter: in_values) (comma-separated list) - */ - total_missing_count_in_values?: string; - /** - * Total missing probes across all epochs (result = missing) (filter: not_in_values) (comma-separated list) - */ - total_missing_count_not_in_values?: string; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: eq) - */ - min_response_time_ms_eq?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: ne) - */ - min_response_time_ms_ne?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: lt) - */ - min_response_time_ms_lt?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: lte) - */ - min_response_time_ms_lte?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: gt) - */ - min_response_time_ms_gt?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: gte) - */ - min_response_time_ms_gte?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_min) - */ - min_response_time_ms_between_min?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_max_value) - */ - min_response_time_ms_between_max_value?: number; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - min_response_time_ms_in_values?: string; - /** - * Minimum response time in milliseconds for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - min_response_time_ms_not_in_values?: string; - /** - * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: eq) - */ - avg_p50_response_time_ms_eq?: number; - /** - * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: ne) - */ - avg_p50_response_time_ms_ne?: number; - /** - * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: lt) - */ - avg_p50_response_time_ms_lt?: number; - /** - * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: lte) - */ - avg_p50_response_time_ms_lte?: number; - /** - * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: gt) - */ - avg_p50_response_time_ms_gt?: number; - /** - * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: gte) - */ - avg_p50_response_time_ms_gte?: number; - /** - * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: between_min) - */ - avg_p50_response_time_ms_between_min?: number; - /** - * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: between_max_value) - */ - avg_p50_response_time_ms_between_max_value?: number; - /** - * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - avg_p50_response_time_ms_in_values?: string; - /** - * Average of p50 response times across epochs for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - avg_p50_response_time_ms_not_in_values?: string; - /** - * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: eq) - */ - avg_p95_response_time_ms_eq?: number; - /** - * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: ne) - */ - avg_p95_response_time_ms_ne?: number; - /** - * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: lt) - */ - avg_p95_response_time_ms_lt?: number; - /** - * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: lte) - */ - avg_p95_response_time_ms_lte?: number; - /** - * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: gt) - */ - avg_p95_response_time_ms_gt?: number; - /** - * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: gte) - */ - avg_p95_response_time_ms_gte?: number; - /** - * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: between_min) - */ - avg_p95_response_time_ms_between_min?: number; - /** - * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: between_max_value) - */ - avg_p95_response_time_ms_between_max_value?: number; - /** - * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - avg_p95_response_time_ms_in_values?: string; - /** - * Average of p95 response times across epochs for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - avg_p95_response_time_ms_not_in_values?: string; - /** - * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: eq) - */ - avg_p99_response_time_ms_eq?: number; - /** - * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: ne) - */ - avg_p99_response_time_ms_ne?: number; - /** - * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: lt) - */ - avg_p99_response_time_ms_lt?: number; - /** - * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: lte) - */ - avg_p99_response_time_ms_lte?: number; - /** - * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: gt) - */ - avg_p99_response_time_ms_gt?: number; - /** - * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: gte) - */ - avg_p99_response_time_ms_gte?: number; - /** - * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: between_min) - */ - avg_p99_response_time_ms_between_min?: number; - /** - * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: between_max_value) - */ - avg_p99_response_time_ms_between_max_value?: number; - /** - * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - avg_p99_response_time_ms_in_values?: string; - /** - * Average of p99 response times across epochs for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - avg_p99_response_time_ms_not_in_values?: string; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: eq) - */ - max_response_time_ms_eq?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: ne) - */ - max_response_time_ms_ne?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: lt) - */ - max_response_time_ms_lt?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: lte) - */ - max_response_time_ms_lte?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: gt) - */ - max_response_time_ms_gt?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: gte) - */ - max_response_time_ms_gte?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_min) - */ - max_response_time_ms_between_min?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: between_max_value) - */ - max_response_time_ms_between_max_value?: number; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: in_values) (comma-separated list) - */ - max_response_time_ms_in_values?: string; - /** - * Maximum response time in milliseconds for successful probes only (rounded to whole number) (filter: not_in_values) (comma-separated list) - */ - max_response_time_ms_not_in_values?: string; - /** - * Maximum blob count observed in this hour (filter: eq) - */ - max_blob_count_eq?: number; - /** - * Maximum blob count observed in this hour (filter: ne) - */ - max_blob_count_ne?: number; - /** - * Maximum blob count observed in this hour (filter: lt) - */ - max_blob_count_lt?: number; - /** - * Maximum blob count observed in this hour (filter: lte) - */ - max_blob_count_lte?: number; - /** - * Maximum blob count observed in this hour (filter: gt) - */ - max_blob_count_gt?: number; - /** - * Maximum blob count observed in this hour (filter: gte) - */ - max_blob_count_gte?: number; - /** - * Maximum blob count observed in this hour (filter: between_min) - */ - max_blob_count_between_min?: number; - /** - * Maximum blob count observed in this hour (filter: between_max_value) - */ - max_blob_count_between_max_value?: number; - /** - * Maximum blob count observed in this hour (filter: in_values) (comma-separated list) - */ - max_blob_count_in_values?: string; - /** - * Maximum blob count observed in this hour (filter: not_in_values) (comma-separated list) - */ - max_blob_count_not_in_values?: string; - /** - * The maximum number of fct_data_column_availability_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctDataColumnAvailabilityHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_data_column_availability_hourly'; -}; - -export type FctDataColumnAvailabilityHourlyServiceListErrors = { + gas_cumulative_gt?: number; + /** + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: gte) + */ + gas_cumulative_gte?: number; /** - * Default error response + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: between_min) */ - default: Status; -}; - -export type FctDataColumnAvailabilityHourlyServiceListError = FctDataColumnAvailabilityHourlyServiceListErrors[keyof FctDataColumnAvailabilityHourlyServiceListErrors]; - -export type FctDataColumnAvailabilityHourlyServiceListResponses = { + gas_cumulative_between_min?: number; /** - * OK + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: between_max_value) */ - 200: ListFctDataColumnAvailabilityHourlyResponse; -}; - -export type FctDataColumnAvailabilityHourlyServiceListResponse = FctDataColumnAvailabilityHourlyServiceListResponses[keyof FctDataColumnAvailabilityHourlyServiceListResponses]; - -export type FctDataColumnAvailabilityHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_data_column_availability_hourly/{hour_start_date_time}'; -}; - -export type FctDataColumnAvailabilityHourlyServiceGetErrors = { + gas_cumulative_between_max_value?: number; /** - * Default error response + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctDataColumnAvailabilityHourlyServiceGetError = FctDataColumnAvailabilityHourlyServiceGetErrors[keyof FctDataColumnAvailabilityHourlyServiceGetErrors]; - -export type FctDataColumnAvailabilityHourlyServiceGetResponses = { + gas_cumulative_in_values?: string; /** - * OK + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: not_in_values) (comma-separated list) */ - 200: GetFctDataColumnAvailabilityHourlyResponse; -}; - -export type FctDataColumnAvailabilityHourlyServiceGetResponse = FctDataColumnAvailabilityHourlyServiceGetResponses[keyof FctDataColumnAvailabilityHourlyServiceGetResponses]; - -export type FctEngineGetBlobsByElClientServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) - */ - block_root_eq?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) - */ - block_root_ne?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) - */ - block_root_contains?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: like) - */ - block_root_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) - */ - block_root_not_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) - */ - meta_execution_implementation_eq?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) - */ - meta_execution_implementation_ne?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) - */ - meta_execution_implementation_contains?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) - */ - meta_execution_implementation_starts_with?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) - */ - meta_execution_implementation_ends_with?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: like) - */ - meta_execution_implementation_like?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) - */ - meta_execution_implementation_not_like?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) - */ - meta_execution_implementation_in_values?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) - */ - meta_execution_implementation_not_in_values?: string; - /** - * Execution client version string (filter: eq) - */ - meta_execution_version_eq?: string; - /** - * Execution client version string (filter: ne) - */ - meta_execution_version_ne?: string; - /** - * Execution client version string (filter: contains) - */ - meta_execution_version_contains?: string; - /** - * Execution client version string (filter: starts_with) - */ - meta_execution_version_starts_with?: string; - /** - * Execution client version string (filter: ends_with) - */ - meta_execution_version_ends_with?: string; - /** - * Execution client version string (filter: like) - */ - meta_execution_version_like?: string; - /** - * Execution client version string (filter: not_like) - */ - meta_execution_version_not_like?: string; - /** - * Execution client version string (filter: in_values) (comma-separated list) - */ - meta_execution_version_in_values?: string; - /** - * Execution client version string (filter: not_in_values) (comma-separated list) - */ - meta_execution_version_not_in_values?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: eq) - */ - status_eq?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: ne) - */ - status_ne?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: contains) - */ - status_contains?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: starts_with) - */ - status_starts_with?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: ends_with) - */ - status_ends_with?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: like) - */ - status_like?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: not_like) - */ - status_not_like?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number of the beacon block being reconstructed (filter: eq) - */ - slot_eq?: number; - /** - * Slot number of the beacon block being reconstructed (filter: ne) - */ - slot_ne?: number; - /** - * Slot number of the beacon block being reconstructed (filter: lt) - */ - slot_lt?: number; - /** - * Slot number of the beacon block being reconstructed (filter: lte) - */ - slot_lte?: number; - /** - * Slot number of the beacon block being reconstructed (filter: gt) - */ - slot_gt?: number; - /** - * Slot number of the beacon block being reconstructed (filter: gte) - */ - slot_gte?: number; - /** - * Slot number of the beacon block being reconstructed (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number of the beacon block being reconstructed (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number of the beacon block being reconstructed (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number of the beacon block being reconstructed (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Number of observations for this EL client/status (filter: eq) - */ - observation_count_eq?: number; - /** - * Number of observations for this EL client/status (filter: ne) - */ - observation_count_ne?: number; - /** - * Number of observations for this EL client/status (filter: lt) - */ - observation_count_lt?: number; - /** - * Number of observations for this EL client/status (filter: lte) - */ - observation_count_lte?: number; - /** - * Number of observations for this EL client/status (filter: gt) - */ - observation_count_gt?: number; - /** - * Number of observations for this EL client/status (filter: gte) - */ - observation_count_gte?: number; - /** - * Number of observations for this EL client/status (filter: between_min) - */ - observation_count_between_min?: number; - /** - * Number of observations for this EL client/status (filter: between_max_value) - */ - observation_count_between_max_value?: number; - /** - * Number of observations for this EL client/status (filter: in_values) (comma-separated list) - */ - observation_count_in_values?: string; - /** - * Number of observations for this EL client/status (filter: not_in_values) (comma-separated list) - */ - observation_count_not_in_values?: string; - /** - * Number of unique nodes with this EL client/status (filter: eq) - */ - unique_node_count_eq?: number; - /** - * Number of unique nodes with this EL client/status (filter: ne) - */ - unique_node_count_ne?: number; - /** - * Number of unique nodes with this EL client/status (filter: lt) - */ - unique_node_count_lt?: number; - /** - * Number of unique nodes with this EL client/status (filter: lte) - */ - unique_node_count_lte?: number; - /** - * Number of unique nodes with this EL client/status (filter: gt) - */ - unique_node_count_gt?: number; - /** - * Number of unique nodes with this EL client/status (filter: gte) - */ - unique_node_count_gte?: number; - /** - * Number of unique nodes with this EL client/status (filter: between_min) - */ - unique_node_count_between_min?: number; - /** - * Number of unique nodes with this EL client/status (filter: between_max_value) - */ - unique_node_count_between_max_value?: number; - /** - * Number of unique nodes with this EL client/status (filter: in_values) (comma-separated list) - */ - unique_node_count_in_values?: string; - /** - * Number of unique nodes with this EL client/status (filter: not_in_values) (comma-separated list) - */ - unique_node_count_not_in_values?: string; - /** - * Maximum number of versioned hashes requested (filter: eq) - */ - max_requested_count_eq?: number; - /** - * Maximum number of versioned hashes requested (filter: ne) - */ - max_requested_count_ne?: number; - /** - * Maximum number of versioned hashes requested (filter: lt) - */ - max_requested_count_lt?: number; - /** - * Maximum number of versioned hashes requested (filter: lte) - */ - max_requested_count_lte?: number; - /** - * Maximum number of versioned hashes requested (filter: gt) - */ - max_requested_count_gt?: number; - /** - * Maximum number of versioned hashes requested (filter: gte) - */ - max_requested_count_gte?: number; - /** - * Maximum number of versioned hashes requested (filter: between_min) - */ - max_requested_count_between_min?: number; - /** - * Maximum number of versioned hashes requested (filter: between_max_value) - */ - max_requested_count_between_max_value?: number; - /** - * Maximum number of versioned hashes requested (filter: in_values) (comma-separated list) - */ - max_requested_count_in_values?: string; - /** - * Maximum number of versioned hashes requested (filter: not_in_values) (comma-separated list) - */ - max_requested_count_not_in_values?: string; - /** - * Filter avg_returned_count using value - */ - avg_returned_count_value?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: eq) - */ - avg_duration_ms_eq?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: ne) - */ - avg_duration_ms_ne?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: lt) - */ - avg_duration_ms_lt?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: lte) - */ - avg_duration_ms_lte?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: gt) - */ - avg_duration_ms_gt?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: gte) - */ - avg_duration_ms_gte?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: between_min) - */ - avg_duration_ms_between_min?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: between_max_value) - */ - avg_duration_ms_between_max_value?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) - */ - avg_duration_ms_in_values?: string; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - avg_duration_ms_not_in_values?: string; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: eq) - */ - median_duration_ms_eq?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: ne) - */ - median_duration_ms_ne?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: lt) - */ - median_duration_ms_lt?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: lte) - */ - median_duration_ms_lte?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: gt) - */ - median_duration_ms_gt?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: gte) - */ - median_duration_ms_gte?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: between_min) - */ - median_duration_ms_between_min?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: between_max_value) - */ - median_duration_ms_between_max_value?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) - */ - median_duration_ms_in_values?: string; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - median_duration_ms_not_in_values?: string; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: eq) - */ - min_duration_ms_eq?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: ne) - */ - min_duration_ms_ne?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: lt) - */ - min_duration_ms_lt?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: lte) - */ - min_duration_ms_lte?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: gt) - */ - min_duration_ms_gt?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: gte) - */ - min_duration_ms_gte?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: between_min) - */ - min_duration_ms_between_min?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: between_max_value) - */ - min_duration_ms_between_max_value?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) - */ - min_duration_ms_in_values?: string; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - min_duration_ms_not_in_values?: string; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: eq) - */ - max_duration_ms_eq?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: ne) - */ - max_duration_ms_ne?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: lt) - */ - max_duration_ms_lt?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: lte) - */ - max_duration_ms_lte?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: gt) - */ - max_duration_ms_gt?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: gte) - */ - max_duration_ms_gte?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: between_min) - */ - max_duration_ms_between_min?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: between_max_value) - */ - max_duration_ms_between_max_value?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) - */ - max_duration_ms_in_values?: string; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - max_duration_ms_not_in_values?: string; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: eq) - */ - p95_duration_ms_eq?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: ne) - */ - p95_duration_ms_ne?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: lt) - */ - p95_duration_ms_lt?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: lte) - */ - p95_duration_ms_lte?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: gt) - */ - p95_duration_ms_gt?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: gte) - */ - p95_duration_ms_gte?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: between_min) - */ - p95_duration_ms_between_min?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: between_max_value) - */ - p95_duration_ms_between_max_value?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) - */ - p95_duration_ms_in_values?: string; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - p95_duration_ms_not_in_values?: string; - /** - * The maximum number of fct_engine_get_blobs_by_el_client to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctEngineGetBlobsByElClient` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_engine_get_blobs_by_el_client'; -}; - -export type FctEngineGetBlobsByElClientServiceListErrors = { + gas_cumulative_not_in_values?: string; /** - * Default error response + * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: eq) */ - default: Status; -}; - -export type FctEngineGetBlobsByElClientServiceListError = FctEngineGetBlobsByElClientServiceListErrors[keyof FctEngineGetBlobsByElClientServiceListErrors]; - -export type FctEngineGetBlobsByElClientServiceListResponses = { + memory_words_sum_before_eq?: number; /** - * OK + * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: ne) */ - 200: ListFctEngineGetBlobsByElClientResponse; -}; - -export type FctEngineGetBlobsByElClientServiceListResponse = FctEngineGetBlobsByElClientServiceListResponses[keyof FctEngineGetBlobsByElClientServiceListResponses]; - -export type FctEngineGetBlobsByElClientServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_engine_get_blobs_by_el_client/{slot_start_date_time}'; -}; - -export type FctEngineGetBlobsByElClientServiceGetErrors = { + memory_words_sum_before_ne?: number; /** - * Default error response + * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: lt) */ - default: Status; -}; - -export type FctEngineGetBlobsByElClientServiceGetError = FctEngineGetBlobsByElClientServiceGetErrors[keyof FctEngineGetBlobsByElClientServiceGetErrors]; - -export type FctEngineGetBlobsByElClientServiceGetResponses = { + memory_words_sum_before_lt?: number; /** - * OK + * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: lte) */ - 200: GetFctEngineGetBlobsByElClientResponse; -}; - -export type FctEngineGetBlobsByElClientServiceGetResponse = FctEngineGetBlobsByElClientServiceGetResponses[keyof FctEngineGetBlobsByElClientServiceGetResponses]; - -export type FctEngineGetBlobsByElClientHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) - */ - meta_execution_implementation_eq?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) - */ - meta_execution_implementation_ne?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) - */ - meta_execution_implementation_contains?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) - */ - meta_execution_implementation_starts_with?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) - */ - meta_execution_implementation_ends_with?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: like) - */ - meta_execution_implementation_like?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) - */ - meta_execution_implementation_not_like?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) - */ - meta_execution_implementation_in_values?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) - */ - meta_execution_implementation_not_in_values?: string; - /** - * Execution client version string (filter: eq) - */ - meta_execution_version_eq?: string; - /** - * Execution client version string (filter: ne) - */ - meta_execution_version_ne?: string; - /** - * Execution client version string (filter: contains) - */ - meta_execution_version_contains?: string; - /** - * Execution client version string (filter: starts_with) - */ - meta_execution_version_starts_with?: string; - /** - * Execution client version string (filter: ends_with) - */ - meta_execution_version_ends_with?: string; - /** - * Execution client version string (filter: like) - */ - meta_execution_version_like?: string; - /** - * Execution client version string (filter: not_like) - */ - meta_execution_version_not_like?: string; - /** - * Execution client version string (filter: in_values) (comma-separated list) - */ - meta_execution_version_in_values?: string; - /** - * Execution client version string (filter: not_in_values) (comma-separated list) - */ - meta_execution_version_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of unique slots in this hour (filter: eq) - */ - slot_count_eq?: number; - /** - * Number of unique slots in this hour (filter: ne) - */ - slot_count_ne?: number; - /** - * Number of unique slots in this hour (filter: lt) - */ - slot_count_lt?: number; - /** - * Number of unique slots in this hour (filter: lte) - */ - slot_count_lte?: number; - /** - * Number of unique slots in this hour (filter: gt) - */ - slot_count_gt?: number; - /** - * Number of unique slots in this hour (filter: gte) - */ - slot_count_gte?: number; - /** - * Number of unique slots in this hour (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Number of unique slots in this hour (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Number of unique slots in this hour (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Number of unique slots in this hour (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * Total number of observations for this client in this hour (filter: eq) - */ - observation_count_eq?: number; - /** - * Total number of observations for this client in this hour (filter: ne) - */ - observation_count_ne?: number; - /** - * Total number of observations for this client in this hour (filter: lt) - */ - observation_count_lt?: number; - /** - * Total number of observations for this client in this hour (filter: lte) - */ - observation_count_lte?: number; - /** - * Total number of observations for this client in this hour (filter: gt) - */ - observation_count_gt?: number; - /** - * Total number of observations for this client in this hour (filter: gte) - */ - observation_count_gte?: number; - /** - * Total number of observations for this client in this hour (filter: between_min) - */ - observation_count_between_min?: number; - /** - * Total number of observations for this client in this hour (filter: between_max_value) - */ - observation_count_between_max_value?: number; - /** - * Total number of observations for this client in this hour (filter: in_values) (comma-separated list) - */ - observation_count_in_values?: string; - /** - * Total number of observations for this client in this hour (filter: not_in_values) (comma-separated list) - */ - observation_count_not_in_values?: string; - /** - * Number of unique nodes reporting for this client (filter: eq) - */ - unique_node_count_eq?: number; - /** - * Number of unique nodes reporting for this client (filter: ne) - */ - unique_node_count_ne?: number; - /** - * Number of unique nodes reporting for this client (filter: lt) - */ - unique_node_count_lt?: number; - /** - * Number of unique nodes reporting for this client (filter: lte) - */ - unique_node_count_lte?: number; - /** - * Number of unique nodes reporting for this client (filter: gt) - */ - unique_node_count_gt?: number; - /** - * Number of unique nodes reporting for this client (filter: gte) - */ - unique_node_count_gte?: number; - /** - * Number of unique nodes reporting for this client (filter: between_min) - */ - unique_node_count_between_min?: number; - /** - * Number of unique nodes reporting for this client (filter: between_max_value) - */ - unique_node_count_between_max_value?: number; - /** - * Number of unique nodes reporting for this client (filter: in_values) (comma-separated list) - */ - unique_node_count_in_values?: string; - /** - * Number of unique nodes reporting for this client (filter: not_in_values) (comma-separated list) - */ - unique_node_count_not_in_values?: string; - /** - * Number of observations with SUCCESS status (filter: eq) - */ - success_count_eq?: number; - /** - * Number of observations with SUCCESS status (filter: ne) - */ - success_count_ne?: number; - /** - * Number of observations with SUCCESS status (filter: lt) - */ - success_count_lt?: number; - /** - * Number of observations with SUCCESS status (filter: lte) - */ - success_count_lte?: number; - /** - * Number of observations with SUCCESS status (filter: gt) - */ - success_count_gt?: number; - /** - * Number of observations with SUCCESS status (filter: gte) - */ - success_count_gte?: number; - /** - * Number of observations with SUCCESS status (filter: between_min) - */ - success_count_between_min?: number; - /** - * Number of observations with SUCCESS status (filter: between_max_value) - */ - success_count_between_max_value?: number; - /** - * Number of observations with SUCCESS status (filter: in_values) (comma-separated list) - */ - success_count_in_values?: string; - /** - * Number of observations with SUCCESS status (filter: not_in_values) (comma-separated list) - */ - success_count_not_in_values?: string; - /** - * Number of observations with PARTIAL status (filter: eq) - */ - partial_count_eq?: number; - /** - * Number of observations with PARTIAL status (filter: ne) - */ - partial_count_ne?: number; - /** - * Number of observations with PARTIAL status (filter: lt) - */ - partial_count_lt?: number; - /** - * Number of observations with PARTIAL status (filter: lte) - */ - partial_count_lte?: number; - /** - * Number of observations with PARTIAL status (filter: gt) - */ - partial_count_gt?: number; - /** - * Number of observations with PARTIAL status (filter: gte) - */ - partial_count_gte?: number; - /** - * Number of observations with PARTIAL status (filter: between_min) - */ - partial_count_between_min?: number; - /** - * Number of observations with PARTIAL status (filter: between_max_value) - */ - partial_count_between_max_value?: number; - /** - * Number of observations with PARTIAL status (filter: in_values) (comma-separated list) - */ - partial_count_in_values?: string; - /** - * Number of observations with PARTIAL status (filter: not_in_values) (comma-separated list) - */ - partial_count_not_in_values?: string; - /** - * Number of observations with EMPTY status (filter: eq) - */ - empty_count_eq?: number; - /** - * Number of observations with EMPTY status (filter: ne) - */ - empty_count_ne?: number; - /** - * Number of observations with EMPTY status (filter: lt) - */ - empty_count_lt?: number; - /** - * Number of observations with EMPTY status (filter: lte) - */ - empty_count_lte?: number; - /** - * Number of observations with EMPTY status (filter: gt) - */ - empty_count_gt?: number; - /** - * Number of observations with EMPTY status (filter: gte) - */ - empty_count_gte?: number; - /** - * Number of observations with EMPTY status (filter: between_min) - */ - empty_count_between_min?: number; - /** - * Number of observations with EMPTY status (filter: between_max_value) - */ - empty_count_between_max_value?: number; - /** - * Number of observations with EMPTY status (filter: in_values) (comma-separated list) - */ - empty_count_in_values?: string; - /** - * Number of observations with EMPTY status (filter: not_in_values) (comma-separated list) - */ - empty_count_not_in_values?: string; - /** - * Number of observations with UNSUPPORTED status (filter: eq) - */ - unsupported_count_eq?: number; - /** - * Number of observations with UNSUPPORTED status (filter: ne) - */ - unsupported_count_ne?: number; - /** - * Number of observations with UNSUPPORTED status (filter: lt) - */ - unsupported_count_lt?: number; - /** - * Number of observations with UNSUPPORTED status (filter: lte) - */ - unsupported_count_lte?: number; - /** - * Number of observations with UNSUPPORTED status (filter: gt) - */ - unsupported_count_gt?: number; - /** - * Number of observations with UNSUPPORTED status (filter: gte) - */ - unsupported_count_gte?: number; - /** - * Number of observations with UNSUPPORTED status (filter: between_min) - */ - unsupported_count_between_min?: number; - /** - * Number of observations with UNSUPPORTED status (filter: between_max_value) - */ - unsupported_count_between_max_value?: number; - /** - * Number of observations with UNSUPPORTED status (filter: in_values) (comma-separated list) - */ - unsupported_count_in_values?: string; - /** - * Number of observations with UNSUPPORTED status (filter: not_in_values) (comma-separated list) - */ - unsupported_count_not_in_values?: string; - /** - * Number of observations with ERROR status (filter: eq) - */ - error_count_eq?: number; - /** - * Number of observations with ERROR status (filter: ne) - */ - error_count_ne?: number; - /** - * Number of observations with ERROR status (filter: lt) - */ - error_count_lt?: number; - /** - * Number of observations with ERROR status (filter: lte) - */ - error_count_lte?: number; - /** - * Number of observations with ERROR status (filter: gt) - */ - error_count_gt?: number; - /** - * Number of observations with ERROR status (filter: gte) - */ - error_count_gte?: number; - /** - * Number of observations with ERROR status (filter: between_min) - */ - error_count_between_min?: number; - /** - * Number of observations with ERROR status (filter: between_max_value) - */ - error_count_between_max_value?: number; - /** - * Number of observations with ERROR status (filter: in_values) (comma-separated list) - */ - error_count_in_values?: string; - /** - * Number of observations with ERROR status (filter: not_in_values) (comma-separated list) - */ - error_count_not_in_values?: string; - /** - * Filter avg_returned_count using value - */ - avg_returned_count_value?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: eq) - */ - avg_duration_ms_eq?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: ne) - */ - avg_duration_ms_ne?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: lt) - */ - avg_duration_ms_lt?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: lte) - */ - avg_duration_ms_lte?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: gt) - */ - avg_duration_ms_gt?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: gte) - */ - avg_duration_ms_gte?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: between_min) - */ - avg_duration_ms_between_min?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: between_max_value) - */ - avg_duration_ms_between_max_value?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) - */ - avg_duration_ms_in_values?: string; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - avg_duration_ms_not_in_values?: string; - /** - * 50th percentile (median) duration in milliseconds (filter: eq) - */ - p50_duration_ms_eq?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: ne) - */ - p50_duration_ms_ne?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: lt) - */ - p50_duration_ms_lt?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: lte) - */ - p50_duration_ms_lte?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: gt) - */ - p50_duration_ms_gt?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: gte) - */ - p50_duration_ms_gte?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: between_min) - */ - p50_duration_ms_between_min?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: between_max_value) - */ - p50_duration_ms_between_max_value?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: in_values) (comma-separated list) - */ - p50_duration_ms_in_values?: string; - /** - * 50th percentile (median) duration in milliseconds (filter: not_in_values) (comma-separated list) - */ - p50_duration_ms_not_in_values?: string; - /** - * 95th percentile duration in milliseconds (filter: eq) - */ - p95_duration_ms_eq?: number; - /** - * 95th percentile duration in milliseconds (filter: ne) - */ - p95_duration_ms_ne?: number; - /** - * 95th percentile duration in milliseconds (filter: lt) - */ - p95_duration_ms_lt?: number; - /** - * 95th percentile duration in milliseconds (filter: lte) - */ - p95_duration_ms_lte?: number; - /** - * 95th percentile duration in milliseconds (filter: gt) - */ - p95_duration_ms_gt?: number; - /** - * 95th percentile duration in milliseconds (filter: gte) - */ - p95_duration_ms_gte?: number; - /** - * 95th percentile duration in milliseconds (filter: between_min) - */ - p95_duration_ms_between_min?: number; - /** - * 95th percentile duration in milliseconds (filter: between_max_value) - */ - p95_duration_ms_between_max_value?: number; - /** - * 95th percentile duration in milliseconds (filter: in_values) (comma-separated list) - */ - p95_duration_ms_in_values?: string; - /** - * 95th percentile duration in milliseconds (filter: not_in_values) (comma-separated list) - */ - p95_duration_ms_not_in_values?: string; - /** - * Minimum duration in milliseconds (filter: eq) - */ - min_duration_ms_eq?: number; - /** - * Minimum duration in milliseconds (filter: ne) - */ - min_duration_ms_ne?: number; - /** - * Minimum duration in milliseconds (filter: lt) - */ - min_duration_ms_lt?: number; - /** - * Minimum duration in milliseconds (filter: lte) - */ - min_duration_ms_lte?: number; - /** - * Minimum duration in milliseconds (filter: gt) - */ - min_duration_ms_gt?: number; - /** - * Minimum duration in milliseconds (filter: gte) - */ - min_duration_ms_gte?: number; - /** - * Minimum duration in milliseconds (filter: between_min) - */ - min_duration_ms_between_min?: number; - /** - * Minimum duration in milliseconds (filter: between_max_value) - */ - min_duration_ms_between_max_value?: number; - /** - * Minimum duration in milliseconds (filter: in_values) (comma-separated list) - */ - min_duration_ms_in_values?: string; - /** - * Minimum duration in milliseconds (filter: not_in_values) (comma-separated list) - */ - min_duration_ms_not_in_values?: string; - /** - * Maximum duration in milliseconds (filter: eq) - */ - max_duration_ms_eq?: number; - /** - * Maximum duration in milliseconds (filter: ne) - */ - max_duration_ms_ne?: number; - /** - * Maximum duration in milliseconds (filter: lt) - */ - max_duration_ms_lt?: number; - /** - * Maximum duration in milliseconds (filter: lte) - */ - max_duration_ms_lte?: number; - /** - * Maximum duration in milliseconds (filter: gt) - */ - max_duration_ms_gt?: number; - /** - * Maximum duration in milliseconds (filter: gte) - */ - max_duration_ms_gte?: number; - /** - * Maximum duration in milliseconds (filter: between_min) - */ - max_duration_ms_between_min?: number; - /** - * Maximum duration in milliseconds (filter: between_max_value) - */ - max_duration_ms_between_max_value?: number; - /** - * Maximum duration in milliseconds (filter: in_values) (comma-separated list) - */ - max_duration_ms_in_values?: string; - /** - * Maximum duration in milliseconds (filter: not_in_values) (comma-separated list) - */ - max_duration_ms_not_in_values?: string; - /** - * The maximum number of fct_engine_get_blobs_by_el_client_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctEngineGetBlobsByElClientHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_engine_get_blobs_by_el_client_hourly'; -}; - -export type FctEngineGetBlobsByElClientHourlyServiceListErrors = { + memory_words_sum_before_lte?: number; /** - * Default error response + * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: gt) */ - default: Status; -}; - -export type FctEngineGetBlobsByElClientHourlyServiceListError = FctEngineGetBlobsByElClientHourlyServiceListErrors[keyof FctEngineGetBlobsByElClientHourlyServiceListErrors]; - -export type FctEngineGetBlobsByElClientHourlyServiceListResponses = { + memory_words_sum_before_gt?: number; /** - * OK + * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: gte) */ - 200: ListFctEngineGetBlobsByElClientHourlyResponse; -}; - -export type FctEngineGetBlobsByElClientHourlyServiceListResponse = FctEngineGetBlobsByElClientHourlyServiceListResponses[keyof FctEngineGetBlobsByElClientHourlyServiceListResponses]; - -export type FctEngineGetBlobsByElClientHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_engine_get_blobs_by_el_client_hourly/{hour_start_date_time}'; -}; - -export type FctEngineGetBlobsByElClientHourlyServiceGetErrors = { + memory_words_sum_before_gte?: number; /** - * Default error response + * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: between_min) */ - default: Status; -}; - -export type FctEngineGetBlobsByElClientHourlyServiceGetError = FctEngineGetBlobsByElClientHourlyServiceGetErrors[keyof FctEngineGetBlobsByElClientHourlyServiceGetErrors]; - -export type FctEngineGetBlobsByElClientHourlyServiceGetResponses = { + memory_words_sum_before_between_min?: number; /** - * OK + * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: between_max_value) */ - 200: GetFctEngineGetBlobsByElClientHourlyResponse; -}; - -export type FctEngineGetBlobsByElClientHourlyServiceGetResponse = FctEngineGetBlobsByElClientHourlyServiceGetResponses[keyof FctEngineGetBlobsByElClientHourlyServiceGetResponses]; - -export type FctEngineGetBlobsBySlotServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) - */ - block_root_eq?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) - */ - block_root_ne?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) - */ - block_root_contains?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: like) - */ - block_root_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) - */ - block_root_not_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: eq) - */ - status_eq?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: ne) - */ - status_ne?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: contains) - */ - status_contains?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: starts_with) - */ - status_starts_with?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: ends_with) - */ - status_ends_with?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: like) - */ - status_like?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: not_like) - */ - status_not_like?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number of the beacon block being reconstructed (filter: eq) - */ - slot_eq?: number; - /** - * Slot number of the beacon block being reconstructed (filter: ne) - */ - slot_ne?: number; - /** - * Slot number of the beacon block being reconstructed (filter: lt) - */ - slot_lt?: number; - /** - * Slot number of the beacon block being reconstructed (filter: lte) - */ - slot_lte?: number; - /** - * Slot number of the beacon block being reconstructed (filter: gt) - */ - slot_gt?: number; - /** - * Slot number of the beacon block being reconstructed (filter: gte) - */ - slot_gte?: number; - /** - * Slot number of the beacon block being reconstructed (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number of the beacon block being reconstructed (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number of the beacon block being reconstructed (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number of the beacon block being reconstructed (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Number of observations for this slot/block/status (filter: eq) - */ - observation_count_eq?: number; - /** - * Number of observations for this slot/block/status (filter: ne) - */ - observation_count_ne?: number; - /** - * Number of observations for this slot/block/status (filter: lt) - */ - observation_count_lt?: number; - /** - * Number of observations for this slot/block/status (filter: lte) - */ - observation_count_lte?: number; - /** - * Number of observations for this slot/block/status (filter: gt) - */ - observation_count_gt?: number; - /** - * Number of observations for this slot/block/status (filter: gte) - */ - observation_count_gte?: number; - /** - * Number of observations for this slot/block/status (filter: between_min) - */ - observation_count_between_min?: number; - /** - * Number of observations for this slot/block/status (filter: between_max_value) - */ - observation_count_between_max_value?: number; - /** - * Number of observations for this slot/block/status (filter: in_values) (comma-separated list) - */ - observation_count_in_values?: string; - /** - * Number of observations for this slot/block/status (filter: not_in_values) (comma-separated list) - */ - observation_count_not_in_values?: string; - /** - * Number of unique nodes that observed this block with this status (filter: eq) - */ - unique_node_count_eq?: number; - /** - * Number of unique nodes that observed this block with this status (filter: ne) - */ - unique_node_count_ne?: number; - /** - * Number of unique nodes that observed this block with this status (filter: lt) - */ - unique_node_count_lt?: number; - /** - * Number of unique nodes that observed this block with this status (filter: lte) - */ - unique_node_count_lte?: number; - /** - * Number of unique nodes that observed this block with this status (filter: gt) - */ - unique_node_count_gt?: number; - /** - * Number of unique nodes that observed this block with this status (filter: gte) - */ - unique_node_count_gte?: number; - /** - * Number of unique nodes that observed this block with this status (filter: between_min) - */ - unique_node_count_between_min?: number; - /** - * Number of unique nodes that observed this block with this status (filter: between_max_value) - */ - unique_node_count_between_max_value?: number; - /** - * Number of unique nodes that observed this block with this status (filter: in_values) (comma-separated list) - */ - unique_node_count_in_values?: string; - /** - * Number of unique nodes that observed this block with this status (filter: not_in_values) (comma-separated list) - */ - unique_node_count_not_in_values?: string; - /** - * Maximum number of versioned hashes requested (filter: eq) - */ - max_requested_count_eq?: number; - /** - * Maximum number of versioned hashes requested (filter: ne) - */ - max_requested_count_ne?: number; - /** - * Maximum number of versioned hashes requested (filter: lt) - */ - max_requested_count_lt?: number; - /** - * Maximum number of versioned hashes requested (filter: lte) - */ - max_requested_count_lte?: number; - /** - * Maximum number of versioned hashes requested (filter: gt) - */ - max_requested_count_gt?: number; - /** - * Maximum number of versioned hashes requested (filter: gte) - */ - max_requested_count_gte?: number; - /** - * Maximum number of versioned hashes requested (filter: between_min) - */ - max_requested_count_between_min?: number; - /** - * Maximum number of versioned hashes requested (filter: between_max_value) - */ - max_requested_count_between_max_value?: number; - /** - * Maximum number of versioned hashes requested (filter: in_values) (comma-separated list) - */ - max_requested_count_in_values?: string; - /** - * Maximum number of versioned hashes requested (filter: not_in_values) (comma-separated list) - */ - max_requested_count_not_in_values?: string; - /** - * Filter avg_returned_count using value - */ - avg_returned_count_value?: number; - /** - * Filter full_return_pct using value - */ - full_return_pct_value?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: eq) - */ - avg_duration_ms_eq?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: ne) - */ - avg_duration_ms_ne?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: lt) - */ - avg_duration_ms_lt?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: lte) - */ - avg_duration_ms_lte?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: gt) - */ - avg_duration_ms_gt?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: gte) - */ - avg_duration_ms_gte?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: between_min) - */ - avg_duration_ms_between_min?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: between_max_value) - */ - avg_duration_ms_between_max_value?: number; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) - */ - avg_duration_ms_in_values?: string; - /** - * Average duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - avg_duration_ms_not_in_values?: string; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: eq) - */ - median_duration_ms_eq?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: ne) - */ - median_duration_ms_ne?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: lt) - */ - median_duration_ms_lt?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: lte) - */ - median_duration_ms_lte?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: gt) - */ - median_duration_ms_gt?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: gte) - */ - median_duration_ms_gte?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: between_min) - */ - median_duration_ms_between_min?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: between_max_value) - */ - median_duration_ms_between_max_value?: number; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) - */ - median_duration_ms_in_values?: string; - /** - * Median duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - median_duration_ms_not_in_values?: string; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: eq) - */ - min_duration_ms_eq?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: ne) - */ - min_duration_ms_ne?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: lt) - */ - min_duration_ms_lt?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: lte) - */ - min_duration_ms_lte?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: gt) - */ - min_duration_ms_gt?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: gte) - */ - min_duration_ms_gte?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: between_min) - */ - min_duration_ms_between_min?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: between_max_value) - */ - min_duration_ms_between_max_value?: number; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) - */ - min_duration_ms_in_values?: string; - /** - * Minimum duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - min_duration_ms_not_in_values?: string; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: eq) - */ - max_duration_ms_eq?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: ne) - */ - max_duration_ms_ne?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: lt) - */ - max_duration_ms_lt?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: lte) - */ - max_duration_ms_lte?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: gt) - */ - max_duration_ms_gt?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: gte) - */ - max_duration_ms_gte?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: between_min) - */ - max_duration_ms_between_min?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: between_max_value) - */ - max_duration_ms_between_max_value?: number; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) - */ - max_duration_ms_in_values?: string; - /** - * Maximum duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - max_duration_ms_not_in_values?: string; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: eq) - */ - p95_duration_ms_eq?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: ne) - */ - p95_duration_ms_ne?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: lt) - */ - p95_duration_ms_lt?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: lte) - */ - p95_duration_ms_lte?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: gt) - */ - p95_duration_ms_gt?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: gte) - */ - p95_duration_ms_gte?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: between_min) - */ - p95_duration_ms_between_min?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: between_max_value) - */ - p95_duration_ms_between_max_value?: number; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: in_values) (comma-separated list) - */ - p95_duration_ms_in_values?: string; - /** - * 95th percentile duration of engine_getBlobs calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - p95_duration_ms_not_in_values?: string; - /** - * Number of unique CL client implementations observing this block (filter: eq) - */ - unique_cl_implementation_count_eq?: number; - /** - * Number of unique CL client implementations observing this block (filter: ne) - */ - unique_cl_implementation_count_ne?: number; - /** - * Number of unique CL client implementations observing this block (filter: lt) - */ - unique_cl_implementation_count_lt?: number; - /** - * Number of unique CL client implementations observing this block (filter: lte) - */ - unique_cl_implementation_count_lte?: number; - /** - * Number of unique CL client implementations observing this block (filter: gt) - */ - unique_cl_implementation_count_gt?: number; - /** - * Number of unique CL client implementations observing this block (filter: gte) - */ - unique_cl_implementation_count_gte?: number; - /** - * Number of unique CL client implementations observing this block (filter: between_min) - */ - unique_cl_implementation_count_between_min?: number; - /** - * Number of unique CL client implementations observing this block (filter: between_max_value) - */ - unique_cl_implementation_count_between_max_value?: number; - /** - * Number of unique CL client implementations observing this block (filter: in_values) (comma-separated list) - */ - unique_cl_implementation_count_in_values?: string; - /** - * Number of unique CL client implementations observing this block (filter: not_in_values) (comma-separated list) - */ - unique_cl_implementation_count_not_in_values?: string; - /** - * Number of unique EL client implementations observing this block (filter: eq) - */ - unique_el_implementation_count_eq?: number; - /** - * Number of unique EL client implementations observing this block (filter: ne) - */ - unique_el_implementation_count_ne?: number; - /** - * Number of unique EL client implementations observing this block (filter: lt) - */ - unique_el_implementation_count_lt?: number; - /** - * Number of unique EL client implementations observing this block (filter: lte) - */ - unique_el_implementation_count_lte?: number; - /** - * Number of unique EL client implementations observing this block (filter: gt) - */ - unique_el_implementation_count_gt?: number; - /** - * Number of unique EL client implementations observing this block (filter: gte) - */ - unique_el_implementation_count_gte?: number; - /** - * Number of unique EL client implementations observing this block (filter: between_min) - */ - unique_el_implementation_count_between_min?: number; - /** - * Number of unique EL client implementations observing this block (filter: between_max_value) - */ - unique_el_implementation_count_between_max_value?: number; - /** - * Number of unique EL client implementations observing this block (filter: in_values) (comma-separated list) - */ - unique_el_implementation_count_in_values?: string; - /** - * Number of unique EL client implementations observing this block (filter: not_in_values) (comma-separated list) - */ - unique_el_implementation_count_not_in_values?: string; - /** - * The maximum number of fct_engine_get_blobs_by_slot to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctEngineGetBlobsBySlot` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_engine_get_blobs_by_slot'; -}; - -export type FctEngineGetBlobsBySlotServiceListErrors = { + memory_words_sum_before_between_max_value?: number; /** - * Default error response + * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctEngineGetBlobsBySlotServiceListError = FctEngineGetBlobsBySlotServiceListErrors[keyof FctEngineGetBlobsBySlotServiceListErrors]; - -export type FctEngineGetBlobsBySlotServiceListResponses = { + memory_words_sum_before_in_values?: string; /** - * OK + * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: not_in_values) (comma-separated list) */ - 200: ListFctEngineGetBlobsBySlotResponse; -}; - -export type FctEngineGetBlobsBySlotServiceListResponse = FctEngineGetBlobsBySlotServiceListResponses[keyof FctEngineGetBlobsBySlotServiceListResponses]; - -export type FctEngineGetBlobsBySlotServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_engine_get_blobs_by_slot/{slot_start_date_time}'; -}; - -export type FctEngineGetBlobsBySlotServiceGetErrors = { + memory_words_sum_before_not_in_values?: string; /** - * Default error response + * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: eq) */ - default: Status; -}; - -export type FctEngineGetBlobsBySlotServiceGetError = FctEngineGetBlobsBySlotServiceGetErrors[keyof FctEngineGetBlobsBySlotServiceGetErrors]; - -export type FctEngineGetBlobsBySlotServiceGetResponses = { + memory_words_sum_after_eq?: number; /** - * OK + * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: ne) */ - 200: GetFctEngineGetBlobsBySlotResponse; -}; - -export type FctEngineGetBlobsBySlotServiceGetResponse = FctEngineGetBlobsBySlotServiceGetResponses[keyof FctEngineGetBlobsBySlotServiceGetResponses]; - -export type FctEngineGetBlobsDurationChunked50MsServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) - */ - block_root_eq?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) - */ - block_root_ne?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) - */ - block_root_contains?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: like) - */ - block_root_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) - */ - block_root_not_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: eq) - */ - chunk_duration_ms_eq?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: ne) - */ - chunk_duration_ms_ne?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: lt) - */ - chunk_duration_ms_lt?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: lte) - */ - chunk_duration_ms_lte?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: gt) - */ - chunk_duration_ms_gt?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: gte) - */ - chunk_duration_ms_gte?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: between_min) - */ - chunk_duration_ms_between_min?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: between_max_value) - */ - chunk_duration_ms_between_max_value?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: in_values) (comma-separated list) - */ - chunk_duration_ms_in_values?: string; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: not_in_values) (comma-separated list) - */ - chunk_duration_ms_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number of the beacon block being reconstructed (filter: eq) - */ - slot_eq?: number; - /** - * Slot number of the beacon block being reconstructed (filter: ne) - */ - slot_ne?: number; - /** - * Slot number of the beacon block being reconstructed (filter: lt) - */ - slot_lt?: number; - /** - * Slot number of the beacon block being reconstructed (filter: lte) - */ - slot_lte?: number; - /** - * Slot number of the beacon block being reconstructed (filter: gt) - */ - slot_gt?: number; - /** - * Slot number of the beacon block being reconstructed (filter: gte) - */ - slot_gte?: number; - /** - * Slot number of the beacon block being reconstructed (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number of the beacon block being reconstructed (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number of the beacon block being reconstructed (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number of the beacon block being reconstructed (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Number of observations in this duration chunk (filter: eq) - */ - observation_count_eq?: number; - /** - * Number of observations in this duration chunk (filter: ne) - */ - observation_count_ne?: number; - /** - * Number of observations in this duration chunk (filter: lt) - */ - observation_count_lt?: number; - /** - * Number of observations in this duration chunk (filter: lte) - */ - observation_count_lte?: number; - /** - * Number of observations in this duration chunk (filter: gt) - */ - observation_count_gt?: number; - /** - * Number of observations in this duration chunk (filter: gte) - */ - observation_count_gte?: number; - /** - * Number of observations in this duration chunk (filter: between_min) - */ - observation_count_between_min?: number; - /** - * Number of observations in this duration chunk (filter: between_max_value) - */ - observation_count_between_max_value?: number; - /** - * Number of observations in this duration chunk (filter: in_values) (comma-separated list) - */ - observation_count_in_values?: string; - /** - * Number of observations in this duration chunk (filter: not_in_values) (comma-separated list) - */ - observation_count_not_in_values?: string; - /** - * Number of SUCCESS status observations in this chunk (filter: eq) - */ - success_count_eq?: number; - /** - * Number of SUCCESS status observations in this chunk (filter: ne) - */ - success_count_ne?: number; - /** - * Number of SUCCESS status observations in this chunk (filter: lt) - */ - success_count_lt?: number; - /** - * Number of SUCCESS status observations in this chunk (filter: lte) - */ - success_count_lte?: number; - /** - * Number of SUCCESS status observations in this chunk (filter: gt) - */ - success_count_gt?: number; - /** - * Number of SUCCESS status observations in this chunk (filter: gte) - */ - success_count_gte?: number; - /** - * Number of SUCCESS status observations in this chunk (filter: between_min) - */ - success_count_between_min?: number; - /** - * Number of SUCCESS status observations in this chunk (filter: between_max_value) - */ - success_count_between_max_value?: number; - /** - * Number of SUCCESS status observations in this chunk (filter: in_values) (comma-separated list) - */ - success_count_in_values?: string; - /** - * Number of SUCCESS status observations in this chunk (filter: not_in_values) (comma-separated list) - */ - success_count_not_in_values?: string; - /** - * Number of PARTIAL status observations in this chunk (filter: eq) - */ - partial_count_eq?: number; - /** - * Number of PARTIAL status observations in this chunk (filter: ne) - */ - partial_count_ne?: number; - /** - * Number of PARTIAL status observations in this chunk (filter: lt) - */ - partial_count_lt?: number; - /** - * Number of PARTIAL status observations in this chunk (filter: lte) - */ - partial_count_lte?: number; - /** - * Number of PARTIAL status observations in this chunk (filter: gt) - */ - partial_count_gt?: number; - /** - * Number of PARTIAL status observations in this chunk (filter: gte) - */ - partial_count_gte?: number; - /** - * Number of PARTIAL status observations in this chunk (filter: between_min) - */ - partial_count_between_min?: number; - /** - * Number of PARTIAL status observations in this chunk (filter: between_max_value) - */ - partial_count_between_max_value?: number; - /** - * Number of PARTIAL status observations in this chunk (filter: in_values) (comma-separated list) - */ - partial_count_in_values?: string; - /** - * Number of PARTIAL status observations in this chunk (filter: not_in_values) (comma-separated list) - */ - partial_count_not_in_values?: string; - /** - * Number of EMPTY status observations in this chunk (filter: eq) - */ - empty_count_eq?: number; - /** - * Number of EMPTY status observations in this chunk (filter: ne) - */ - empty_count_ne?: number; - /** - * Number of EMPTY status observations in this chunk (filter: lt) - */ - empty_count_lt?: number; - /** - * Number of EMPTY status observations in this chunk (filter: lte) - */ - empty_count_lte?: number; - /** - * Number of EMPTY status observations in this chunk (filter: gt) - */ - empty_count_gt?: number; - /** - * Number of EMPTY status observations in this chunk (filter: gte) - */ - empty_count_gte?: number; - /** - * Number of EMPTY status observations in this chunk (filter: between_min) - */ - empty_count_between_min?: number; - /** - * Number of EMPTY status observations in this chunk (filter: between_max_value) - */ - empty_count_between_max_value?: number; - /** - * Number of EMPTY status observations in this chunk (filter: in_values) (comma-separated list) - */ - empty_count_in_values?: string; - /** - * Number of EMPTY status observations in this chunk (filter: not_in_values) (comma-separated list) - */ - empty_count_not_in_values?: string; - /** - * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: eq) - */ - error_count_eq?: number; - /** - * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: ne) - */ - error_count_ne?: number; - /** - * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: lt) - */ - error_count_lt?: number; - /** - * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: lte) - */ - error_count_lte?: number; - /** - * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: gt) - */ - error_count_gt?: number; - /** - * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: gte) - */ - error_count_gte?: number; - /** - * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: between_min) - */ - error_count_between_min?: number; - /** - * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: between_max_value) - */ - error_count_between_max_value?: number; - /** - * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: in_values) (comma-separated list) - */ - error_count_in_values?: string; - /** - * Number of ERROR or UNSUPPORTED status observations in this chunk (filter: not_in_values) (comma-separated list) - */ - error_count_not_in_values?: string; - /** - * The maximum number of fct_engine_get_blobs_duration_chunked_50ms to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctEngineGetBlobsDurationChunked50ms` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_engine_get_blobs_duration_chunked_50ms'; -}; - -export type FctEngineGetBlobsDurationChunked50MsServiceListErrors = { + memory_words_sum_after_ne?: number; /** - * Default error response + * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: lt) */ - default: Status; -}; - -export type FctEngineGetBlobsDurationChunked50MsServiceListError = FctEngineGetBlobsDurationChunked50MsServiceListErrors[keyof FctEngineGetBlobsDurationChunked50MsServiceListErrors]; - -export type FctEngineGetBlobsDurationChunked50MsServiceListResponses = { + memory_words_sum_after_lt?: number; /** - * OK + * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: lte) */ - 200: ListFctEngineGetBlobsDurationChunked50MsResponse; -}; - -export type FctEngineGetBlobsDurationChunked50MsServiceListResponse = FctEngineGetBlobsDurationChunked50MsServiceListResponses[keyof FctEngineGetBlobsDurationChunked50MsServiceListResponses]; - -export type FctEngineGetBlobsDurationChunked50MsServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_engine_get_blobs_duration_chunked_50ms/{slot_start_date_time}'; -}; - -export type FctEngineGetBlobsDurationChunked50MsServiceGetErrors = { + memory_words_sum_after_lte?: number; /** - * Default error response + * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: gt) */ - default: Status; -}; - -export type FctEngineGetBlobsDurationChunked50MsServiceGetError = FctEngineGetBlobsDurationChunked50MsServiceGetErrors[keyof FctEngineGetBlobsDurationChunked50MsServiceGetErrors]; - -export type FctEngineGetBlobsDurationChunked50MsServiceGetResponses = { + memory_words_sum_after_gt?: number; /** - * OK + * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: gte) */ - 200: GetFctEngineGetBlobsDurationChunked50MsResponse; -}; - -export type FctEngineGetBlobsDurationChunked50MsServiceGetResponse = FctEngineGetBlobsDurationChunked50MsServiceGetResponses[keyof FctEngineGetBlobsDurationChunked50MsServiceGetResponses]; - -export type FctEngineNewPayloadByElClientServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: eq) - */ - block_hash_eq?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: ne) - */ - block_hash_ne?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: contains) - */ - block_hash_contains?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: starts_with) - */ - block_hash_starts_with?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: ends_with) - */ - block_hash_ends_with?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: like) - */ - block_hash_like?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: not_like) - */ - block_hash_not_like?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_hash_in_values?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_hash_not_in_values?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) - */ - meta_execution_implementation_eq?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) - */ - meta_execution_implementation_ne?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) - */ - meta_execution_implementation_contains?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) - */ - meta_execution_implementation_starts_with?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) - */ - meta_execution_implementation_ends_with?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: like) - */ - meta_execution_implementation_like?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) - */ - meta_execution_implementation_not_like?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) - */ - meta_execution_implementation_in_values?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) - */ - meta_execution_implementation_not_in_values?: string; - /** - * Execution client version string (filter: eq) - */ - meta_execution_version_eq?: string; - /** - * Execution client version string (filter: ne) - */ - meta_execution_version_ne?: string; - /** - * Execution client version string (filter: contains) - */ - meta_execution_version_contains?: string; - /** - * Execution client version string (filter: starts_with) - */ - meta_execution_version_starts_with?: string; - /** - * Execution client version string (filter: ends_with) - */ - meta_execution_version_ends_with?: string; - /** - * Execution client version string (filter: like) - */ - meta_execution_version_like?: string; - /** - * Execution client version string (filter: not_like) - */ - meta_execution_version_not_like?: string; - /** - * Execution client version string (filter: in_values) (comma-separated list) - */ - meta_execution_version_in_values?: string; - /** - * Execution client version string (filter: not_in_values) (comma-separated list) - */ - meta_execution_version_not_in_values?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: eq) - */ - status_eq?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: ne) - */ - status_ne?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: contains) - */ - status_contains?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: starts_with) - */ - status_starts_with?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: ends_with) - */ - status_ends_with?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: like) - */ - status_like?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: not_like) - */ - status_not_like?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number of the beacon block containing the payload (filter: eq) - */ - slot_eq?: number; - /** - * Slot number of the beacon block containing the payload (filter: ne) - */ - slot_ne?: number; - /** - * Slot number of the beacon block containing the payload (filter: lt) - */ - slot_lt?: number; - /** - * Slot number of the beacon block containing the payload (filter: lte) - */ - slot_lte?: number; - /** - * Slot number of the beacon block containing the payload (filter: gt) - */ - slot_gt?: number; - /** - * Slot number of the beacon block containing the payload (filter: gte) - */ - slot_gte?: number; - /** - * Slot number of the beacon block containing the payload (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number of the beacon block containing the payload (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number of the beacon block containing the payload (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number of the beacon block containing the payload (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) - */ - block_root_eq?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) - */ - block_root_ne?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) - */ - block_root_contains?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: like) - */ - block_root_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) - */ - block_root_not_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Total gas used by all transactions in the block (filter: eq) - */ - gas_used_eq?: number; - /** - * Total gas used by all transactions in the block (filter: ne) - */ - gas_used_ne?: number; - /** - * Total gas used by all transactions in the block (filter: lt) - */ - gas_used_lt?: number; - /** - * Total gas used by all transactions in the block (filter: lte) - */ - gas_used_lte?: number; - /** - * Total gas used by all transactions in the block (filter: gt) - */ - gas_used_gt?: number; - /** - * Total gas used by all transactions in the block (filter: gte) - */ - gas_used_gte?: number; - /** - * Total gas used by all transactions in the block (filter: between_min) - */ - gas_used_between_min?: number; - /** - * Total gas used by all transactions in the block (filter: between_max_value) - */ - gas_used_between_max_value?: number; - /** - * Total gas used by all transactions in the block (filter: in_values) (comma-separated list) - */ - gas_used_in_values?: string; - /** - * Total gas used by all transactions in the block (filter: not_in_values) (comma-separated list) - */ - gas_used_not_in_values?: string; - /** - * Gas limit of the block (filter: eq) - */ - gas_limit_eq?: number; - /** - * Gas limit of the block (filter: ne) - */ - gas_limit_ne?: number; - /** - * Gas limit of the block (filter: lt) - */ - gas_limit_lt?: number; - /** - * Gas limit of the block (filter: lte) - */ - gas_limit_lte?: number; - /** - * Gas limit of the block (filter: gt) - */ - gas_limit_gt?: number; - /** - * Gas limit of the block (filter: gte) - */ - gas_limit_gte?: number; - /** - * Gas limit of the block (filter: between_min) - */ - gas_limit_between_min?: number; - /** - * Gas limit of the block (filter: between_max_value) - */ - gas_limit_between_max_value?: number; - /** - * Gas limit of the block (filter: in_values) (comma-separated list) - */ - gas_limit_in_values?: string; - /** - * Gas limit of the block (filter: not_in_values) (comma-separated list) - */ - gas_limit_not_in_values?: string; - /** - * Number of transactions in the block (filter: eq) - */ - tx_count_eq?: number; - /** - * Number of transactions in the block (filter: ne) - */ - tx_count_ne?: number; - /** - * Number of transactions in the block (filter: lt) - */ - tx_count_lt?: number; - /** - * Number of transactions in the block (filter: lte) - */ - tx_count_lte?: number; - /** - * Number of transactions in the block (filter: gt) - */ - tx_count_gt?: number; - /** - * Number of transactions in the block (filter: gte) - */ - tx_count_gte?: number; - /** - * Number of transactions in the block (filter: between_min) - */ - tx_count_between_min?: number; - /** - * Number of transactions in the block (filter: between_max_value) - */ - tx_count_between_max_value?: number; - /** - * Number of transactions in the block (filter: in_values) (comma-separated list) - */ - tx_count_in_values?: string; - /** - * Number of transactions in the block (filter: not_in_values) (comma-separated list) - */ - tx_count_not_in_values?: string; - /** - * Number of blobs in the block (filter: eq) - */ - blob_count_eq?: number; - /** - * Number of blobs in the block (filter: ne) - */ - blob_count_ne?: number; - /** - * Number of blobs in the block (filter: lt) - */ - blob_count_lt?: number; - /** - * Number of blobs in the block (filter: lte) - */ - blob_count_lte?: number; - /** - * Number of blobs in the block (filter: gt) - */ - blob_count_gt?: number; - /** - * Number of blobs in the block (filter: gte) - */ - blob_count_gte?: number; - /** - * Number of blobs in the block (filter: between_min) - */ - blob_count_between_min?: number; - /** - * Number of blobs in the block (filter: between_max_value) - */ - blob_count_between_max_value?: number; - /** - * Number of blobs in the block (filter: in_values) (comma-separated list) - */ - blob_count_in_values?: string; - /** - * Number of blobs in the block (filter: not_in_values) (comma-separated list) - */ - blob_count_not_in_values?: string; - /** - * Number of observations for this EL client/status (filter: eq) - */ - observation_count_eq?: number; - /** - * Number of observations for this EL client/status (filter: ne) - */ - observation_count_ne?: number; - /** - * Number of observations for this EL client/status (filter: lt) - */ - observation_count_lt?: number; - /** - * Number of observations for this EL client/status (filter: lte) - */ - observation_count_lte?: number; - /** - * Number of observations for this EL client/status (filter: gt) - */ - observation_count_gt?: number; - /** - * Number of observations for this EL client/status (filter: gte) - */ - observation_count_gte?: number; - /** - * Number of observations for this EL client/status (filter: between_min) - */ - observation_count_between_min?: number; - /** - * Number of observations for this EL client/status (filter: between_max_value) - */ - observation_count_between_max_value?: number; - /** - * Number of observations for this EL client/status (filter: in_values) (comma-separated list) - */ - observation_count_in_values?: string; - /** - * Number of observations for this EL client/status (filter: not_in_values) (comma-separated list) - */ - observation_count_not_in_values?: string; - /** - * Number of unique nodes with this EL client/status (filter: eq) - */ - unique_node_count_eq?: number; - /** - * Number of unique nodes with this EL client/status (filter: ne) - */ - unique_node_count_ne?: number; - /** - * Number of unique nodes with this EL client/status (filter: lt) - */ - unique_node_count_lt?: number; - /** - * Number of unique nodes with this EL client/status (filter: lte) - */ - unique_node_count_lte?: number; - /** - * Number of unique nodes with this EL client/status (filter: gt) - */ - unique_node_count_gt?: number; - /** - * Number of unique nodes with this EL client/status (filter: gte) - */ - unique_node_count_gte?: number; - /** - * Number of unique nodes with this EL client/status (filter: between_min) - */ - unique_node_count_between_min?: number; - /** - * Number of unique nodes with this EL client/status (filter: between_max_value) - */ - unique_node_count_between_max_value?: number; - /** - * Number of unique nodes with this EL client/status (filter: in_values) (comma-separated list) - */ - unique_node_count_in_values?: string; - /** - * Number of unique nodes with this EL client/status (filter: not_in_values) (comma-separated list) - */ - unique_node_count_not_in_values?: string; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: eq) - */ - avg_duration_ms_eq?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: ne) - */ - avg_duration_ms_ne?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: lt) - */ - avg_duration_ms_lt?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: lte) - */ - avg_duration_ms_lte?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: gt) - */ - avg_duration_ms_gt?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: gte) - */ - avg_duration_ms_gte?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: between_min) - */ - avg_duration_ms_between_min?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: between_max_value) - */ - avg_duration_ms_between_max_value?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) - */ - avg_duration_ms_in_values?: string; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - avg_duration_ms_not_in_values?: string; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: eq) - */ - median_duration_ms_eq?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: ne) - */ - median_duration_ms_ne?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: lt) - */ - median_duration_ms_lt?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: lte) - */ - median_duration_ms_lte?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: gt) - */ - median_duration_ms_gt?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: gte) - */ - median_duration_ms_gte?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: between_min) - */ - median_duration_ms_between_min?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: between_max_value) - */ - median_duration_ms_between_max_value?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) - */ - median_duration_ms_in_values?: string; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - median_duration_ms_not_in_values?: string; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: eq) - */ - min_duration_ms_eq?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: ne) - */ - min_duration_ms_ne?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: lt) - */ - min_duration_ms_lt?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: lte) - */ - min_duration_ms_lte?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: gt) - */ - min_duration_ms_gt?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: gte) - */ - min_duration_ms_gte?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: between_min) - */ - min_duration_ms_between_min?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: between_max_value) - */ - min_duration_ms_between_max_value?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) - */ - min_duration_ms_in_values?: string; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - min_duration_ms_not_in_values?: string; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: eq) - */ - max_duration_ms_eq?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: ne) - */ - max_duration_ms_ne?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: lt) - */ - max_duration_ms_lt?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: lte) - */ - max_duration_ms_lte?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: gt) - */ - max_duration_ms_gt?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: gte) - */ - max_duration_ms_gte?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: between_min) - */ - max_duration_ms_between_min?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: between_max_value) - */ - max_duration_ms_between_max_value?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) - */ - max_duration_ms_in_values?: string; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - max_duration_ms_not_in_values?: string; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: eq) - */ - p95_duration_ms_eq?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: ne) - */ - p95_duration_ms_ne?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: lt) - */ - p95_duration_ms_lt?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: lte) - */ - p95_duration_ms_lte?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: gt) - */ - p95_duration_ms_gt?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: gte) - */ - p95_duration_ms_gte?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: between_min) - */ - p95_duration_ms_between_min?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: between_max_value) - */ - p95_duration_ms_between_max_value?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) - */ - p95_duration_ms_in_values?: string; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - p95_duration_ms_not_in_values?: string; - /** - * The maximum number of fct_engine_new_payload_by_el_client to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctEngineNewPayloadByElClient` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_engine_new_payload_by_el_client'; -}; - -export type FctEngineNewPayloadByElClientServiceListErrors = { + memory_words_sum_after_gte?: number; /** - * Default error response + * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: between_min) */ - default: Status; -}; - -export type FctEngineNewPayloadByElClientServiceListError = FctEngineNewPayloadByElClientServiceListErrors[keyof FctEngineNewPayloadByElClientServiceListErrors]; - -export type FctEngineNewPayloadByElClientServiceListResponses = { + memory_words_sum_after_between_min?: number; /** - * OK + * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: between_max_value) */ - 200: ListFctEngineNewPayloadByElClientResponse; -}; - -export type FctEngineNewPayloadByElClientServiceListResponse = FctEngineNewPayloadByElClientServiceListResponses[keyof FctEngineNewPayloadByElClientServiceListResponses]; - -export type FctEngineNewPayloadByElClientServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_engine_new_payload_by_el_client/{slot_start_date_time}'; -}; - -export type FctEngineNewPayloadByElClientServiceGetErrors = { + memory_words_sum_after_between_max_value?: number; /** - * Default error response + * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctEngineNewPayloadByElClientServiceGetError = FctEngineNewPayloadByElClientServiceGetErrors[keyof FctEngineNewPayloadByElClientServiceGetErrors]; - -export type FctEngineNewPayloadByElClientServiceGetResponses = { + memory_words_sum_after_in_values?: string; /** - * OK + * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: not_in_values) (comma-separated list) */ - 200: GetFctEngineNewPayloadByElClientResponse; -}; - -export type FctEngineNewPayloadByElClientServiceGetResponse = FctEngineNewPayloadByElClientServiceGetResponses[keyof FctEngineNewPayloadByElClientServiceGetResponses]; - -export type FctEngineNewPayloadByElClientHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) - */ - meta_execution_implementation_eq?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) - */ - meta_execution_implementation_ne?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) - */ - meta_execution_implementation_contains?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) - */ - meta_execution_implementation_starts_with?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) - */ - meta_execution_implementation_ends_with?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: like) - */ - meta_execution_implementation_like?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) - */ - meta_execution_implementation_not_like?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) - */ - meta_execution_implementation_in_values?: string; - /** - * Execution client implementation (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) - */ - meta_execution_implementation_not_in_values?: string; - /** - * Execution client version string (filter: eq) - */ - meta_execution_version_eq?: string; - /** - * Execution client version string (filter: ne) - */ - meta_execution_version_ne?: string; - /** - * Execution client version string (filter: contains) - */ - meta_execution_version_contains?: string; - /** - * Execution client version string (filter: starts_with) - */ - meta_execution_version_starts_with?: string; - /** - * Execution client version string (filter: ends_with) - */ - meta_execution_version_ends_with?: string; - /** - * Execution client version string (filter: like) - */ - meta_execution_version_like?: string; - /** - * Execution client version string (filter: not_like) - */ - meta_execution_version_not_like?: string; - /** - * Execution client version string (filter: in_values) (comma-separated list) - */ - meta_execution_version_in_values?: string; - /** - * Execution client version string (filter: not_in_values) (comma-separated list) - */ - meta_execution_version_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of unique slots in this hour (filter: eq) - */ - slot_count_eq?: number; - /** - * Number of unique slots in this hour (filter: ne) - */ - slot_count_ne?: number; - /** - * Number of unique slots in this hour (filter: lt) - */ - slot_count_lt?: number; - /** - * Number of unique slots in this hour (filter: lte) - */ - slot_count_lte?: number; - /** - * Number of unique slots in this hour (filter: gt) - */ - slot_count_gt?: number; - /** - * Number of unique slots in this hour (filter: gte) - */ - slot_count_gte?: number; - /** - * Number of unique slots in this hour (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Number of unique slots in this hour (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Number of unique slots in this hour (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Number of unique slots in this hour (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * Total number of observations for this client in this hour (filter: eq) - */ - observation_count_eq?: number; - /** - * Total number of observations for this client in this hour (filter: ne) - */ - observation_count_ne?: number; - /** - * Total number of observations for this client in this hour (filter: lt) - */ - observation_count_lt?: number; - /** - * Total number of observations for this client in this hour (filter: lte) - */ - observation_count_lte?: number; - /** - * Total number of observations for this client in this hour (filter: gt) - */ - observation_count_gt?: number; - /** - * Total number of observations for this client in this hour (filter: gte) - */ - observation_count_gte?: number; - /** - * Total number of observations for this client in this hour (filter: between_min) - */ - observation_count_between_min?: number; - /** - * Total number of observations for this client in this hour (filter: between_max_value) - */ - observation_count_between_max_value?: number; - /** - * Total number of observations for this client in this hour (filter: in_values) (comma-separated list) - */ - observation_count_in_values?: string; - /** - * Total number of observations for this client in this hour (filter: not_in_values) (comma-separated list) - */ - observation_count_not_in_values?: string; - /** - * Number of unique nodes reporting for this client (filter: eq) - */ - unique_node_count_eq?: number; - /** - * Number of unique nodes reporting for this client (filter: ne) - */ - unique_node_count_ne?: number; - /** - * Number of unique nodes reporting for this client (filter: lt) - */ - unique_node_count_lt?: number; - /** - * Number of unique nodes reporting for this client (filter: lte) - */ - unique_node_count_lte?: number; - /** - * Number of unique nodes reporting for this client (filter: gt) - */ - unique_node_count_gt?: number; - /** - * Number of unique nodes reporting for this client (filter: gte) - */ - unique_node_count_gte?: number; - /** - * Number of unique nodes reporting for this client (filter: between_min) - */ - unique_node_count_between_min?: number; - /** - * Number of unique nodes reporting for this client (filter: between_max_value) - */ - unique_node_count_between_max_value?: number; - /** - * Number of unique nodes reporting for this client (filter: in_values) (comma-separated list) - */ - unique_node_count_in_values?: string; - /** - * Number of unique nodes reporting for this client (filter: not_in_values) (comma-separated list) - */ - unique_node_count_not_in_values?: string; - /** - * Number of observations with VALID status (filter: eq) - */ - valid_count_eq?: number; - /** - * Number of observations with VALID status (filter: ne) - */ - valid_count_ne?: number; - /** - * Number of observations with VALID status (filter: lt) - */ - valid_count_lt?: number; - /** - * Number of observations with VALID status (filter: lte) - */ - valid_count_lte?: number; - /** - * Number of observations with VALID status (filter: gt) - */ - valid_count_gt?: number; - /** - * Number of observations with VALID status (filter: gte) - */ - valid_count_gte?: number; - /** - * Number of observations with VALID status (filter: between_min) - */ - valid_count_between_min?: number; - /** - * Number of observations with VALID status (filter: between_max_value) - */ - valid_count_between_max_value?: number; - /** - * Number of observations with VALID status (filter: in_values) (comma-separated list) - */ - valid_count_in_values?: string; - /** - * Number of observations with VALID status (filter: not_in_values) (comma-separated list) - */ - valid_count_not_in_values?: string; - /** - * Number of observations with INVALID status (filter: eq) - */ - invalid_count_eq?: number; - /** - * Number of observations with INVALID status (filter: ne) - */ - invalid_count_ne?: number; - /** - * Number of observations with INVALID status (filter: lt) - */ - invalid_count_lt?: number; - /** - * Number of observations with INVALID status (filter: lte) - */ - invalid_count_lte?: number; - /** - * Number of observations with INVALID status (filter: gt) - */ - invalid_count_gt?: number; - /** - * Number of observations with INVALID status (filter: gte) - */ - invalid_count_gte?: number; - /** - * Number of observations with INVALID status (filter: between_min) - */ - invalid_count_between_min?: number; - /** - * Number of observations with INVALID status (filter: between_max_value) - */ - invalid_count_between_max_value?: number; - /** - * Number of observations with INVALID status (filter: in_values) (comma-separated list) - */ - invalid_count_in_values?: string; - /** - * Number of observations with INVALID status (filter: not_in_values) (comma-separated list) - */ - invalid_count_not_in_values?: string; - /** - * Number of observations with SYNCING status (filter: eq) - */ - syncing_count_eq?: number; - /** - * Number of observations with SYNCING status (filter: ne) - */ - syncing_count_ne?: number; - /** - * Number of observations with SYNCING status (filter: lt) - */ - syncing_count_lt?: number; - /** - * Number of observations with SYNCING status (filter: lte) - */ - syncing_count_lte?: number; - /** - * Number of observations with SYNCING status (filter: gt) - */ - syncing_count_gt?: number; - /** - * Number of observations with SYNCING status (filter: gte) - */ - syncing_count_gte?: number; - /** - * Number of observations with SYNCING status (filter: between_min) - */ - syncing_count_between_min?: number; - /** - * Number of observations with SYNCING status (filter: between_max_value) - */ - syncing_count_between_max_value?: number; - /** - * Number of observations with SYNCING status (filter: in_values) (comma-separated list) - */ - syncing_count_in_values?: string; - /** - * Number of observations with SYNCING status (filter: not_in_values) (comma-separated list) - */ - syncing_count_not_in_values?: string; - /** - * Number of observations with ACCEPTED status (filter: eq) - */ - accepted_count_eq?: number; - /** - * Number of observations with ACCEPTED status (filter: ne) - */ - accepted_count_ne?: number; - /** - * Number of observations with ACCEPTED status (filter: lt) - */ - accepted_count_lt?: number; - /** - * Number of observations with ACCEPTED status (filter: lte) - */ - accepted_count_lte?: number; - /** - * Number of observations with ACCEPTED status (filter: gt) - */ - accepted_count_gt?: number; - /** - * Number of observations with ACCEPTED status (filter: gte) - */ - accepted_count_gte?: number; - /** - * Number of observations with ACCEPTED status (filter: between_min) - */ - accepted_count_between_min?: number; - /** - * Number of observations with ACCEPTED status (filter: between_max_value) - */ - accepted_count_between_max_value?: number; - /** - * Number of observations with ACCEPTED status (filter: in_values) (comma-separated list) - */ - accepted_count_in_values?: string; - /** - * Number of observations with ACCEPTED status (filter: not_in_values) (comma-separated list) - */ - accepted_count_not_in_values?: string; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: eq) - */ - avg_duration_ms_eq?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: ne) - */ - avg_duration_ms_ne?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: lt) - */ - avg_duration_ms_lt?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: lte) - */ - avg_duration_ms_lte?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: gt) - */ - avg_duration_ms_gt?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: gte) - */ - avg_duration_ms_gte?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: between_min) - */ - avg_duration_ms_between_min?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: between_max_value) - */ - avg_duration_ms_between_max_value?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) - */ - avg_duration_ms_in_values?: string; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - avg_duration_ms_not_in_values?: string; - /** - * 50th percentile (median) duration in milliseconds (filter: eq) - */ - p50_duration_ms_eq?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: ne) - */ - p50_duration_ms_ne?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: lt) - */ - p50_duration_ms_lt?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: lte) - */ - p50_duration_ms_lte?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: gt) - */ - p50_duration_ms_gt?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: gte) - */ - p50_duration_ms_gte?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: between_min) - */ - p50_duration_ms_between_min?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: between_max_value) - */ - p50_duration_ms_between_max_value?: number; - /** - * 50th percentile (median) duration in milliseconds (filter: in_values) (comma-separated list) - */ - p50_duration_ms_in_values?: string; - /** - * 50th percentile (median) duration in milliseconds (filter: not_in_values) (comma-separated list) - */ - p50_duration_ms_not_in_values?: string; - /** - * 95th percentile duration in milliseconds (filter: eq) - */ - p95_duration_ms_eq?: number; - /** - * 95th percentile duration in milliseconds (filter: ne) - */ - p95_duration_ms_ne?: number; - /** - * 95th percentile duration in milliseconds (filter: lt) - */ - p95_duration_ms_lt?: number; - /** - * 95th percentile duration in milliseconds (filter: lte) - */ - p95_duration_ms_lte?: number; - /** - * 95th percentile duration in milliseconds (filter: gt) - */ - p95_duration_ms_gt?: number; - /** - * 95th percentile duration in milliseconds (filter: gte) - */ - p95_duration_ms_gte?: number; - /** - * 95th percentile duration in milliseconds (filter: between_min) - */ - p95_duration_ms_between_min?: number; - /** - * 95th percentile duration in milliseconds (filter: between_max_value) - */ - p95_duration_ms_between_max_value?: number; - /** - * 95th percentile duration in milliseconds (filter: in_values) (comma-separated list) - */ - p95_duration_ms_in_values?: string; - /** - * 95th percentile duration in milliseconds (filter: not_in_values) (comma-separated list) - */ - p95_duration_ms_not_in_values?: string; - /** - * Minimum duration in milliseconds (filter: eq) - */ - min_duration_ms_eq?: number; - /** - * Minimum duration in milliseconds (filter: ne) - */ - min_duration_ms_ne?: number; - /** - * Minimum duration in milliseconds (filter: lt) - */ - min_duration_ms_lt?: number; - /** - * Minimum duration in milliseconds (filter: lte) - */ - min_duration_ms_lte?: number; - /** - * Minimum duration in milliseconds (filter: gt) - */ - min_duration_ms_gt?: number; - /** - * Minimum duration in milliseconds (filter: gte) - */ - min_duration_ms_gte?: number; - /** - * Minimum duration in milliseconds (filter: between_min) - */ - min_duration_ms_between_min?: number; - /** - * Minimum duration in milliseconds (filter: between_max_value) - */ - min_duration_ms_between_max_value?: number; - /** - * Minimum duration in milliseconds (filter: in_values) (comma-separated list) - */ - min_duration_ms_in_values?: string; - /** - * Minimum duration in milliseconds (filter: not_in_values) (comma-separated list) - */ - min_duration_ms_not_in_values?: string; - /** - * Maximum duration in milliseconds (filter: eq) - */ - max_duration_ms_eq?: number; - /** - * Maximum duration in milliseconds (filter: ne) - */ - max_duration_ms_ne?: number; - /** - * Maximum duration in milliseconds (filter: lt) - */ - max_duration_ms_lt?: number; - /** - * Maximum duration in milliseconds (filter: lte) - */ - max_duration_ms_lte?: number; - /** - * Maximum duration in milliseconds (filter: gt) - */ - max_duration_ms_gt?: number; - /** - * Maximum duration in milliseconds (filter: gte) - */ - max_duration_ms_gte?: number; - /** - * Maximum duration in milliseconds (filter: between_min) - */ - max_duration_ms_between_min?: number; - /** - * Maximum duration in milliseconds (filter: between_max_value) - */ - max_duration_ms_between_max_value?: number; - /** - * Maximum duration in milliseconds (filter: in_values) (comma-separated list) - */ - max_duration_ms_in_values?: string; - /** - * Maximum duration in milliseconds (filter: not_in_values) (comma-separated list) - */ - max_duration_ms_not_in_values?: string; - /** - * Average gas used per block (VALID status only) (filter: eq) - */ - avg_gas_used_eq?: number; - /** - * Average gas used per block (VALID status only) (filter: ne) - */ - avg_gas_used_ne?: number; - /** - * Average gas used per block (VALID status only) (filter: lt) - */ - avg_gas_used_lt?: number; - /** - * Average gas used per block (VALID status only) (filter: lte) - */ - avg_gas_used_lte?: number; - /** - * Average gas used per block (VALID status only) (filter: gt) - */ - avg_gas_used_gt?: number; - /** - * Average gas used per block (VALID status only) (filter: gte) - */ - avg_gas_used_gte?: number; - /** - * Average gas used per block (VALID status only) (filter: between_min) - */ - avg_gas_used_between_min?: number; - /** - * Average gas used per block (VALID status only) (filter: between_max_value) - */ - avg_gas_used_between_max_value?: number; - /** - * Average gas used per block (VALID status only) (filter: in_values) (comma-separated list) - */ - avg_gas_used_in_values?: string; - /** - * Average gas used per block (VALID status only) (filter: not_in_values) (comma-separated list) - */ - avg_gas_used_not_in_values?: string; - /** - * Average gas limit per block (VALID status only) (filter: eq) - */ - avg_gas_limit_eq?: number; - /** - * Average gas limit per block (VALID status only) (filter: ne) - */ - avg_gas_limit_ne?: number; - /** - * Average gas limit per block (VALID status only) (filter: lt) - */ - avg_gas_limit_lt?: number; - /** - * Average gas limit per block (VALID status only) (filter: lte) - */ - avg_gas_limit_lte?: number; - /** - * Average gas limit per block (VALID status only) (filter: gt) - */ - avg_gas_limit_gt?: number; - /** - * Average gas limit per block (VALID status only) (filter: gte) - */ - avg_gas_limit_gte?: number; - /** - * Average gas limit per block (VALID status only) (filter: between_min) - */ - avg_gas_limit_between_min?: number; - /** - * Average gas limit per block (VALID status only) (filter: between_max_value) - */ - avg_gas_limit_between_max_value?: number; - /** - * Average gas limit per block (VALID status only) (filter: in_values) (comma-separated list) - */ - avg_gas_limit_in_values?: string; - /** - * Average gas limit per block (VALID status only) (filter: not_in_values) (comma-separated list) - */ - avg_gas_limit_not_in_values?: string; - /** - * Filter avg_tx_count using value - */ - avg_tx_count_value?: number; - /** - * Filter avg_blob_count using value - */ - avg_blob_count_value?: number; - /** - * The maximum number of fct_engine_new_payload_by_el_client_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctEngineNewPayloadByElClientHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_engine_new_payload_by_el_client_hourly'; -}; - -export type FctEngineNewPayloadByElClientHourlyServiceListErrors = { + memory_words_sum_after_not_in_values?: string; /** - * Default error response + * SUM(words_before²). (filter: eq) */ - default: Status; -}; - -export type FctEngineNewPayloadByElClientHourlyServiceListError = FctEngineNewPayloadByElClientHourlyServiceListErrors[keyof FctEngineNewPayloadByElClientHourlyServiceListErrors]; - -export type FctEngineNewPayloadByElClientHourlyServiceListResponses = { + memory_words_sq_sum_before_eq?: number; /** - * OK + * SUM(words_before²). (filter: ne) */ - 200: ListFctEngineNewPayloadByElClientHourlyResponse; -}; - -export type FctEngineNewPayloadByElClientHourlyServiceListResponse = FctEngineNewPayloadByElClientHourlyServiceListResponses[keyof FctEngineNewPayloadByElClientHourlyServiceListResponses]; - -export type FctEngineNewPayloadByElClientHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_engine_new_payload_by_el_client_hourly/{hour_start_date_time}'; -}; - -export type FctEngineNewPayloadByElClientHourlyServiceGetErrors = { + memory_words_sq_sum_before_ne?: number; /** - * Default error response + * SUM(words_before²). (filter: lt) */ - default: Status; -}; - -export type FctEngineNewPayloadByElClientHourlyServiceGetError = FctEngineNewPayloadByElClientHourlyServiceGetErrors[keyof FctEngineNewPayloadByElClientHourlyServiceGetErrors]; - -export type FctEngineNewPayloadByElClientHourlyServiceGetResponses = { + memory_words_sq_sum_before_lt?: number; /** - * OK + * SUM(words_before²). (filter: lte) */ - 200: GetFctEngineNewPayloadByElClientHourlyResponse; -}; - -export type FctEngineNewPayloadByElClientHourlyServiceGetResponse = FctEngineNewPayloadByElClientHourlyServiceGetResponses[keyof FctEngineNewPayloadByElClientHourlyServiceGetResponses]; - -export type FctEngineNewPayloadBySlotServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: eq) - */ - block_hash_eq?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: ne) - */ - block_hash_ne?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: contains) - */ - block_hash_contains?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: starts_with) - */ - block_hash_starts_with?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: ends_with) - */ - block_hash_ends_with?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: like) - */ - block_hash_like?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: not_like) - */ - block_hash_not_like?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_hash_in_values?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_hash_not_in_values?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: eq) - */ - status_eq?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: ne) - */ - status_ne?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: contains) - */ - status_contains?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: starts_with) - */ - status_starts_with?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: ends_with) - */ - status_ends_with?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: like) - */ - status_like?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: not_like) - */ - status_not_like?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number of the beacon block containing the payload (filter: eq) - */ - slot_eq?: number; - /** - * Slot number of the beacon block containing the payload (filter: ne) - */ - slot_ne?: number; - /** - * Slot number of the beacon block containing the payload (filter: lt) - */ - slot_lt?: number; - /** - * Slot number of the beacon block containing the payload (filter: lte) - */ - slot_lte?: number; - /** - * Slot number of the beacon block containing the payload (filter: gt) - */ - slot_gt?: number; - /** - * Slot number of the beacon block containing the payload (filter: gte) - */ - slot_gte?: number; - /** - * Slot number of the beacon block containing the payload (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number of the beacon block containing the payload (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number of the beacon block containing the payload (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number of the beacon block containing the payload (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) - */ - block_root_eq?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) - */ - block_root_ne?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) - */ - block_root_contains?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: like) - */ - block_root_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) - */ - block_root_not_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Execution block number (filter: eq) - */ - block_number_eq?: number; - /** - * Execution block number (filter: ne) - */ - block_number_ne?: number; - /** - * Execution block number (filter: lt) - */ - block_number_lt?: number; - /** - * Execution block number (filter: lte) - */ - block_number_lte?: number; - /** - * Execution block number (filter: gt) - */ - block_number_gt?: number; - /** - * Execution block number (filter: gte) - */ - block_number_gte?: number; - /** - * Execution block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * Execution block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * Execution block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * Execution block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Validator index of the block proposer (filter: eq) - */ - proposer_index_eq?: number; - /** - * Validator index of the block proposer (filter: ne) - */ - proposer_index_ne?: number; - /** - * Validator index of the block proposer (filter: lt) - */ - proposer_index_lt?: number; - /** - * Validator index of the block proposer (filter: lte) - */ - proposer_index_lte?: number; - /** - * Validator index of the block proposer (filter: gt) - */ - proposer_index_gt?: number; - /** - * Validator index of the block proposer (filter: gte) - */ - proposer_index_gte?: number; - /** - * Validator index of the block proposer (filter: between_min) - */ - proposer_index_between_min?: number; - /** - * Validator index of the block proposer (filter: between_max_value) - */ - proposer_index_between_max_value?: number; - /** - * Validator index of the block proposer (filter: in_values) (comma-separated list) - */ - proposer_index_in_values?: string; - /** - * Validator index of the block proposer (filter: not_in_values) (comma-separated list) - */ - proposer_index_not_in_values?: string; - /** - * Total gas used by all transactions in the block (filter: eq) - */ - gas_used_eq?: number; - /** - * Total gas used by all transactions in the block (filter: ne) - */ - gas_used_ne?: number; - /** - * Total gas used by all transactions in the block (filter: lt) - */ - gas_used_lt?: number; - /** - * Total gas used by all transactions in the block (filter: lte) - */ - gas_used_lte?: number; - /** - * Total gas used by all transactions in the block (filter: gt) - */ - gas_used_gt?: number; - /** - * Total gas used by all transactions in the block (filter: gte) - */ - gas_used_gte?: number; - /** - * Total gas used by all transactions in the block (filter: between_min) - */ - gas_used_between_min?: number; - /** - * Total gas used by all transactions in the block (filter: between_max_value) - */ - gas_used_between_max_value?: number; - /** - * Total gas used by all transactions in the block (filter: in_values) (comma-separated list) - */ - gas_used_in_values?: string; - /** - * Total gas used by all transactions in the block (filter: not_in_values) (comma-separated list) - */ - gas_used_not_in_values?: string; - /** - * Gas limit of the block (filter: eq) - */ - gas_limit_eq?: number; - /** - * Gas limit of the block (filter: ne) - */ - gas_limit_ne?: number; - /** - * Gas limit of the block (filter: lt) - */ - gas_limit_lt?: number; - /** - * Gas limit of the block (filter: lte) - */ - gas_limit_lte?: number; - /** - * Gas limit of the block (filter: gt) - */ - gas_limit_gt?: number; - /** - * Gas limit of the block (filter: gte) - */ - gas_limit_gte?: number; - /** - * Gas limit of the block (filter: between_min) - */ - gas_limit_between_min?: number; - /** - * Gas limit of the block (filter: between_max_value) - */ - gas_limit_between_max_value?: number; - /** - * Gas limit of the block (filter: in_values) (comma-separated list) - */ - gas_limit_in_values?: string; - /** - * Gas limit of the block (filter: not_in_values) (comma-separated list) - */ - gas_limit_not_in_values?: string; - /** - * Number of transactions in the block (filter: eq) - */ - tx_count_eq?: number; - /** - * Number of transactions in the block (filter: ne) - */ - tx_count_ne?: number; - /** - * Number of transactions in the block (filter: lt) - */ - tx_count_lt?: number; - /** - * Number of transactions in the block (filter: lte) - */ - tx_count_lte?: number; - /** - * Number of transactions in the block (filter: gt) - */ - tx_count_gt?: number; - /** - * Number of transactions in the block (filter: gte) - */ - tx_count_gte?: number; - /** - * Number of transactions in the block (filter: between_min) - */ - tx_count_between_min?: number; - /** - * Number of transactions in the block (filter: between_max_value) - */ - tx_count_between_max_value?: number; - /** - * Number of transactions in the block (filter: in_values) (comma-separated list) - */ - tx_count_in_values?: string; - /** - * Number of transactions in the block (filter: not_in_values) (comma-separated list) - */ - tx_count_not_in_values?: string; - /** - * Number of blobs in the block (filter: eq) - */ - blob_count_eq?: number; - /** - * Number of blobs in the block (filter: ne) - */ - blob_count_ne?: number; - /** - * Number of blobs in the block (filter: lt) - */ - blob_count_lt?: number; - /** - * Number of blobs in the block (filter: lte) - */ - blob_count_lte?: number; - /** - * Number of blobs in the block (filter: gt) - */ - blob_count_gt?: number; - /** - * Number of blobs in the block (filter: gte) - */ - blob_count_gte?: number; - /** - * Number of blobs in the block (filter: between_min) - */ - blob_count_between_min?: number; - /** - * Number of blobs in the block (filter: between_max_value) - */ - blob_count_between_max_value?: number; - /** - * Number of blobs in the block (filter: in_values) (comma-separated list) - */ - blob_count_in_values?: string; - /** - * Number of blobs in the block (filter: not_in_values) (comma-separated list) - */ - blob_count_not_in_values?: string; - /** - * Number of observations for this slot/block/status (filter: eq) - */ - observation_count_eq?: number; - /** - * Number of observations for this slot/block/status (filter: ne) - */ - observation_count_ne?: number; - /** - * Number of observations for this slot/block/status (filter: lt) - */ - observation_count_lt?: number; - /** - * Number of observations for this slot/block/status (filter: lte) - */ - observation_count_lte?: number; - /** - * Number of observations for this slot/block/status (filter: gt) - */ - observation_count_gt?: number; - /** - * Number of observations for this slot/block/status (filter: gte) - */ - observation_count_gte?: number; - /** - * Number of observations for this slot/block/status (filter: between_min) - */ - observation_count_between_min?: number; - /** - * Number of observations for this slot/block/status (filter: between_max_value) - */ - observation_count_between_max_value?: number; - /** - * Number of observations for this slot/block/status (filter: in_values) (comma-separated list) - */ - observation_count_in_values?: string; - /** - * Number of observations for this slot/block/status (filter: not_in_values) (comma-separated list) - */ - observation_count_not_in_values?: string; - /** - * Number of unique nodes that observed this block with this status (filter: eq) - */ - unique_node_count_eq?: number; - /** - * Number of unique nodes that observed this block with this status (filter: ne) - */ - unique_node_count_ne?: number; - /** - * Number of unique nodes that observed this block with this status (filter: lt) - */ - unique_node_count_lt?: number; - /** - * Number of unique nodes that observed this block with this status (filter: lte) - */ - unique_node_count_lte?: number; - /** - * Number of unique nodes that observed this block with this status (filter: gt) - */ - unique_node_count_gt?: number; - /** - * Number of unique nodes that observed this block with this status (filter: gte) - */ - unique_node_count_gte?: number; - /** - * Number of unique nodes that observed this block with this status (filter: between_min) - */ - unique_node_count_between_min?: number; - /** - * Number of unique nodes that observed this block with this status (filter: between_max_value) - */ - unique_node_count_between_max_value?: number; - /** - * Number of unique nodes that observed this block with this status (filter: in_values) (comma-separated list) - */ - unique_node_count_in_values?: string; - /** - * Number of unique nodes that observed this block with this status (filter: not_in_values) (comma-separated list) - */ - unique_node_count_not_in_values?: string; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: eq) - */ - avg_duration_ms_eq?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: ne) - */ - avg_duration_ms_ne?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: lt) - */ - avg_duration_ms_lt?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: lte) - */ - avg_duration_ms_lte?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: gt) - */ - avg_duration_ms_gt?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: gte) - */ - avg_duration_ms_gte?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: between_min) - */ - avg_duration_ms_between_min?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: between_max_value) - */ - avg_duration_ms_between_max_value?: number; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) - */ - avg_duration_ms_in_values?: string; - /** - * Average duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - avg_duration_ms_not_in_values?: string; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: eq) - */ - median_duration_ms_eq?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: ne) - */ - median_duration_ms_ne?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: lt) - */ - median_duration_ms_lt?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: lte) - */ - median_duration_ms_lte?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: gt) - */ - median_duration_ms_gt?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: gte) - */ - median_duration_ms_gte?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: between_min) - */ - median_duration_ms_between_min?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: between_max_value) - */ - median_duration_ms_between_max_value?: number; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) - */ - median_duration_ms_in_values?: string; - /** - * Median duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - median_duration_ms_not_in_values?: string; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: eq) - */ - min_duration_ms_eq?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: ne) - */ - min_duration_ms_ne?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: lt) - */ - min_duration_ms_lt?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: lte) - */ - min_duration_ms_lte?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: gt) - */ - min_duration_ms_gt?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: gte) - */ - min_duration_ms_gte?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: between_min) - */ - min_duration_ms_between_min?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: between_max_value) - */ - min_duration_ms_between_max_value?: number; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) - */ - min_duration_ms_in_values?: string; - /** - * Minimum duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - min_duration_ms_not_in_values?: string; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: eq) - */ - max_duration_ms_eq?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: ne) - */ - max_duration_ms_ne?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: lt) - */ - max_duration_ms_lt?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: lte) - */ - max_duration_ms_lte?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: gt) - */ - max_duration_ms_gt?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: gte) - */ - max_duration_ms_gte?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: between_min) - */ - max_duration_ms_between_min?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: between_max_value) - */ - max_duration_ms_between_max_value?: number; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) - */ - max_duration_ms_in_values?: string; - /** - * Maximum duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - max_duration_ms_not_in_values?: string; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: eq) - */ - p95_duration_ms_eq?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: ne) - */ - p95_duration_ms_ne?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: lt) - */ - p95_duration_ms_lt?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: lte) - */ - p95_duration_ms_lte?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: gt) - */ - p95_duration_ms_gt?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: gte) - */ - p95_duration_ms_gte?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: between_min) - */ - p95_duration_ms_between_min?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: between_max_value) - */ - p95_duration_ms_between_max_value?: number; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) - */ - p95_duration_ms_in_values?: string; - /** - * 95th percentile duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - p95_duration_ms_not_in_values?: string; - /** - * 99th percentile duration of engine_newPayload calls in milliseconds (filter: eq) - */ - p99_duration_ms_eq?: number; - /** - * 99th percentile duration of engine_newPayload calls in milliseconds (filter: ne) - */ - p99_duration_ms_ne?: number; - /** - * 99th percentile duration of engine_newPayload calls in milliseconds (filter: lt) - */ - p99_duration_ms_lt?: number; - /** - * 99th percentile duration of engine_newPayload calls in milliseconds (filter: lte) - */ - p99_duration_ms_lte?: number; - /** - * 99th percentile duration of engine_newPayload calls in milliseconds (filter: gt) - */ - p99_duration_ms_gt?: number; - /** - * 99th percentile duration of engine_newPayload calls in milliseconds (filter: gte) - */ - p99_duration_ms_gte?: number; - /** - * 99th percentile duration of engine_newPayload calls in milliseconds (filter: between_min) - */ - p99_duration_ms_between_min?: number; - /** - * 99th percentile duration of engine_newPayload calls in milliseconds (filter: between_max_value) - */ - p99_duration_ms_between_max_value?: number; - /** - * 99th percentile duration of engine_newPayload calls in milliseconds (filter: in_values) (comma-separated list) - */ - p99_duration_ms_in_values?: string; - /** - * 99th percentile duration of engine_newPayload calls in milliseconds (filter: not_in_values) (comma-separated list) - */ - p99_duration_ms_not_in_values?: string; - /** - * Number of unique CL client implementations observing this block (filter: eq) - */ - unique_cl_implementation_count_eq?: number; - /** - * Number of unique CL client implementations observing this block (filter: ne) - */ - unique_cl_implementation_count_ne?: number; - /** - * Number of unique CL client implementations observing this block (filter: lt) - */ - unique_cl_implementation_count_lt?: number; - /** - * Number of unique CL client implementations observing this block (filter: lte) - */ - unique_cl_implementation_count_lte?: number; - /** - * Number of unique CL client implementations observing this block (filter: gt) - */ - unique_cl_implementation_count_gt?: number; - /** - * Number of unique CL client implementations observing this block (filter: gte) - */ - unique_cl_implementation_count_gte?: number; - /** - * Number of unique CL client implementations observing this block (filter: between_min) - */ - unique_cl_implementation_count_between_min?: number; - /** - * Number of unique CL client implementations observing this block (filter: between_max_value) - */ - unique_cl_implementation_count_between_max_value?: number; - /** - * Number of unique CL client implementations observing this block (filter: in_values) (comma-separated list) - */ - unique_cl_implementation_count_in_values?: string; - /** - * Number of unique CL client implementations observing this block (filter: not_in_values) (comma-separated list) - */ - unique_cl_implementation_count_not_in_values?: string; - /** - * Number of unique EL client implementations observing this block (filter: eq) - */ - unique_el_implementation_count_eq?: number; - /** - * Number of unique EL client implementations observing this block (filter: ne) - */ - unique_el_implementation_count_ne?: number; - /** - * Number of unique EL client implementations observing this block (filter: lt) - */ - unique_el_implementation_count_lt?: number; - /** - * Number of unique EL client implementations observing this block (filter: lte) - */ - unique_el_implementation_count_lte?: number; - /** - * Number of unique EL client implementations observing this block (filter: gt) - */ - unique_el_implementation_count_gt?: number; - /** - * Number of unique EL client implementations observing this block (filter: gte) - */ - unique_el_implementation_count_gte?: number; - /** - * Number of unique EL client implementations observing this block (filter: between_min) - */ - unique_el_implementation_count_between_min?: number; - /** - * Number of unique EL client implementations observing this block (filter: between_max_value) - */ - unique_el_implementation_count_between_max_value?: number; - /** - * Number of unique EL client implementations observing this block (filter: in_values) (comma-separated list) - */ - unique_el_implementation_count_in_values?: string; - /** - * Number of unique EL client implementations observing this block (filter: not_in_values) (comma-separated list) - */ - unique_el_implementation_count_not_in_values?: string; - /** - * The maximum number of fct_engine_new_payload_by_slot to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctEngineNewPayloadBySlot` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_engine_new_payload_by_slot'; -}; - -export type FctEngineNewPayloadBySlotServiceListErrors = { + memory_words_sq_sum_before_lte?: number; /** - * Default error response + * SUM(words_before²). (filter: gt) */ - default: Status; -}; - -export type FctEngineNewPayloadBySlotServiceListError = FctEngineNewPayloadBySlotServiceListErrors[keyof FctEngineNewPayloadBySlotServiceListErrors]; - -export type FctEngineNewPayloadBySlotServiceListResponses = { + memory_words_sq_sum_before_gt?: number; /** - * OK + * SUM(words_before²). (filter: gte) */ - 200: ListFctEngineNewPayloadBySlotResponse; -}; - -export type FctEngineNewPayloadBySlotServiceListResponse = FctEngineNewPayloadBySlotServiceListResponses[keyof FctEngineNewPayloadBySlotServiceListResponses]; - -export type FctEngineNewPayloadBySlotServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_engine_new_payload_by_slot/{slot_start_date_time}'; -}; - -export type FctEngineNewPayloadBySlotServiceGetErrors = { + memory_words_sq_sum_before_gte?: number; /** - * Default error response + * SUM(words_before²). (filter: between_min) */ - default: Status; -}; - -export type FctEngineNewPayloadBySlotServiceGetError = FctEngineNewPayloadBySlotServiceGetErrors[keyof FctEngineNewPayloadBySlotServiceGetErrors]; - -export type FctEngineNewPayloadBySlotServiceGetResponses = { + memory_words_sq_sum_before_between_min?: number; /** - * OK + * SUM(words_before²). (filter: between_max_value) */ - 200: GetFctEngineNewPayloadBySlotResponse; -}; - -export type FctEngineNewPayloadBySlotServiceGetResponse = FctEngineNewPayloadBySlotServiceGetResponses[keyof FctEngineNewPayloadBySlotServiceGetResponses]; - -export type FctEngineNewPayloadDurationChunked50MsServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: eq) - */ - block_hash_eq?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: ne) - */ - block_hash_ne?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: contains) - */ - block_hash_contains?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: starts_with) - */ - block_hash_starts_with?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: ends_with) - */ - block_hash_ends_with?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: like) - */ - block_hash_like?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: not_like) - */ - block_hash_not_like?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_hash_in_values?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_hash_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: eq) - */ - chunk_duration_ms_eq?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: ne) - */ - chunk_duration_ms_ne?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: lt) - */ - chunk_duration_ms_lt?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: lte) - */ - chunk_duration_ms_lte?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: gt) - */ - chunk_duration_ms_gt?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: gte) - */ - chunk_duration_ms_gte?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: between_min) - */ - chunk_duration_ms_between_min?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: between_max_value) - */ - chunk_duration_ms_between_max_value?: number; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: in_values) (comma-separated list) - */ - chunk_duration_ms_in_values?: string; - /** - * Duration bucket in 50ms chunks (0, 50, 100, 150, ...) (filter: not_in_values) (comma-separated list) - */ - chunk_duration_ms_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number of the beacon block containing the payload (filter: eq) - */ - slot_eq?: number; - /** - * Slot number of the beacon block containing the payload (filter: ne) - */ - slot_ne?: number; - /** - * Slot number of the beacon block containing the payload (filter: lt) - */ - slot_lt?: number; - /** - * Slot number of the beacon block containing the payload (filter: lte) - */ - slot_lte?: number; - /** - * Slot number of the beacon block containing the payload (filter: gt) - */ - slot_gt?: number; - /** - * Slot number of the beacon block containing the payload (filter: gte) - */ - slot_gte?: number; - /** - * Slot number of the beacon block containing the payload (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number of the beacon block containing the payload (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number of the beacon block containing the payload (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number of the beacon block containing the payload (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Number of observations in this duration chunk (filter: eq) - */ - observation_count_eq?: number; - /** - * Number of observations in this duration chunk (filter: ne) - */ - observation_count_ne?: number; - /** - * Number of observations in this duration chunk (filter: lt) - */ - observation_count_lt?: number; - /** - * Number of observations in this duration chunk (filter: lte) - */ - observation_count_lte?: number; - /** - * Number of observations in this duration chunk (filter: gt) - */ - observation_count_gt?: number; - /** - * Number of observations in this duration chunk (filter: gte) - */ - observation_count_gte?: number; - /** - * Number of observations in this duration chunk (filter: between_min) - */ - observation_count_between_min?: number; - /** - * Number of observations in this duration chunk (filter: between_max_value) - */ - observation_count_between_max_value?: number; - /** - * Number of observations in this duration chunk (filter: in_values) (comma-separated list) - */ - observation_count_in_values?: string; - /** - * Number of observations in this duration chunk (filter: not_in_values) (comma-separated list) - */ - observation_count_not_in_values?: string; - /** - * Number of VALID status observations in this chunk (filter: eq) - */ - valid_count_eq?: number; - /** - * Number of VALID status observations in this chunk (filter: ne) - */ - valid_count_ne?: number; - /** - * Number of VALID status observations in this chunk (filter: lt) - */ - valid_count_lt?: number; - /** - * Number of VALID status observations in this chunk (filter: lte) - */ - valid_count_lte?: number; - /** - * Number of VALID status observations in this chunk (filter: gt) - */ - valid_count_gt?: number; - /** - * Number of VALID status observations in this chunk (filter: gte) - */ - valid_count_gte?: number; - /** - * Number of VALID status observations in this chunk (filter: between_min) - */ - valid_count_between_min?: number; - /** - * Number of VALID status observations in this chunk (filter: between_max_value) - */ - valid_count_between_max_value?: number; - /** - * Number of VALID status observations in this chunk (filter: in_values) (comma-separated list) - */ - valid_count_in_values?: string; - /** - * Number of VALID status observations in this chunk (filter: not_in_values) (comma-separated list) - */ - valid_count_not_in_values?: string; - /** - * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: eq) - */ - invalid_count_eq?: number; - /** - * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: ne) - */ - invalid_count_ne?: number; - /** - * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: lt) - */ - invalid_count_lt?: number; - /** - * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: lte) - */ - invalid_count_lte?: number; - /** - * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: gt) - */ - invalid_count_gt?: number; - /** - * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: gte) - */ - invalid_count_gte?: number; - /** - * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: between_min) - */ - invalid_count_between_min?: number; - /** - * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: between_max_value) - */ - invalid_count_between_max_value?: number; - /** - * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: in_values) (comma-separated list) - */ - invalid_count_in_values?: string; - /** - * Number of INVALID or INVALID_BLOCK_HASH status observations in this chunk (filter: not_in_values) (comma-separated list) - */ - invalid_count_not_in_values?: string; - /** - * The maximum number of fct_engine_new_payload_duration_chunked_50ms to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctEngineNewPayloadDurationChunked50ms` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_engine_new_payload_duration_chunked_50ms'; -}; - -export type FctEngineNewPayloadDurationChunked50MsServiceListErrors = { + memory_words_sq_sum_before_between_max_value?: number; /** - * Default error response + * SUM(words_before²). (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctEngineNewPayloadDurationChunked50MsServiceListError = FctEngineNewPayloadDurationChunked50MsServiceListErrors[keyof FctEngineNewPayloadDurationChunked50MsServiceListErrors]; - -export type FctEngineNewPayloadDurationChunked50MsServiceListResponses = { + memory_words_sq_sum_before_in_values?: string; /** - * OK + * SUM(words_before²). (filter: not_in_values) (comma-separated list) */ - 200: ListFctEngineNewPayloadDurationChunked50MsResponse; -}; - -export type FctEngineNewPayloadDurationChunked50MsServiceListResponse = FctEngineNewPayloadDurationChunked50MsServiceListResponses[keyof FctEngineNewPayloadDurationChunked50MsServiceListResponses]; - -export type FctEngineNewPayloadDurationChunked50MsServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_engine_new_payload_duration_chunked_50ms/{slot_start_date_time}'; -}; - -export type FctEngineNewPayloadDurationChunked50MsServiceGetErrors = { + memory_words_sq_sum_before_not_in_values?: string; /** - * Default error response + * SUM(words_after²). (filter: eq) */ - default: Status; -}; - -export type FctEngineNewPayloadDurationChunked50MsServiceGetError = FctEngineNewPayloadDurationChunked50MsServiceGetErrors[keyof FctEngineNewPayloadDurationChunked50MsServiceGetErrors]; - -export type FctEngineNewPayloadDurationChunked50MsServiceGetResponses = { + memory_words_sq_sum_after_eq?: number; /** - * OK + * SUM(words_after²). (filter: ne) */ - 200: GetFctEngineNewPayloadDurationChunked50MsResponse; -}; - -export type FctEngineNewPayloadDurationChunked50MsServiceGetResponse = FctEngineNewPayloadDurationChunked50MsServiceGetResponses[keyof FctEngineNewPayloadDurationChunked50MsServiceGetResponses]; - -export type FctEngineNewPayloadWinrateDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: eq) - */ - meta_execution_implementation_eq?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: ne) - */ - meta_execution_implementation_ne?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: contains) - */ - meta_execution_implementation_contains?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: starts_with) - */ - meta_execution_implementation_starts_with?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: ends_with) - */ - meta_execution_implementation_ends_with?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: like) - */ - meta_execution_implementation_like?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: not_like) - */ - meta_execution_implementation_not_like?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: in_values) (comma-separated list) - */ - meta_execution_implementation_in_values?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: not_in_values) (comma-separated list) - */ - meta_execution_implementation_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: eq) - */ - win_count_eq?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: ne) - */ - win_count_ne?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: lt) - */ - win_count_lt?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: lte) - */ - win_count_lte?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: gt) - */ - win_count_gt?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: gte) - */ - win_count_gte?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: between_min) - */ - win_count_between_min?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: between_max_value) - */ - win_count_between_max_value?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: in_values) (comma-separated list) - */ - win_count_in_values?: string; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: not_in_values) (comma-separated list) - */ - win_count_not_in_values?: string; - /** - * The maximum number of fct_engine_new_payload_winrate_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctEngineNewPayloadWinrateDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_engine_new_payload_winrate_daily'; -}; - -export type FctEngineNewPayloadWinrateDailyServiceListErrors = { + memory_words_sq_sum_after_ne?: number; /** - * Default error response + * SUM(words_after²). (filter: lt) */ - default: Status; -}; - -export type FctEngineNewPayloadWinrateDailyServiceListError = FctEngineNewPayloadWinrateDailyServiceListErrors[keyof FctEngineNewPayloadWinrateDailyServiceListErrors]; - -export type FctEngineNewPayloadWinrateDailyServiceListResponses = { + memory_words_sq_sum_after_lt?: number; /** - * OK + * SUM(words_after²). (filter: lte) */ - 200: ListFctEngineNewPayloadWinrateDailyResponse; -}; - -export type FctEngineNewPayloadWinrateDailyServiceListResponse = FctEngineNewPayloadWinrateDailyServiceListResponses[keyof FctEngineNewPayloadWinrateDailyServiceListResponses]; - -export type FctEngineNewPayloadWinrateDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_engine_new_payload_winrate_daily/{day_start_date}'; -}; - -export type FctEngineNewPayloadWinrateDailyServiceGetErrors = { + memory_words_sq_sum_after_lte?: number; /** - * Default error response + * SUM(words_after²). (filter: gt) */ - default: Status; -}; - -export type FctEngineNewPayloadWinrateDailyServiceGetError = FctEngineNewPayloadWinrateDailyServiceGetErrors[keyof FctEngineNewPayloadWinrateDailyServiceGetErrors]; - -export type FctEngineNewPayloadWinrateDailyServiceGetResponses = { + memory_words_sq_sum_after_gt?: number; /** - * OK + * SUM(words_after²). (filter: gte) */ - 200: GetFctEngineNewPayloadWinrateDailyResponse; -}; - -export type FctEngineNewPayloadWinrateDailyServiceGetResponse = FctEngineNewPayloadWinrateDailyServiceGetResponses[keyof FctEngineNewPayloadWinrateDailyServiceGetResponses]; - -export type FctEngineNewPayloadWinrateHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: eq) - */ - meta_execution_implementation_eq?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: ne) - */ - meta_execution_implementation_ne?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: contains) - */ - meta_execution_implementation_contains?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: starts_with) - */ - meta_execution_implementation_starts_with?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: ends_with) - */ - meta_execution_implementation_ends_with?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: like) - */ - meta_execution_implementation_like?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: not_like) - */ - meta_execution_implementation_not_like?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: in_values) (comma-separated list) - */ - meta_execution_implementation_in_values?: string; - /** - * Execution client implementation name (e.g., Reth, Nethermind, Besu) (filter: not_in_values) (comma-separated list) - */ - meta_execution_implementation_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: eq) - */ - win_count_eq?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: ne) - */ - win_count_ne?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: lt) - */ - win_count_lt?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: lte) - */ - win_count_lte?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: gt) - */ - win_count_gt?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: gte) - */ - win_count_gte?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: between_min) - */ - win_count_between_min?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: between_max_value) - */ - win_count_between_max_value?: number; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: in_values) (comma-separated list) - */ - win_count_in_values?: string; - /** - * Number of slots where this client had the fastest engine_newPayload duration (filter: not_in_values) (comma-separated list) - */ - win_count_not_in_values?: string; - /** - * The maximum number of fct_engine_new_payload_winrate_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctEngineNewPayloadWinrateHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_engine_new_payload_winrate_hourly'; -}; - -export type FctEngineNewPayloadWinrateHourlyServiceListErrors = { + memory_words_sq_sum_after_gte?: number; /** - * Default error response + * SUM(words_after²). (filter: between_min) */ - default: Status; -}; - -export type FctEngineNewPayloadWinrateHourlyServiceListError = FctEngineNewPayloadWinrateHourlyServiceListErrors[keyof FctEngineNewPayloadWinrateHourlyServiceListErrors]; - -export type FctEngineNewPayloadWinrateHourlyServiceListResponses = { + memory_words_sq_sum_after_between_min?: number; /** - * OK + * SUM(words_after²). (filter: between_max_value) */ - 200: ListFctEngineNewPayloadWinrateHourlyResponse; -}; - -export type FctEngineNewPayloadWinrateHourlyServiceListResponse = FctEngineNewPayloadWinrateHourlyServiceListResponses[keyof FctEngineNewPayloadWinrateHourlyServiceListResponses]; - -export type FctEngineNewPayloadWinrateHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_engine_new_payload_winrate_hourly/{hour_start_date_time}'; -}; - -export type FctEngineNewPayloadWinrateHourlyServiceGetErrors = { + memory_words_sq_sum_after_between_max_value?: number; /** - * Default error response + * SUM(words_after²). (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctEngineNewPayloadWinrateHourlyServiceGetError = FctEngineNewPayloadWinrateHourlyServiceGetErrors[keyof FctEngineNewPayloadWinrateHourlyServiceGetErrors]; - -export type FctEngineNewPayloadWinrateHourlyServiceGetResponses = { + memory_words_sq_sum_after_in_values?: string; /** - * OK + * SUM(words_after²). (filter: not_in_values) (comma-separated list) */ - 200: GetFctEngineNewPayloadWinrateHourlyResponse; -}; - -export type FctEngineNewPayloadWinrateHourlyServiceGetResponse = FctEngineNewPayloadWinrateHourlyServiceGetResponses[keyof FctEngineNewPayloadWinrateHourlyServiceGetResponses]; - -export type FctExecutionGasLimitDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks in this day (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks in this day (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks in this day (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks in this day (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks in this day (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks in this day (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks in this day (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks in this day (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks in this day (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks in this day (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total gas limit in this day (filter: eq) - */ - total_gas_limit_eq?: number; - /** - * Total gas limit in this day (filter: ne) - */ - total_gas_limit_ne?: number; - /** - * Total gas limit in this day (filter: lt) - */ - total_gas_limit_lt?: number; - /** - * Total gas limit in this day (filter: lte) - */ - total_gas_limit_lte?: number; - /** - * Total gas limit in this day (filter: gt) - */ - total_gas_limit_gt?: number; - /** - * Total gas limit in this day (filter: gte) - */ - total_gas_limit_gte?: number; - /** - * Total gas limit in this day (filter: between_min) - */ - total_gas_limit_between_min?: number; - /** - * Total gas limit in this day (filter: between_max_value) - */ - total_gas_limit_between_max_value?: number; - /** - * Total gas limit in this day (filter: in_values) (comma-separated list) - */ - total_gas_limit_in_values?: string; - /** - * Total gas limit in this day (filter: not_in_values) (comma-separated list) - */ - total_gas_limit_not_in_values?: string; - /** - * Average gas limit per block (filter: eq) - */ - avg_gas_limit_eq?: number; - /** - * Average gas limit per block (filter: ne) - */ - avg_gas_limit_ne?: number; - /** - * Average gas limit per block (filter: lt) - */ - avg_gas_limit_lt?: number; - /** - * Average gas limit per block (filter: lte) - */ - avg_gas_limit_lte?: number; - /** - * Average gas limit per block (filter: gt) - */ - avg_gas_limit_gt?: number; - /** - * Average gas limit per block (filter: gte) - */ - avg_gas_limit_gte?: number; - /** - * Average gas limit per block (filter: between_min) - */ - avg_gas_limit_between_min?: number; - /** - * Average gas limit per block (filter: between_max_value) - */ - avg_gas_limit_between_max_value?: number; - /** - * Average gas limit per block (filter: in_values) (comma-separated list) - */ - avg_gas_limit_in_values?: string; - /** - * Average gas limit per block (filter: not_in_values) (comma-separated list) - */ - avg_gas_limit_not_in_values?: string; - /** - * Minimum gas limit in a block (filter: eq) - */ - min_gas_limit_eq?: number; - /** - * Minimum gas limit in a block (filter: ne) - */ - min_gas_limit_ne?: number; - /** - * Minimum gas limit in a block (filter: lt) - */ - min_gas_limit_lt?: number; - /** - * Minimum gas limit in a block (filter: lte) - */ - min_gas_limit_lte?: number; - /** - * Minimum gas limit in a block (filter: gt) - */ - min_gas_limit_gt?: number; - /** - * Minimum gas limit in a block (filter: gte) - */ - min_gas_limit_gte?: number; - /** - * Minimum gas limit in a block (filter: between_min) - */ - min_gas_limit_between_min?: number; - /** - * Minimum gas limit in a block (filter: between_max_value) - */ - min_gas_limit_between_max_value?: number; - /** - * Minimum gas limit in a block (filter: in_values) (comma-separated list) - */ - min_gas_limit_in_values?: string; - /** - * Minimum gas limit in a block (filter: not_in_values) (comma-separated list) - */ - min_gas_limit_not_in_values?: string; - /** - * Maximum gas limit in a block (filter: eq) - */ - max_gas_limit_eq?: number; - /** - * Maximum gas limit in a block (filter: ne) - */ - max_gas_limit_ne?: number; - /** - * Maximum gas limit in a block (filter: lt) - */ - max_gas_limit_lt?: number; - /** - * Maximum gas limit in a block (filter: lte) - */ - max_gas_limit_lte?: number; - /** - * Maximum gas limit in a block (filter: gt) - */ - max_gas_limit_gt?: number; - /** - * Maximum gas limit in a block (filter: gte) - */ - max_gas_limit_gte?: number; - /** - * Maximum gas limit in a block (filter: between_min) - */ - max_gas_limit_between_min?: number; - /** - * Maximum gas limit in a block (filter: between_max_value) - */ - max_gas_limit_between_max_value?: number; - /** - * Maximum gas limit in a block (filter: in_values) (comma-separated list) - */ - max_gas_limit_in_values?: string; - /** - * Maximum gas limit in a block (filter: not_in_values) (comma-separated list) - */ - max_gas_limit_not_in_values?: string; - /** - * 5th percentile gas limit (filter: eq) - */ - p05_gas_limit_eq?: number; - /** - * 5th percentile gas limit (filter: ne) - */ - p05_gas_limit_ne?: number; - /** - * 5th percentile gas limit (filter: lt) - */ - p05_gas_limit_lt?: number; - /** - * 5th percentile gas limit (filter: lte) - */ - p05_gas_limit_lte?: number; - /** - * 5th percentile gas limit (filter: gt) - */ - p05_gas_limit_gt?: number; - /** - * 5th percentile gas limit (filter: gte) - */ - p05_gas_limit_gte?: number; - /** - * 5th percentile gas limit (filter: between_min) - */ - p05_gas_limit_between_min?: number; - /** - * 5th percentile gas limit (filter: between_max_value) - */ - p05_gas_limit_between_max_value?: number; - /** - * 5th percentile gas limit (filter: in_values) (comma-separated list) - */ - p05_gas_limit_in_values?: string; - /** - * 5th percentile gas limit (filter: not_in_values) (comma-separated list) - */ - p05_gas_limit_not_in_values?: string; - /** - * 50th percentile (median) gas limit (filter: eq) - */ - p50_gas_limit_eq?: number; - /** - * 50th percentile (median) gas limit (filter: ne) - */ - p50_gas_limit_ne?: number; - /** - * 50th percentile (median) gas limit (filter: lt) - */ - p50_gas_limit_lt?: number; - /** - * 50th percentile (median) gas limit (filter: lte) - */ - p50_gas_limit_lte?: number; - /** - * 50th percentile (median) gas limit (filter: gt) - */ - p50_gas_limit_gt?: number; - /** - * 50th percentile (median) gas limit (filter: gte) - */ - p50_gas_limit_gte?: number; - /** - * 50th percentile (median) gas limit (filter: between_min) - */ - p50_gas_limit_between_min?: number; - /** - * 50th percentile (median) gas limit (filter: between_max_value) - */ - p50_gas_limit_between_max_value?: number; - /** - * 50th percentile (median) gas limit (filter: in_values) (comma-separated list) - */ - p50_gas_limit_in_values?: string; - /** - * 50th percentile (median) gas limit (filter: not_in_values) (comma-separated list) - */ - p50_gas_limit_not_in_values?: string; - /** - * 95th percentile gas limit (filter: eq) - */ - p95_gas_limit_eq?: number; - /** - * 95th percentile gas limit (filter: ne) - */ - p95_gas_limit_ne?: number; - /** - * 95th percentile gas limit (filter: lt) - */ - p95_gas_limit_lt?: number; - /** - * 95th percentile gas limit (filter: lte) - */ - p95_gas_limit_lte?: number; - /** - * 95th percentile gas limit (filter: gt) - */ - p95_gas_limit_gt?: number; - /** - * 95th percentile gas limit (filter: gte) - */ - p95_gas_limit_gte?: number; - /** - * 95th percentile gas limit (filter: between_min) - */ - p95_gas_limit_between_min?: number; - /** - * 95th percentile gas limit (filter: between_max_value) - */ - p95_gas_limit_between_max_value?: number; - /** - * 95th percentile gas limit (filter: in_values) (comma-separated list) - */ - p95_gas_limit_in_values?: string; - /** - * 95th percentile gas limit (filter: not_in_values) (comma-separated list) - */ - p95_gas_limit_not_in_values?: string; - /** - * Standard deviation of gas limit (filter: eq) - */ - stddev_gas_limit_eq?: number; - /** - * Standard deviation of gas limit (filter: ne) - */ - stddev_gas_limit_ne?: number; - /** - * Standard deviation of gas limit (filter: lt) - */ - stddev_gas_limit_lt?: number; - /** - * Standard deviation of gas limit (filter: lte) - */ - stddev_gas_limit_lte?: number; - /** - * Standard deviation of gas limit (filter: gt) - */ - stddev_gas_limit_gt?: number; - /** - * Standard deviation of gas limit (filter: gte) - */ - stddev_gas_limit_gte?: number; - /** - * Standard deviation of gas limit (filter: between_min) - */ - stddev_gas_limit_between_min?: number; - /** - * Standard deviation of gas limit (filter: between_max_value) - */ - stddev_gas_limit_between_max_value?: number; - /** - * Standard deviation of gas limit (filter: in_values) (comma-separated list) - */ - stddev_gas_limit_in_values?: string; - /** - * Standard deviation of gas limit (filter: not_in_values) (comma-separated list) - */ - stddev_gas_limit_not_in_values?: string; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: eq) - */ - upper_band_gas_limit_eq?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: ne) - */ - upper_band_gas_limit_ne?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: lt) - */ - upper_band_gas_limit_lt?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: lte) - */ - upper_band_gas_limit_lte?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: gt) - */ - upper_band_gas_limit_gt?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: gte) - */ - upper_band_gas_limit_gte?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: between_min) - */ - upper_band_gas_limit_between_min?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: between_max_value) - */ - upper_band_gas_limit_between_max_value?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: in_values) (comma-separated list) - */ - upper_band_gas_limit_in_values?: string; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: not_in_values) (comma-separated list) - */ - upper_band_gas_limit_not_in_values?: string; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: eq) - */ - lower_band_gas_limit_eq?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: ne) - */ - lower_band_gas_limit_ne?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lt) - */ - lower_band_gas_limit_lt?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lte) - */ - lower_band_gas_limit_lte?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gt) - */ - lower_band_gas_limit_gt?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gte) - */ - lower_band_gas_limit_gte?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_min) - */ - lower_band_gas_limit_between_min?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_max_value) - */ - lower_band_gas_limit_between_max_value?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: in_values) (comma-separated list) - */ - lower_band_gas_limit_in_values?: string; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: not_in_values) (comma-separated list) - */ - lower_band_gas_limit_not_in_values?: string; - /** - * Moving average gas limit (7-day window) (filter: eq) - */ - moving_avg_gas_limit_eq?: number; - /** - * Moving average gas limit (7-day window) (filter: ne) - */ - moving_avg_gas_limit_ne?: number; - /** - * Moving average gas limit (7-day window) (filter: lt) - */ - moving_avg_gas_limit_lt?: number; - /** - * Moving average gas limit (7-day window) (filter: lte) - */ - moving_avg_gas_limit_lte?: number; - /** - * Moving average gas limit (7-day window) (filter: gt) - */ - moving_avg_gas_limit_gt?: number; - /** - * Moving average gas limit (7-day window) (filter: gte) - */ - moving_avg_gas_limit_gte?: number; - /** - * Moving average gas limit (7-day window) (filter: between_min) - */ - moving_avg_gas_limit_between_min?: number; - /** - * Moving average gas limit (7-day window) (filter: between_max_value) - */ - moving_avg_gas_limit_between_max_value?: number; - /** - * Moving average gas limit (7-day window) (filter: in_values) (comma-separated list) - */ - moving_avg_gas_limit_in_values?: string; - /** - * Moving average gas limit (7-day window) (filter: not_in_values) (comma-separated list) - */ - moving_avg_gas_limit_not_in_values?: string; - /** - * The maximum number of fct_execution_gas_limit_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionGasLimitDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_gas_limit_daily'; -}; - -export type FctExecutionGasLimitDailyServiceListErrors = { + memory_words_sq_sum_after_not_in_values?: string; /** - * Default error response + * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: eq) */ - default: Status; -}; - -export type FctExecutionGasLimitDailyServiceListError = FctExecutionGasLimitDailyServiceListErrors[keyof FctExecutionGasLimitDailyServiceListErrors]; - -export type FctExecutionGasLimitDailyServiceListResponses = { + memory_expansion_gas_eq?: number; /** - * OK + * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: ne) */ - 200: ListFctExecutionGasLimitDailyResponse; -}; - -export type FctExecutionGasLimitDailyServiceListResponse = FctExecutionGasLimitDailyServiceListResponses[keyof FctExecutionGasLimitDailyServiceListResponses]; - -export type FctExecutionGasLimitDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_execution_gas_limit_daily/{day_start_date}'; -}; - -export type FctExecutionGasLimitDailyServiceGetErrors = { + memory_expansion_gas_ne?: number; + /** + * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: lt) + */ + memory_expansion_gas_lt?: number; + /** + * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: lte) + */ + memory_expansion_gas_lte?: number; /** - * Default error response + * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: gt) */ - default: Status; -}; - -export type FctExecutionGasLimitDailyServiceGetError = FctExecutionGasLimitDailyServiceGetErrors[keyof FctExecutionGasLimitDailyServiceGetErrors]; - -export type FctExecutionGasLimitDailyServiceGetResponses = { + memory_expansion_gas_gt?: number; /** - * OK + * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: gte) */ - 200: GetFctExecutionGasLimitDailyResponse; -}; - -export type FctExecutionGasLimitDailyServiceGetResponse = FctExecutionGasLimitDailyServiceGetResponses[keyof FctExecutionGasLimitDailyServiceGetResponses]; - -export type FctExecutionGasLimitHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks in this hour (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks in this hour (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks in this hour (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks in this hour (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks in this hour (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks in this hour (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks in this hour (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks in this hour (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks in this hour (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks in this hour (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total gas limit in this hour (filter: eq) - */ - total_gas_limit_eq?: number; - /** - * Total gas limit in this hour (filter: ne) - */ - total_gas_limit_ne?: number; - /** - * Total gas limit in this hour (filter: lt) - */ - total_gas_limit_lt?: number; - /** - * Total gas limit in this hour (filter: lte) - */ - total_gas_limit_lte?: number; - /** - * Total gas limit in this hour (filter: gt) - */ - total_gas_limit_gt?: number; - /** - * Total gas limit in this hour (filter: gte) - */ - total_gas_limit_gte?: number; - /** - * Total gas limit in this hour (filter: between_min) - */ - total_gas_limit_between_min?: number; - /** - * Total gas limit in this hour (filter: between_max_value) - */ - total_gas_limit_between_max_value?: number; - /** - * Total gas limit in this hour (filter: in_values) (comma-separated list) - */ - total_gas_limit_in_values?: string; - /** - * Total gas limit in this hour (filter: not_in_values) (comma-separated list) - */ - total_gas_limit_not_in_values?: string; - /** - * Average gas limit per block (filter: eq) - */ - avg_gas_limit_eq?: number; - /** - * Average gas limit per block (filter: ne) - */ - avg_gas_limit_ne?: number; - /** - * Average gas limit per block (filter: lt) - */ - avg_gas_limit_lt?: number; - /** - * Average gas limit per block (filter: lte) - */ - avg_gas_limit_lte?: number; - /** - * Average gas limit per block (filter: gt) - */ - avg_gas_limit_gt?: number; - /** - * Average gas limit per block (filter: gte) - */ - avg_gas_limit_gte?: number; - /** - * Average gas limit per block (filter: between_min) - */ - avg_gas_limit_between_min?: number; - /** - * Average gas limit per block (filter: between_max_value) - */ - avg_gas_limit_between_max_value?: number; - /** - * Average gas limit per block (filter: in_values) (comma-separated list) - */ - avg_gas_limit_in_values?: string; - /** - * Average gas limit per block (filter: not_in_values) (comma-separated list) - */ - avg_gas_limit_not_in_values?: string; - /** - * Minimum gas limit in a block (filter: eq) - */ - min_gas_limit_eq?: number; - /** - * Minimum gas limit in a block (filter: ne) - */ - min_gas_limit_ne?: number; - /** - * Minimum gas limit in a block (filter: lt) - */ - min_gas_limit_lt?: number; - /** - * Minimum gas limit in a block (filter: lte) - */ - min_gas_limit_lte?: number; - /** - * Minimum gas limit in a block (filter: gt) - */ - min_gas_limit_gt?: number; - /** - * Minimum gas limit in a block (filter: gte) - */ - min_gas_limit_gte?: number; - /** - * Minimum gas limit in a block (filter: between_min) - */ - min_gas_limit_between_min?: number; - /** - * Minimum gas limit in a block (filter: between_max_value) - */ - min_gas_limit_between_max_value?: number; - /** - * Minimum gas limit in a block (filter: in_values) (comma-separated list) - */ - min_gas_limit_in_values?: string; - /** - * Minimum gas limit in a block (filter: not_in_values) (comma-separated list) - */ - min_gas_limit_not_in_values?: string; - /** - * Maximum gas limit in a block (filter: eq) - */ - max_gas_limit_eq?: number; - /** - * Maximum gas limit in a block (filter: ne) - */ - max_gas_limit_ne?: number; - /** - * Maximum gas limit in a block (filter: lt) - */ - max_gas_limit_lt?: number; - /** - * Maximum gas limit in a block (filter: lte) - */ - max_gas_limit_lte?: number; - /** - * Maximum gas limit in a block (filter: gt) - */ - max_gas_limit_gt?: number; - /** - * Maximum gas limit in a block (filter: gte) - */ - max_gas_limit_gte?: number; - /** - * Maximum gas limit in a block (filter: between_min) - */ - max_gas_limit_between_min?: number; - /** - * Maximum gas limit in a block (filter: between_max_value) - */ - max_gas_limit_between_max_value?: number; - /** - * Maximum gas limit in a block (filter: in_values) (comma-separated list) - */ - max_gas_limit_in_values?: string; - /** - * Maximum gas limit in a block (filter: not_in_values) (comma-separated list) - */ - max_gas_limit_not_in_values?: string; - /** - * 5th percentile gas limit (filter: eq) - */ - p05_gas_limit_eq?: number; - /** - * 5th percentile gas limit (filter: ne) - */ - p05_gas_limit_ne?: number; - /** - * 5th percentile gas limit (filter: lt) - */ - p05_gas_limit_lt?: number; - /** - * 5th percentile gas limit (filter: lte) - */ - p05_gas_limit_lte?: number; - /** - * 5th percentile gas limit (filter: gt) - */ - p05_gas_limit_gt?: number; - /** - * 5th percentile gas limit (filter: gte) - */ - p05_gas_limit_gte?: number; - /** - * 5th percentile gas limit (filter: between_min) - */ - p05_gas_limit_between_min?: number; - /** - * 5th percentile gas limit (filter: between_max_value) - */ - p05_gas_limit_between_max_value?: number; - /** - * 5th percentile gas limit (filter: in_values) (comma-separated list) - */ - p05_gas_limit_in_values?: string; - /** - * 5th percentile gas limit (filter: not_in_values) (comma-separated list) - */ - p05_gas_limit_not_in_values?: string; - /** - * 50th percentile (median) gas limit (filter: eq) - */ - p50_gas_limit_eq?: number; - /** - * 50th percentile (median) gas limit (filter: ne) - */ - p50_gas_limit_ne?: number; - /** - * 50th percentile (median) gas limit (filter: lt) - */ - p50_gas_limit_lt?: number; - /** - * 50th percentile (median) gas limit (filter: lte) - */ - p50_gas_limit_lte?: number; - /** - * 50th percentile (median) gas limit (filter: gt) - */ - p50_gas_limit_gt?: number; - /** - * 50th percentile (median) gas limit (filter: gte) - */ - p50_gas_limit_gte?: number; - /** - * 50th percentile (median) gas limit (filter: between_min) - */ - p50_gas_limit_between_min?: number; - /** - * 50th percentile (median) gas limit (filter: between_max_value) - */ - p50_gas_limit_between_max_value?: number; - /** - * 50th percentile (median) gas limit (filter: in_values) (comma-separated list) - */ - p50_gas_limit_in_values?: string; - /** - * 50th percentile (median) gas limit (filter: not_in_values) (comma-separated list) - */ - p50_gas_limit_not_in_values?: string; - /** - * 95th percentile gas limit (filter: eq) - */ - p95_gas_limit_eq?: number; - /** - * 95th percentile gas limit (filter: ne) - */ - p95_gas_limit_ne?: number; - /** - * 95th percentile gas limit (filter: lt) - */ - p95_gas_limit_lt?: number; - /** - * 95th percentile gas limit (filter: lte) - */ - p95_gas_limit_lte?: number; - /** - * 95th percentile gas limit (filter: gt) - */ - p95_gas_limit_gt?: number; - /** - * 95th percentile gas limit (filter: gte) - */ - p95_gas_limit_gte?: number; - /** - * 95th percentile gas limit (filter: between_min) - */ - p95_gas_limit_between_min?: number; - /** - * 95th percentile gas limit (filter: between_max_value) - */ - p95_gas_limit_between_max_value?: number; - /** - * 95th percentile gas limit (filter: in_values) (comma-separated list) - */ - p95_gas_limit_in_values?: string; - /** - * 95th percentile gas limit (filter: not_in_values) (comma-separated list) - */ - p95_gas_limit_not_in_values?: string; - /** - * Standard deviation of gas limit (filter: eq) - */ - stddev_gas_limit_eq?: number; - /** - * Standard deviation of gas limit (filter: ne) - */ - stddev_gas_limit_ne?: number; - /** - * Standard deviation of gas limit (filter: lt) - */ - stddev_gas_limit_lt?: number; - /** - * Standard deviation of gas limit (filter: lte) - */ - stddev_gas_limit_lte?: number; - /** - * Standard deviation of gas limit (filter: gt) - */ - stddev_gas_limit_gt?: number; - /** - * Standard deviation of gas limit (filter: gte) - */ - stddev_gas_limit_gte?: number; - /** - * Standard deviation of gas limit (filter: between_min) - */ - stddev_gas_limit_between_min?: number; - /** - * Standard deviation of gas limit (filter: between_max_value) - */ - stddev_gas_limit_between_max_value?: number; - /** - * Standard deviation of gas limit (filter: in_values) (comma-separated list) - */ - stddev_gas_limit_in_values?: string; - /** - * Standard deviation of gas limit (filter: not_in_values) (comma-separated list) - */ - stddev_gas_limit_not_in_values?: string; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: eq) - */ - upper_band_gas_limit_eq?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: ne) - */ - upper_band_gas_limit_ne?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: lt) - */ - upper_band_gas_limit_lt?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: lte) - */ - upper_band_gas_limit_lte?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: gt) - */ - upper_band_gas_limit_gt?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: gte) - */ - upper_band_gas_limit_gte?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: between_min) - */ - upper_band_gas_limit_between_min?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: between_max_value) - */ - upper_band_gas_limit_between_max_value?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: in_values) (comma-separated list) - */ - upper_band_gas_limit_in_values?: string; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: not_in_values) (comma-separated list) - */ - upper_band_gas_limit_not_in_values?: string; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: eq) - */ - lower_band_gas_limit_eq?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: ne) - */ - lower_band_gas_limit_ne?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lt) - */ - lower_band_gas_limit_lt?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lte) - */ - lower_band_gas_limit_lte?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gt) - */ - lower_band_gas_limit_gt?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gte) - */ - lower_band_gas_limit_gte?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_min) - */ - lower_band_gas_limit_between_min?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_max_value) - */ - lower_band_gas_limit_between_max_value?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: in_values) (comma-separated list) - */ - lower_band_gas_limit_in_values?: string; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: not_in_values) (comma-separated list) - */ - lower_band_gas_limit_not_in_values?: string; - /** - * Moving average gas limit (6-hour window) (filter: eq) - */ - moving_avg_gas_limit_eq?: number; - /** - * Moving average gas limit (6-hour window) (filter: ne) - */ - moving_avg_gas_limit_ne?: number; - /** - * Moving average gas limit (6-hour window) (filter: lt) - */ - moving_avg_gas_limit_lt?: number; - /** - * Moving average gas limit (6-hour window) (filter: lte) - */ - moving_avg_gas_limit_lte?: number; - /** - * Moving average gas limit (6-hour window) (filter: gt) - */ - moving_avg_gas_limit_gt?: number; - /** - * Moving average gas limit (6-hour window) (filter: gte) - */ - moving_avg_gas_limit_gte?: number; - /** - * Moving average gas limit (6-hour window) (filter: between_min) - */ - moving_avg_gas_limit_between_min?: number; - /** - * Moving average gas limit (6-hour window) (filter: between_max_value) - */ - moving_avg_gas_limit_between_max_value?: number; - /** - * Moving average gas limit (6-hour window) (filter: in_values) (comma-separated list) - */ - moving_avg_gas_limit_in_values?: string; - /** - * Moving average gas limit (6-hour window) (filter: not_in_values) (comma-separated list) - */ - moving_avg_gas_limit_not_in_values?: string; - /** - * The maximum number of fct_execution_gas_limit_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionGasLimitHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_gas_limit_hourly'; -}; - -export type FctExecutionGasLimitHourlyServiceListErrors = { + memory_expansion_gas_gte?: number; /** - * Default error response + * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: between_min) */ - default: Status; -}; - -export type FctExecutionGasLimitHourlyServiceListError = FctExecutionGasLimitHourlyServiceListErrors[keyof FctExecutionGasLimitHourlyServiceListErrors]; - -export type FctExecutionGasLimitHourlyServiceListResponses = { + memory_expansion_gas_between_min?: number; /** - * OK + * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: between_max_value) */ - 200: ListFctExecutionGasLimitHourlyResponse; -}; - -export type FctExecutionGasLimitHourlyServiceListResponse = FctExecutionGasLimitHourlyServiceListResponses[keyof FctExecutionGasLimitHourlyServiceListResponses]; - -export type FctExecutionGasLimitHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_execution_gas_limit_hourly/{hour_start_date_time}'; -}; - -export type FctExecutionGasLimitHourlyServiceGetErrors = { + memory_expansion_gas_between_max_value?: number; /** - * Default error response + * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctExecutionGasLimitHourlyServiceGetError = FctExecutionGasLimitHourlyServiceGetErrors[keyof FctExecutionGasLimitHourlyServiceGetErrors]; - -export type FctExecutionGasLimitHourlyServiceGetResponses = { + memory_expansion_gas_in_values?: string; /** - * OK + * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: not_in_values) (comma-separated list) */ - 200: GetFctExecutionGasLimitHourlyResponse; -}; - -export type FctExecutionGasLimitHourlyServiceGetResponse = FctExecutionGasLimitHourlyServiceGetResponses[keyof FctExecutionGasLimitHourlyServiceGetResponses]; - -export type FctExecutionGasLimitSignallingDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * required) (filter: eq) - */ - day_start_date_eq?: string; - /** - * required) (filter: ne) - */ - day_start_date_ne?: string; - /** - * required) (filter: contains) - */ - day_start_date_contains?: string; - /** - * required) (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * required) (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * required) (filter: like) - */ - day_start_date_like?: string; - /** - * required) (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * required) (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * required) (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * updated_date_time (filter: eq) - */ - updated_date_time_eq?: number; - /** - * updated_date_time (filter: ne) - */ - updated_date_time_ne?: number; - /** - * updated_date_time (filter: lt) - */ - updated_date_time_lt?: number; - /** - * updated_date_time (filter: lte) - */ - updated_date_time_lte?: number; - /** - * updated_date_time (filter: gt) - */ - updated_date_time_gt?: number; - /** - * updated_date_time (filter: gte) - */ - updated_date_time_gte?: number; - /** - * updated_date_time (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * updated_date_time (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * updated_date_time (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * updated_date_time (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * gas_limit_band_counts (filter: key_value_key) - */ - gas_limit_band_counts_key_value_key?: string; - /** - * gas_limit_band_counts (filter: key_value_value_filter_eq) - */ - gas_limit_band_counts_key_value_value_filter_eq?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_ne) - */ - gas_limit_band_counts_key_value_value_filter_ne?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_lt) - */ - gas_limit_band_counts_key_value_value_filter_lt?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_lte) - */ - gas_limit_band_counts_key_value_value_filter_lte?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_gt) - */ - gas_limit_band_counts_key_value_value_filter_gt?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_gte) - */ - gas_limit_band_counts_key_value_value_filter_gte?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_between_min) - */ - gas_limit_band_counts_key_value_value_filter_between_min?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_between_max_value) - */ - gas_limit_band_counts_key_value_value_filter_between_max_value?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_in_values) (comma-separated list) - */ - gas_limit_band_counts_key_value_value_filter_in_values?: string; - /** - * gas_limit_band_counts (filter: key_value_value_filter_not_in_values) (comma-separated list) - */ - gas_limit_band_counts_key_value_value_filter_not_in_values?: string; - /** - * gas_limit_band_counts (filter: has_key) - */ - gas_limit_band_counts_has_key?: string; - /** - * gas_limit_band_counts (filter: not_has_key) - */ - gas_limit_band_counts_not_has_key?: string; - /** - * gas_limit_band_counts (filter: has_any_key_values) - */ - gas_limit_band_counts_has_any_key_values?: Array; - /** - * gas_limit_band_counts (filter: has_all_keys_values) - */ - gas_limit_band_counts_has_all_keys_values?: Array; - /** - * The maximum number of fct_execution_gas_limit_signalling_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionGasLimitSignallingDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_gas_limit_signalling_daily'; -}; - -export type FctExecutionGasLimitSignallingDailyServiceListErrors = { + memory_expansion_gas_not_in_values?: string; /** - * Default error response + * Number of cold storage/account accesses (EIP-2929). (filter: eq) */ - default: Status; -}; - -export type FctExecutionGasLimitSignallingDailyServiceListError = FctExecutionGasLimitSignallingDailyServiceListErrors[keyof FctExecutionGasLimitSignallingDailyServiceListErrors]; - -export type FctExecutionGasLimitSignallingDailyServiceListResponses = { + cold_access_count_eq?: number; /** - * OK + * Number of cold storage/account accesses (EIP-2929). (filter: ne) */ - 200: ListFctExecutionGasLimitSignallingDailyResponse; -}; - -export type FctExecutionGasLimitSignallingDailyServiceListResponse = FctExecutionGasLimitSignallingDailyServiceListResponses[keyof FctExecutionGasLimitSignallingDailyServiceListResponses]; - -export type FctExecutionGasLimitSignallingDailyServiceGetData = { - body?: never; - path: { - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_execution_gas_limit_signalling_daily/{day_start_date}'; -}; - -export type FctExecutionGasLimitSignallingDailyServiceGetErrors = { + cold_access_count_ne?: number; /** - * Default error response + * Number of cold storage/account accesses (EIP-2929). (filter: lt) */ - default: Status; -}; - -export type FctExecutionGasLimitSignallingDailyServiceGetError = FctExecutionGasLimitSignallingDailyServiceGetErrors[keyof FctExecutionGasLimitSignallingDailyServiceGetErrors]; - -export type FctExecutionGasLimitSignallingDailyServiceGetResponses = { + cold_access_count_lt?: number; /** - * OK + * Number of cold storage/account accesses (EIP-2929). (filter: lte) */ - 200: GetFctExecutionGasLimitSignallingDailyResponse; -}; - -export type FctExecutionGasLimitSignallingDailyServiceGetResponse = FctExecutionGasLimitSignallingDailyServiceGetResponses[keyof FctExecutionGasLimitSignallingDailyServiceGetResponses]; - -export type FctExecutionGasLimitSignallingHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * required) (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * required) (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * required) (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * required) (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * required) (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * required) (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * required) (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * required) (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * required) (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * required) (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * updated_date_time (filter: eq) - */ - updated_date_time_eq?: number; - /** - * updated_date_time (filter: ne) - */ - updated_date_time_ne?: number; - /** - * updated_date_time (filter: lt) - */ - updated_date_time_lt?: number; - /** - * updated_date_time (filter: lte) - */ - updated_date_time_lte?: number; - /** - * updated_date_time (filter: gt) - */ - updated_date_time_gt?: number; - /** - * updated_date_time (filter: gte) - */ - updated_date_time_gte?: number; - /** - * updated_date_time (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * updated_date_time (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * updated_date_time (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * updated_date_time (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * gas_limit_band_counts (filter: key_value_key) - */ - gas_limit_band_counts_key_value_key?: string; - /** - * gas_limit_band_counts (filter: key_value_value_filter_eq) - */ - gas_limit_band_counts_key_value_value_filter_eq?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_ne) - */ - gas_limit_band_counts_key_value_value_filter_ne?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_lt) - */ - gas_limit_band_counts_key_value_value_filter_lt?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_lte) - */ - gas_limit_band_counts_key_value_value_filter_lte?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_gt) - */ - gas_limit_band_counts_key_value_value_filter_gt?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_gte) - */ - gas_limit_band_counts_key_value_value_filter_gte?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_between_min) - */ - gas_limit_band_counts_key_value_value_filter_between_min?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_between_max_value) - */ - gas_limit_band_counts_key_value_value_filter_between_max_value?: number; - /** - * gas_limit_band_counts (filter: key_value_value_filter_in_values) (comma-separated list) - */ - gas_limit_band_counts_key_value_value_filter_in_values?: string; - /** - * gas_limit_band_counts (filter: key_value_value_filter_not_in_values) (comma-separated list) - */ - gas_limit_band_counts_key_value_value_filter_not_in_values?: string; - /** - * gas_limit_band_counts (filter: has_key) - */ - gas_limit_band_counts_has_key?: string; - /** - * gas_limit_band_counts (filter: not_has_key) - */ - gas_limit_band_counts_not_has_key?: string; - /** - * gas_limit_band_counts (filter: has_any_key_values) - */ - gas_limit_band_counts_has_any_key_values?: Array; - /** - * gas_limit_band_counts (filter: has_all_keys_values) - */ - gas_limit_band_counts_has_all_keys_values?: Array; - /** - * The maximum number of fct_execution_gas_limit_signalling_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionGasLimitSignallingHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_gas_limit_signalling_hourly'; -}; - -export type FctExecutionGasLimitSignallingHourlyServiceListErrors = { + cold_access_count_lte?: number; /** - * Default error response + * Number of cold storage/account accesses (EIP-2929). (filter: gt) */ - default: Status; -}; - -export type FctExecutionGasLimitSignallingHourlyServiceListError = FctExecutionGasLimitSignallingHourlyServiceListErrors[keyof FctExecutionGasLimitSignallingHourlyServiceListErrors]; - -export type FctExecutionGasLimitSignallingHourlyServiceListResponses = { + cold_access_count_gt?: number; /** - * OK + * Number of cold storage/account accesses (EIP-2929). (filter: gte) */ - 200: ListFctExecutionGasLimitSignallingHourlyResponse; -}; - -export type FctExecutionGasLimitSignallingHourlyServiceListResponse = FctExecutionGasLimitSignallingHourlyServiceListResponses[keyof FctExecutionGasLimitSignallingHourlyServiceListResponses]; - -export type FctExecutionGasLimitSignallingHourlyServiceGetData = { - body?: never; - path: { - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_execution_gas_limit_signalling_hourly/{hour_start_date_time}'; -}; - -export type FctExecutionGasLimitSignallingHourlyServiceGetErrors = { + cold_access_count_gte?: number; /** - * Default error response + * Number of cold storage/account accesses (EIP-2929). (filter: between_min) */ - default: Status; -}; - -export type FctExecutionGasLimitSignallingHourlyServiceGetError = FctExecutionGasLimitSignallingHourlyServiceGetErrors[keyof FctExecutionGasLimitSignallingHourlyServiceGetErrors]; - -export type FctExecutionGasLimitSignallingHourlyServiceGetResponses = { + cold_access_count_between_min?: number; /** - * OK + * Number of cold storage/account accesses (EIP-2929). (filter: between_max_value) */ - 200: GetFctExecutionGasLimitSignallingHourlyResponse; -}; - -export type FctExecutionGasLimitSignallingHourlyServiceGetResponse = FctExecutionGasLimitSignallingHourlyServiceGetResponses[keyof FctExecutionGasLimitSignallingHourlyServiceGetResponses]; - -export type FctExecutionGasUsedDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks in this day (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks in this day (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks in this day (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks in this day (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks in this day (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks in this day (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks in this day (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks in this day (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks in this day (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks in this day (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total gas used in this day (filter: eq) - */ - total_gas_used_eq?: number; - /** - * Total gas used in this day (filter: ne) - */ - total_gas_used_ne?: number; - /** - * Total gas used in this day (filter: lt) - */ - total_gas_used_lt?: number; - /** - * Total gas used in this day (filter: lte) - */ - total_gas_used_lte?: number; - /** - * Total gas used in this day (filter: gt) - */ - total_gas_used_gt?: number; - /** - * Total gas used in this day (filter: gte) - */ - total_gas_used_gte?: number; - /** - * Total gas used in this day (filter: between_min) - */ - total_gas_used_between_min?: number; - /** - * Total gas used in this day (filter: between_max_value) - */ - total_gas_used_between_max_value?: number; - /** - * Total gas used in this day (filter: in_values) (comma-separated list) - */ - total_gas_used_in_values?: string; - /** - * Total gas used in this day (filter: not_in_values) (comma-separated list) - */ - total_gas_used_not_in_values?: string; - /** - * Cumulative gas used since genesis (filter: eq) - */ - cumulative_gas_used_eq?: number; - /** - * Cumulative gas used since genesis (filter: ne) - */ - cumulative_gas_used_ne?: number; - /** - * Cumulative gas used since genesis (filter: lt) - */ - cumulative_gas_used_lt?: number; - /** - * Cumulative gas used since genesis (filter: lte) - */ - cumulative_gas_used_lte?: number; - /** - * Cumulative gas used since genesis (filter: gt) - */ - cumulative_gas_used_gt?: number; - /** - * Cumulative gas used since genesis (filter: gte) - */ - cumulative_gas_used_gte?: number; - /** - * Cumulative gas used since genesis (filter: between_min) - */ - cumulative_gas_used_between_min?: number; - /** - * Cumulative gas used since genesis (filter: between_max_value) - */ - cumulative_gas_used_between_max_value?: number; - /** - * Cumulative gas used since genesis (filter: in_values) (comma-separated list) - */ - cumulative_gas_used_in_values?: string; - /** - * Cumulative gas used since genesis (filter: not_in_values) (comma-separated list) - */ - cumulative_gas_used_not_in_values?: string; - /** - * Average gas used per block (filter: eq) - */ - avg_gas_used_eq?: number; - /** - * Average gas used per block (filter: ne) - */ - avg_gas_used_ne?: number; - /** - * Average gas used per block (filter: lt) - */ - avg_gas_used_lt?: number; - /** - * Average gas used per block (filter: lte) - */ - avg_gas_used_lte?: number; - /** - * Average gas used per block (filter: gt) - */ - avg_gas_used_gt?: number; - /** - * Average gas used per block (filter: gte) - */ - avg_gas_used_gte?: number; - /** - * Average gas used per block (filter: between_min) - */ - avg_gas_used_between_min?: number; - /** - * Average gas used per block (filter: between_max_value) - */ - avg_gas_used_between_max_value?: number; - /** - * Average gas used per block (filter: in_values) (comma-separated list) - */ - avg_gas_used_in_values?: string; - /** - * Average gas used per block (filter: not_in_values) (comma-separated list) - */ - avg_gas_used_not_in_values?: string; - /** - * Minimum gas used in a block (filter: eq) - */ - min_gas_used_eq?: number; - /** - * Minimum gas used in a block (filter: ne) - */ - min_gas_used_ne?: number; - /** - * Minimum gas used in a block (filter: lt) - */ - min_gas_used_lt?: number; - /** - * Minimum gas used in a block (filter: lte) - */ - min_gas_used_lte?: number; - /** - * Minimum gas used in a block (filter: gt) - */ - min_gas_used_gt?: number; - /** - * Minimum gas used in a block (filter: gte) - */ - min_gas_used_gte?: number; - /** - * Minimum gas used in a block (filter: between_min) - */ - min_gas_used_between_min?: number; - /** - * Minimum gas used in a block (filter: between_max_value) - */ - min_gas_used_between_max_value?: number; - /** - * Minimum gas used in a block (filter: in_values) (comma-separated list) - */ - min_gas_used_in_values?: string; - /** - * Minimum gas used in a block (filter: not_in_values) (comma-separated list) - */ - min_gas_used_not_in_values?: string; - /** - * Maximum gas used in a block (filter: eq) - */ - max_gas_used_eq?: number; - /** - * Maximum gas used in a block (filter: ne) - */ - max_gas_used_ne?: number; - /** - * Maximum gas used in a block (filter: lt) - */ - max_gas_used_lt?: number; - /** - * Maximum gas used in a block (filter: lte) - */ - max_gas_used_lte?: number; - /** - * Maximum gas used in a block (filter: gt) - */ - max_gas_used_gt?: number; - /** - * Maximum gas used in a block (filter: gte) - */ - max_gas_used_gte?: number; - /** - * Maximum gas used in a block (filter: between_min) - */ - max_gas_used_between_min?: number; - /** - * Maximum gas used in a block (filter: between_max_value) - */ - max_gas_used_between_max_value?: number; - /** - * Maximum gas used in a block (filter: in_values) (comma-separated list) - */ - max_gas_used_in_values?: string; - /** - * Maximum gas used in a block (filter: not_in_values) (comma-separated list) - */ - max_gas_used_not_in_values?: string; - /** - * 5th percentile gas used (filter: eq) - */ - p05_gas_used_eq?: number; - /** - * 5th percentile gas used (filter: ne) - */ - p05_gas_used_ne?: number; - /** - * 5th percentile gas used (filter: lt) - */ - p05_gas_used_lt?: number; - /** - * 5th percentile gas used (filter: lte) - */ - p05_gas_used_lte?: number; - /** - * 5th percentile gas used (filter: gt) - */ - p05_gas_used_gt?: number; - /** - * 5th percentile gas used (filter: gte) - */ - p05_gas_used_gte?: number; - /** - * 5th percentile gas used (filter: between_min) - */ - p05_gas_used_between_min?: number; - /** - * 5th percentile gas used (filter: between_max_value) - */ - p05_gas_used_between_max_value?: number; - /** - * 5th percentile gas used (filter: in_values) (comma-separated list) - */ - p05_gas_used_in_values?: string; - /** - * 5th percentile gas used (filter: not_in_values) (comma-separated list) - */ - p05_gas_used_not_in_values?: string; - /** - * 50th percentile (median) gas used (filter: eq) - */ - p50_gas_used_eq?: number; - /** - * 50th percentile (median) gas used (filter: ne) - */ - p50_gas_used_ne?: number; - /** - * 50th percentile (median) gas used (filter: lt) - */ - p50_gas_used_lt?: number; - /** - * 50th percentile (median) gas used (filter: lte) - */ - p50_gas_used_lte?: number; - /** - * 50th percentile (median) gas used (filter: gt) - */ - p50_gas_used_gt?: number; - /** - * 50th percentile (median) gas used (filter: gte) - */ - p50_gas_used_gte?: number; - /** - * 50th percentile (median) gas used (filter: between_min) - */ - p50_gas_used_between_min?: number; - /** - * 50th percentile (median) gas used (filter: between_max_value) - */ - p50_gas_used_between_max_value?: number; - /** - * 50th percentile (median) gas used (filter: in_values) (comma-separated list) - */ - p50_gas_used_in_values?: string; - /** - * 50th percentile (median) gas used (filter: not_in_values) (comma-separated list) - */ - p50_gas_used_not_in_values?: string; - /** - * 95th percentile gas used (filter: eq) - */ - p95_gas_used_eq?: number; - /** - * 95th percentile gas used (filter: ne) - */ - p95_gas_used_ne?: number; - /** - * 95th percentile gas used (filter: lt) - */ - p95_gas_used_lt?: number; - /** - * 95th percentile gas used (filter: lte) - */ - p95_gas_used_lte?: number; - /** - * 95th percentile gas used (filter: gt) - */ - p95_gas_used_gt?: number; - /** - * 95th percentile gas used (filter: gte) - */ - p95_gas_used_gte?: number; - /** - * 95th percentile gas used (filter: between_min) - */ - p95_gas_used_between_min?: number; - /** - * 95th percentile gas used (filter: between_max_value) - */ - p95_gas_used_between_max_value?: number; - /** - * 95th percentile gas used (filter: in_values) (comma-separated list) - */ - p95_gas_used_in_values?: string; - /** - * 95th percentile gas used (filter: not_in_values) (comma-separated list) - */ - p95_gas_used_not_in_values?: string; - /** - * Standard deviation of gas used (filter: eq) - */ - stddev_gas_used_eq?: number; - /** - * Standard deviation of gas used (filter: ne) - */ - stddev_gas_used_ne?: number; - /** - * Standard deviation of gas used (filter: lt) - */ - stddev_gas_used_lt?: number; - /** - * Standard deviation of gas used (filter: lte) - */ - stddev_gas_used_lte?: number; - /** - * Standard deviation of gas used (filter: gt) - */ - stddev_gas_used_gt?: number; - /** - * Standard deviation of gas used (filter: gte) - */ - stddev_gas_used_gte?: number; - /** - * Standard deviation of gas used (filter: between_min) - */ - stddev_gas_used_between_min?: number; - /** - * Standard deviation of gas used (filter: between_max_value) - */ - stddev_gas_used_between_max_value?: number; - /** - * Standard deviation of gas used (filter: in_values) (comma-separated list) - */ - stddev_gas_used_in_values?: string; - /** - * Standard deviation of gas used (filter: not_in_values) (comma-separated list) - */ - stddev_gas_used_not_in_values?: string; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: eq) - */ - upper_band_gas_used_eq?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: ne) - */ - upper_band_gas_used_ne?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: lt) - */ - upper_band_gas_used_lt?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: lte) - */ - upper_band_gas_used_lte?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: gt) - */ - upper_band_gas_used_gt?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: gte) - */ - upper_band_gas_used_gte?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: between_min) - */ - upper_band_gas_used_between_min?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: between_max_value) - */ - upper_band_gas_used_between_max_value?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: in_values) (comma-separated list) - */ - upper_band_gas_used_in_values?: string; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: not_in_values) (comma-separated list) - */ - upper_band_gas_used_not_in_values?: string; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: eq) - */ - lower_band_gas_used_eq?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: ne) - */ - lower_band_gas_used_ne?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lt) - */ - lower_band_gas_used_lt?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lte) - */ - lower_band_gas_used_lte?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gt) - */ - lower_band_gas_used_gt?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gte) - */ - lower_band_gas_used_gte?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_min) - */ - lower_band_gas_used_between_min?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_max_value) - */ - lower_band_gas_used_between_max_value?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: in_values) (comma-separated list) - */ - lower_band_gas_used_in_values?: string; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: not_in_values) (comma-separated list) - */ - lower_band_gas_used_not_in_values?: string; - /** - * Moving average gas used (7-day window) (filter: eq) - */ - moving_avg_gas_used_eq?: number; - /** - * Moving average gas used (7-day window) (filter: ne) - */ - moving_avg_gas_used_ne?: number; - /** - * Moving average gas used (7-day window) (filter: lt) - */ - moving_avg_gas_used_lt?: number; - /** - * Moving average gas used (7-day window) (filter: lte) - */ - moving_avg_gas_used_lte?: number; - /** - * Moving average gas used (7-day window) (filter: gt) - */ - moving_avg_gas_used_gt?: number; - /** - * Moving average gas used (7-day window) (filter: gte) - */ - moving_avg_gas_used_gte?: number; - /** - * Moving average gas used (7-day window) (filter: between_min) - */ - moving_avg_gas_used_between_min?: number; - /** - * Moving average gas used (7-day window) (filter: between_max_value) - */ - moving_avg_gas_used_between_max_value?: number; - /** - * Moving average gas used (7-day window) (filter: in_values) (comma-separated list) - */ - moving_avg_gas_used_in_values?: string; - /** - * Moving average gas used (7-day window) (filter: not_in_values) (comma-separated list) - */ - moving_avg_gas_used_not_in_values?: string; - /** - * The maximum number of fct_execution_gas_used_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionGasUsedDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_gas_used_daily'; -}; - -export type FctExecutionGasUsedDailyServiceListErrors = { + cold_access_count_between_max_value?: number; /** - * Default error response + * Number of cold storage/account accesses (EIP-2929). (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctExecutionGasUsedDailyServiceListError = FctExecutionGasUsedDailyServiceListErrors[keyof FctExecutionGasUsedDailyServiceListErrors]; - -export type FctExecutionGasUsedDailyServiceListResponses = { + cold_access_count_in_values?: string; /** - * OK + * Number of cold storage/account accesses (EIP-2929). (filter: not_in_values) (comma-separated list) */ - 200: ListFctExecutionGasUsedDailyResponse; -}; - -export type FctExecutionGasUsedDailyServiceListResponse = FctExecutionGasUsedDailyServiceListResponses[keyof FctExecutionGasUsedDailyServiceListResponses]; - -export type FctExecutionGasUsedDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_execution_gas_used_daily/{day_start_date}'; -}; - -export type FctExecutionGasUsedDailyServiceGetErrors = { + cold_access_count_not_in_values?: string; /** - * Default error response + * Number of times this opcode resulted in an error in this frame (filter: eq) */ - default: Status; -}; - -export type FctExecutionGasUsedDailyServiceGetError = FctExecutionGasUsedDailyServiceGetErrors[keyof FctExecutionGasUsedDailyServiceGetErrors]; - -export type FctExecutionGasUsedDailyServiceGetResponses = { + error_count_eq?: number; /** - * OK + * Number of times this opcode resulted in an error in this frame (filter: ne) */ - 200: GetFctExecutionGasUsedDailyResponse; -}; - -export type FctExecutionGasUsedDailyServiceGetResponse = FctExecutionGasUsedDailyServiceGetResponses[keyof FctExecutionGasUsedDailyServiceGetResponses]; - -export type FctExecutionGasUsedHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks in this hour (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks in this hour (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks in this hour (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks in this hour (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks in this hour (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks in this hour (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks in this hour (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks in this hour (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks in this hour (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks in this hour (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total gas used in this hour (filter: eq) - */ - total_gas_used_eq?: number; - /** - * Total gas used in this hour (filter: ne) - */ - total_gas_used_ne?: number; - /** - * Total gas used in this hour (filter: lt) - */ - total_gas_used_lt?: number; - /** - * Total gas used in this hour (filter: lte) - */ - total_gas_used_lte?: number; - /** - * Total gas used in this hour (filter: gt) - */ - total_gas_used_gt?: number; - /** - * Total gas used in this hour (filter: gte) - */ - total_gas_used_gte?: number; - /** - * Total gas used in this hour (filter: between_min) - */ - total_gas_used_between_min?: number; - /** - * Total gas used in this hour (filter: between_max_value) - */ - total_gas_used_between_max_value?: number; - /** - * Total gas used in this hour (filter: in_values) (comma-separated list) - */ - total_gas_used_in_values?: string; - /** - * Total gas used in this hour (filter: not_in_values) (comma-separated list) - */ - total_gas_used_not_in_values?: string; - /** - * Cumulative gas used since genesis (filter: eq) - */ - cumulative_gas_used_eq?: number; - /** - * Cumulative gas used since genesis (filter: ne) - */ - cumulative_gas_used_ne?: number; - /** - * Cumulative gas used since genesis (filter: lt) - */ - cumulative_gas_used_lt?: number; - /** - * Cumulative gas used since genesis (filter: lte) - */ - cumulative_gas_used_lte?: number; - /** - * Cumulative gas used since genesis (filter: gt) - */ - cumulative_gas_used_gt?: number; - /** - * Cumulative gas used since genesis (filter: gte) - */ - cumulative_gas_used_gte?: number; - /** - * Cumulative gas used since genesis (filter: between_min) - */ - cumulative_gas_used_between_min?: number; - /** - * Cumulative gas used since genesis (filter: between_max_value) - */ - cumulative_gas_used_between_max_value?: number; - /** - * Cumulative gas used since genesis (filter: in_values) (comma-separated list) - */ - cumulative_gas_used_in_values?: string; - /** - * Cumulative gas used since genesis (filter: not_in_values) (comma-separated list) - */ - cumulative_gas_used_not_in_values?: string; - /** - * Average gas used per block (filter: eq) - */ - avg_gas_used_eq?: number; - /** - * Average gas used per block (filter: ne) - */ - avg_gas_used_ne?: number; - /** - * Average gas used per block (filter: lt) - */ - avg_gas_used_lt?: number; - /** - * Average gas used per block (filter: lte) - */ - avg_gas_used_lte?: number; - /** - * Average gas used per block (filter: gt) - */ - avg_gas_used_gt?: number; - /** - * Average gas used per block (filter: gte) - */ - avg_gas_used_gte?: number; - /** - * Average gas used per block (filter: between_min) - */ - avg_gas_used_between_min?: number; - /** - * Average gas used per block (filter: between_max_value) - */ - avg_gas_used_between_max_value?: number; - /** - * Average gas used per block (filter: in_values) (comma-separated list) - */ - avg_gas_used_in_values?: string; - /** - * Average gas used per block (filter: not_in_values) (comma-separated list) - */ - avg_gas_used_not_in_values?: string; - /** - * Minimum gas used in a block (filter: eq) - */ - min_gas_used_eq?: number; - /** - * Minimum gas used in a block (filter: ne) - */ - min_gas_used_ne?: number; - /** - * Minimum gas used in a block (filter: lt) - */ - min_gas_used_lt?: number; - /** - * Minimum gas used in a block (filter: lte) - */ - min_gas_used_lte?: number; - /** - * Minimum gas used in a block (filter: gt) - */ - min_gas_used_gt?: number; - /** - * Minimum gas used in a block (filter: gte) - */ - min_gas_used_gte?: number; - /** - * Minimum gas used in a block (filter: between_min) - */ - min_gas_used_between_min?: number; - /** - * Minimum gas used in a block (filter: between_max_value) - */ - min_gas_used_between_max_value?: number; - /** - * Minimum gas used in a block (filter: in_values) (comma-separated list) - */ - min_gas_used_in_values?: string; - /** - * Minimum gas used in a block (filter: not_in_values) (comma-separated list) - */ - min_gas_used_not_in_values?: string; - /** - * Maximum gas used in a block (filter: eq) - */ - max_gas_used_eq?: number; - /** - * Maximum gas used in a block (filter: ne) - */ - max_gas_used_ne?: number; - /** - * Maximum gas used in a block (filter: lt) - */ - max_gas_used_lt?: number; - /** - * Maximum gas used in a block (filter: lte) - */ - max_gas_used_lte?: number; - /** - * Maximum gas used in a block (filter: gt) - */ - max_gas_used_gt?: number; - /** - * Maximum gas used in a block (filter: gte) - */ - max_gas_used_gte?: number; - /** - * Maximum gas used in a block (filter: between_min) - */ - max_gas_used_between_min?: number; - /** - * Maximum gas used in a block (filter: between_max_value) - */ - max_gas_used_between_max_value?: number; - /** - * Maximum gas used in a block (filter: in_values) (comma-separated list) - */ - max_gas_used_in_values?: string; - /** - * Maximum gas used in a block (filter: not_in_values) (comma-separated list) - */ - max_gas_used_not_in_values?: string; - /** - * 5th percentile gas used (filter: eq) - */ - p05_gas_used_eq?: number; - /** - * 5th percentile gas used (filter: ne) - */ - p05_gas_used_ne?: number; - /** - * 5th percentile gas used (filter: lt) - */ - p05_gas_used_lt?: number; - /** - * 5th percentile gas used (filter: lte) - */ - p05_gas_used_lte?: number; - /** - * 5th percentile gas used (filter: gt) - */ - p05_gas_used_gt?: number; - /** - * 5th percentile gas used (filter: gte) - */ - p05_gas_used_gte?: number; - /** - * 5th percentile gas used (filter: between_min) - */ - p05_gas_used_between_min?: number; - /** - * 5th percentile gas used (filter: between_max_value) - */ - p05_gas_used_between_max_value?: number; - /** - * 5th percentile gas used (filter: in_values) (comma-separated list) - */ - p05_gas_used_in_values?: string; - /** - * 5th percentile gas used (filter: not_in_values) (comma-separated list) - */ - p05_gas_used_not_in_values?: string; - /** - * 50th percentile (median) gas used (filter: eq) - */ - p50_gas_used_eq?: number; - /** - * 50th percentile (median) gas used (filter: ne) - */ - p50_gas_used_ne?: number; - /** - * 50th percentile (median) gas used (filter: lt) - */ - p50_gas_used_lt?: number; - /** - * 50th percentile (median) gas used (filter: lte) - */ - p50_gas_used_lte?: number; - /** - * 50th percentile (median) gas used (filter: gt) - */ - p50_gas_used_gt?: number; - /** - * 50th percentile (median) gas used (filter: gte) - */ - p50_gas_used_gte?: number; - /** - * 50th percentile (median) gas used (filter: between_min) - */ - p50_gas_used_between_min?: number; - /** - * 50th percentile (median) gas used (filter: between_max_value) - */ - p50_gas_used_between_max_value?: number; - /** - * 50th percentile (median) gas used (filter: in_values) (comma-separated list) - */ - p50_gas_used_in_values?: string; - /** - * 50th percentile (median) gas used (filter: not_in_values) (comma-separated list) - */ - p50_gas_used_not_in_values?: string; - /** - * 95th percentile gas used (filter: eq) - */ - p95_gas_used_eq?: number; - /** - * 95th percentile gas used (filter: ne) - */ - p95_gas_used_ne?: number; - /** - * 95th percentile gas used (filter: lt) - */ - p95_gas_used_lt?: number; - /** - * 95th percentile gas used (filter: lte) - */ - p95_gas_used_lte?: number; - /** - * 95th percentile gas used (filter: gt) - */ - p95_gas_used_gt?: number; - /** - * 95th percentile gas used (filter: gte) - */ - p95_gas_used_gte?: number; - /** - * 95th percentile gas used (filter: between_min) - */ - p95_gas_used_between_min?: number; - /** - * 95th percentile gas used (filter: between_max_value) - */ - p95_gas_used_between_max_value?: number; - /** - * 95th percentile gas used (filter: in_values) (comma-separated list) - */ - p95_gas_used_in_values?: string; - /** - * 95th percentile gas used (filter: not_in_values) (comma-separated list) - */ - p95_gas_used_not_in_values?: string; - /** - * Standard deviation of gas used (filter: eq) - */ - stddev_gas_used_eq?: number; - /** - * Standard deviation of gas used (filter: ne) - */ - stddev_gas_used_ne?: number; - /** - * Standard deviation of gas used (filter: lt) - */ - stddev_gas_used_lt?: number; - /** - * Standard deviation of gas used (filter: lte) - */ - stddev_gas_used_lte?: number; - /** - * Standard deviation of gas used (filter: gt) - */ - stddev_gas_used_gt?: number; - /** - * Standard deviation of gas used (filter: gte) - */ - stddev_gas_used_gte?: number; - /** - * Standard deviation of gas used (filter: between_min) - */ - stddev_gas_used_between_min?: number; - /** - * Standard deviation of gas used (filter: between_max_value) - */ - stddev_gas_used_between_max_value?: number; - /** - * Standard deviation of gas used (filter: in_values) (comma-separated list) - */ - stddev_gas_used_in_values?: string; - /** - * Standard deviation of gas used (filter: not_in_values) (comma-separated list) - */ - stddev_gas_used_not_in_values?: string; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: eq) - */ - upper_band_gas_used_eq?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: ne) - */ - upper_band_gas_used_ne?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: lt) - */ - upper_band_gas_used_lt?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: lte) - */ - upper_band_gas_used_lte?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: gt) - */ - upper_band_gas_used_gt?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: gte) - */ - upper_band_gas_used_gte?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: between_min) - */ - upper_band_gas_used_between_min?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: between_max_value) - */ - upper_band_gas_used_between_max_value?: number; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: in_values) (comma-separated list) - */ - upper_band_gas_used_in_values?: string; - /** - * Upper Bollinger band (avg + 2*stddev) (filter: not_in_values) (comma-separated list) - */ - upper_band_gas_used_not_in_values?: string; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: eq) - */ - lower_band_gas_used_eq?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: ne) - */ - lower_band_gas_used_ne?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lt) - */ - lower_band_gas_used_lt?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: lte) - */ - lower_band_gas_used_lte?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gt) - */ - lower_band_gas_used_gt?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: gte) - */ - lower_band_gas_used_gte?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_min) - */ - lower_band_gas_used_between_min?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: between_max_value) - */ - lower_band_gas_used_between_max_value?: number; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: in_values) (comma-separated list) - */ - lower_band_gas_used_in_values?: string; - /** - * Lower Bollinger band (avg - 2*stddev), can be negative during high volatility (filter: not_in_values) (comma-separated list) - */ - lower_band_gas_used_not_in_values?: string; - /** - * Moving average gas used (6-hour window) (filter: eq) - */ - moving_avg_gas_used_eq?: number; - /** - * Moving average gas used (6-hour window) (filter: ne) - */ - moving_avg_gas_used_ne?: number; - /** - * Moving average gas used (6-hour window) (filter: lt) - */ - moving_avg_gas_used_lt?: number; - /** - * Moving average gas used (6-hour window) (filter: lte) - */ - moving_avg_gas_used_lte?: number; - /** - * Moving average gas used (6-hour window) (filter: gt) - */ - moving_avg_gas_used_gt?: number; - /** - * Moving average gas used (6-hour window) (filter: gte) - */ - moving_avg_gas_used_gte?: number; - /** - * Moving average gas used (6-hour window) (filter: between_min) - */ - moving_avg_gas_used_between_min?: number; - /** - * Moving average gas used (6-hour window) (filter: between_max_value) - */ - moving_avg_gas_used_between_max_value?: number; - /** - * Moving average gas used (6-hour window) (filter: in_values) (comma-separated list) - */ - moving_avg_gas_used_in_values?: string; - /** - * Moving average gas used (6-hour window) (filter: not_in_values) (comma-separated list) - */ - moving_avg_gas_used_not_in_values?: string; - /** - * The maximum number of fct_execution_gas_used_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionGasUsedHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_gas_used_hourly'; -}; - -export type FctExecutionGasUsedHourlyServiceListErrors = { + error_count_ne?: number; /** - * Default error response + * Number of times this opcode resulted in an error in this frame (filter: lt) */ - default: Status; -}; - -export type FctExecutionGasUsedHourlyServiceListError = FctExecutionGasUsedHourlyServiceListErrors[keyof FctExecutionGasUsedHourlyServiceListErrors]; - -export type FctExecutionGasUsedHourlyServiceListResponses = { + error_count_lt?: number; /** - * OK + * Number of times this opcode resulted in an error in this frame (filter: lte) */ - 200: ListFctExecutionGasUsedHourlyResponse; -}; - -export type FctExecutionGasUsedHourlyServiceListResponse = FctExecutionGasUsedHourlyServiceListResponses[keyof FctExecutionGasUsedHourlyServiceListResponses]; - -export type FctExecutionGasUsedHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_execution_gas_used_hourly/{hour_start_date_time}'; -}; - -export type FctExecutionGasUsedHourlyServiceGetErrors = { + error_count_lte?: number; /** - * Default error response + * Number of times this opcode resulted in an error in this frame (filter: gt) */ - default: Status; -}; - -export type FctExecutionGasUsedHourlyServiceGetError = FctExecutionGasUsedHourlyServiceGetErrors[keyof FctExecutionGasUsedHourlyServiceGetErrors]; - -export type FctExecutionGasUsedHourlyServiceGetResponses = { + error_count_gt?: number; /** - * OK + * Number of times this opcode resulted in an error in this frame (filter: gte) */ - 200: GetFctExecutionGasUsedHourlyResponse; -}; - -export type FctExecutionGasUsedHourlyServiceGetResponse = FctExecutionGasUsedHourlyServiceGetResponses[keyof FctExecutionGasUsedHourlyServiceGetResponses]; - -export type FctExecutionReceiptSizeDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The start date of the day (filter: eq) - */ - day_start_date_eq?: string; - /** - * The start date of the day (filter: ne) - */ - day_start_date_ne?: string; - /** - * The start date of the day (filter: contains) - */ - day_start_date_contains?: string; - /** - * The start date of the day (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * The start date of the day (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * The start date of the day (filter: like) - */ - day_start_date_like?: string; - /** - * The start date of the day (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * The start date of the day (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * The start date of the day (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks in this day (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks in this day (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks in this day (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks in this day (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks in this day (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks in this day (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks in this day (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks in this day (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks in this day (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks in this day (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Number of transactions in this day (filter: eq) - */ - transaction_count_eq?: number; - /** - * Number of transactions in this day (filter: ne) - */ - transaction_count_ne?: number; - /** - * Number of transactions in this day (filter: lt) - */ - transaction_count_lt?: number; - /** - * Number of transactions in this day (filter: lte) - */ - transaction_count_lte?: number; - /** - * Number of transactions in this day (filter: gt) - */ - transaction_count_gt?: number; - /** - * Number of transactions in this day (filter: gte) - */ - transaction_count_gte?: number; - /** - * Number of transactions in this day (filter: between_min) - */ - transaction_count_between_min?: number; - /** - * Number of transactions in this day (filter: between_max_value) - */ - transaction_count_between_max_value?: number; - /** - * Number of transactions in this day (filter: in_values) (comma-separated list) - */ - transaction_count_in_values?: string; - /** - * Number of transactions in this day (filter: not_in_values) (comma-separated list) - */ - transaction_count_not_in_values?: string; - /** - * Total receipt bytes across all blocks (filter: eq) - */ - total_receipt_bytes_eq?: number; - /** - * Total receipt bytes across all blocks (filter: ne) - */ - total_receipt_bytes_ne?: number; - /** - * Total receipt bytes across all blocks (filter: lt) - */ - total_receipt_bytes_lt?: number; - /** - * Total receipt bytes across all blocks (filter: lte) - */ - total_receipt_bytes_lte?: number; - /** - * Total receipt bytes across all blocks (filter: gt) - */ - total_receipt_bytes_gt?: number; - /** - * Total receipt bytes across all blocks (filter: gte) - */ - total_receipt_bytes_gte?: number; - /** - * Total receipt bytes across all blocks (filter: between_min) - */ - total_receipt_bytes_between_min?: number; - /** - * Total receipt bytes across all blocks (filter: between_max_value) - */ - total_receipt_bytes_between_max_value?: number; - /** - * Total receipt bytes across all blocks (filter: in_values) (comma-separated list) - */ - total_receipt_bytes_in_values?: string; - /** - * Total receipt bytes across all blocks (filter: not_in_values) (comma-separated list) - */ - total_receipt_bytes_not_in_values?: string; - /** - * Filter avg_receipt_bytes_per_block using value - */ - avg_receipt_bytes_per_block_value?: number; - /** - * Minimum total receipt bytes in a single block (filter: eq) - */ - min_receipt_bytes_per_block_eq?: number; - /** - * Minimum total receipt bytes in a single block (filter: ne) - */ - min_receipt_bytes_per_block_ne?: number; - /** - * Minimum total receipt bytes in a single block (filter: lt) - */ - min_receipt_bytes_per_block_lt?: number; - /** - * Minimum total receipt bytes in a single block (filter: lte) - */ - min_receipt_bytes_per_block_lte?: number; - /** - * Minimum total receipt bytes in a single block (filter: gt) - */ - min_receipt_bytes_per_block_gt?: number; - /** - * Minimum total receipt bytes in a single block (filter: gte) - */ - min_receipt_bytes_per_block_gte?: number; - /** - * Minimum total receipt bytes in a single block (filter: between_min) - */ - min_receipt_bytes_per_block_between_min?: number; - /** - * Minimum total receipt bytes in a single block (filter: between_max_value) - */ - min_receipt_bytes_per_block_between_max_value?: number; - /** - * Minimum total receipt bytes in a single block (filter: in_values) (comma-separated list) - */ - min_receipt_bytes_per_block_in_values?: string; - /** - * Minimum total receipt bytes in a single block (filter: not_in_values) (comma-separated list) - */ - min_receipt_bytes_per_block_not_in_values?: string; - /** - * Maximum total receipt bytes in a single block (filter: eq) - */ - max_receipt_bytes_per_block_eq?: number; - /** - * Maximum total receipt bytes in a single block (filter: ne) - */ - max_receipt_bytes_per_block_ne?: number; - /** - * Maximum total receipt bytes in a single block (filter: lt) - */ - max_receipt_bytes_per_block_lt?: number; - /** - * Maximum total receipt bytes in a single block (filter: lte) - */ - max_receipt_bytes_per_block_lte?: number; - /** - * Maximum total receipt bytes in a single block (filter: gt) - */ - max_receipt_bytes_per_block_gt?: number; - /** - * Maximum total receipt bytes in a single block (filter: gte) - */ - max_receipt_bytes_per_block_gte?: number; - /** - * Maximum total receipt bytes in a single block (filter: between_min) - */ - max_receipt_bytes_per_block_between_min?: number; - /** - * Maximum total receipt bytes in a single block (filter: between_max_value) - */ - max_receipt_bytes_per_block_between_max_value?: number; - /** - * Maximum total receipt bytes in a single block (filter: in_values) (comma-separated list) - */ - max_receipt_bytes_per_block_in_values?: string; - /** - * Maximum total receipt bytes in a single block (filter: not_in_values) (comma-separated list) - */ - max_receipt_bytes_per_block_not_in_values?: string; - /** - * 5th percentile of total receipt bytes per block (filter: eq) - */ - p05_receipt_bytes_per_block_eq?: number; - /** - * 5th percentile of total receipt bytes per block (filter: ne) - */ - p05_receipt_bytes_per_block_ne?: number; - /** - * 5th percentile of total receipt bytes per block (filter: lt) - */ - p05_receipt_bytes_per_block_lt?: number; - /** - * 5th percentile of total receipt bytes per block (filter: lte) - */ - p05_receipt_bytes_per_block_lte?: number; - /** - * 5th percentile of total receipt bytes per block (filter: gt) - */ - p05_receipt_bytes_per_block_gt?: number; - /** - * 5th percentile of total receipt bytes per block (filter: gte) - */ - p05_receipt_bytes_per_block_gte?: number; - /** - * 5th percentile of total receipt bytes per block (filter: between_min) - */ - p05_receipt_bytes_per_block_between_min?: number; - /** - * 5th percentile of total receipt bytes per block (filter: between_max_value) - */ - p05_receipt_bytes_per_block_between_max_value?: number; - /** - * 5th percentile of total receipt bytes per block (filter: in_values) (comma-separated list) - */ - p05_receipt_bytes_per_block_in_values?: string; - /** - * 5th percentile of total receipt bytes per block (filter: not_in_values) (comma-separated list) - */ - p05_receipt_bytes_per_block_not_in_values?: string; - /** - * 50th percentile of total receipt bytes per block (filter: eq) - */ - p50_receipt_bytes_per_block_eq?: number; - /** - * 50th percentile of total receipt bytes per block (filter: ne) - */ - p50_receipt_bytes_per_block_ne?: number; - /** - * 50th percentile of total receipt bytes per block (filter: lt) - */ - p50_receipt_bytes_per_block_lt?: number; - /** - * 50th percentile of total receipt bytes per block (filter: lte) - */ - p50_receipt_bytes_per_block_lte?: number; - /** - * 50th percentile of total receipt bytes per block (filter: gt) - */ - p50_receipt_bytes_per_block_gt?: number; - /** - * 50th percentile of total receipt bytes per block (filter: gte) - */ - p50_receipt_bytes_per_block_gte?: number; - /** - * 50th percentile of total receipt bytes per block (filter: between_min) - */ - p50_receipt_bytes_per_block_between_min?: number; - /** - * 50th percentile of total receipt bytes per block (filter: between_max_value) - */ - p50_receipt_bytes_per_block_between_max_value?: number; - /** - * 50th percentile of total receipt bytes per block (filter: in_values) (comma-separated list) - */ - p50_receipt_bytes_per_block_in_values?: string; - /** - * 50th percentile of total receipt bytes per block (filter: not_in_values) (comma-separated list) - */ - p50_receipt_bytes_per_block_not_in_values?: string; - /** - * 95th percentile of total receipt bytes per block (filter: eq) - */ - p95_receipt_bytes_per_block_eq?: number; - /** - * 95th percentile of total receipt bytes per block (filter: ne) - */ - p95_receipt_bytes_per_block_ne?: number; - /** - * 95th percentile of total receipt bytes per block (filter: lt) - */ - p95_receipt_bytes_per_block_lt?: number; - /** - * 95th percentile of total receipt bytes per block (filter: lte) - */ - p95_receipt_bytes_per_block_lte?: number; - /** - * 95th percentile of total receipt bytes per block (filter: gt) - */ - p95_receipt_bytes_per_block_gt?: number; - /** - * 95th percentile of total receipt bytes per block (filter: gte) - */ - p95_receipt_bytes_per_block_gte?: number; - /** - * 95th percentile of total receipt bytes per block (filter: between_min) - */ - p95_receipt_bytes_per_block_between_min?: number; - /** - * 95th percentile of total receipt bytes per block (filter: between_max_value) - */ - p95_receipt_bytes_per_block_between_max_value?: number; - /** - * 95th percentile of total receipt bytes per block (filter: in_values) (comma-separated list) - */ - p95_receipt_bytes_per_block_in_values?: string; - /** - * 95th percentile of total receipt bytes per block (filter: not_in_values) (comma-separated list) - */ - p95_receipt_bytes_per_block_not_in_values?: string; - /** - * Filter stddev_receipt_bytes_per_block using value - */ - stddev_receipt_bytes_per_block_value?: number; - /** - * Filter upper_band_receipt_bytes_per_block using value - */ - upper_band_receipt_bytes_per_block_value?: number; - /** - * Filter lower_band_receipt_bytes_per_block using value - */ - lower_band_receipt_bytes_per_block_value?: number; - /** - * Filter moving_avg_receipt_bytes_per_block using value - */ - moving_avg_receipt_bytes_per_block_value?: number; - /** - * Filter avg_receipt_bytes_per_transaction using value - */ - avg_receipt_bytes_per_transaction_value?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: eq) - */ - p50_receipt_bytes_per_transaction_eq?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: ne) - */ - p50_receipt_bytes_per_transaction_ne?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: lt) - */ - p50_receipt_bytes_per_transaction_lt?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: lte) - */ - p50_receipt_bytes_per_transaction_lte?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: gt) - */ - p50_receipt_bytes_per_transaction_gt?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: gte) - */ - p50_receipt_bytes_per_transaction_gte?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: between_min) - */ - p50_receipt_bytes_per_transaction_between_min?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: between_max_value) - */ - p50_receipt_bytes_per_transaction_between_max_value?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: in_values) (comma-separated list) - */ - p50_receipt_bytes_per_transaction_in_values?: string; - /** - * 50th percentile of receipt bytes per transaction (filter: not_in_values) (comma-separated list) - */ - p50_receipt_bytes_per_transaction_not_in_values?: string; - /** - * 95th percentile of receipt bytes per transaction (filter: eq) - */ - p95_receipt_bytes_per_transaction_eq?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: ne) - */ - p95_receipt_bytes_per_transaction_ne?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: lt) - */ - p95_receipt_bytes_per_transaction_lt?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: lte) - */ - p95_receipt_bytes_per_transaction_lte?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: gt) - */ - p95_receipt_bytes_per_transaction_gt?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: gte) - */ - p95_receipt_bytes_per_transaction_gte?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: between_min) - */ - p95_receipt_bytes_per_transaction_between_min?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: between_max_value) - */ - p95_receipt_bytes_per_transaction_between_max_value?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: in_values) (comma-separated list) - */ - p95_receipt_bytes_per_transaction_in_values?: string; - /** - * 95th percentile of receipt bytes per transaction (filter: not_in_values) (comma-separated list) - */ - p95_receipt_bytes_per_transaction_not_in_values?: string; - /** - * Total logs emitted across all transactions (filter: eq) - */ - total_log_count_eq?: number; - /** - * Total logs emitted across all transactions (filter: ne) - */ - total_log_count_ne?: number; - /** - * Total logs emitted across all transactions (filter: lt) - */ - total_log_count_lt?: number; - /** - * Total logs emitted across all transactions (filter: lte) - */ - total_log_count_lte?: number; - /** - * Total logs emitted across all transactions (filter: gt) - */ - total_log_count_gt?: number; - /** - * Total logs emitted across all transactions (filter: gte) - */ - total_log_count_gte?: number; - /** - * Total logs emitted across all transactions (filter: between_min) - */ - total_log_count_between_min?: number; - /** - * Total logs emitted across all transactions (filter: between_max_value) - */ - total_log_count_between_max_value?: number; - /** - * Total logs emitted across all transactions (filter: in_values) (comma-separated list) - */ - total_log_count_in_values?: string; - /** - * Total logs emitted across all transactions (filter: not_in_values) (comma-separated list) - */ - total_log_count_not_in_values?: string; - /** - * Filter avg_log_count_per_transaction using value - */ - avg_log_count_per_transaction_value?: number; - /** - * Running total of receipt bytes since genesis (filter: eq) - */ - cumulative_receipt_bytes_eq?: number; - /** - * Running total of receipt bytes since genesis (filter: ne) - */ - cumulative_receipt_bytes_ne?: number; - /** - * Running total of receipt bytes since genesis (filter: lt) - */ - cumulative_receipt_bytes_lt?: number; - /** - * Running total of receipt bytes since genesis (filter: lte) - */ - cumulative_receipt_bytes_lte?: number; - /** - * Running total of receipt bytes since genesis (filter: gt) - */ - cumulative_receipt_bytes_gt?: number; - /** - * Running total of receipt bytes since genesis (filter: gte) - */ - cumulative_receipt_bytes_gte?: number; - /** - * Running total of receipt bytes since genesis (filter: between_min) - */ - cumulative_receipt_bytes_between_min?: number; - /** - * Running total of receipt bytes since genesis (filter: between_max_value) - */ - cumulative_receipt_bytes_between_max_value?: number; - /** - * Running total of receipt bytes since genesis (filter: in_values) (comma-separated list) - */ - cumulative_receipt_bytes_in_values?: string; - /** - * Running total of receipt bytes since genesis (filter: not_in_values) (comma-separated list) - */ - cumulative_receipt_bytes_not_in_values?: string; - /** - * The maximum number of fct_execution_receipt_size_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionReceiptSizeDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_receipt_size_daily'; -}; - -export type FctExecutionReceiptSizeDailyServiceListErrors = { + error_count_gte?: number; /** - * Default error response + * Number of times this opcode resulted in an error in this frame (filter: between_min) */ - default: Status; -}; - -export type FctExecutionReceiptSizeDailyServiceListError = FctExecutionReceiptSizeDailyServiceListErrors[keyof FctExecutionReceiptSizeDailyServiceListErrors]; - -export type FctExecutionReceiptSizeDailyServiceListResponses = { + error_count_between_min?: number; /** - * OK + * Number of times this opcode resulted in an error in this frame (filter: between_max_value) */ - 200: ListFctExecutionReceiptSizeDailyResponse; -}; - -export type FctExecutionReceiptSizeDailyServiceListResponse = FctExecutionReceiptSizeDailyServiceListResponses[keyof FctExecutionReceiptSizeDailyServiceListResponses]; - -export type FctExecutionReceiptSizeDailyServiceGetData = { - body?: never; - path: { - /** - * The start date of the day - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_execution_receipt_size_daily/{day_start_date}'; -}; - -export type FctExecutionReceiptSizeDailyServiceGetErrors = { + error_count_between_max_value?: number; /** - * Default error response + * Number of times this opcode resulted in an error in this frame (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctExecutionReceiptSizeDailyServiceGetError = FctExecutionReceiptSizeDailyServiceGetErrors[keyof FctExecutionReceiptSizeDailyServiceGetErrors]; - -export type FctExecutionReceiptSizeDailyServiceGetResponses = { + error_count_in_values?: string; /** - * OK + * Number of times this opcode resulted in an error in this frame (filter: not_in_values) (comma-separated list) */ - 200: GetFctExecutionReceiptSizeDailyResponse; -}; - -export type FctExecutionReceiptSizeDailyServiceGetResponse = FctExecutionReceiptSizeDailyServiceGetResponses[keyof FctExecutionReceiptSizeDailyServiceGetResponses]; - -export type FctExecutionReceiptSizeHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The start time of the hour (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * The start time of the hour (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * The start time of the hour (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * The start time of the hour (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * The start time of the hour (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * The start time of the hour (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * The start time of the hour (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * The start time of the hour (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * The start time of the hour (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * The start time of the hour (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks in this hour (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks in this hour (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks in this hour (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks in this hour (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks in this hour (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks in this hour (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks in this hour (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks in this hour (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks in this hour (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks in this hour (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Number of transactions in this hour (filter: eq) - */ - transaction_count_eq?: number; - /** - * Number of transactions in this hour (filter: ne) - */ - transaction_count_ne?: number; - /** - * Number of transactions in this hour (filter: lt) - */ - transaction_count_lt?: number; - /** - * Number of transactions in this hour (filter: lte) - */ - transaction_count_lte?: number; - /** - * Number of transactions in this hour (filter: gt) - */ - transaction_count_gt?: number; - /** - * Number of transactions in this hour (filter: gte) - */ - transaction_count_gte?: number; - /** - * Number of transactions in this hour (filter: between_min) - */ - transaction_count_between_min?: number; - /** - * Number of transactions in this hour (filter: between_max_value) - */ - transaction_count_between_max_value?: number; - /** - * Number of transactions in this hour (filter: in_values) (comma-separated list) - */ - transaction_count_in_values?: string; - /** - * Number of transactions in this hour (filter: not_in_values) (comma-separated list) - */ - transaction_count_not_in_values?: string; - /** - * Total receipt bytes across all blocks (filter: eq) - */ - total_receipt_bytes_eq?: number; - /** - * Total receipt bytes across all blocks (filter: ne) - */ - total_receipt_bytes_ne?: number; - /** - * Total receipt bytes across all blocks (filter: lt) - */ - total_receipt_bytes_lt?: number; - /** - * Total receipt bytes across all blocks (filter: lte) - */ - total_receipt_bytes_lte?: number; - /** - * Total receipt bytes across all blocks (filter: gt) - */ - total_receipt_bytes_gt?: number; - /** - * Total receipt bytes across all blocks (filter: gte) - */ - total_receipt_bytes_gte?: number; - /** - * Total receipt bytes across all blocks (filter: between_min) - */ - total_receipt_bytes_between_min?: number; - /** - * Total receipt bytes across all blocks (filter: between_max_value) - */ - total_receipt_bytes_between_max_value?: number; - /** - * Total receipt bytes across all blocks (filter: in_values) (comma-separated list) - */ - total_receipt_bytes_in_values?: string; - /** - * Total receipt bytes across all blocks (filter: not_in_values) (comma-separated list) - */ - total_receipt_bytes_not_in_values?: string; - /** - * Filter avg_receipt_bytes_per_block using value - */ - avg_receipt_bytes_per_block_value?: number; - /** - * Minimum total receipt bytes in a single block (filter: eq) - */ - min_receipt_bytes_per_block_eq?: number; - /** - * Minimum total receipt bytes in a single block (filter: ne) - */ - min_receipt_bytes_per_block_ne?: number; - /** - * Minimum total receipt bytes in a single block (filter: lt) - */ - min_receipt_bytes_per_block_lt?: number; - /** - * Minimum total receipt bytes in a single block (filter: lte) - */ - min_receipt_bytes_per_block_lte?: number; - /** - * Minimum total receipt bytes in a single block (filter: gt) - */ - min_receipt_bytes_per_block_gt?: number; - /** - * Minimum total receipt bytes in a single block (filter: gte) - */ - min_receipt_bytes_per_block_gte?: number; - /** - * Minimum total receipt bytes in a single block (filter: between_min) - */ - min_receipt_bytes_per_block_between_min?: number; - /** - * Minimum total receipt bytes in a single block (filter: between_max_value) - */ - min_receipt_bytes_per_block_between_max_value?: number; - /** - * Minimum total receipt bytes in a single block (filter: in_values) (comma-separated list) - */ - min_receipt_bytes_per_block_in_values?: string; - /** - * Minimum total receipt bytes in a single block (filter: not_in_values) (comma-separated list) - */ - min_receipt_bytes_per_block_not_in_values?: string; - /** - * Maximum total receipt bytes in a single block (filter: eq) - */ - max_receipt_bytes_per_block_eq?: number; - /** - * Maximum total receipt bytes in a single block (filter: ne) - */ - max_receipt_bytes_per_block_ne?: number; - /** - * Maximum total receipt bytes in a single block (filter: lt) - */ - max_receipt_bytes_per_block_lt?: number; - /** - * Maximum total receipt bytes in a single block (filter: lte) - */ - max_receipt_bytes_per_block_lte?: number; - /** - * Maximum total receipt bytes in a single block (filter: gt) - */ - max_receipt_bytes_per_block_gt?: number; - /** - * Maximum total receipt bytes in a single block (filter: gte) - */ - max_receipt_bytes_per_block_gte?: number; - /** - * Maximum total receipt bytes in a single block (filter: between_min) - */ - max_receipt_bytes_per_block_between_min?: number; - /** - * Maximum total receipt bytes in a single block (filter: between_max_value) - */ - max_receipt_bytes_per_block_between_max_value?: number; - /** - * Maximum total receipt bytes in a single block (filter: in_values) (comma-separated list) - */ - max_receipt_bytes_per_block_in_values?: string; - /** - * Maximum total receipt bytes in a single block (filter: not_in_values) (comma-separated list) - */ - max_receipt_bytes_per_block_not_in_values?: string; - /** - * 5th percentile of total receipt bytes per block (filter: eq) - */ - p05_receipt_bytes_per_block_eq?: number; - /** - * 5th percentile of total receipt bytes per block (filter: ne) - */ - p05_receipt_bytes_per_block_ne?: number; - /** - * 5th percentile of total receipt bytes per block (filter: lt) - */ - p05_receipt_bytes_per_block_lt?: number; - /** - * 5th percentile of total receipt bytes per block (filter: lte) - */ - p05_receipt_bytes_per_block_lte?: number; - /** - * 5th percentile of total receipt bytes per block (filter: gt) - */ - p05_receipt_bytes_per_block_gt?: number; - /** - * 5th percentile of total receipt bytes per block (filter: gte) - */ - p05_receipt_bytes_per_block_gte?: number; - /** - * 5th percentile of total receipt bytes per block (filter: between_min) - */ - p05_receipt_bytes_per_block_between_min?: number; - /** - * 5th percentile of total receipt bytes per block (filter: between_max_value) - */ - p05_receipt_bytes_per_block_between_max_value?: number; - /** - * 5th percentile of total receipt bytes per block (filter: in_values) (comma-separated list) - */ - p05_receipt_bytes_per_block_in_values?: string; - /** - * 5th percentile of total receipt bytes per block (filter: not_in_values) (comma-separated list) - */ - p05_receipt_bytes_per_block_not_in_values?: string; - /** - * 50th percentile of total receipt bytes per block (filter: eq) - */ - p50_receipt_bytes_per_block_eq?: number; - /** - * 50th percentile of total receipt bytes per block (filter: ne) - */ - p50_receipt_bytes_per_block_ne?: number; - /** - * 50th percentile of total receipt bytes per block (filter: lt) - */ - p50_receipt_bytes_per_block_lt?: number; - /** - * 50th percentile of total receipt bytes per block (filter: lte) - */ - p50_receipt_bytes_per_block_lte?: number; - /** - * 50th percentile of total receipt bytes per block (filter: gt) - */ - p50_receipt_bytes_per_block_gt?: number; - /** - * 50th percentile of total receipt bytes per block (filter: gte) - */ - p50_receipt_bytes_per_block_gte?: number; - /** - * 50th percentile of total receipt bytes per block (filter: between_min) - */ - p50_receipt_bytes_per_block_between_min?: number; - /** - * 50th percentile of total receipt bytes per block (filter: between_max_value) - */ - p50_receipt_bytes_per_block_between_max_value?: number; - /** - * 50th percentile of total receipt bytes per block (filter: in_values) (comma-separated list) - */ - p50_receipt_bytes_per_block_in_values?: string; - /** - * 50th percentile of total receipt bytes per block (filter: not_in_values) (comma-separated list) - */ - p50_receipt_bytes_per_block_not_in_values?: string; - /** - * 95th percentile of total receipt bytes per block (filter: eq) - */ - p95_receipt_bytes_per_block_eq?: number; - /** - * 95th percentile of total receipt bytes per block (filter: ne) - */ - p95_receipt_bytes_per_block_ne?: number; - /** - * 95th percentile of total receipt bytes per block (filter: lt) - */ - p95_receipt_bytes_per_block_lt?: number; - /** - * 95th percentile of total receipt bytes per block (filter: lte) - */ - p95_receipt_bytes_per_block_lte?: number; - /** - * 95th percentile of total receipt bytes per block (filter: gt) - */ - p95_receipt_bytes_per_block_gt?: number; - /** - * 95th percentile of total receipt bytes per block (filter: gte) - */ - p95_receipt_bytes_per_block_gte?: number; - /** - * 95th percentile of total receipt bytes per block (filter: between_min) - */ - p95_receipt_bytes_per_block_between_min?: number; - /** - * 95th percentile of total receipt bytes per block (filter: between_max_value) - */ - p95_receipt_bytes_per_block_between_max_value?: number; - /** - * 95th percentile of total receipt bytes per block (filter: in_values) (comma-separated list) - */ - p95_receipt_bytes_per_block_in_values?: string; - /** - * 95th percentile of total receipt bytes per block (filter: not_in_values) (comma-separated list) - */ - p95_receipt_bytes_per_block_not_in_values?: string; - /** - * Filter stddev_receipt_bytes_per_block using value - */ - stddev_receipt_bytes_per_block_value?: number; - /** - * Filter upper_band_receipt_bytes_per_block using value - */ - upper_band_receipt_bytes_per_block_value?: number; - /** - * Filter lower_band_receipt_bytes_per_block using value - */ - lower_band_receipt_bytes_per_block_value?: number; - /** - * Filter moving_avg_receipt_bytes_per_block using value - */ - moving_avg_receipt_bytes_per_block_value?: number; - /** - * Filter avg_receipt_bytes_per_transaction using value - */ - avg_receipt_bytes_per_transaction_value?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: eq) - */ - p50_receipt_bytes_per_transaction_eq?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: ne) - */ - p50_receipt_bytes_per_transaction_ne?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: lt) - */ - p50_receipt_bytes_per_transaction_lt?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: lte) - */ - p50_receipt_bytes_per_transaction_lte?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: gt) - */ - p50_receipt_bytes_per_transaction_gt?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: gte) - */ - p50_receipt_bytes_per_transaction_gte?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: between_min) - */ - p50_receipt_bytes_per_transaction_between_min?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: between_max_value) - */ - p50_receipt_bytes_per_transaction_between_max_value?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: in_values) (comma-separated list) - */ - p50_receipt_bytes_per_transaction_in_values?: string; - /** - * 50th percentile of receipt bytes per transaction (filter: not_in_values) (comma-separated list) - */ - p50_receipt_bytes_per_transaction_not_in_values?: string; - /** - * 95th percentile of receipt bytes per transaction (filter: eq) - */ - p95_receipt_bytes_per_transaction_eq?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: ne) - */ - p95_receipt_bytes_per_transaction_ne?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: lt) - */ - p95_receipt_bytes_per_transaction_lt?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: lte) - */ - p95_receipt_bytes_per_transaction_lte?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: gt) - */ - p95_receipt_bytes_per_transaction_gt?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: gte) - */ - p95_receipt_bytes_per_transaction_gte?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: between_min) - */ - p95_receipt_bytes_per_transaction_between_min?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: between_max_value) - */ - p95_receipt_bytes_per_transaction_between_max_value?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: in_values) (comma-separated list) - */ - p95_receipt_bytes_per_transaction_in_values?: string; - /** - * 95th percentile of receipt bytes per transaction (filter: not_in_values) (comma-separated list) - */ - p95_receipt_bytes_per_transaction_not_in_values?: string; - /** - * Total logs emitted across all transactions (filter: eq) - */ - total_log_count_eq?: number; - /** - * Total logs emitted across all transactions (filter: ne) - */ - total_log_count_ne?: number; - /** - * Total logs emitted across all transactions (filter: lt) - */ - total_log_count_lt?: number; - /** - * Total logs emitted across all transactions (filter: lte) - */ - total_log_count_lte?: number; - /** - * Total logs emitted across all transactions (filter: gt) - */ - total_log_count_gt?: number; - /** - * Total logs emitted across all transactions (filter: gte) - */ - total_log_count_gte?: number; - /** - * Total logs emitted across all transactions (filter: between_min) - */ - total_log_count_between_min?: number; - /** - * Total logs emitted across all transactions (filter: between_max_value) - */ - total_log_count_between_max_value?: number; - /** - * Total logs emitted across all transactions (filter: in_values) (comma-separated list) - */ - total_log_count_in_values?: string; - /** - * Total logs emitted across all transactions (filter: not_in_values) (comma-separated list) - */ - total_log_count_not_in_values?: string; - /** - * Filter avg_log_count_per_transaction using value - */ - avg_log_count_per_transaction_value?: number; - /** - * Running total of receipt bytes since genesis (filter: eq) - */ - cumulative_receipt_bytes_eq?: number; - /** - * Running total of receipt bytes since genesis (filter: ne) - */ - cumulative_receipt_bytes_ne?: number; - /** - * Running total of receipt bytes since genesis (filter: lt) - */ - cumulative_receipt_bytes_lt?: number; - /** - * Running total of receipt bytes since genesis (filter: lte) - */ - cumulative_receipt_bytes_lte?: number; - /** - * Running total of receipt bytes since genesis (filter: gt) - */ - cumulative_receipt_bytes_gt?: number; - /** - * Running total of receipt bytes since genesis (filter: gte) - */ - cumulative_receipt_bytes_gte?: number; - /** - * Running total of receipt bytes since genesis (filter: between_min) - */ - cumulative_receipt_bytes_between_min?: number; - /** - * Running total of receipt bytes since genesis (filter: between_max_value) - */ - cumulative_receipt_bytes_between_max_value?: number; - /** - * Running total of receipt bytes since genesis (filter: in_values) (comma-separated list) - */ - cumulative_receipt_bytes_in_values?: string; - /** - * Running total of receipt bytes since genesis (filter: not_in_values) (comma-separated list) - */ - cumulative_receipt_bytes_not_in_values?: string; - /** - * The maximum number of fct_execution_receipt_size_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionReceiptSizeHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_receipt_size_hourly'; -}; - -export type FctExecutionReceiptSizeHourlyServiceListErrors = { + error_count_not_in_values?: string; /** - * Default error response + * The maximum number of int_transaction_call_frame_opcode_gas to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - default: Status; -}; - -export type FctExecutionReceiptSizeHourlyServiceListError = FctExecutionReceiptSizeHourlyServiceListErrors[keyof FctExecutionReceiptSizeHourlyServiceListErrors]; - -export type FctExecutionReceiptSizeHourlyServiceListResponses = { + page_size?: number; /** - * OK + * A page token, received from a previous `ListIntTransactionCallFrameOpcodeGas` call. Provide this to retrieve the subsequent page. */ - 200: ListFctExecutionReceiptSizeHourlyResponse; -}; - -export type FctExecutionReceiptSizeHourlyServiceListResponse = FctExecutionReceiptSizeHourlyServiceListResponses[keyof FctExecutionReceiptSizeHourlyServiceListResponses]; - -export type FctExecutionReceiptSizeHourlyServiceGetData = { - body?: never; - path: { - /** - * The start time of the hour - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_execution_receipt_size_hourly/{hour_start_date_time}'; -}; - -export type FctExecutionReceiptSizeHourlyServiceGetErrors = { + page_token?: string; /** - * Default error response + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - default: Status; + order_by?: string; + }; + url: '/api/v1/int_transaction_call_frame_opcode_gas'; }; -export type FctExecutionReceiptSizeHourlyServiceGetError = FctExecutionReceiptSizeHourlyServiceGetErrors[keyof FctExecutionReceiptSizeHourlyServiceGetErrors]; - -export type FctExecutionReceiptSizeHourlyServiceGetResponses = { - /** - * OK - */ - 200: GetFctExecutionReceiptSizeHourlyResponse; +export type IntTransactionCallFrameOpcodeGasServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -export type FctExecutionReceiptSizeHourlyServiceGetResponse = FctExecutionReceiptSizeHourlyServiceGetResponses[keyof FctExecutionReceiptSizeHourlyServiceGetResponses]; +export type IntTransactionCallFrameOpcodeGasServiceListError = + IntTransactionCallFrameOpcodeGasServiceListErrors[keyof IntTransactionCallFrameOpcodeGasServiceListErrors]; -export type FctExecutionStateSizeDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total accounts at end of day (filter: eq) - */ - accounts_eq?: number; - /** - * Total accounts at end of day (filter: ne) - */ - accounts_ne?: number; - /** - * Total accounts at end of day (filter: lt) - */ - accounts_lt?: number; - /** - * Total accounts at end of day (filter: lte) - */ - accounts_lte?: number; - /** - * Total accounts at end of day (filter: gt) - */ - accounts_gt?: number; - /** - * Total accounts at end of day (filter: gte) - */ - accounts_gte?: number; - /** - * Total accounts at end of day (filter: between_min) - */ - accounts_between_min?: number; - /** - * Total accounts at end of day (filter: between_max_value) - */ - accounts_between_max_value?: number; - /** - * Total accounts at end of day (filter: in_values) (comma-separated list) - */ - accounts_in_values?: string; - /** - * Total accounts at end of day (filter: not_in_values) (comma-separated list) - */ - accounts_not_in_values?: string; - /** - * Account bytes at end of day (filter: eq) - */ - account_bytes_eq?: number; - /** - * Account bytes at end of day (filter: ne) - */ - account_bytes_ne?: number; - /** - * Account bytes at end of day (filter: lt) - */ - account_bytes_lt?: number; - /** - * Account bytes at end of day (filter: lte) - */ - account_bytes_lte?: number; - /** - * Account bytes at end of day (filter: gt) - */ - account_bytes_gt?: number; - /** - * Account bytes at end of day (filter: gte) - */ - account_bytes_gte?: number; - /** - * Account bytes at end of day (filter: between_min) - */ - account_bytes_between_min?: number; - /** - * Account bytes at end of day (filter: between_max_value) - */ - account_bytes_between_max_value?: number; - /** - * Account bytes at end of day (filter: in_values) (comma-separated list) - */ - account_bytes_in_values?: string; - /** - * Account bytes at end of day (filter: not_in_values) (comma-separated list) - */ - account_bytes_not_in_values?: string; - /** - * Account trie nodes at end of day (filter: eq) - */ - account_trienodes_eq?: number; - /** - * Account trie nodes at end of day (filter: ne) - */ - account_trienodes_ne?: number; - /** - * Account trie nodes at end of day (filter: lt) - */ - account_trienodes_lt?: number; - /** - * Account trie nodes at end of day (filter: lte) - */ - account_trienodes_lte?: number; - /** - * Account trie nodes at end of day (filter: gt) - */ - account_trienodes_gt?: number; - /** - * Account trie nodes at end of day (filter: gte) - */ - account_trienodes_gte?: number; - /** - * Account trie nodes at end of day (filter: between_min) - */ - account_trienodes_between_min?: number; - /** - * Account trie nodes at end of day (filter: between_max_value) - */ - account_trienodes_between_max_value?: number; - /** - * Account trie nodes at end of day (filter: in_values) (comma-separated list) - */ - account_trienodes_in_values?: string; - /** - * Account trie nodes at end of day (filter: not_in_values) (comma-separated list) - */ - account_trienodes_not_in_values?: string; - /** - * Account trie node bytes at end of day (filter: eq) - */ - account_trienode_bytes_eq?: number; - /** - * Account trie node bytes at end of day (filter: ne) - */ - account_trienode_bytes_ne?: number; - /** - * Account trie node bytes at end of day (filter: lt) - */ - account_trienode_bytes_lt?: number; - /** - * Account trie node bytes at end of day (filter: lte) - */ - account_trienode_bytes_lte?: number; - /** - * Account trie node bytes at end of day (filter: gt) - */ - account_trienode_bytes_gt?: number; - /** - * Account trie node bytes at end of day (filter: gte) - */ - account_trienode_bytes_gte?: number; - /** - * Account trie node bytes at end of day (filter: between_min) - */ - account_trienode_bytes_between_min?: number; - /** - * Account trie node bytes at end of day (filter: between_max_value) - */ - account_trienode_bytes_between_max_value?: number; - /** - * Account trie node bytes at end of day (filter: in_values) (comma-separated list) - */ - account_trienode_bytes_in_values?: string; - /** - * Account trie node bytes at end of day (filter: not_in_values) (comma-separated list) - */ - account_trienode_bytes_not_in_values?: string; - /** - * Contract codes at end of day (filter: eq) - */ - contract_codes_eq?: number; - /** - * Contract codes at end of day (filter: ne) - */ - contract_codes_ne?: number; - /** - * Contract codes at end of day (filter: lt) - */ - contract_codes_lt?: number; - /** - * Contract codes at end of day (filter: lte) - */ - contract_codes_lte?: number; - /** - * Contract codes at end of day (filter: gt) - */ - contract_codes_gt?: number; - /** - * Contract codes at end of day (filter: gte) - */ - contract_codes_gte?: number; - /** - * Contract codes at end of day (filter: between_min) - */ - contract_codes_between_min?: number; - /** - * Contract codes at end of day (filter: between_max_value) - */ - contract_codes_between_max_value?: number; - /** - * Contract codes at end of day (filter: in_values) (comma-separated list) - */ - contract_codes_in_values?: string; - /** - * Contract codes at end of day (filter: not_in_values) (comma-separated list) - */ - contract_codes_not_in_values?: string; - /** - * Contract code bytes at end of day (filter: eq) - */ - contract_code_bytes_eq?: number; - /** - * Contract code bytes at end of day (filter: ne) - */ - contract_code_bytes_ne?: number; - /** - * Contract code bytes at end of day (filter: lt) - */ - contract_code_bytes_lt?: number; - /** - * Contract code bytes at end of day (filter: lte) - */ - contract_code_bytes_lte?: number; - /** - * Contract code bytes at end of day (filter: gt) - */ - contract_code_bytes_gt?: number; - /** - * Contract code bytes at end of day (filter: gte) - */ - contract_code_bytes_gte?: number; - /** - * Contract code bytes at end of day (filter: between_min) - */ - contract_code_bytes_between_min?: number; - /** - * Contract code bytes at end of day (filter: between_max_value) - */ - contract_code_bytes_between_max_value?: number; - /** - * Contract code bytes at end of day (filter: in_values) (comma-separated list) - */ - contract_code_bytes_in_values?: string; - /** - * Contract code bytes at end of day (filter: not_in_values) (comma-separated list) - */ - contract_code_bytes_not_in_values?: string; - /** - * Storage slots at end of day (filter: eq) - */ - storages_eq?: number; - /** - * Storage slots at end of day (filter: ne) - */ - storages_ne?: number; - /** - * Storage slots at end of day (filter: lt) - */ - storages_lt?: number; - /** - * Storage slots at end of day (filter: lte) - */ - storages_lte?: number; - /** - * Storage slots at end of day (filter: gt) - */ - storages_gt?: number; - /** - * Storage slots at end of day (filter: gte) - */ - storages_gte?: number; - /** - * Storage slots at end of day (filter: between_min) - */ - storages_between_min?: number; - /** - * Storage slots at end of day (filter: between_max_value) - */ - storages_between_max_value?: number; - /** - * Storage slots at end of day (filter: in_values) (comma-separated list) - */ - storages_in_values?: string; - /** - * Storage slots at end of day (filter: not_in_values) (comma-separated list) - */ - storages_not_in_values?: string; - /** - * Storage bytes at end of day (filter: eq) - */ - storage_bytes_eq?: number; - /** - * Storage bytes at end of day (filter: ne) - */ - storage_bytes_ne?: number; - /** - * Storage bytes at end of day (filter: lt) - */ - storage_bytes_lt?: number; - /** - * Storage bytes at end of day (filter: lte) - */ - storage_bytes_lte?: number; - /** - * Storage bytes at end of day (filter: gt) - */ - storage_bytes_gt?: number; - /** - * Storage bytes at end of day (filter: gte) - */ - storage_bytes_gte?: number; - /** - * Storage bytes at end of day (filter: between_min) - */ - storage_bytes_between_min?: number; - /** - * Storage bytes at end of day (filter: between_max_value) - */ - storage_bytes_between_max_value?: number; - /** - * Storage bytes at end of day (filter: in_values) (comma-separated list) - */ - storage_bytes_in_values?: string; - /** - * Storage bytes at end of day (filter: not_in_values) (comma-separated list) - */ - storage_bytes_not_in_values?: string; - /** - * Storage trie nodes at end of day (filter: eq) - */ - storage_trienodes_eq?: number; - /** - * Storage trie nodes at end of day (filter: ne) - */ - storage_trienodes_ne?: number; - /** - * Storage trie nodes at end of day (filter: lt) - */ - storage_trienodes_lt?: number; - /** - * Storage trie nodes at end of day (filter: lte) - */ - storage_trienodes_lte?: number; - /** - * Storage trie nodes at end of day (filter: gt) - */ - storage_trienodes_gt?: number; - /** - * Storage trie nodes at end of day (filter: gte) - */ - storage_trienodes_gte?: number; - /** - * Storage trie nodes at end of day (filter: between_min) - */ - storage_trienodes_between_min?: number; - /** - * Storage trie nodes at end of day (filter: between_max_value) - */ - storage_trienodes_between_max_value?: number; - /** - * Storage trie nodes at end of day (filter: in_values) (comma-separated list) - */ - storage_trienodes_in_values?: string; - /** - * Storage trie nodes at end of day (filter: not_in_values) (comma-separated list) - */ - storage_trienodes_not_in_values?: string; - /** - * Storage trie node bytes at end of day (filter: eq) - */ - storage_trienode_bytes_eq?: number; - /** - * Storage trie node bytes at end of day (filter: ne) - */ - storage_trienode_bytes_ne?: number; - /** - * Storage trie node bytes at end of day (filter: lt) - */ - storage_trienode_bytes_lt?: number; - /** - * Storage trie node bytes at end of day (filter: lte) - */ - storage_trienode_bytes_lte?: number; - /** - * Storage trie node bytes at end of day (filter: gt) - */ - storage_trienode_bytes_gt?: number; - /** - * Storage trie node bytes at end of day (filter: gte) - */ - storage_trienode_bytes_gte?: number; - /** - * Storage trie node bytes at end of day (filter: between_min) - */ - storage_trienode_bytes_between_min?: number; - /** - * Storage trie node bytes at end of day (filter: between_max_value) - */ - storage_trienode_bytes_between_max_value?: number; - /** - * Storage trie node bytes at end of day (filter: in_values) (comma-separated list) - */ - storage_trienode_bytes_in_values?: string; - /** - * Storage trie node bytes at end of day (filter: not_in_values) (comma-separated list) - */ - storage_trienode_bytes_not_in_values?: string; - /** - * Total state size in bytes (filter: eq) - */ - total_bytes_eq?: number; - /** - * Total state size in bytes (filter: ne) - */ - total_bytes_ne?: number; - /** - * Total state size in bytes (filter: lt) - */ - total_bytes_lt?: number; - /** - * Total state size in bytes (filter: lte) - */ - total_bytes_lte?: number; - /** - * Total state size in bytes (filter: gt) - */ - total_bytes_gt?: number; - /** - * Total state size in bytes (filter: gte) - */ - total_bytes_gte?: number; - /** - * Total state size in bytes (filter: between_min) - */ - total_bytes_between_min?: number; - /** - * Total state size in bytes (filter: between_max_value) - */ - total_bytes_between_max_value?: number; - /** - * Total state size in bytes (filter: in_values) (comma-separated list) - */ - total_bytes_in_values?: string; - /** - * Total state size in bytes (filter: not_in_values) (comma-separated list) - */ - total_bytes_not_in_values?: string; - /** - * The maximum number of fct_execution_state_size_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionStateSizeDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_state_size_daily'; +export type IntTransactionCallFrameOpcodeGasServiceListResponses = { + /** + * OK + */ + 200: ListIntTransactionCallFrameOpcodeGasResponse; }; -export type FctExecutionStateSizeDailyServiceListErrors = { +export type IntTransactionCallFrameOpcodeGasServiceListResponse = + IntTransactionCallFrameOpcodeGasServiceListResponses[keyof IntTransactionCallFrameOpcodeGasServiceListResponses]; + +export type IntTransactionCallFrameOpcodeGasServiceGetData = { + body?: never; + path: { /** - * Default error response + * The block number containing the transaction */ - default: Status; + block_number: number; + }; + query?: never; + url: '/api/v1/int_transaction_call_frame_opcode_gas/{block_number}'; }; -export type FctExecutionStateSizeDailyServiceListError = FctExecutionStateSizeDailyServiceListErrors[keyof FctExecutionStateSizeDailyServiceListErrors]; - -export type FctExecutionStateSizeDailyServiceListResponses = { - /** - * OK - */ - 200: ListFctExecutionStateSizeDailyResponse; +export type IntTransactionCallFrameOpcodeGasServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -export type FctExecutionStateSizeDailyServiceListResponse = FctExecutionStateSizeDailyServiceListResponses[keyof FctExecutionStateSizeDailyServiceListResponses]; +export type IntTransactionCallFrameOpcodeGasServiceGetError = + IntTransactionCallFrameOpcodeGasServiceGetErrors[keyof IntTransactionCallFrameOpcodeGasServiceGetErrors]; -export type FctExecutionStateSizeDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_execution_state_size_daily/{day_start_date}'; +export type IntTransactionCallFrameOpcodeGasServiceGetResponses = { + /** + * OK + */ + 200: GetIntTransactionCallFrameOpcodeGasResponse; }; -export type FctExecutionStateSizeDailyServiceGetErrors = { +export type IntTransactionCallFrameOpcodeGasServiceGetResponse = + IntTransactionCallFrameOpcodeGasServiceGetResponses[keyof IntTransactionCallFrameOpcodeGasServiceGetResponses]; + +export type IntTransactionCallFrameOpcodeResourceGasServiceListData = { + body?: never; + path?: never; + query?: { /** - * Default error response + * The block number containing the transaction (filter: eq) */ - default: Status; -}; - -export type FctExecutionStateSizeDailyServiceGetError = FctExecutionStateSizeDailyServiceGetErrors[keyof FctExecutionStateSizeDailyServiceGetErrors]; - -export type FctExecutionStateSizeDailyServiceGetResponses = { + block_number_eq?: number; /** - * OK + * The block number containing the transaction (filter: ne) */ - 200: GetFctExecutionStateSizeDailyResponse; -}; - -export type FctExecutionStateSizeDailyServiceGetResponse = FctExecutionStateSizeDailyServiceGetResponses[keyof FctExecutionStateSizeDailyServiceGetResponses]; - -export type FctExecutionStateSizeHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total accounts at end of hour (filter: eq) - */ - accounts_eq?: number; - /** - * Total accounts at end of hour (filter: ne) - */ - accounts_ne?: number; - /** - * Total accounts at end of hour (filter: lt) - */ - accounts_lt?: number; - /** - * Total accounts at end of hour (filter: lte) - */ - accounts_lte?: number; - /** - * Total accounts at end of hour (filter: gt) - */ - accounts_gt?: number; - /** - * Total accounts at end of hour (filter: gte) - */ - accounts_gte?: number; - /** - * Total accounts at end of hour (filter: between_min) - */ - accounts_between_min?: number; - /** - * Total accounts at end of hour (filter: between_max_value) - */ - accounts_between_max_value?: number; - /** - * Total accounts at end of hour (filter: in_values) (comma-separated list) - */ - accounts_in_values?: string; - /** - * Total accounts at end of hour (filter: not_in_values) (comma-separated list) - */ - accounts_not_in_values?: string; - /** - * Account bytes at end of hour (filter: eq) - */ - account_bytes_eq?: number; - /** - * Account bytes at end of hour (filter: ne) - */ - account_bytes_ne?: number; - /** - * Account bytes at end of hour (filter: lt) - */ - account_bytes_lt?: number; - /** - * Account bytes at end of hour (filter: lte) - */ - account_bytes_lte?: number; - /** - * Account bytes at end of hour (filter: gt) - */ - account_bytes_gt?: number; - /** - * Account bytes at end of hour (filter: gte) - */ - account_bytes_gte?: number; - /** - * Account bytes at end of hour (filter: between_min) - */ - account_bytes_between_min?: number; - /** - * Account bytes at end of hour (filter: between_max_value) - */ - account_bytes_between_max_value?: number; - /** - * Account bytes at end of hour (filter: in_values) (comma-separated list) - */ - account_bytes_in_values?: string; - /** - * Account bytes at end of hour (filter: not_in_values) (comma-separated list) - */ - account_bytes_not_in_values?: string; - /** - * Account trie nodes at end of hour (filter: eq) - */ - account_trienodes_eq?: number; - /** - * Account trie nodes at end of hour (filter: ne) - */ - account_trienodes_ne?: number; - /** - * Account trie nodes at end of hour (filter: lt) - */ - account_trienodes_lt?: number; - /** - * Account trie nodes at end of hour (filter: lte) - */ - account_trienodes_lte?: number; - /** - * Account trie nodes at end of hour (filter: gt) - */ - account_trienodes_gt?: number; - /** - * Account trie nodes at end of hour (filter: gte) - */ - account_trienodes_gte?: number; - /** - * Account trie nodes at end of hour (filter: between_min) - */ - account_trienodes_between_min?: number; - /** - * Account trie nodes at end of hour (filter: between_max_value) - */ - account_trienodes_between_max_value?: number; - /** - * Account trie nodes at end of hour (filter: in_values) (comma-separated list) - */ - account_trienodes_in_values?: string; - /** - * Account trie nodes at end of hour (filter: not_in_values) (comma-separated list) - */ - account_trienodes_not_in_values?: string; - /** - * Account trie node bytes at end of hour (filter: eq) - */ - account_trienode_bytes_eq?: number; - /** - * Account trie node bytes at end of hour (filter: ne) - */ - account_trienode_bytes_ne?: number; - /** - * Account trie node bytes at end of hour (filter: lt) - */ - account_trienode_bytes_lt?: number; - /** - * Account trie node bytes at end of hour (filter: lte) - */ - account_trienode_bytes_lte?: number; - /** - * Account trie node bytes at end of hour (filter: gt) - */ - account_trienode_bytes_gt?: number; - /** - * Account trie node bytes at end of hour (filter: gte) - */ - account_trienode_bytes_gte?: number; - /** - * Account trie node bytes at end of hour (filter: between_min) - */ - account_trienode_bytes_between_min?: number; - /** - * Account trie node bytes at end of hour (filter: between_max_value) - */ - account_trienode_bytes_between_max_value?: number; - /** - * Account trie node bytes at end of hour (filter: in_values) (comma-separated list) - */ - account_trienode_bytes_in_values?: string; - /** - * Account trie node bytes at end of hour (filter: not_in_values) (comma-separated list) - */ - account_trienode_bytes_not_in_values?: string; - /** - * Contract codes at end of hour (filter: eq) - */ - contract_codes_eq?: number; - /** - * Contract codes at end of hour (filter: ne) - */ - contract_codes_ne?: number; - /** - * Contract codes at end of hour (filter: lt) - */ - contract_codes_lt?: number; - /** - * Contract codes at end of hour (filter: lte) - */ - contract_codes_lte?: number; - /** - * Contract codes at end of hour (filter: gt) - */ - contract_codes_gt?: number; - /** - * Contract codes at end of hour (filter: gte) - */ - contract_codes_gte?: number; - /** - * Contract codes at end of hour (filter: between_min) - */ - contract_codes_between_min?: number; - /** - * Contract codes at end of hour (filter: between_max_value) - */ - contract_codes_between_max_value?: number; - /** - * Contract codes at end of hour (filter: in_values) (comma-separated list) - */ - contract_codes_in_values?: string; - /** - * Contract codes at end of hour (filter: not_in_values) (comma-separated list) - */ - contract_codes_not_in_values?: string; - /** - * Contract code bytes at end of hour (filter: eq) - */ - contract_code_bytes_eq?: number; - /** - * Contract code bytes at end of hour (filter: ne) - */ - contract_code_bytes_ne?: number; - /** - * Contract code bytes at end of hour (filter: lt) - */ - contract_code_bytes_lt?: number; - /** - * Contract code bytes at end of hour (filter: lte) - */ - contract_code_bytes_lte?: number; - /** - * Contract code bytes at end of hour (filter: gt) - */ - contract_code_bytes_gt?: number; - /** - * Contract code bytes at end of hour (filter: gte) - */ - contract_code_bytes_gte?: number; - /** - * Contract code bytes at end of hour (filter: between_min) - */ - contract_code_bytes_between_min?: number; - /** - * Contract code bytes at end of hour (filter: between_max_value) - */ - contract_code_bytes_between_max_value?: number; - /** - * Contract code bytes at end of hour (filter: in_values) (comma-separated list) - */ - contract_code_bytes_in_values?: string; - /** - * Contract code bytes at end of hour (filter: not_in_values) (comma-separated list) - */ - contract_code_bytes_not_in_values?: string; - /** - * Storage slots at end of hour (filter: eq) - */ - storages_eq?: number; - /** - * Storage slots at end of hour (filter: ne) - */ - storages_ne?: number; - /** - * Storage slots at end of hour (filter: lt) - */ - storages_lt?: number; - /** - * Storage slots at end of hour (filter: lte) - */ - storages_lte?: number; - /** - * Storage slots at end of hour (filter: gt) - */ - storages_gt?: number; - /** - * Storage slots at end of hour (filter: gte) - */ - storages_gte?: number; - /** - * Storage slots at end of hour (filter: between_min) - */ - storages_between_min?: number; - /** - * Storage slots at end of hour (filter: between_max_value) - */ - storages_between_max_value?: number; - /** - * Storage slots at end of hour (filter: in_values) (comma-separated list) - */ - storages_in_values?: string; - /** - * Storage slots at end of hour (filter: not_in_values) (comma-separated list) - */ - storages_not_in_values?: string; - /** - * Storage bytes at end of hour (filter: eq) - */ - storage_bytes_eq?: number; - /** - * Storage bytes at end of hour (filter: ne) - */ - storage_bytes_ne?: number; - /** - * Storage bytes at end of hour (filter: lt) - */ - storage_bytes_lt?: number; - /** - * Storage bytes at end of hour (filter: lte) - */ - storage_bytes_lte?: number; - /** - * Storage bytes at end of hour (filter: gt) - */ - storage_bytes_gt?: number; - /** - * Storage bytes at end of hour (filter: gte) - */ - storage_bytes_gte?: number; - /** - * Storage bytes at end of hour (filter: between_min) - */ - storage_bytes_between_min?: number; - /** - * Storage bytes at end of hour (filter: between_max_value) - */ - storage_bytes_between_max_value?: number; - /** - * Storage bytes at end of hour (filter: in_values) (comma-separated list) - */ - storage_bytes_in_values?: string; - /** - * Storage bytes at end of hour (filter: not_in_values) (comma-separated list) - */ - storage_bytes_not_in_values?: string; - /** - * Storage trie nodes at end of hour (filter: eq) - */ - storage_trienodes_eq?: number; - /** - * Storage trie nodes at end of hour (filter: ne) - */ - storage_trienodes_ne?: number; - /** - * Storage trie nodes at end of hour (filter: lt) - */ - storage_trienodes_lt?: number; - /** - * Storage trie nodes at end of hour (filter: lte) - */ - storage_trienodes_lte?: number; - /** - * Storage trie nodes at end of hour (filter: gt) - */ - storage_trienodes_gt?: number; - /** - * Storage trie nodes at end of hour (filter: gte) - */ - storage_trienodes_gte?: number; - /** - * Storage trie nodes at end of hour (filter: between_min) - */ - storage_trienodes_between_min?: number; - /** - * Storage trie nodes at end of hour (filter: between_max_value) - */ - storage_trienodes_between_max_value?: number; - /** - * Storage trie nodes at end of hour (filter: in_values) (comma-separated list) - */ - storage_trienodes_in_values?: string; - /** - * Storage trie nodes at end of hour (filter: not_in_values) (comma-separated list) - */ - storage_trienodes_not_in_values?: string; - /** - * Storage trie node bytes at end of hour (filter: eq) - */ - storage_trienode_bytes_eq?: number; - /** - * Storage trie node bytes at end of hour (filter: ne) - */ - storage_trienode_bytes_ne?: number; - /** - * Storage trie node bytes at end of hour (filter: lt) - */ - storage_trienode_bytes_lt?: number; - /** - * Storage trie node bytes at end of hour (filter: lte) - */ - storage_trienode_bytes_lte?: number; - /** - * Storage trie node bytes at end of hour (filter: gt) - */ - storage_trienode_bytes_gt?: number; - /** - * Storage trie node bytes at end of hour (filter: gte) - */ - storage_trienode_bytes_gte?: number; - /** - * Storage trie node bytes at end of hour (filter: between_min) - */ - storage_trienode_bytes_between_min?: number; - /** - * Storage trie node bytes at end of hour (filter: between_max_value) - */ - storage_trienode_bytes_between_max_value?: number; - /** - * Storage trie node bytes at end of hour (filter: in_values) (comma-separated list) - */ - storage_trienode_bytes_in_values?: string; - /** - * Storage trie node bytes at end of hour (filter: not_in_values) (comma-separated list) - */ - storage_trienode_bytes_not_in_values?: string; - /** - * Total state size in bytes (filter: eq) - */ - total_bytes_eq?: number; - /** - * Total state size in bytes (filter: ne) - */ - total_bytes_ne?: number; - /** - * Total state size in bytes (filter: lt) - */ - total_bytes_lt?: number; - /** - * Total state size in bytes (filter: lte) - */ - total_bytes_lte?: number; - /** - * Total state size in bytes (filter: gt) - */ - total_bytes_gt?: number; - /** - * Total state size in bytes (filter: gte) - */ - total_bytes_gte?: number; - /** - * Total state size in bytes (filter: between_min) - */ - total_bytes_between_min?: number; - /** - * Total state size in bytes (filter: between_max_value) - */ - total_bytes_between_max_value?: number; - /** - * Total state size in bytes (filter: in_values) (comma-separated list) - */ - total_bytes_in_values?: string; - /** - * Total state size in bytes (filter: not_in_values) (comma-separated list) - */ - total_bytes_not_in_values?: string; - /** - * The maximum number of fct_execution_state_size_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionStateSizeHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_state_size_hourly'; -}; - -export type FctExecutionStateSizeHourlyServiceListErrors = { + block_number_ne?: number; /** - * Default error response + * The block number containing the transaction (filter: lt) */ - default: Status; -}; - -export type FctExecutionStateSizeHourlyServiceListError = FctExecutionStateSizeHourlyServiceListErrors[keyof FctExecutionStateSizeHourlyServiceListErrors]; - -export type FctExecutionStateSizeHourlyServiceListResponses = { + block_number_lt?: number; /** - * OK + * The block number containing the transaction (filter: lte) */ - 200: ListFctExecutionStateSizeHourlyResponse; -}; - -export type FctExecutionStateSizeHourlyServiceListResponse = FctExecutionStateSizeHourlyServiceListResponses[keyof FctExecutionStateSizeHourlyServiceListResponses]; - -export type FctExecutionStateSizeHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_execution_state_size_hourly/{hour_start_date_time}'; -}; - -export type FctExecutionStateSizeHourlyServiceGetErrors = { + block_number_lte?: number; /** - * Default error response + * The block number containing the transaction (filter: gt) */ - default: Status; -}; - -export type FctExecutionStateSizeHourlyServiceGetError = FctExecutionStateSizeHourlyServiceGetErrors[keyof FctExecutionStateSizeHourlyServiceGetErrors]; - -export type FctExecutionStateSizeHourlyServiceGetResponses = { + block_number_gt?: number; /** - * OK + * The block number containing the transaction (filter: gte) */ - 200: GetFctExecutionStateSizeHourlyResponse; -}; - -export type FctExecutionStateSizeHourlyServiceGetResponse = FctExecutionStateSizeHourlyServiceGetResponses[keyof FctExecutionStateSizeHourlyServiceGetResponses]; - -export type FctExecutionTpsDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks in this day (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks in this day (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks in this day (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks in this day (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks in this day (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks in this day (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks in this day (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks in this day (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks in this day (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks in this day (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total transactions in this day (filter: eq) - */ - total_transactions_eq?: number; - /** - * Total transactions in this day (filter: ne) - */ - total_transactions_ne?: number; - /** - * Total transactions in this day (filter: lt) - */ - total_transactions_lt?: number; - /** - * Total transactions in this day (filter: lte) - */ - total_transactions_lte?: number; - /** - * Total transactions in this day (filter: gt) - */ - total_transactions_gt?: number; - /** - * Total transactions in this day (filter: gte) - */ - total_transactions_gte?: number; - /** - * Total transactions in this day (filter: between_min) - */ - total_transactions_between_min?: number; - /** - * Total transactions in this day (filter: between_max_value) - */ - total_transactions_between_max_value?: number; - /** - * Total transactions in this day (filter: in_values) (comma-separated list) - */ - total_transactions_in_values?: string; - /** - * Total transactions in this day (filter: not_in_values) (comma-separated list) - */ - total_transactions_not_in_values?: string; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: eq) - */ - total_seconds_eq?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: ne) - */ - total_seconds_ne?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: lt) - */ - total_seconds_lt?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: lte) - */ - total_seconds_lte?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: gt) - */ - total_seconds_gt?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: gte) - */ - total_seconds_gte?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_min) - */ - total_seconds_between_min?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_max_value) - */ - total_seconds_between_max_value?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: in_values) (comma-separated list) - */ - total_seconds_in_values?: string; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: not_in_values) (comma-separated list) - */ - total_seconds_not_in_values?: string; - /** - * Filter avg_tps using value - */ - avg_tps_value?: number; - /** - * Filter min_tps using value - */ - min_tps_value?: number; - /** - * Filter max_tps using value - */ - max_tps_value?: number; - /** - * Filter p05_tps using value - */ - p05_tps_value?: number; - /** - * Filter p50_tps using value - */ - p50_tps_value?: number; - /** - * Filter p95_tps using value - */ - p95_tps_value?: number; - /** - * Filter stddev_tps using value - */ - stddev_tps_value?: number; - /** - * Filter upper_band_tps using value - */ - upper_band_tps_value?: number; - /** - * Filter lower_band_tps using value - */ - lower_band_tps_value?: number; - /** - * Filter moving_avg_tps using value - */ - moving_avg_tps_value?: number; - /** - * The maximum number of fct_execution_tps_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionTpsDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_tps_daily'; -}; - -export type FctExecutionTpsDailyServiceListErrors = { + block_number_gte?: number; /** - * Default error response + * The block number containing the transaction (filter: between_min) */ - default: Status; -}; - -export type FctExecutionTpsDailyServiceListError = FctExecutionTpsDailyServiceListErrors[keyof FctExecutionTpsDailyServiceListErrors]; - -export type FctExecutionTpsDailyServiceListResponses = { + block_number_between_min?: number; /** - * OK + * The block number containing the transaction (filter: between_max_value) */ - 200: ListFctExecutionTpsDailyResponse; -}; - -export type FctExecutionTpsDailyServiceListResponse = FctExecutionTpsDailyServiceListResponses[keyof FctExecutionTpsDailyServiceListResponses]; - -export type FctExecutionTpsDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_execution_tps_daily/{day_start_date}'; -}; - -export type FctExecutionTpsDailyServiceGetErrors = { + block_number_between_max_value?: number; /** - * Default error response + * The block number containing the transaction (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctExecutionTpsDailyServiceGetError = FctExecutionTpsDailyServiceGetErrors[keyof FctExecutionTpsDailyServiceGetErrors]; - -export type FctExecutionTpsDailyServiceGetResponses = { + block_number_in_values?: string; /** - * OK + * The block number containing the transaction (filter: not_in_values) (comma-separated list) */ - 200: GetFctExecutionTpsDailyResponse; -}; - -export type FctExecutionTpsDailyServiceGetResponse = FctExecutionTpsDailyServiceGetResponses[keyof FctExecutionTpsDailyServiceGetResponses]; - -export type FctExecutionTpsHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks in this hour (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks in this hour (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks in this hour (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks in this hour (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks in this hour (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks in this hour (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks in this hour (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks in this hour (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks in this hour (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks in this hour (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total transactions in this hour (filter: eq) - */ - total_transactions_eq?: number; - /** - * Total transactions in this hour (filter: ne) - */ - total_transactions_ne?: number; - /** - * Total transactions in this hour (filter: lt) - */ - total_transactions_lt?: number; - /** - * Total transactions in this hour (filter: lte) - */ - total_transactions_lte?: number; - /** - * Total transactions in this hour (filter: gt) - */ - total_transactions_gt?: number; - /** - * Total transactions in this hour (filter: gte) - */ - total_transactions_gte?: number; - /** - * Total transactions in this hour (filter: between_min) - */ - total_transactions_between_min?: number; - /** - * Total transactions in this hour (filter: between_max_value) - */ - total_transactions_between_max_value?: number; - /** - * Total transactions in this hour (filter: in_values) (comma-separated list) - */ - total_transactions_in_values?: string; - /** - * Total transactions in this hour (filter: not_in_values) (comma-separated list) - */ - total_transactions_not_in_values?: string; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: eq) - */ - total_seconds_eq?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: ne) - */ - total_seconds_ne?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: lt) - */ - total_seconds_lt?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: lte) - */ - total_seconds_lte?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: gt) - */ - total_seconds_gt?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: gte) - */ - total_seconds_gte?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_min) - */ - total_seconds_between_min?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_max_value) - */ - total_seconds_between_max_value?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: in_values) (comma-separated list) - */ - total_seconds_in_values?: string; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: not_in_values) (comma-separated list) - */ - total_seconds_not_in_values?: string; - /** - * Filter avg_tps using value - */ - avg_tps_value?: number; - /** - * Filter min_tps using value - */ - min_tps_value?: number; - /** - * Filter max_tps using value - */ - max_tps_value?: number; - /** - * Filter p05_tps using value - */ - p05_tps_value?: number; - /** - * Filter p50_tps using value - */ - p50_tps_value?: number; - /** - * Filter p95_tps using value - */ - p95_tps_value?: number; - /** - * Filter stddev_tps using value - */ - stddev_tps_value?: number; - /** - * Filter upper_band_tps using value - */ - upper_band_tps_value?: number; - /** - * Filter lower_band_tps using value - */ - lower_band_tps_value?: number; - /** - * Filter moving_avg_tps using value - */ - moving_avg_tps_value?: number; - /** - * The maximum number of fct_execution_tps_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionTpsHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_tps_hourly'; -}; - -export type FctExecutionTpsHourlyServiceListErrors = { + block_number_not_in_values?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: eq) */ - default: Status; -}; - -export type FctExecutionTpsHourlyServiceListError = FctExecutionTpsHourlyServiceListErrors[keyof FctExecutionTpsHourlyServiceListErrors]; - -export type FctExecutionTpsHourlyServiceListResponses = { + transaction_hash_eq?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: ne) */ - 200: ListFctExecutionTpsHourlyResponse; -}; - -export type FctExecutionTpsHourlyServiceListResponse = FctExecutionTpsHourlyServiceListResponses[keyof FctExecutionTpsHourlyServiceListResponses]; - -export type FctExecutionTpsHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_execution_tps_hourly/{hour_start_date_time}'; -}; - -export type FctExecutionTpsHourlyServiceGetErrors = { + transaction_hash_ne?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: contains) */ - default: Status; -}; - -export type FctExecutionTpsHourlyServiceGetError = FctExecutionTpsHourlyServiceGetErrors[keyof FctExecutionTpsHourlyServiceGetErrors]; - -export type FctExecutionTpsHourlyServiceGetResponses = { + transaction_hash_contains?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: starts_with) */ - 200: GetFctExecutionTpsHourlyResponse; -}; - -export type FctExecutionTpsHourlyServiceGetResponse = FctExecutionTpsHourlyServiceGetResponses[keyof FctExecutionTpsHourlyServiceGetResponses]; - -export type FctExecutionTransactionsDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks in this day (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks in this day (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks in this day (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks in this day (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks in this day (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks in this day (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks in this day (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks in this day (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks in this day (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks in this day (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total transactions in this day (filter: eq) - */ - total_transactions_eq?: number; - /** - * Total transactions in this day (filter: ne) - */ - total_transactions_ne?: number; - /** - * Total transactions in this day (filter: lt) - */ - total_transactions_lt?: number; - /** - * Total transactions in this day (filter: lte) - */ - total_transactions_lte?: number; - /** - * Total transactions in this day (filter: gt) - */ - total_transactions_gt?: number; - /** - * Total transactions in this day (filter: gte) - */ - total_transactions_gte?: number; - /** - * Total transactions in this day (filter: between_min) - */ - total_transactions_between_min?: number; - /** - * Total transactions in this day (filter: between_max_value) - */ - total_transactions_between_max_value?: number; - /** - * Total transactions in this day (filter: in_values) (comma-separated list) - */ - total_transactions_in_values?: string; - /** - * Total transactions in this day (filter: not_in_values) (comma-separated list) - */ - total_transactions_not_in_values?: string; - /** - * Cumulative transaction count since genesis (filter: eq) - */ - cumulative_transactions_eq?: number; - /** - * Cumulative transaction count since genesis (filter: ne) - */ - cumulative_transactions_ne?: number; - /** - * Cumulative transaction count since genesis (filter: lt) - */ - cumulative_transactions_lt?: number; - /** - * Cumulative transaction count since genesis (filter: lte) - */ - cumulative_transactions_lte?: number; - /** - * Cumulative transaction count since genesis (filter: gt) - */ - cumulative_transactions_gt?: number; - /** - * Cumulative transaction count since genesis (filter: gte) - */ - cumulative_transactions_gte?: number; - /** - * Cumulative transaction count since genesis (filter: between_min) - */ - cumulative_transactions_between_min?: number; - /** - * Cumulative transaction count since genesis (filter: between_max_value) - */ - cumulative_transactions_between_max_value?: number; - /** - * Cumulative transaction count since genesis (filter: in_values) (comma-separated list) - */ - cumulative_transactions_in_values?: string; - /** - * Cumulative transaction count since genesis (filter: not_in_values) (comma-separated list) - */ - cumulative_transactions_not_in_values?: string; - /** - * Filter avg_txn_per_block using value - */ - avg_txn_per_block_value?: number; - /** - * Minimum transactions in a block (filter: eq) - */ - min_txn_per_block_eq?: number; - /** - * Minimum transactions in a block (filter: ne) - */ - min_txn_per_block_ne?: number; - /** - * Minimum transactions in a block (filter: lt) - */ - min_txn_per_block_lt?: number; - /** - * Minimum transactions in a block (filter: lte) - */ - min_txn_per_block_lte?: number; - /** - * Minimum transactions in a block (filter: gt) - */ - min_txn_per_block_gt?: number; - /** - * Minimum transactions in a block (filter: gte) - */ - min_txn_per_block_gte?: number; - /** - * Minimum transactions in a block (filter: between_min) - */ - min_txn_per_block_between_min?: number; - /** - * Minimum transactions in a block (filter: between_max_value) - */ - min_txn_per_block_between_max_value?: number; - /** - * Minimum transactions in a block (filter: in_values) (comma-separated list) - */ - min_txn_per_block_in_values?: string; - /** - * Minimum transactions in a block (filter: not_in_values) (comma-separated list) - */ - min_txn_per_block_not_in_values?: string; - /** - * Maximum transactions in a block (filter: eq) - */ - max_txn_per_block_eq?: number; - /** - * Maximum transactions in a block (filter: ne) - */ - max_txn_per_block_ne?: number; - /** - * Maximum transactions in a block (filter: lt) - */ - max_txn_per_block_lt?: number; - /** - * Maximum transactions in a block (filter: lte) - */ - max_txn_per_block_lte?: number; - /** - * Maximum transactions in a block (filter: gt) - */ - max_txn_per_block_gt?: number; - /** - * Maximum transactions in a block (filter: gte) - */ - max_txn_per_block_gte?: number; - /** - * Maximum transactions in a block (filter: between_min) - */ - max_txn_per_block_between_min?: number; - /** - * Maximum transactions in a block (filter: between_max_value) - */ - max_txn_per_block_between_max_value?: number; - /** - * Maximum transactions in a block (filter: in_values) (comma-separated list) - */ - max_txn_per_block_in_values?: string; - /** - * Maximum transactions in a block (filter: not_in_values) (comma-separated list) - */ - max_txn_per_block_not_in_values?: string; - /** - * 50th percentile (median) transactions per block (filter: eq) - */ - p50_txn_per_block_eq?: number; - /** - * 50th percentile (median) transactions per block (filter: ne) - */ - p50_txn_per_block_ne?: number; - /** - * 50th percentile (median) transactions per block (filter: lt) - */ - p50_txn_per_block_lt?: number; - /** - * 50th percentile (median) transactions per block (filter: lte) - */ - p50_txn_per_block_lte?: number; - /** - * 50th percentile (median) transactions per block (filter: gt) - */ - p50_txn_per_block_gt?: number; - /** - * 50th percentile (median) transactions per block (filter: gte) - */ - p50_txn_per_block_gte?: number; - /** - * 50th percentile (median) transactions per block (filter: between_min) - */ - p50_txn_per_block_between_min?: number; - /** - * 50th percentile (median) transactions per block (filter: between_max_value) - */ - p50_txn_per_block_between_max_value?: number; - /** - * 50th percentile (median) transactions per block (filter: in_values) (comma-separated list) - */ - p50_txn_per_block_in_values?: string; - /** - * 50th percentile (median) transactions per block (filter: not_in_values) (comma-separated list) - */ - p50_txn_per_block_not_in_values?: string; - /** - * 95th percentile transactions per block (filter: eq) - */ - p95_txn_per_block_eq?: number; - /** - * 95th percentile transactions per block (filter: ne) - */ - p95_txn_per_block_ne?: number; - /** - * 95th percentile transactions per block (filter: lt) - */ - p95_txn_per_block_lt?: number; - /** - * 95th percentile transactions per block (filter: lte) - */ - p95_txn_per_block_lte?: number; - /** - * 95th percentile transactions per block (filter: gt) - */ - p95_txn_per_block_gt?: number; - /** - * 95th percentile transactions per block (filter: gte) - */ - p95_txn_per_block_gte?: number; - /** - * 95th percentile transactions per block (filter: between_min) - */ - p95_txn_per_block_between_min?: number; - /** - * 95th percentile transactions per block (filter: between_max_value) - */ - p95_txn_per_block_between_max_value?: number; - /** - * 95th percentile transactions per block (filter: in_values) (comma-separated list) - */ - p95_txn_per_block_in_values?: string; - /** - * 95th percentile transactions per block (filter: not_in_values) (comma-separated list) - */ - p95_txn_per_block_not_in_values?: string; - /** - * 5th percentile transactions per block (filter: eq) - */ - p05_txn_per_block_eq?: number; - /** - * 5th percentile transactions per block (filter: ne) - */ - p05_txn_per_block_ne?: number; - /** - * 5th percentile transactions per block (filter: lt) - */ - p05_txn_per_block_lt?: number; - /** - * 5th percentile transactions per block (filter: lte) - */ - p05_txn_per_block_lte?: number; - /** - * 5th percentile transactions per block (filter: gt) - */ - p05_txn_per_block_gt?: number; - /** - * 5th percentile transactions per block (filter: gte) - */ - p05_txn_per_block_gte?: number; - /** - * 5th percentile transactions per block (filter: between_min) - */ - p05_txn_per_block_between_min?: number; - /** - * 5th percentile transactions per block (filter: between_max_value) - */ - p05_txn_per_block_between_max_value?: number; - /** - * 5th percentile transactions per block (filter: in_values) (comma-separated list) - */ - p05_txn_per_block_in_values?: string; - /** - * 5th percentile transactions per block (filter: not_in_values) (comma-separated list) - */ - p05_txn_per_block_not_in_values?: string; - /** - * Filter stddev_txn_per_block using value - */ - stddev_txn_per_block_value?: number; - /** - * Filter upper_band_txn_per_block using value - */ - upper_band_txn_per_block_value?: number; - /** - * Filter lower_band_txn_per_block using value - */ - lower_band_txn_per_block_value?: number; - /** - * Filter moving_avg_txn_per_block using value - */ - moving_avg_txn_per_block_value?: number; - /** - * The maximum number of fct_execution_transactions_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionTransactionsDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_transactions_daily'; -}; - -export type FctExecutionTransactionsDailyServiceListErrors = { + transaction_hash_starts_with?: string; + /** + * The transaction hash (hex encoded with 0x prefix) (filter: ends_with) + */ + transaction_hash_ends_with?: string; + /** + * The transaction hash (hex encoded with 0x prefix) (filter: like) + */ + transaction_hash_like?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: not_like) */ - default: Status; -}; - -export type FctExecutionTransactionsDailyServiceListError = FctExecutionTransactionsDailyServiceListErrors[keyof FctExecutionTransactionsDailyServiceListErrors]; - -export type FctExecutionTransactionsDailyServiceListResponses = { + transaction_hash_not_like?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) */ - 200: ListFctExecutionTransactionsDailyResponse; -}; - -export type FctExecutionTransactionsDailyServiceListResponse = FctExecutionTransactionsDailyServiceListResponses[keyof FctExecutionTransactionsDailyServiceListResponses]; - -export type FctExecutionTransactionsDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_execution_transactions_daily/{day_start_date}'; -}; - -export type FctExecutionTransactionsDailyServiceGetErrors = { + transaction_hash_in_values?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctExecutionTransactionsDailyServiceGetError = FctExecutionTransactionsDailyServiceGetErrors[keyof FctExecutionTransactionsDailyServiceGetErrors]; - -export type FctExecutionTransactionsDailyServiceGetResponses = { + transaction_hash_not_in_values?: string; /** - * OK + * Sequential frame ID within transaction (0 = root) (filter: eq) */ - 200: GetFctExecutionTransactionsDailyResponse; -}; - -export type FctExecutionTransactionsDailyServiceGetResponse = FctExecutionTransactionsDailyServiceGetResponses[keyof FctExecutionTransactionsDailyServiceGetResponses]; - -export type FctExecutionTransactionsHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks in this hour (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks in this hour (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks in this hour (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks in this hour (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks in this hour (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks in this hour (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks in this hour (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks in this hour (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks in this hour (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks in this hour (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total transactions in this hour (filter: eq) - */ - total_transactions_eq?: number; - /** - * Total transactions in this hour (filter: ne) - */ - total_transactions_ne?: number; - /** - * Total transactions in this hour (filter: lt) - */ - total_transactions_lt?: number; - /** - * Total transactions in this hour (filter: lte) - */ - total_transactions_lte?: number; - /** - * Total transactions in this hour (filter: gt) - */ - total_transactions_gt?: number; - /** - * Total transactions in this hour (filter: gte) - */ - total_transactions_gte?: number; - /** - * Total transactions in this hour (filter: between_min) - */ - total_transactions_between_min?: number; - /** - * Total transactions in this hour (filter: between_max_value) - */ - total_transactions_between_max_value?: number; - /** - * Total transactions in this hour (filter: in_values) (comma-separated list) - */ - total_transactions_in_values?: string; - /** - * Total transactions in this hour (filter: not_in_values) (comma-separated list) - */ - total_transactions_not_in_values?: string; - /** - * Cumulative transaction count since genesis (filter: eq) - */ - cumulative_transactions_eq?: number; - /** - * Cumulative transaction count since genesis (filter: ne) - */ - cumulative_transactions_ne?: number; - /** - * Cumulative transaction count since genesis (filter: lt) - */ - cumulative_transactions_lt?: number; - /** - * Cumulative transaction count since genesis (filter: lte) - */ - cumulative_transactions_lte?: number; - /** - * Cumulative transaction count since genesis (filter: gt) - */ - cumulative_transactions_gt?: number; - /** - * Cumulative transaction count since genesis (filter: gte) - */ - cumulative_transactions_gte?: number; - /** - * Cumulative transaction count since genesis (filter: between_min) - */ - cumulative_transactions_between_min?: number; - /** - * Cumulative transaction count since genesis (filter: between_max_value) - */ - cumulative_transactions_between_max_value?: number; - /** - * Cumulative transaction count since genesis (filter: in_values) (comma-separated list) - */ - cumulative_transactions_in_values?: string; - /** - * Cumulative transaction count since genesis (filter: not_in_values) (comma-separated list) - */ - cumulative_transactions_not_in_values?: string; - /** - * Filter avg_txn_per_block using value - */ - avg_txn_per_block_value?: number; - /** - * Minimum transactions in a block (filter: eq) - */ - min_txn_per_block_eq?: number; - /** - * Minimum transactions in a block (filter: ne) - */ - min_txn_per_block_ne?: number; - /** - * Minimum transactions in a block (filter: lt) - */ - min_txn_per_block_lt?: number; - /** - * Minimum transactions in a block (filter: lte) - */ - min_txn_per_block_lte?: number; - /** - * Minimum transactions in a block (filter: gt) - */ - min_txn_per_block_gt?: number; - /** - * Minimum transactions in a block (filter: gte) - */ - min_txn_per_block_gte?: number; - /** - * Minimum transactions in a block (filter: between_min) - */ - min_txn_per_block_between_min?: number; - /** - * Minimum transactions in a block (filter: between_max_value) - */ - min_txn_per_block_between_max_value?: number; - /** - * Minimum transactions in a block (filter: in_values) (comma-separated list) - */ - min_txn_per_block_in_values?: string; - /** - * Minimum transactions in a block (filter: not_in_values) (comma-separated list) - */ - min_txn_per_block_not_in_values?: string; - /** - * Maximum transactions in a block (filter: eq) - */ - max_txn_per_block_eq?: number; - /** - * Maximum transactions in a block (filter: ne) - */ - max_txn_per_block_ne?: number; - /** - * Maximum transactions in a block (filter: lt) - */ - max_txn_per_block_lt?: number; - /** - * Maximum transactions in a block (filter: lte) - */ - max_txn_per_block_lte?: number; - /** - * Maximum transactions in a block (filter: gt) - */ - max_txn_per_block_gt?: number; - /** - * Maximum transactions in a block (filter: gte) - */ - max_txn_per_block_gte?: number; - /** - * Maximum transactions in a block (filter: between_min) - */ - max_txn_per_block_between_min?: number; - /** - * Maximum transactions in a block (filter: between_max_value) - */ - max_txn_per_block_between_max_value?: number; - /** - * Maximum transactions in a block (filter: in_values) (comma-separated list) - */ - max_txn_per_block_in_values?: string; - /** - * Maximum transactions in a block (filter: not_in_values) (comma-separated list) - */ - max_txn_per_block_not_in_values?: string; - /** - * 50th percentile (median) transactions per block (filter: eq) - */ - p50_txn_per_block_eq?: number; - /** - * 50th percentile (median) transactions per block (filter: ne) - */ - p50_txn_per_block_ne?: number; - /** - * 50th percentile (median) transactions per block (filter: lt) - */ - p50_txn_per_block_lt?: number; - /** - * 50th percentile (median) transactions per block (filter: lte) - */ - p50_txn_per_block_lte?: number; - /** - * 50th percentile (median) transactions per block (filter: gt) - */ - p50_txn_per_block_gt?: number; - /** - * 50th percentile (median) transactions per block (filter: gte) - */ - p50_txn_per_block_gte?: number; - /** - * 50th percentile (median) transactions per block (filter: between_min) - */ - p50_txn_per_block_between_min?: number; - /** - * 50th percentile (median) transactions per block (filter: between_max_value) - */ - p50_txn_per_block_between_max_value?: number; - /** - * 50th percentile (median) transactions per block (filter: in_values) (comma-separated list) - */ - p50_txn_per_block_in_values?: string; - /** - * 50th percentile (median) transactions per block (filter: not_in_values) (comma-separated list) - */ - p50_txn_per_block_not_in_values?: string; - /** - * 95th percentile transactions per block (filter: eq) - */ - p95_txn_per_block_eq?: number; - /** - * 95th percentile transactions per block (filter: ne) - */ - p95_txn_per_block_ne?: number; - /** - * 95th percentile transactions per block (filter: lt) - */ - p95_txn_per_block_lt?: number; - /** - * 95th percentile transactions per block (filter: lte) - */ - p95_txn_per_block_lte?: number; - /** - * 95th percentile transactions per block (filter: gt) - */ - p95_txn_per_block_gt?: number; - /** - * 95th percentile transactions per block (filter: gte) - */ - p95_txn_per_block_gte?: number; - /** - * 95th percentile transactions per block (filter: between_min) - */ - p95_txn_per_block_between_min?: number; - /** - * 95th percentile transactions per block (filter: between_max_value) - */ - p95_txn_per_block_between_max_value?: number; - /** - * 95th percentile transactions per block (filter: in_values) (comma-separated list) - */ - p95_txn_per_block_in_values?: string; - /** - * 95th percentile transactions per block (filter: not_in_values) (comma-separated list) - */ - p95_txn_per_block_not_in_values?: string; - /** - * 5th percentile transactions per block (filter: eq) - */ - p05_txn_per_block_eq?: number; - /** - * 5th percentile transactions per block (filter: ne) - */ - p05_txn_per_block_ne?: number; - /** - * 5th percentile transactions per block (filter: lt) - */ - p05_txn_per_block_lt?: number; - /** - * 5th percentile transactions per block (filter: lte) - */ - p05_txn_per_block_lte?: number; - /** - * 5th percentile transactions per block (filter: gt) - */ - p05_txn_per_block_gt?: number; - /** - * 5th percentile transactions per block (filter: gte) - */ - p05_txn_per_block_gte?: number; - /** - * 5th percentile transactions per block (filter: between_min) - */ - p05_txn_per_block_between_min?: number; - /** - * 5th percentile transactions per block (filter: between_max_value) - */ - p05_txn_per_block_between_max_value?: number; - /** - * 5th percentile transactions per block (filter: in_values) (comma-separated list) - */ - p05_txn_per_block_in_values?: string; - /** - * 5th percentile transactions per block (filter: not_in_values) (comma-separated list) - */ - p05_txn_per_block_not_in_values?: string; - /** - * Filter stddev_txn_per_block using value - */ - stddev_txn_per_block_value?: number; - /** - * Filter upper_band_txn_per_block using value - */ - upper_band_txn_per_block_value?: number; - /** - * Filter lower_band_txn_per_block using value - */ - lower_band_txn_per_block_value?: number; - /** - * Filter moving_avg_txn_per_block using value - */ - moving_avg_txn_per_block_value?: number; - /** - * The maximum number of fct_execution_transactions_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctExecutionTransactionsHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_execution_transactions_hourly'; -}; - -export type FctExecutionTransactionsHourlyServiceListErrors = { + call_frame_id_eq?: number; /** - * Default error response + * Sequential frame ID within transaction (0 = root) (filter: ne) */ - default: Status; -}; - -export type FctExecutionTransactionsHourlyServiceListError = FctExecutionTransactionsHourlyServiceListErrors[keyof FctExecutionTransactionsHourlyServiceListErrors]; - -export type FctExecutionTransactionsHourlyServiceListResponses = { + call_frame_id_ne?: number; /** - * OK + * Sequential frame ID within transaction (0 = root) (filter: lt) */ - 200: ListFctExecutionTransactionsHourlyResponse; -}; - -export type FctExecutionTransactionsHourlyServiceListResponse = FctExecutionTransactionsHourlyServiceListResponses[keyof FctExecutionTransactionsHourlyServiceListResponses]; - -export type FctExecutionTransactionsHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_execution_transactions_hourly/{hour_start_date_time}'; -}; - -export type FctExecutionTransactionsHourlyServiceGetErrors = { + call_frame_id_lt?: number; /** - * Default error response + * Sequential frame ID within transaction (0 = root) (filter: lte) */ - default: Status; -}; - -export type FctExecutionTransactionsHourlyServiceGetError = FctExecutionTransactionsHourlyServiceGetErrors[keyof FctExecutionTransactionsHourlyServiceGetErrors]; - -export type FctExecutionTransactionsHourlyServiceGetResponses = { + call_frame_id_lte?: number; /** - * OK + * Sequential frame ID within transaction (0 = root) (filter: gt) */ - 200: GetFctExecutionTransactionsHourlyResponse; -}; - -export type FctExecutionTransactionsHourlyServiceGetResponse = FctExecutionTransactionsHourlyServiceGetResponses[keyof FctExecutionTransactionsHourlyServiceGetResponses]; - -export type FctHeadFirstSeenByNodeServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The head block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The head block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The head block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The head block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The head block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The head block root hash (filter: like) - */ - block_root_like?: string; - /** - * The head block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The head block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The head block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Name of the client (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the client (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the client (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the client (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the client (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the client (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the client (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the client (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Source of the event (filter: eq) - */ - source_eq?: string; - /** - * Source of the event (filter: ne) - */ - source_ne?: string; - /** - * Source of the event (filter: contains) - */ - source_contains?: string; - /** - * Source of the event (filter: starts_with) - */ - source_starts_with?: string; - /** - * Source of the event (filter: ends_with) - */ - source_ends_with?: string; - /** - * Source of the event (filter: like) - */ - source_like?: string; - /** - * Source of the event (filter: not_like) - */ - source_not_like?: string; - /** - * Source of the event (filter: in_values) (comma-separated list) - */ - source_in_values?: string; - /** - * Source of the event (filter: not_in_values) (comma-separated list) - */ - source_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The time from slot start for the client to see the head event (filter: eq) - */ - seen_slot_start_diff_eq?: number; - /** - * The time from slot start for the client to see the head event (filter: ne) - */ - seen_slot_start_diff_ne?: number; - /** - * The time from slot start for the client to see the head event (filter: lt) - */ - seen_slot_start_diff_lt?: number; - /** - * The time from slot start for the client to see the head event (filter: lte) - */ - seen_slot_start_diff_lte?: number; - /** - * The time from slot start for the client to see the head event (filter: gt) - */ - seen_slot_start_diff_gt?: number; - /** - * The time from slot start for the client to see the head event (filter: gte) - */ - seen_slot_start_diff_gte?: number; - /** - * The time from slot start for the client to see the head event (filter: between_min) - */ - seen_slot_start_diff_between_min?: number; - /** - * The time from slot start for the client to see the head event (filter: between_max_value) - */ - seen_slot_start_diff_between_max_value?: number; - /** - * The time from slot start for the client to see the head event (filter: in_values) (comma-separated list) - */ - seen_slot_start_diff_in_values?: string; - /** - * The time from slot start for the client to see the head event (filter: not_in_values) (comma-separated list) - */ - seen_slot_start_diff_not_in_values?: string; - /** - * Username of the node (filter: eq) - */ - username_eq?: string; - /** - * Username of the node (filter: ne) - */ - username_ne?: string; - /** - * Username of the node (filter: contains) - */ - username_contains?: string; - /** - * Username of the node (filter: starts_with) - */ - username_starts_with?: string; - /** - * Username of the node (filter: ends_with) - */ - username_ends_with?: string; - /** - * Username of the node (filter: like) - */ - username_like?: string; - /** - * Username of the node (filter: not_like) - */ - username_not_like?: string; - /** - * Username of the node (filter: in_values) (comma-separated list) - */ - username_in_values?: string; - /** - * Username of the node (filter: not_in_values) (comma-separated list) - */ - username_not_in_values?: string; - /** - * ID of the node (filter: eq) - */ - node_id_eq?: string; - /** - * ID of the node (filter: ne) - */ - node_id_ne?: string; - /** - * ID of the node (filter: contains) - */ - node_id_contains?: string; - /** - * ID of the node (filter: starts_with) - */ - node_id_starts_with?: string; - /** - * ID of the node (filter: ends_with) - */ - node_id_ends_with?: string; - /** - * ID of the node (filter: like) - */ - node_id_like?: string; - /** - * ID of the node (filter: not_like) - */ - node_id_not_like?: string; - /** - * ID of the node (filter: in_values) (comma-separated list) - */ - node_id_in_values?: string; - /** - * ID of the node (filter: not_in_values) (comma-separated list) - */ - node_id_not_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) - */ - classification_eq?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) - */ - classification_ne?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) - */ - classification_contains?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) - */ - classification_starts_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) - */ - classification_ends_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) - */ - classification_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) - */ - classification_not_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) - */ - classification_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) - */ - classification_not_in_values?: string; - /** - * Version of the client (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * Implementation of the client (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * City of the client (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * Continent code of the client (filter: eq) - */ - meta_client_geo_continent_code_eq?: string; - /** - * Continent code of the client (filter: ne) - */ - meta_client_geo_continent_code_ne?: string; - /** - * Continent code of the client (filter: contains) - */ - meta_client_geo_continent_code_contains?: string; - /** - * Continent code of the client (filter: starts_with) - */ - meta_client_geo_continent_code_starts_with?: string; - /** - * Continent code of the client (filter: ends_with) - */ - meta_client_geo_continent_code_ends_with?: string; - /** - * Continent code of the client (filter: like) - */ - meta_client_geo_continent_code_like?: string; - /** - * Continent code of the client (filter: not_like) - */ - meta_client_geo_continent_code_not_like?: string; - /** - * Continent code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_continent_code_in_values?: string; - /** - * Continent code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_continent_code_not_in_values?: string; - /** - * Filter meta_client_geo_longitude using value - */ - meta_client_geo_longitude_value?: number; - /** - * Filter meta_client_geo_latitude using value - */ - meta_client_geo_latitude_value?: number; - /** - * Autonomous system number of the client (filter: eq) - */ - meta_client_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the client (filter: ne) - */ - meta_client_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the client (filter: lt) - */ - meta_client_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the client (filter: lte) - */ - meta_client_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the client (filter: gt) - */ - meta_client_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the client (filter: gte) - */ - meta_client_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the client (filter: between_min) - */ - meta_client_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the client (filter: between_max_value) - */ - meta_client_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the client (filter: eq) - */ - meta_client_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the client (filter: ne) - */ - meta_client_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the client (filter: contains) - */ - meta_client_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the client (filter: starts_with) - */ - meta_client_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the client (filter: ends_with) - */ - meta_client_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the client (filter: like) - */ - meta_client_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the client (filter: not_like) - */ - meta_client_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_not_in_values?: string; - /** - * Ethereum consensus client version (filter: eq) - */ - meta_consensus_version_eq?: string; - /** - * Ethereum consensus client version (filter: ne) - */ - meta_consensus_version_ne?: string; - /** - * Ethereum consensus client version (filter: contains) - */ - meta_consensus_version_contains?: string; - /** - * Ethereum consensus client version (filter: starts_with) - */ - meta_consensus_version_starts_with?: string; - /** - * Ethereum consensus client version (filter: ends_with) - */ - meta_consensus_version_ends_with?: string; - /** - * Ethereum consensus client version (filter: like) - */ - meta_consensus_version_like?: string; - /** - * Ethereum consensus client version (filter: not_like) - */ - meta_consensus_version_not_like?: string; - /** - * Ethereum consensus client version (filter: in_values) (comma-separated list) - */ - meta_consensus_version_in_values?: string; - /** - * Ethereum consensus client version (filter: not_in_values) (comma-separated list) - */ - meta_consensus_version_not_in_values?: string; - /** - * Ethereum consensus client implementation (filter: eq) - */ - meta_consensus_implementation_eq?: string; - /** - * Ethereum consensus client implementation (filter: ne) - */ - meta_consensus_implementation_ne?: string; - /** - * Ethereum consensus client implementation (filter: contains) - */ - meta_consensus_implementation_contains?: string; - /** - * Ethereum consensus client implementation (filter: starts_with) - */ - meta_consensus_implementation_starts_with?: string; - /** - * Ethereum consensus client implementation (filter: ends_with) - */ - meta_consensus_implementation_ends_with?: string; - /** - * Ethereum consensus client implementation (filter: like) - */ - meta_consensus_implementation_like?: string; - /** - * Ethereum consensus client implementation (filter: not_like) - */ - meta_consensus_implementation_not_like?: string; - /** - * Ethereum consensus client implementation (filter: in_values) (comma-separated list) - */ - meta_consensus_implementation_in_values?: string; - /** - * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) - */ - meta_consensus_implementation_not_in_values?: string; - /** - * The maximum number of fct_head_first_seen_by_node to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctHeadFirstSeenByNode` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_head_first_seen_by_node'; -}; - -export type FctHeadFirstSeenByNodeServiceListErrors = { + call_frame_id_gt?: number; /** - * Default error response + * Sequential frame ID within transaction (0 = root) (filter: gte) */ - default: Status; -}; - -export type FctHeadFirstSeenByNodeServiceListError = FctHeadFirstSeenByNodeServiceListErrors[keyof FctHeadFirstSeenByNodeServiceListErrors]; - -export type FctHeadFirstSeenByNodeServiceListResponses = { + call_frame_id_gte?: number; /** - * OK + * Sequential frame ID within transaction (0 = root) (filter: between_min) */ - 200: ListFctHeadFirstSeenByNodeResponse; -}; - -export type FctHeadFirstSeenByNodeServiceListResponse = FctHeadFirstSeenByNodeServiceListResponses[keyof FctHeadFirstSeenByNodeServiceListResponses]; - -export type FctHeadFirstSeenByNodeServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_head_first_seen_by_node/{slot_start_date_time}'; -}; - -export type FctHeadFirstSeenByNodeServiceGetErrors = { + call_frame_id_between_min?: number; /** - * Default error response + * Sequential frame ID within transaction (0 = root) (filter: between_max_value) */ - default: Status; -}; - -export type FctHeadFirstSeenByNodeServiceGetError = FctHeadFirstSeenByNodeServiceGetErrors[keyof FctHeadFirstSeenByNodeServiceGetErrors]; - -export type FctHeadFirstSeenByNodeServiceGetResponses = { + call_frame_id_between_max_value?: number; /** - * OK + * Sequential frame ID within transaction (0 = root) (filter: in_values) (comma-separated list) */ - 200: GetFctHeadFirstSeenByNodeResponse; -}; - -export type FctHeadFirstSeenByNodeServiceGetResponse = FctHeadFirstSeenByNodeServiceGetResponses[keyof FctHeadFirstSeenByNodeServiceGetResponses]; - -export type FctHeadVoteCorrectnessRateDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of slots in this day (filter: eq) - */ - slot_count_eq?: number; - /** - * Number of slots in this day (filter: ne) - */ - slot_count_ne?: number; - /** - * Number of slots in this day (filter: lt) - */ - slot_count_lt?: number; - /** - * Number of slots in this day (filter: lte) - */ - slot_count_lte?: number; - /** - * Number of slots in this day (filter: gt) - */ - slot_count_gt?: number; - /** - * Number of slots in this day (filter: gte) - */ - slot_count_gte?: number; - /** - * Number of slots in this day (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Number of slots in this day (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Number of slots in this day (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Number of slots in this day (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * Filter avg_head_vote_rate using value - */ - avg_head_vote_rate_value?: number; - /** - * Filter min_head_vote_rate using value - */ - min_head_vote_rate_value?: number; - /** - * Filter max_head_vote_rate using value - */ - max_head_vote_rate_value?: number; - /** - * Filter p05_head_vote_rate using value - */ - p05_head_vote_rate_value?: number; - /** - * Filter p50_head_vote_rate using value - */ - p50_head_vote_rate_value?: number; - /** - * Filter p95_head_vote_rate using value - */ - p95_head_vote_rate_value?: number; - /** - * Filter stddev_head_vote_rate using value - */ - stddev_head_vote_rate_value?: number; - /** - * Filter upper_band_head_vote_rate using value - */ - upper_band_head_vote_rate_value?: number; - /** - * Filter lower_band_head_vote_rate using value - */ - lower_band_head_vote_rate_value?: number; - /** - * Filter moving_avg_head_vote_rate using value - */ - moving_avg_head_vote_rate_value?: number; - /** - * The maximum number of fct_head_vote_correctness_rate_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctHeadVoteCorrectnessRateDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_head_vote_correctness_rate_daily'; -}; - -export type FctHeadVoteCorrectnessRateDailyServiceListErrors = { + call_frame_id_in_values?: string; /** - * Default error response + * Sequential frame ID within transaction (0 = root) (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctHeadVoteCorrectnessRateDailyServiceListError = FctHeadVoteCorrectnessRateDailyServiceListErrors[keyof FctHeadVoteCorrectnessRateDailyServiceListErrors]; - -export type FctHeadVoteCorrectnessRateDailyServiceListResponses = { + call_frame_id_not_in_values?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: eq) */ - 200: ListFctHeadVoteCorrectnessRateDailyResponse; -}; - -export type FctHeadVoteCorrectnessRateDailyServiceListResponse = FctHeadVoteCorrectnessRateDailyServiceListResponses[keyof FctHeadVoteCorrectnessRateDailyServiceListResponses]; - -export type FctHeadVoteCorrectnessRateDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_head_vote_correctness_rate_daily/{day_start_date}'; -}; - -export type FctHeadVoteCorrectnessRateDailyServiceGetErrors = { + opcode_eq?: string; /** - * Default error response + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ne) */ - default: Status; -}; - -export type FctHeadVoteCorrectnessRateDailyServiceGetError = FctHeadVoteCorrectnessRateDailyServiceGetErrors[keyof FctHeadVoteCorrectnessRateDailyServiceGetErrors]; - -export type FctHeadVoteCorrectnessRateDailyServiceGetResponses = { + opcode_ne?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: contains) */ - 200: GetFctHeadVoteCorrectnessRateDailyResponse; -}; - -export type FctHeadVoteCorrectnessRateDailyServiceGetResponse = FctHeadVoteCorrectnessRateDailyServiceGetResponses[keyof FctHeadVoteCorrectnessRateDailyServiceGetResponses]; - -export type FctHeadVoteCorrectnessRateHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of slots in this hour (filter: eq) - */ - slot_count_eq?: number; - /** - * Number of slots in this hour (filter: ne) - */ - slot_count_ne?: number; - /** - * Number of slots in this hour (filter: lt) - */ - slot_count_lt?: number; - /** - * Number of slots in this hour (filter: lte) - */ - slot_count_lte?: number; - /** - * Number of slots in this hour (filter: gt) - */ - slot_count_gt?: number; - /** - * Number of slots in this hour (filter: gte) - */ - slot_count_gte?: number; - /** - * Number of slots in this hour (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Number of slots in this hour (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Number of slots in this hour (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Number of slots in this hour (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * Filter avg_head_vote_rate using value - */ - avg_head_vote_rate_value?: number; - /** - * Filter min_head_vote_rate using value - */ - min_head_vote_rate_value?: number; - /** - * Filter max_head_vote_rate using value - */ - max_head_vote_rate_value?: number; - /** - * Filter p05_head_vote_rate using value - */ - p05_head_vote_rate_value?: number; - /** - * Filter p50_head_vote_rate using value - */ - p50_head_vote_rate_value?: number; - /** - * Filter p95_head_vote_rate using value - */ - p95_head_vote_rate_value?: number; - /** - * Filter stddev_head_vote_rate using value - */ - stddev_head_vote_rate_value?: number; - /** - * Filter upper_band_head_vote_rate using value - */ - upper_band_head_vote_rate_value?: number; - /** - * Filter lower_band_head_vote_rate using value - */ - lower_band_head_vote_rate_value?: number; - /** - * Filter moving_avg_head_vote_rate using value - */ - moving_avg_head_vote_rate_value?: number; - /** - * The maximum number of fct_head_vote_correctness_rate_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctHeadVoteCorrectnessRateHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_head_vote_correctness_rate_hourly'; -}; - -export type FctHeadVoteCorrectnessRateHourlyServiceListErrors = { + opcode_contains?: string; /** - * Default error response + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: starts_with) */ - default: Status; -}; - -export type FctHeadVoteCorrectnessRateHourlyServiceListError = FctHeadVoteCorrectnessRateHourlyServiceListErrors[keyof FctHeadVoteCorrectnessRateHourlyServiceListErrors]; - -export type FctHeadVoteCorrectnessRateHourlyServiceListResponses = { + opcode_starts_with?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ends_with) */ - 200: ListFctHeadVoteCorrectnessRateHourlyResponse; -}; - -export type FctHeadVoteCorrectnessRateHourlyServiceListResponse = FctHeadVoteCorrectnessRateHourlyServiceListResponses[keyof FctHeadVoteCorrectnessRateHourlyServiceListResponses]; - -export type FctHeadVoteCorrectnessRateHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_head_vote_correctness_rate_hourly/{hour_start_date_time}'; -}; - -export type FctHeadVoteCorrectnessRateHourlyServiceGetErrors = { + opcode_ends_with?: string; /** - * Default error response + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: like) */ - default: Status; -}; - -export type FctHeadVoteCorrectnessRateHourlyServiceGetError = FctHeadVoteCorrectnessRateHourlyServiceGetErrors[keyof FctHeadVoteCorrectnessRateHourlyServiceGetErrors]; - -export type FctHeadVoteCorrectnessRateHourlyServiceGetResponses = { + opcode_like?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_like) */ - 200: GetFctHeadVoteCorrectnessRateHourlyResponse; -}; - -export type FctHeadVoteCorrectnessRateHourlyServiceGetResponse = FctHeadVoteCorrectnessRateHourlyServiceGetResponses[keyof FctHeadVoteCorrectnessRateHourlyServiceGetResponses]; - -export type FctMevBidCountByBuilderServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The start time for the slot that the bid is for (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The start time for the slot that the bid is for (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The start time for the slot that the bid is for (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The start time for the slot that the bid is for (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The start time for the slot that the bid is for (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The start time for the slot that the bid is for (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The start time for the slot that the bid is for (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The start time for the slot that the bid is for (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The start time for the slot that the bid is for (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The start time for the slot that the bid is for (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The relay that the bid was fetched from (filter: eq) - */ - builder_pubkey_eq?: string; - /** - * The relay that the bid was fetched from (filter: ne) - */ - builder_pubkey_ne?: string; - /** - * The relay that the bid was fetched from (filter: contains) - */ - builder_pubkey_contains?: string; - /** - * The relay that the bid was fetched from (filter: starts_with) - */ - builder_pubkey_starts_with?: string; - /** - * The relay that the bid was fetched from (filter: ends_with) - */ - builder_pubkey_ends_with?: string; - /** - * The relay that the bid was fetched from (filter: like) - */ - builder_pubkey_like?: string; - /** - * The relay that the bid was fetched from (filter: not_like) - */ - builder_pubkey_not_like?: string; - /** - * The relay that the bid was fetched from (filter: in_values) (comma-separated list) - */ - builder_pubkey_in_values?: string; - /** - * The relay that the bid was fetched from (filter: not_in_values) (comma-separated list) - */ - builder_pubkey_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number within the block bid (filter: eq) - */ - slot_eq?: number; - /** - * Slot number within the block bid (filter: ne) - */ - slot_ne?: number; - /** - * Slot number within the block bid (filter: lt) - */ - slot_lt?: number; - /** - * Slot number within the block bid (filter: lte) - */ - slot_lte?: number; - /** - * Slot number within the block bid (filter: gt) - */ - slot_gt?: number; - /** - * Slot number within the block bid (filter: gte) - */ - slot_gte?: number; - /** - * Slot number within the block bid (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number within the block bid (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number within the block bid (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number within the block bid (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot that the bid is for (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot that the bid is for (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The start time for the epoch that the bid is for (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The start time for the epoch that the bid is for (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The start time for the epoch that the bid is for (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The start time for the epoch that the bid is for (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The start time for the epoch that the bid is for (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The start time for the epoch that the bid is for (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The start time for the epoch that the bid is for (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The start time for the epoch that the bid is for (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The start time for the epoch that the bid is for (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The start time for the epoch that the bid is for (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The total number of bids from the builder (filter: eq) - */ - bid_total_eq?: number; - /** - * The total number of bids from the builder (filter: ne) - */ - bid_total_ne?: number; - /** - * The total number of bids from the builder (filter: lt) - */ - bid_total_lt?: number; - /** - * The total number of bids from the builder (filter: lte) - */ - bid_total_lte?: number; - /** - * The total number of bids from the builder (filter: gt) - */ - bid_total_gt?: number; - /** - * The total number of bids from the builder (filter: gte) - */ - bid_total_gte?: number; - /** - * The total number of bids from the builder (filter: between_min) - */ - bid_total_between_min?: number; - /** - * The total number of bids from the builder (filter: between_max_value) - */ - bid_total_between_max_value?: number; - /** - * The total number of bids from the builder (filter: in_values) (comma-separated list) - */ - bid_total_in_values?: string; - /** - * The total number of bids from the builder (filter: not_in_values) (comma-separated list) - */ - bid_total_not_in_values?: string; - /** - * The maximum number of fct_mev_bid_count_by_builder to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctMevBidCountByBuilder` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_mev_bid_count_by_builder'; -}; - -export type FctMevBidCountByBuilderServiceListErrors = { + opcode_not_like?: string; /** - * Default error response + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctMevBidCountByBuilderServiceListError = FctMevBidCountByBuilderServiceListErrors[keyof FctMevBidCountByBuilderServiceListErrors]; - -export type FctMevBidCountByBuilderServiceListResponses = { + opcode_in_values?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_in_values) (comma-separated list) */ - 200: ListFctMevBidCountByBuilderResponse; -}; - -export type FctMevBidCountByBuilderServiceListResponse = FctMevBidCountByBuilderServiceListResponses[keyof FctMevBidCountByBuilderServiceListResponses]; - -export type FctMevBidCountByBuilderServiceGetData = { - body?: never; - path: { - /** - * The start time for the slot that the bid is for - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_mev_bid_count_by_builder/{slot_start_date_time}'; -}; - -export type FctMevBidCountByBuilderServiceGetErrors = { + opcode_not_in_values?: string; /** - * Default error response + * The name of the network (filter: eq) */ - default: Status; -}; - -export type FctMevBidCountByBuilderServiceGetError = FctMevBidCountByBuilderServiceGetErrors[keyof FctMevBidCountByBuilderServiceGetErrors]; - -export type FctMevBidCountByBuilderServiceGetResponses = { + meta_network_name_eq?: string; /** - * OK + * The name of the network (filter: ne) */ - 200: GetFctMevBidCountByBuilderResponse; -}; - -export type FctMevBidCountByBuilderServiceGetResponse = FctMevBidCountByBuilderServiceGetResponses[keyof FctMevBidCountByBuilderServiceGetResponses]; - -export type FctMevBidCountByRelayServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The start time for the slot that the bid is for (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The start time for the slot that the bid is for (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The start time for the slot that the bid is for (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The start time for the slot that the bid is for (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The start time for the slot that the bid is for (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The start time for the slot that the bid is for (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The start time for the slot that the bid is for (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The start time for the slot that the bid is for (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The start time for the slot that the bid is for (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The start time for the slot that the bid is for (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The relay that the bid was fetched from (filter: eq) - */ - relay_name_eq?: string; - /** - * The relay that the bid was fetched from (filter: ne) - */ - relay_name_ne?: string; - /** - * The relay that the bid was fetched from (filter: contains) - */ - relay_name_contains?: string; - /** - * The relay that the bid was fetched from (filter: starts_with) - */ - relay_name_starts_with?: string; - /** - * The relay that the bid was fetched from (filter: ends_with) - */ - relay_name_ends_with?: string; - /** - * The relay that the bid was fetched from (filter: like) - */ - relay_name_like?: string; - /** - * The relay that the bid was fetched from (filter: not_like) - */ - relay_name_not_like?: string; - /** - * The relay that the bid was fetched from (filter: in_values) (comma-separated list) - */ - relay_name_in_values?: string; - /** - * The relay that the bid was fetched from (filter: not_in_values) (comma-separated list) - */ - relay_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number within the block bid (filter: eq) - */ - slot_eq?: number; - /** - * Slot number within the block bid (filter: ne) - */ - slot_ne?: number; - /** - * Slot number within the block bid (filter: lt) - */ - slot_lt?: number; - /** - * Slot number within the block bid (filter: lte) - */ - slot_lte?: number; - /** - * Slot number within the block bid (filter: gt) - */ - slot_gt?: number; - /** - * Slot number within the block bid (filter: gte) - */ - slot_gte?: number; - /** - * Slot number within the block bid (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number within the block bid (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number within the block bid (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number within the block bid (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot that the bid is for (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot that the bid is for (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The start time for the epoch that the bid is for (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The start time for the epoch that the bid is for (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The start time for the epoch that the bid is for (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The start time for the epoch that the bid is for (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The start time for the epoch that the bid is for (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The start time for the epoch that the bid is for (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The start time for the epoch that the bid is for (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The start time for the epoch that the bid is for (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The start time for the epoch that the bid is for (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The start time for the epoch that the bid is for (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The total number of bids for the relay (filter: eq) - */ - bid_total_eq?: number; - /** - * The total number of bids for the relay (filter: ne) - */ - bid_total_ne?: number; - /** - * The total number of bids for the relay (filter: lt) - */ - bid_total_lt?: number; - /** - * The total number of bids for the relay (filter: lte) - */ - bid_total_lte?: number; - /** - * The total number of bids for the relay (filter: gt) - */ - bid_total_gt?: number; - /** - * The total number of bids for the relay (filter: gte) - */ - bid_total_gte?: number; - /** - * The total number of bids for the relay (filter: between_min) - */ - bid_total_between_min?: number; - /** - * The total number of bids for the relay (filter: between_max_value) - */ - bid_total_between_max_value?: number; - /** - * The total number of bids for the relay (filter: in_values) (comma-separated list) - */ - bid_total_in_values?: string; - /** - * The total number of bids for the relay (filter: not_in_values) (comma-separated list) - */ - bid_total_not_in_values?: string; - /** - * The maximum number of fct_mev_bid_count_by_relay to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctMevBidCountByRelay` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_mev_bid_count_by_relay'; -}; - -export type FctMevBidCountByRelayServiceListErrors = { + meta_network_name_ne?: string; /** - * Default error response + * The name of the network (filter: contains) */ - default: Status; -}; - -export type FctMevBidCountByRelayServiceListError = FctMevBidCountByRelayServiceListErrors[keyof FctMevBidCountByRelayServiceListErrors]; - -export type FctMevBidCountByRelayServiceListResponses = { + meta_network_name_contains?: string; /** - * OK + * The name of the network (filter: starts_with) */ - 200: ListFctMevBidCountByRelayResponse; -}; - -export type FctMevBidCountByRelayServiceListResponse = FctMevBidCountByRelayServiceListResponses[keyof FctMevBidCountByRelayServiceListResponses]; - -export type FctMevBidCountByRelayServiceGetData = { - body?: never; - path: { - /** - * The start time for the slot that the bid is for - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_mev_bid_count_by_relay/{slot_start_date_time}'; -}; - -export type FctMevBidCountByRelayServiceGetErrors = { + meta_network_name_starts_with?: string; /** - * Default error response + * The name of the network (filter: ends_with) */ - default: Status; -}; - -export type FctMevBidCountByRelayServiceGetError = FctMevBidCountByRelayServiceGetErrors[keyof FctMevBidCountByRelayServiceGetErrors]; - -export type FctMevBidCountByRelayServiceGetResponses = { + meta_network_name_ends_with?: string; /** - * OK + * The name of the network (filter: like) */ - 200: GetFctMevBidCountByRelayResponse; -}; - -export type FctMevBidCountByRelayServiceGetResponse = FctMevBidCountByRelayServiceGetResponses[keyof FctMevBidCountByRelayServiceGetResponses]; - -export type FctMevBidHighestValueByBuilderChunked50MsServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The start time for the slot that the bid is for (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The start time for the slot that the bid is for (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The start time for the slot that the bid is for (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The start time for the slot that the bid is for (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The start time for the slot that the bid is for (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The start time for the slot that the bid is for (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The start time for the slot that the bid is for (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The start time for the slot that the bid is for (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The start time for the slot that the bid is for (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The start time for the slot that the bid is for (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: eq) - */ - chunk_slot_start_diff_eq?: number; - /** - * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: ne) - */ - chunk_slot_start_diff_ne?: number; - /** - * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: lt) - */ - chunk_slot_start_diff_lt?: number; - /** - * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: lte) - */ - chunk_slot_start_diff_lte?: number; - /** - * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: gt) - */ - chunk_slot_start_diff_gt?: number; - /** - * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: gte) - */ - chunk_slot_start_diff_gte?: number; - /** - * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: between_min) - */ - chunk_slot_start_diff_between_min?: number; - /** - * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: between_max_value) - */ - chunk_slot_start_diff_between_max_value?: number; - /** - * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: in_values) (comma-separated list) - */ - chunk_slot_start_diff_in_values?: string; - /** - * The difference between the chunk start time and slot_start_date_time. "1500" would mean the earliest bid for this block_hash was between 1500ms and 1550ms into the slot. Negative values indicate bids received before slot start (filter: not_in_values) (comma-separated list) - */ - chunk_slot_start_diff_not_in_values?: string; - /** - * The builder pubkey of the bid (filter: eq) - */ - builder_pubkey_eq?: string; - /** - * The builder pubkey of the bid (filter: ne) - */ - builder_pubkey_ne?: string; - /** - * The builder pubkey of the bid (filter: contains) - */ - builder_pubkey_contains?: string; - /** - * The builder pubkey of the bid (filter: starts_with) - */ - builder_pubkey_starts_with?: string; - /** - * The builder pubkey of the bid (filter: ends_with) - */ - builder_pubkey_ends_with?: string; - /** - * The builder pubkey of the bid (filter: like) - */ - builder_pubkey_like?: string; - /** - * The builder pubkey of the bid (filter: not_like) - */ - builder_pubkey_not_like?: string; - /** - * The builder pubkey of the bid (filter: in_values) (comma-separated list) - */ - builder_pubkey_in_values?: string; - /** - * The builder pubkey of the bid (filter: not_in_values) (comma-separated list) - */ - builder_pubkey_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number within the block bid (filter: eq) - */ - slot_eq?: number; - /** - * Slot number within the block bid (filter: ne) - */ - slot_ne?: number; - /** - * Slot number within the block bid (filter: lt) - */ - slot_lt?: number; - /** - * Slot number within the block bid (filter: lte) - */ - slot_lte?: number; - /** - * Slot number within the block bid (filter: gt) - */ - slot_gt?: number; - /** - * Slot number within the block bid (filter: gte) - */ - slot_gte?: number; - /** - * Slot number within the block bid (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number within the block bid (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number within the block bid (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number within the block bid (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot that the bid is for (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot that the bid is for (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot that the bid is for (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The start time for the epoch that the bid is for (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The start time for the epoch that the bid is for (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The start time for the epoch that the bid is for (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The start time for the epoch that the bid is for (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The start time for the epoch that the bid is for (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The start time for the epoch that the bid is for (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The start time for the epoch that the bid is for (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The start time for the epoch that the bid is for (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The start time for the epoch that the bid is for (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The start time for the epoch that the bid is for (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The timestamp of the earliest bid for this block_hash from this builder (filter: eq) - */ - earliest_bid_date_time_eq?: number; - /** - * The timestamp of the earliest bid for this block_hash from this builder (filter: ne) - */ - earliest_bid_date_time_ne?: number; - /** - * The timestamp of the earliest bid for this block_hash from this builder (filter: lt) - */ - earliest_bid_date_time_lt?: number; - /** - * The timestamp of the earliest bid for this block_hash from this builder (filter: lte) - */ - earliest_bid_date_time_lte?: number; - /** - * The timestamp of the earliest bid for this block_hash from this builder (filter: gt) - */ - earliest_bid_date_time_gt?: number; - /** - * The timestamp of the earliest bid for this block_hash from this builder (filter: gte) - */ - earliest_bid_date_time_gte?: number; - /** - * The timestamp of the earliest bid for this block_hash from this builder (filter: between_min) - */ - earliest_bid_date_time_between_min?: number; - /** - * The timestamp of the earliest bid for this block_hash from this builder (filter: between_max_value) - */ - earliest_bid_date_time_between_max_value?: number; - /** - * The timestamp of the earliest bid for this block_hash from this builder (filter: in_values) (comma-separated list) - */ - earliest_bid_date_time_in_values?: string; - /** - * The timestamp of the earliest bid for this block_hash from this builder (filter: not_in_values) (comma-separated list) - */ - earliest_bid_date_time_not_in_values?: string; - /** - * The relay that the bid was fetched from (filter: has) - */ - relay_names_has?: string; - /** - * The relay that the bid was fetched from (filter: has_all_values) - */ - relay_names_has_all_values?: Array; - /** - * The relay that the bid was fetched from (filter: has_any_values) - */ - relay_names_has_any_values?: Array; - /** - * The relay that the bid was fetched from (filter: length_eq) - */ - relay_names_length_eq?: number; - /** - * The relay that the bid was fetched from (filter: length_gt) - */ - relay_names_length_gt?: number; - /** - * The relay that the bid was fetched from (filter: length_gte) - */ - relay_names_length_gte?: number; - /** - * The relay that the bid was fetched from (filter: length_lt) - */ - relay_names_length_lt?: number; - /** - * The relay that the bid was fetched from (filter: length_lte) - */ - relay_names_length_lte?: number; - /** - * The execution block hash of the bid (filter: eq) - */ - block_hash_eq?: string; - /** - * The execution block hash of the bid (filter: ne) - */ - block_hash_ne?: string; - /** - * The execution block hash of the bid (filter: contains) - */ - block_hash_contains?: string; - /** - * The execution block hash of the bid (filter: starts_with) - */ - block_hash_starts_with?: string; - /** - * The execution block hash of the bid (filter: ends_with) - */ - block_hash_ends_with?: string; - /** - * The execution block hash of the bid (filter: like) - */ - block_hash_like?: string; - /** - * The execution block hash of the bid (filter: not_like) - */ - block_hash_not_like?: string; - /** - * The execution block hash of the bid (filter: in_values) (comma-separated list) - */ - block_hash_in_values?: string; - /** - * The execution block hash of the bid (filter: not_in_values) (comma-separated list) - */ - block_hash_not_in_values?: string; - /** - * The transaction value in wei (filter: eq) - */ - value_eq?: string; - /** - * The transaction value in wei (filter: ne) - */ - value_ne?: string; - /** - * The transaction value in wei (filter: contains) - */ - value_contains?: string; - /** - * The transaction value in wei (filter: starts_with) - */ - value_starts_with?: string; - /** - * The transaction value in wei (filter: ends_with) - */ - value_ends_with?: string; - /** - * The transaction value in wei (filter: like) - */ - value_like?: string; - /** - * The transaction value in wei (filter: not_like) - */ - value_not_like?: string; - /** - * The transaction value in wei (filter: in_values) (comma-separated list) - */ - value_in_values?: string; - /** - * The transaction value in wei (filter: not_in_values) (comma-separated list) - */ - value_not_in_values?: string; - /** - * The maximum number of fct_mev_bid_highest_value_by_builder_chunked_50ms to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctMevBidHighestValueByBuilderChunked50ms` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_mev_bid_highest_value_by_builder_chunked_50ms'; -}; - -export type FctMevBidHighestValueByBuilderChunked50MsServiceListErrors = { + meta_network_name_like?: string; /** - * Default error response + * The name of the network (filter: not_like) */ - default: Status; -}; - -export type FctMevBidHighestValueByBuilderChunked50MsServiceListError = FctMevBidHighestValueByBuilderChunked50MsServiceListErrors[keyof FctMevBidHighestValueByBuilderChunked50MsServiceListErrors]; - -export type FctMevBidHighestValueByBuilderChunked50MsServiceListResponses = { + meta_network_name_not_like?: string; /** - * OK + * The name of the network (filter: in_values) (comma-separated list) */ - 200: ListFctMevBidHighestValueByBuilderChunked50MsResponse; -}; - -export type FctMevBidHighestValueByBuilderChunked50MsServiceListResponse = FctMevBidHighestValueByBuilderChunked50MsServiceListResponses[keyof FctMevBidHighestValueByBuilderChunked50MsServiceListResponses]; - -export type FctMevBidHighestValueByBuilderChunked50MsServiceGetData = { - body?: never; - path: { - /** - * The start time for the slot that the bid is for - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_mev_bid_highest_value_by_builder_chunked_50ms/{slot_start_date_time}'; -}; - -export type FctMevBidHighestValueByBuilderChunked50MsServiceGetErrors = { + meta_network_name_in_values?: string; /** - * Default error response + * The name of the network (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctMevBidHighestValueByBuilderChunked50MsServiceGetError = FctMevBidHighestValueByBuilderChunked50MsServiceGetErrors[keyof FctMevBidHighestValueByBuilderChunked50MsServiceGetErrors]; - -export type FctMevBidHighestValueByBuilderChunked50MsServiceGetResponses = { + meta_network_name_not_in_values?: string; /** - * OK + * Timestamp when the record was last updated (filter: eq) */ - 200: GetFctMevBidHighestValueByBuilderChunked50MsResponse; -}; - -export type FctMevBidHighestValueByBuilderChunked50MsServiceGetResponse = FctMevBidHighestValueByBuilderChunked50MsServiceGetResponses[keyof FctMevBidHighestValueByBuilderChunked50MsServiceGetResponses]; - -export type FctMissedSlotRateDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total number of slots in this day (filter: eq) - */ - slot_count_eq?: number; - /** - * Total number of slots in this day (filter: ne) - */ - slot_count_ne?: number; - /** - * Total number of slots in this day (filter: lt) - */ - slot_count_lt?: number; - /** - * Total number of slots in this day (filter: lte) - */ - slot_count_lte?: number; - /** - * Total number of slots in this day (filter: gt) - */ - slot_count_gt?: number; - /** - * Total number of slots in this day (filter: gte) - */ - slot_count_gte?: number; - /** - * Total number of slots in this day (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Total number of slots in this day (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Total number of slots in this day (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Total number of slots in this day (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * Number of missed slots in this day (filter: eq) - */ - missed_count_eq?: number; - /** - * Number of missed slots in this day (filter: ne) - */ - missed_count_ne?: number; - /** - * Number of missed slots in this day (filter: lt) - */ - missed_count_lt?: number; - /** - * Number of missed slots in this day (filter: lte) - */ - missed_count_lte?: number; - /** - * Number of missed slots in this day (filter: gt) - */ - missed_count_gt?: number; - /** - * Number of missed slots in this day (filter: gte) - */ - missed_count_gte?: number; - /** - * Number of missed slots in this day (filter: between_min) - */ - missed_count_between_min?: number; - /** - * Number of missed slots in this day (filter: between_max_value) - */ - missed_count_between_max_value?: number; - /** - * Number of missed slots in this day (filter: in_values) (comma-separated list) - */ - missed_count_in_values?: string; - /** - * Number of missed slots in this day (filter: not_in_values) (comma-separated list) - */ - missed_count_not_in_values?: string; - /** - * Filter missed_rate using value - */ - missed_rate_value?: number; - /** - * Filter moving_avg_missed_rate using value - */ - moving_avg_missed_rate_value?: number; - /** - * The maximum number of fct_missed_slot_rate_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctMissedSlotRateDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_missed_slot_rate_daily'; -}; - -export type FctMissedSlotRateDailyServiceListErrors = { + updated_date_time_eq?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: ne) */ - default: Status; -}; - -export type FctMissedSlotRateDailyServiceListError = FctMissedSlotRateDailyServiceListErrors[keyof FctMissedSlotRateDailyServiceListErrors]; - -export type FctMissedSlotRateDailyServiceListResponses = { + updated_date_time_ne?: number; /** - * OK + * Timestamp when the record was last updated (filter: lt) */ - 200: ListFctMissedSlotRateDailyResponse; -}; - -export type FctMissedSlotRateDailyServiceListResponse = FctMissedSlotRateDailyServiceListResponses[keyof FctMissedSlotRateDailyServiceListResponses]; - -export type FctMissedSlotRateDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_missed_slot_rate_daily/{day_start_date}'; -}; - -export type FctMissedSlotRateDailyServiceGetErrors = { + updated_date_time_lt?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: lte) */ - default: Status; -}; - -export type FctMissedSlotRateDailyServiceGetError = FctMissedSlotRateDailyServiceGetErrors[keyof FctMissedSlotRateDailyServiceGetErrors]; - -export type FctMissedSlotRateDailyServiceGetResponses = { + updated_date_time_lte?: number; /** - * OK + * Timestamp when the record was last updated (filter: gt) */ - 200: GetFctMissedSlotRateDailyResponse; -}; - -export type FctMissedSlotRateDailyServiceGetResponse = FctMissedSlotRateDailyServiceGetResponses[keyof FctMissedSlotRateDailyServiceGetResponses]; - -export type FctMissedSlotRateHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total number of slots in this hour (filter: eq) - */ - slot_count_eq?: number; - /** - * Total number of slots in this hour (filter: ne) - */ - slot_count_ne?: number; - /** - * Total number of slots in this hour (filter: lt) - */ - slot_count_lt?: number; - /** - * Total number of slots in this hour (filter: lte) - */ - slot_count_lte?: number; - /** - * Total number of slots in this hour (filter: gt) - */ - slot_count_gt?: number; - /** - * Total number of slots in this hour (filter: gte) - */ - slot_count_gte?: number; - /** - * Total number of slots in this hour (filter: between_min) - */ - slot_count_between_min?: number; - /** - * Total number of slots in this hour (filter: between_max_value) - */ - slot_count_between_max_value?: number; - /** - * Total number of slots in this hour (filter: in_values) (comma-separated list) - */ - slot_count_in_values?: string; - /** - * Total number of slots in this hour (filter: not_in_values) (comma-separated list) - */ - slot_count_not_in_values?: string; - /** - * Number of missed slots in this hour (filter: eq) - */ - missed_count_eq?: number; - /** - * Number of missed slots in this hour (filter: ne) - */ - missed_count_ne?: number; - /** - * Number of missed slots in this hour (filter: lt) - */ - missed_count_lt?: number; - /** - * Number of missed slots in this hour (filter: lte) - */ - missed_count_lte?: number; - /** - * Number of missed slots in this hour (filter: gt) - */ - missed_count_gt?: number; - /** - * Number of missed slots in this hour (filter: gte) - */ - missed_count_gte?: number; - /** - * Number of missed slots in this hour (filter: between_min) - */ - missed_count_between_min?: number; - /** - * Number of missed slots in this hour (filter: between_max_value) - */ - missed_count_between_max_value?: number; - /** - * Number of missed slots in this hour (filter: in_values) (comma-separated list) - */ - missed_count_in_values?: string; - /** - * Number of missed slots in this hour (filter: not_in_values) (comma-separated list) - */ - missed_count_not_in_values?: string; - /** - * Filter missed_rate using value - */ - missed_rate_value?: number; - /** - * Filter moving_avg_missed_rate using value - */ - moving_avg_missed_rate_value?: number; - /** - * The maximum number of fct_missed_slot_rate_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctMissedSlotRateHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_missed_slot_rate_hourly'; -}; - -export type FctMissedSlotRateHourlyServiceListErrors = { + updated_date_time_gt?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: gte) */ - default: Status; -}; - -export type FctMissedSlotRateHourlyServiceListError = FctMissedSlotRateHourlyServiceListErrors[keyof FctMissedSlotRateHourlyServiceListErrors]; - -export type FctMissedSlotRateHourlyServiceListResponses = { + updated_date_time_gte?: number; /** - * OK + * Timestamp when the record was last updated (filter: between_min) */ - 200: ListFctMissedSlotRateHourlyResponse; -}; - -export type FctMissedSlotRateHourlyServiceListResponse = FctMissedSlotRateHourlyServiceListResponses[keyof FctMissedSlotRateHourlyServiceListResponses]; - -export type FctMissedSlotRateHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_missed_slot_rate_hourly/{hour_start_date_time}'; -}; - -export type FctMissedSlotRateHourlyServiceGetErrors = { + updated_date_time_between_min?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: between_max_value) */ - default: Status; -}; - -export type FctMissedSlotRateHourlyServiceGetError = FctMissedSlotRateHourlyServiceGetErrors[keyof FctMissedSlotRateHourlyServiceGetErrors]; - -export type FctMissedSlotRateHourlyServiceGetResponses = { + updated_date_time_between_max_value?: number; /** - * OK + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - 200: GetFctMissedSlotRateHourlyResponse; -}; - -export type FctMissedSlotRateHourlyServiceGetResponse = FctMissedSlotRateHourlyServiceGetResponses[keyof FctMissedSlotRateHourlyServiceGetResponses]; - -export type FctNodeActiveLast24hServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Name of the client (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the client (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the client (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the client (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the client (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the client (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the client (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the client (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Timestamp when the node was last seen (filter: eq) - */ - last_seen_date_time_eq?: number; - /** - * Timestamp when the node was last seen (filter: ne) - */ - last_seen_date_time_ne?: number; - /** - * Timestamp when the node was last seen (filter: lt) - */ - last_seen_date_time_lt?: number; - /** - * Timestamp when the node was last seen (filter: lte) - */ - last_seen_date_time_lte?: number; - /** - * Timestamp when the node was last seen (filter: gt) - */ - last_seen_date_time_gt?: number; - /** - * Timestamp when the node was last seen (filter: gte) - */ - last_seen_date_time_gte?: number; - /** - * Timestamp when the node was last seen (filter: between_min) - */ - last_seen_date_time_between_min?: number; - /** - * Timestamp when the node was last seen (filter: between_max_value) - */ - last_seen_date_time_between_max_value?: number; - /** - * Timestamp when the node was last seen (filter: in_values) (comma-separated list) - */ - last_seen_date_time_in_values?: string; - /** - * Timestamp when the node was last seen (filter: not_in_values) (comma-separated list) - */ - last_seen_date_time_not_in_values?: string; - /** - * Username of the node (filter: eq) - */ - username_eq?: string; - /** - * Username of the node (filter: ne) - */ - username_ne?: string; - /** - * Username of the node (filter: contains) - */ - username_contains?: string; - /** - * Username of the node (filter: starts_with) - */ - username_starts_with?: string; - /** - * Username of the node (filter: ends_with) - */ - username_ends_with?: string; - /** - * Username of the node (filter: like) - */ - username_like?: string; - /** - * Username of the node (filter: not_like) - */ - username_not_like?: string; - /** - * Username of the node (filter: in_values) (comma-separated list) - */ - username_in_values?: string; - /** - * Username of the node (filter: not_in_values) (comma-separated list) - */ - username_not_in_values?: string; - /** - * ID of the node (filter: eq) - */ - node_id_eq?: string; - /** - * ID of the node (filter: ne) - */ - node_id_ne?: string; - /** - * ID of the node (filter: contains) - */ - node_id_contains?: string; - /** - * ID of the node (filter: starts_with) - */ - node_id_starts_with?: string; - /** - * ID of the node (filter: ends_with) - */ - node_id_ends_with?: string; - /** - * ID of the node (filter: like) - */ - node_id_like?: string; - /** - * ID of the node (filter: not_like) - */ - node_id_not_like?: string; - /** - * ID of the node (filter: in_values) (comma-separated list) - */ - node_id_in_values?: string; - /** - * ID of the node (filter: not_in_values) (comma-separated list) - */ - node_id_not_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) - */ - classification_eq?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) - */ - classification_ne?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) - */ - classification_contains?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) - */ - classification_starts_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) - */ - classification_ends_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) - */ - classification_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) - */ - classification_not_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) - */ - classification_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) - */ - classification_not_in_values?: string; - /** - * Version of the client (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * Implementation of the client (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * City of the client (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * Continent code of the client (filter: eq) - */ - meta_client_geo_continent_code_eq?: string; - /** - * Continent code of the client (filter: ne) - */ - meta_client_geo_continent_code_ne?: string; - /** - * Continent code of the client (filter: contains) - */ - meta_client_geo_continent_code_contains?: string; - /** - * Continent code of the client (filter: starts_with) - */ - meta_client_geo_continent_code_starts_with?: string; - /** - * Continent code of the client (filter: ends_with) - */ - meta_client_geo_continent_code_ends_with?: string; - /** - * Continent code of the client (filter: like) - */ - meta_client_geo_continent_code_like?: string; - /** - * Continent code of the client (filter: not_like) - */ - meta_client_geo_continent_code_not_like?: string; - /** - * Continent code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_continent_code_in_values?: string; - /** - * Continent code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_continent_code_not_in_values?: string; - /** - * Filter meta_client_geo_longitude using value - */ - meta_client_geo_longitude_value?: number; - /** - * Filter meta_client_geo_latitude using value - */ - meta_client_geo_latitude_value?: number; - /** - * Autonomous system number of the client (filter: eq) - */ - meta_client_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the client (filter: ne) - */ - meta_client_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the client (filter: lt) - */ - meta_client_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the client (filter: lte) - */ - meta_client_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the client (filter: gt) - */ - meta_client_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the client (filter: gte) - */ - meta_client_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the client (filter: between_min) - */ - meta_client_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the client (filter: between_max_value) - */ - meta_client_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the client (filter: eq) - */ - meta_client_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the client (filter: ne) - */ - meta_client_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the client (filter: contains) - */ - meta_client_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the client (filter: starts_with) - */ - meta_client_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the client (filter: ends_with) - */ - meta_client_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the client (filter: like) - */ - meta_client_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the client (filter: not_like) - */ - meta_client_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_not_in_values?: string; - /** - * Ethereum consensus client version (filter: eq) - */ - meta_consensus_version_eq?: string; - /** - * Ethereum consensus client version (filter: ne) - */ - meta_consensus_version_ne?: string; - /** - * Ethereum consensus client version (filter: contains) - */ - meta_consensus_version_contains?: string; - /** - * Ethereum consensus client version (filter: starts_with) - */ - meta_consensus_version_starts_with?: string; - /** - * Ethereum consensus client version (filter: ends_with) - */ - meta_consensus_version_ends_with?: string; - /** - * Ethereum consensus client version (filter: like) - */ - meta_consensus_version_like?: string; - /** - * Ethereum consensus client version (filter: not_like) - */ - meta_consensus_version_not_like?: string; - /** - * Ethereum consensus client version (filter: in_values) (comma-separated list) - */ - meta_consensus_version_in_values?: string; - /** - * Ethereum consensus client version (filter: not_in_values) (comma-separated list) - */ - meta_consensus_version_not_in_values?: string; - /** - * Ethereum consensus client implementation (filter: eq) - */ - meta_consensus_implementation_eq?: string; - /** - * Ethereum consensus client implementation (filter: ne) - */ - meta_consensus_implementation_ne?: string; - /** - * Ethereum consensus client implementation (filter: contains) - */ - meta_consensus_implementation_contains?: string; - /** - * Ethereum consensus client implementation (filter: starts_with) - */ - meta_consensus_implementation_starts_with?: string; - /** - * Ethereum consensus client implementation (filter: ends_with) - */ - meta_consensus_implementation_ends_with?: string; - /** - * Ethereum consensus client implementation (filter: like) - */ - meta_consensus_implementation_like?: string; - /** - * Ethereum consensus client implementation (filter: not_like) - */ - meta_consensus_implementation_not_like?: string; - /** - * Ethereum consensus client implementation (filter: in_values) (comma-separated list) - */ - meta_consensus_implementation_in_values?: string; - /** - * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) - */ - meta_consensus_implementation_not_in_values?: string; - /** - * The maximum number of fct_node_active_last_24h to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctNodeActiveLast24h` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_node_active_last_24h'; -}; - -export type FctNodeActiveLast24hServiceListErrors = { + updated_date_time_in_values?: string; /** - * Default error response + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctNodeActiveLast24hServiceListError = FctNodeActiveLast24hServiceListErrors[keyof FctNodeActiveLast24hServiceListErrors]; - -export type FctNodeActiveLast24hServiceListResponses = { + updated_date_time_not_in_values?: string; /** - * OK + * The index of the transaction within the block (filter: eq) */ - 200: ListFctNodeActiveLast24hResponse; -}; - -export type FctNodeActiveLast24hServiceListResponse = FctNodeActiveLast24hServiceListResponses[keyof FctNodeActiveLast24hServiceListResponses]; - -export type FctNodeActiveLast24hServiceGetData = { - body?: never; - path: { - /** - * Name of the client - */ - meta_client_name: string; - }; - query?: never; - url: '/api/v1/fct_node_active_last_24h/{meta_client_name}'; -}; - -export type FctNodeActiveLast24hServiceGetErrors = { + transaction_index_eq?: number; /** - * Default error response + * The index of the transaction within the block (filter: ne) */ - default: Status; -}; - -export type FctNodeActiveLast24hServiceGetError = FctNodeActiveLast24hServiceGetErrors[keyof FctNodeActiveLast24hServiceGetErrors]; - -export type FctNodeActiveLast24hServiceGetResponses = { + transaction_index_ne?: number; /** - * OK + * The index of the transaction within the block (filter: lt) */ - 200: GetFctNodeActiveLast24hResponse; -}; - -export type FctNodeActiveLast24hServiceGetResponse = FctNodeActiveLast24hServiceGetResponses[keyof FctNodeActiveLast24hServiceGetResponses]; - -export type FctNodeCpuUtilizationByProcessServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - wallclock_slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - wallclock_slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - wallclock_slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - wallclock_slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - wallclock_slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - wallclock_slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - wallclock_slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - wallclock_slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - wallclock_slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - wallclock_slot_start_date_time_not_in_values?: string; - /** - * Name of the observoor client that collected the data (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the observoor client that collected the data (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the observoor client that collected the data (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the observoor client that collected the data (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the observoor client that collected the data (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the observoor client that collected the data (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the observoor client that collected the data (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the observoor client that collected the data (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the observoor client that collected the data (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * Client type: CL or EL (filter: eq) - */ - client_type_eq?: string; - /** - * Client type: CL or EL (filter: ne) - */ - client_type_ne?: string; - /** - * Client type: CL or EL (filter: contains) - */ - client_type_contains?: string; - /** - * Client type: CL or EL (filter: starts_with) - */ - client_type_starts_with?: string; - /** - * Client type: CL or EL (filter: ends_with) - */ - client_type_ends_with?: string; - /** - * Client type: CL or EL (filter: like) - */ - client_type_like?: string; - /** - * Client type: CL or EL (filter: not_like) - */ - client_type_not_like?: string; - /** - * Client type: CL or EL (filter: in_values) (comma-separated list) - */ - client_type_in_values?: string; - /** - * Client type: CL or EL (filter: not_in_values) (comma-separated list) - */ - client_type_not_in_values?: string; - /** - * Process ID of the monitored client (filter: eq) - */ - pid_eq?: number; - /** - * Process ID of the monitored client (filter: ne) - */ - pid_ne?: number; - /** - * Process ID of the monitored client (filter: lt) - */ - pid_lt?: number; - /** - * Process ID of the monitored client (filter: lte) - */ - pid_lte?: number; - /** - * Process ID of the monitored client (filter: gt) - */ - pid_gt?: number; - /** - * Process ID of the monitored client (filter: gte) - */ - pid_gte?: number; - /** - * Process ID of the monitored client (filter: between_min) - */ - pid_between_min?: number; - /** - * Process ID of the monitored client (filter: between_max_value) - */ - pid_between_max_value?: number; - /** - * Process ID of the monitored client (filter: in_values) (comma-separated list) - */ - pid_in_values?: string; - /** - * Process ID of the monitored client (filter: not_in_values) (comma-separated list) - */ - pid_not_in_values?: string; - /** - * Start of the sub-slot aggregation window (filter: eq) - */ - window_start_eq?: number; - /** - * Start of the sub-slot aggregation window (filter: ne) - */ - window_start_ne?: number; - /** - * Start of the sub-slot aggregation window (filter: lt) - */ - window_start_lt?: number; - /** - * Start of the sub-slot aggregation window (filter: lte) - */ - window_start_lte?: number; - /** - * Start of the sub-slot aggregation window (filter: gt) - */ - window_start_gt?: number; - /** - * Start of the sub-slot aggregation window (filter: gte) - */ - window_start_gte?: number; - /** - * Start of the sub-slot aggregation window (filter: between_min) - */ - window_start_between_min?: number; - /** - * Start of the sub-slot aggregation window (filter: between_max_value) - */ - window_start_between_max_value?: number; - /** - * Start of the sub-slot aggregation window (filter: in_values) (comma-separated list) - */ - window_start_in_values?: string; - /** - * Start of the sub-slot aggregation window (filter: not_in_values) (comma-separated list) - */ - window_start_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The wallclock slot number (filter: eq) - */ - wallclock_slot_eq?: number; - /** - * The wallclock slot number (filter: ne) - */ - wallclock_slot_ne?: number; - /** - * The wallclock slot number (filter: lt) - */ - wallclock_slot_lt?: number; - /** - * The wallclock slot number (filter: lte) - */ - wallclock_slot_lte?: number; - /** - * The wallclock slot number (filter: gt) - */ - wallclock_slot_gt?: number; - /** - * The wallclock slot number (filter: gte) - */ - wallclock_slot_gte?: number; - /** - * The wallclock slot number (filter: between_min) - */ - wallclock_slot_between_min?: number; - /** - * The wallclock slot number (filter: between_max_value) - */ - wallclock_slot_between_max_value?: number; - /** - * The wallclock slot number (filter: in_values) (comma-separated list) - */ - wallclock_slot_in_values?: string; - /** - * The wallclock slot number (filter: not_in_values) (comma-separated list) - */ - wallclock_slot_not_in_values?: string; - /** - * Ethereum network name (filter: eq) - */ - meta_network_name_eq?: string; - /** - * Ethereum network name (filter: ne) - */ - meta_network_name_ne?: string; - /** - * Ethereum network name (filter: contains) - */ - meta_network_name_contains?: string; - /** - * Ethereum network name (filter: starts_with) - */ - meta_network_name_starts_with?: string; - /** - * Ethereum network name (filter: ends_with) - */ - meta_network_name_ends_with?: string; - /** - * Ethereum network name (filter: like) - */ - meta_network_name_like?: string; - /** - * Ethereum network name (filter: not_like) - */ - meta_network_name_not_like?: string; - /** - * Ethereum network name (filter: in_values) (comma-separated list) - */ - meta_network_name_in_values?: string; - /** - * Ethereum network name (filter: not_in_values) (comma-separated list) - */ - meta_network_name_not_in_values?: string; - /** - * Total system CPU cores (filter: eq) - */ - system_cores_eq?: number; - /** - * Total system CPU cores (filter: ne) - */ - system_cores_ne?: number; - /** - * Total system CPU cores (filter: lt) - */ - system_cores_lt?: number; - /** - * Total system CPU cores (filter: lte) - */ - system_cores_lte?: number; - /** - * Total system CPU cores (filter: gt) - */ - system_cores_gt?: number; - /** - * Total system CPU cores (filter: gte) - */ - system_cores_gte?: number; - /** - * Total system CPU cores (filter: between_min) - */ - system_cores_between_min?: number; - /** - * Total system CPU cores (filter: between_max_value) - */ - system_cores_between_max_value?: number; - /** - * Total system CPU cores (filter: in_values) (comma-separated list) - */ - system_cores_in_values?: string; - /** - * Total system CPU cores (filter: not_in_values) (comma-separated list) - */ - system_cores_not_in_values?: string; - /** - * Filter mean_core_pct using value - */ - mean_core_pct_value?: number; - /** - * Filter min_core_pct using value - */ - min_core_pct_value?: number; - /** - * Filter max_core_pct using value - */ - max_core_pct_value?: number; - /** - * Node classification for filtering (e.g. eip7870) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * The maximum number of fct_node_cpu_utilization_by_process to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctNodeCpuUtilizationByProcess` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_node_cpu_utilization_by_process'; -}; - -export type FctNodeCpuUtilizationByProcessServiceListErrors = { + transaction_index_lt?: number; /** - * Default error response + * The index of the transaction within the block (filter: lte) */ - default: Status; -}; - -export type FctNodeCpuUtilizationByProcessServiceListError = FctNodeCpuUtilizationByProcessServiceListErrors[keyof FctNodeCpuUtilizationByProcessServiceListErrors]; - -export type FctNodeCpuUtilizationByProcessServiceListResponses = { + transaction_index_lte?: number; /** - * OK + * The index of the transaction within the block (filter: gt) */ - 200: ListFctNodeCpuUtilizationByProcessResponse; -}; - -export type FctNodeCpuUtilizationByProcessServiceListResponse = FctNodeCpuUtilizationByProcessServiceListResponses[keyof FctNodeCpuUtilizationByProcessServiceListResponses]; - -export type FctNodeCpuUtilizationByProcessServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - wallclock_slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_node_cpu_utilization_by_process/{wallclock_slot_start_date_time}'; -}; - -export type FctNodeCpuUtilizationByProcessServiceGetErrors = { + transaction_index_gt?: number; + /** + * The index of the transaction within the block (filter: gte) + */ + transaction_index_gte?: number; /** - * Default error response + * The index of the transaction within the block (filter: between_min) */ - default: Status; -}; - -export type FctNodeCpuUtilizationByProcessServiceGetError = FctNodeCpuUtilizationByProcessServiceGetErrors[keyof FctNodeCpuUtilizationByProcessServiceGetErrors]; - -export type FctNodeCpuUtilizationByProcessServiceGetResponses = { + transaction_index_between_min?: number; /** - * OK + * The index of the transaction within the block (filter: between_max_value) */ - 200: GetFctNodeCpuUtilizationByProcessResponse; -}; - -export type FctNodeCpuUtilizationByProcessServiceGetResponse = FctNodeCpuUtilizationByProcessServiceGetResponses[keyof FctNodeCpuUtilizationByProcessServiceGetResponses]; - -export type FctNodeDiskIoByProcessServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - wallclock_slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - wallclock_slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - wallclock_slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - wallclock_slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - wallclock_slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - wallclock_slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - wallclock_slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - wallclock_slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - wallclock_slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - wallclock_slot_start_date_time_not_in_values?: string; - /** - * Name of the observoor client that collected the data (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the observoor client that collected the data (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the observoor client that collected the data (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the observoor client that collected the data (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the observoor client that collected the data (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the observoor client that collected the data (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the observoor client that collected the data (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the observoor client that collected the data (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the observoor client that collected the data (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * Client type: CL or EL (filter: eq) - */ - client_type_eq?: string; - /** - * Client type: CL or EL (filter: ne) - */ - client_type_ne?: string; - /** - * Client type: CL or EL (filter: contains) - */ - client_type_contains?: string; - /** - * Client type: CL or EL (filter: starts_with) - */ - client_type_starts_with?: string; - /** - * Client type: CL or EL (filter: ends_with) - */ - client_type_ends_with?: string; - /** - * Client type: CL or EL (filter: like) - */ - client_type_like?: string; - /** - * Client type: CL or EL (filter: not_like) - */ - client_type_not_like?: string; - /** - * Client type: CL or EL (filter: in_values) (comma-separated list) - */ - client_type_in_values?: string; - /** - * Client type: CL or EL (filter: not_in_values) (comma-separated list) - */ - client_type_not_in_values?: string; - /** - * Process ID of the monitored client (filter: eq) - */ - pid_eq?: number; - /** - * Process ID of the monitored client (filter: ne) - */ - pid_ne?: number; - /** - * Process ID of the monitored client (filter: lt) - */ - pid_lt?: number; - /** - * Process ID of the monitored client (filter: lte) - */ - pid_lte?: number; - /** - * Process ID of the monitored client (filter: gt) - */ - pid_gt?: number; - /** - * Process ID of the monitored client (filter: gte) - */ - pid_gte?: number; - /** - * Process ID of the monitored client (filter: between_min) - */ - pid_between_min?: number; - /** - * Process ID of the monitored client (filter: between_max_value) - */ - pid_between_max_value?: number; - /** - * Process ID of the monitored client (filter: in_values) (comma-separated list) - */ - pid_in_values?: string; - /** - * Process ID of the monitored client (filter: not_in_values) (comma-separated list) - */ - pid_not_in_values?: string; - /** - * I/O direction: read or write (filter: eq) - */ - rw_eq?: string; - /** - * I/O direction: read or write (filter: ne) - */ - rw_ne?: string; - /** - * I/O direction: read or write (filter: contains) - */ - rw_contains?: string; - /** - * I/O direction: read or write (filter: starts_with) - */ - rw_starts_with?: string; - /** - * I/O direction: read or write (filter: ends_with) - */ - rw_ends_with?: string; - /** - * I/O direction: read or write (filter: like) - */ - rw_like?: string; - /** - * I/O direction: read or write (filter: not_like) - */ - rw_not_like?: string; - /** - * I/O direction: read or write (filter: in_values) (comma-separated list) - */ - rw_in_values?: string; - /** - * I/O direction: read or write (filter: not_in_values) (comma-separated list) - */ - rw_not_in_values?: string; - /** - * Start of the sub-slot aggregation window (filter: eq) - */ - window_start_eq?: number; - /** - * Start of the sub-slot aggregation window (filter: ne) - */ - window_start_ne?: number; - /** - * Start of the sub-slot aggregation window (filter: lt) - */ - window_start_lt?: number; - /** - * Start of the sub-slot aggregation window (filter: lte) - */ - window_start_lte?: number; - /** - * Start of the sub-slot aggregation window (filter: gt) - */ - window_start_gt?: number; - /** - * Start of the sub-slot aggregation window (filter: gte) - */ - window_start_gte?: number; - /** - * Start of the sub-slot aggregation window (filter: between_min) - */ - window_start_between_min?: number; - /** - * Start of the sub-slot aggregation window (filter: between_max_value) - */ - window_start_between_max_value?: number; - /** - * Start of the sub-slot aggregation window (filter: in_values) (comma-separated list) - */ - window_start_in_values?: string; - /** - * Start of the sub-slot aggregation window (filter: not_in_values) (comma-separated list) - */ - window_start_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The wallclock slot number (filter: eq) - */ - wallclock_slot_eq?: number; - /** - * The wallclock slot number (filter: ne) - */ - wallclock_slot_ne?: number; - /** - * The wallclock slot number (filter: lt) - */ - wallclock_slot_lt?: number; - /** - * The wallclock slot number (filter: lte) - */ - wallclock_slot_lte?: number; - /** - * The wallclock slot number (filter: gt) - */ - wallclock_slot_gt?: number; - /** - * The wallclock slot number (filter: gte) - */ - wallclock_slot_gte?: number; - /** - * The wallclock slot number (filter: between_min) - */ - wallclock_slot_between_min?: number; - /** - * The wallclock slot number (filter: between_max_value) - */ - wallclock_slot_between_max_value?: number; - /** - * The wallclock slot number (filter: in_values) (comma-separated list) - */ - wallclock_slot_in_values?: string; - /** - * The wallclock slot number (filter: not_in_values) (comma-separated list) - */ - wallclock_slot_not_in_values?: string; - /** - * Ethereum network name (filter: eq) - */ - meta_network_name_eq?: string; - /** - * Ethereum network name (filter: ne) - */ - meta_network_name_ne?: string; - /** - * Ethereum network name (filter: contains) - */ - meta_network_name_contains?: string; - /** - * Ethereum network name (filter: starts_with) - */ - meta_network_name_starts_with?: string; - /** - * Ethereum network name (filter: ends_with) - */ - meta_network_name_ends_with?: string; - /** - * Ethereum network name (filter: like) - */ - meta_network_name_like?: string; - /** - * Ethereum network name (filter: not_like) - */ - meta_network_name_not_like?: string; - /** - * Ethereum network name (filter: in_values) (comma-separated list) - */ - meta_network_name_in_values?: string; - /** - * Ethereum network name (filter: not_in_values) (comma-separated list) - */ - meta_network_name_not_in_values?: string; - /** - * Filter io_bytes using value - */ - io_bytes_value?: number; - /** - * Total I/O operations across all devices in this window (filter: eq) - */ - io_ops_eq?: number; - /** - * Total I/O operations across all devices in this window (filter: ne) - */ - io_ops_ne?: number; - /** - * Total I/O operations across all devices in this window (filter: lt) - */ - io_ops_lt?: number; - /** - * Total I/O operations across all devices in this window (filter: lte) - */ - io_ops_lte?: number; - /** - * Total I/O operations across all devices in this window (filter: gt) - */ - io_ops_gt?: number; - /** - * Total I/O operations across all devices in this window (filter: gte) - */ - io_ops_gte?: number; - /** - * Total I/O operations across all devices in this window (filter: between_min) - */ - io_ops_between_min?: number; - /** - * Total I/O operations across all devices in this window (filter: between_max_value) - */ - io_ops_between_max_value?: number; - /** - * Total I/O operations across all devices in this window (filter: in_values) (comma-separated list) - */ - io_ops_in_values?: string; - /** - * Total I/O operations across all devices in this window (filter: not_in_values) (comma-separated list) - */ - io_ops_not_in_values?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * The maximum number of fct_node_disk_io_by_process to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctNodeDiskIoByProcess` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_node_disk_io_by_process'; -}; - -export type FctNodeDiskIoByProcessServiceListErrors = { + transaction_index_between_max_value?: number; /** - * Default error response + * The index of the transaction within the block (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctNodeDiskIoByProcessServiceListError = FctNodeDiskIoByProcessServiceListErrors[keyof FctNodeDiskIoByProcessServiceListErrors]; - -export type FctNodeDiskIoByProcessServiceListResponses = { + transaction_index_in_values?: string; /** - * OK + * The index of the transaction within the block (filter: not_in_values) (comma-separated list) */ - 200: ListFctNodeDiskIoByProcessResponse; -}; - -export type FctNodeDiskIoByProcessServiceListResponse = FctNodeDiskIoByProcessServiceListResponses[keyof FctNodeDiskIoByProcessServiceListResponses]; - -export type FctNodeDiskIoByProcessServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - wallclock_slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_node_disk_io_by_process/{wallclock_slot_start_date_time}'; -}; - -export type FctNodeDiskIoByProcessServiceGetErrors = { + transaction_index_not_in_values?: string; /** - * Default error response + * Number of times this opcode was executed in this frame (filter: eq) */ - default: Status; -}; - -export type FctNodeDiskIoByProcessServiceGetError = FctNodeDiskIoByProcessServiceGetErrors[keyof FctNodeDiskIoByProcessServiceGetErrors]; - -export type FctNodeDiskIoByProcessServiceGetResponses = { + count_eq?: number; /** - * OK + * Number of times this opcode was executed in this frame (filter: ne) */ - 200: GetFctNodeDiskIoByProcessResponse; -}; - -export type FctNodeDiskIoByProcessServiceGetResponse = FctNodeDiskIoByProcessServiceGetResponses[keyof FctNodeDiskIoByProcessServiceGetResponses]; - -export type FctNodeMemoryUsageByProcessServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - wallclock_slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - wallclock_slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - wallclock_slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - wallclock_slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - wallclock_slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - wallclock_slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - wallclock_slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - wallclock_slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - wallclock_slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - wallclock_slot_start_date_time_not_in_values?: string; - /** - * Name of the observoor client that collected the data (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the observoor client that collected the data (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the observoor client that collected the data (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the observoor client that collected the data (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the observoor client that collected the data (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the observoor client that collected the data (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the observoor client that collected the data (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the observoor client that collected the data (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the observoor client that collected the data (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * Client type: CL or EL (filter: eq) - */ - client_type_eq?: string; - /** - * Client type: CL or EL (filter: ne) - */ - client_type_ne?: string; - /** - * Client type: CL or EL (filter: contains) - */ - client_type_contains?: string; - /** - * Client type: CL or EL (filter: starts_with) - */ - client_type_starts_with?: string; - /** - * Client type: CL or EL (filter: ends_with) - */ - client_type_ends_with?: string; - /** - * Client type: CL or EL (filter: like) - */ - client_type_like?: string; - /** - * Client type: CL or EL (filter: not_like) - */ - client_type_not_like?: string; - /** - * Client type: CL or EL (filter: in_values) (comma-separated list) - */ - client_type_in_values?: string; - /** - * Client type: CL or EL (filter: not_in_values) (comma-separated list) - */ - client_type_not_in_values?: string; - /** - * Process ID of the monitored client (filter: eq) - */ - pid_eq?: number; - /** - * Process ID of the monitored client (filter: ne) - */ - pid_ne?: number; - /** - * Process ID of the monitored client (filter: lt) - */ - pid_lt?: number; - /** - * Process ID of the monitored client (filter: lte) - */ - pid_lte?: number; - /** - * Process ID of the monitored client (filter: gt) - */ - pid_gt?: number; - /** - * Process ID of the monitored client (filter: gte) - */ - pid_gte?: number; - /** - * Process ID of the monitored client (filter: between_min) - */ - pid_between_min?: number; - /** - * Process ID of the monitored client (filter: between_max_value) - */ - pid_between_max_value?: number; - /** - * Process ID of the monitored client (filter: in_values) (comma-separated list) - */ - pid_in_values?: string; - /** - * Process ID of the monitored client (filter: not_in_values) (comma-separated list) - */ - pid_not_in_values?: string; - /** - * Start of the sub-slot aggregation window (filter: eq) - */ - window_start_eq?: number; - /** - * Start of the sub-slot aggregation window (filter: ne) - */ - window_start_ne?: number; - /** - * Start of the sub-slot aggregation window (filter: lt) - */ - window_start_lt?: number; - /** - * Start of the sub-slot aggregation window (filter: lte) - */ - window_start_lte?: number; - /** - * Start of the sub-slot aggregation window (filter: gt) - */ - window_start_gt?: number; - /** - * Start of the sub-slot aggregation window (filter: gte) - */ - window_start_gte?: number; - /** - * Start of the sub-slot aggregation window (filter: between_min) - */ - window_start_between_min?: number; - /** - * Start of the sub-slot aggregation window (filter: between_max_value) - */ - window_start_between_max_value?: number; - /** - * Start of the sub-slot aggregation window (filter: in_values) (comma-separated list) - */ - window_start_in_values?: string; - /** - * Start of the sub-slot aggregation window (filter: not_in_values) (comma-separated list) - */ - window_start_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The wallclock slot number (filter: eq) - */ - wallclock_slot_eq?: number; - /** - * The wallclock slot number (filter: ne) - */ - wallclock_slot_ne?: number; - /** - * The wallclock slot number (filter: lt) - */ - wallclock_slot_lt?: number; - /** - * The wallclock slot number (filter: lte) - */ - wallclock_slot_lte?: number; - /** - * The wallclock slot number (filter: gt) - */ - wallclock_slot_gt?: number; - /** - * The wallclock slot number (filter: gte) - */ - wallclock_slot_gte?: number; - /** - * The wallclock slot number (filter: between_min) - */ - wallclock_slot_between_min?: number; - /** - * The wallclock slot number (filter: between_max_value) - */ - wallclock_slot_between_max_value?: number; - /** - * The wallclock slot number (filter: in_values) (comma-separated list) - */ - wallclock_slot_in_values?: string; - /** - * The wallclock slot number (filter: not_in_values) (comma-separated list) - */ - wallclock_slot_not_in_values?: string; - /** - * Ethereum network name (filter: eq) - */ - meta_network_name_eq?: string; - /** - * Ethereum network name (filter: ne) - */ - meta_network_name_ne?: string; - /** - * Ethereum network name (filter: contains) - */ - meta_network_name_contains?: string; - /** - * Ethereum network name (filter: starts_with) - */ - meta_network_name_starts_with?: string; - /** - * Ethereum network name (filter: ends_with) - */ - meta_network_name_ends_with?: string; - /** - * Ethereum network name (filter: like) - */ - meta_network_name_like?: string; - /** - * Ethereum network name (filter: not_like) - */ - meta_network_name_not_like?: string; - /** - * Ethereum network name (filter: in_values) (comma-separated list) - */ - meta_network_name_in_values?: string; - /** - * Ethereum network name (filter: not_in_values) (comma-separated list) - */ - meta_network_name_not_in_values?: string; - /** - * Resident set size in bytes (total physical memory used) (filter: eq) - */ - vm_rss_bytes_eq?: number; - /** - * Resident set size in bytes (total physical memory used) (filter: ne) - */ - vm_rss_bytes_ne?: number; - /** - * Resident set size in bytes (total physical memory used) (filter: lt) - */ - vm_rss_bytes_lt?: number; - /** - * Resident set size in bytes (total physical memory used) (filter: lte) - */ - vm_rss_bytes_lte?: number; - /** - * Resident set size in bytes (total physical memory used) (filter: gt) - */ - vm_rss_bytes_gt?: number; - /** - * Resident set size in bytes (total physical memory used) (filter: gte) - */ - vm_rss_bytes_gte?: number; - /** - * Resident set size in bytes (total physical memory used) (filter: between_min) - */ - vm_rss_bytes_between_min?: number; - /** - * Resident set size in bytes (total physical memory used) (filter: between_max_value) - */ - vm_rss_bytes_between_max_value?: number; - /** - * Resident set size in bytes (total physical memory used) (filter: in_values) (comma-separated list) - */ - vm_rss_bytes_in_values?: string; - /** - * Resident set size in bytes (total physical memory used) (filter: not_in_values) (comma-separated list) - */ - vm_rss_bytes_not_in_values?: string; - /** - * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: eq) - */ - rss_anon_bytes_eq?: number; - /** - * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: ne) - */ - rss_anon_bytes_ne?: number; - /** - * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: lt) - */ - rss_anon_bytes_lt?: number; - /** - * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: lte) - */ - rss_anon_bytes_lte?: number; - /** - * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: gt) - */ - rss_anon_bytes_gt?: number; - /** - * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: gte) - */ - rss_anon_bytes_gte?: number; - /** - * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: between_min) - */ - rss_anon_bytes_between_min?: number; - /** - * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: between_max_value) - */ - rss_anon_bytes_between_max_value?: number; - /** - * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: in_values) (comma-separated list) - */ - rss_anon_bytes_in_values?: string; - /** - * Anonymous RSS in bytes (heap, stack, anonymous mmap) (filter: not_in_values) (comma-separated list) - */ - rss_anon_bytes_not_in_values?: string; - /** - * File-backed RSS in bytes (shared libraries, mmap files) (filter: eq) - */ - rss_file_bytes_eq?: number; - /** - * File-backed RSS in bytes (shared libraries, mmap files) (filter: ne) - */ - rss_file_bytes_ne?: number; - /** - * File-backed RSS in bytes (shared libraries, mmap files) (filter: lt) - */ - rss_file_bytes_lt?: number; - /** - * File-backed RSS in bytes (shared libraries, mmap files) (filter: lte) - */ - rss_file_bytes_lte?: number; - /** - * File-backed RSS in bytes (shared libraries, mmap files) (filter: gt) - */ - rss_file_bytes_gt?: number; - /** - * File-backed RSS in bytes (shared libraries, mmap files) (filter: gte) - */ - rss_file_bytes_gte?: number; - /** - * File-backed RSS in bytes (shared libraries, mmap files) (filter: between_min) - */ - rss_file_bytes_between_min?: number; - /** - * File-backed RSS in bytes (shared libraries, mmap files) (filter: between_max_value) - */ - rss_file_bytes_between_max_value?: number; - /** - * File-backed RSS in bytes (shared libraries, mmap files) (filter: in_values) (comma-separated list) - */ - rss_file_bytes_in_values?: string; - /** - * File-backed RSS in bytes (shared libraries, mmap files) (filter: not_in_values) (comma-separated list) - */ - rss_file_bytes_not_in_values?: string; - /** - * Swap usage in bytes (filter: eq) - */ - vm_swap_bytes_eq?: number; - /** - * Swap usage in bytes (filter: ne) - */ - vm_swap_bytes_ne?: number; - /** - * Swap usage in bytes (filter: lt) - */ - vm_swap_bytes_lt?: number; - /** - * Swap usage in bytes (filter: lte) - */ - vm_swap_bytes_lte?: number; - /** - * Swap usage in bytes (filter: gt) - */ - vm_swap_bytes_gt?: number; - /** - * Swap usage in bytes (filter: gte) - */ - vm_swap_bytes_gte?: number; - /** - * Swap usage in bytes (filter: between_min) - */ - vm_swap_bytes_between_min?: number; - /** - * Swap usage in bytes (filter: between_max_value) - */ - vm_swap_bytes_between_max_value?: number; - /** - * Swap usage in bytes (filter: in_values) (comma-separated list) - */ - vm_swap_bytes_in_values?: string; - /** - * Swap usage in bytes (filter: not_in_values) (comma-separated list) - */ - vm_swap_bytes_not_in_values?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * The maximum number of fct_node_memory_usage_by_process to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctNodeMemoryUsageByProcess` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_node_memory_usage_by_process'; -}; - -export type FctNodeMemoryUsageByProcessServiceListErrors = { + count_ne?: number; /** - * Default error response + * Number of times this opcode was executed in this frame (filter: lt) */ - default: Status; -}; - -export type FctNodeMemoryUsageByProcessServiceListError = FctNodeMemoryUsageByProcessServiceListErrors[keyof FctNodeMemoryUsageByProcessServiceListErrors]; - -export type FctNodeMemoryUsageByProcessServiceListResponses = { + count_lt?: number; /** - * OK + * Number of times this opcode was executed in this frame (filter: lte) */ - 200: ListFctNodeMemoryUsageByProcessResponse; -}; - -export type FctNodeMemoryUsageByProcessServiceListResponse = FctNodeMemoryUsageByProcessServiceListResponses[keyof FctNodeMemoryUsageByProcessServiceListResponses]; - -export type FctNodeMemoryUsageByProcessServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - wallclock_slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_node_memory_usage_by_process/{wallclock_slot_start_date_time}'; -}; - -export type FctNodeMemoryUsageByProcessServiceGetErrors = { + count_lte?: number; /** - * Default error response + * Number of times this opcode was executed in this frame (filter: gt) */ - default: Status; -}; - -export type FctNodeMemoryUsageByProcessServiceGetError = FctNodeMemoryUsageByProcessServiceGetErrors[keyof FctNodeMemoryUsageByProcessServiceGetErrors]; - -export type FctNodeMemoryUsageByProcessServiceGetResponses = { + count_gt?: number; /** - * OK + * Number of times this opcode was executed in this frame (filter: gte) */ - 200: GetFctNodeMemoryUsageByProcessResponse; -}; - -export type FctNodeMemoryUsageByProcessServiceGetResponse = FctNodeMemoryUsageByProcessServiceGetResponses[keyof FctNodeMemoryUsageByProcessServiceGetResponses]; - -export type FctNodeNetworkIoByProcessServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - wallclock_slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - wallclock_slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - wallclock_slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - wallclock_slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - wallclock_slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - wallclock_slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - wallclock_slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - wallclock_slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - wallclock_slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - wallclock_slot_start_date_time_not_in_values?: string; - /** - * Name of the observoor client that collected the data (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the observoor client that collected the data (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the observoor client that collected the data (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the observoor client that collected the data (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the observoor client that collected the data (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the observoor client that collected the data (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the observoor client that collected the data (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the observoor client that collected the data (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the observoor client that collected the data (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * Client type: CL or EL (filter: eq) - */ - client_type_eq?: string; - /** - * Client type: CL or EL (filter: ne) - */ - client_type_ne?: string; - /** - * Client type: CL or EL (filter: contains) - */ - client_type_contains?: string; - /** - * Client type: CL or EL (filter: starts_with) - */ - client_type_starts_with?: string; - /** - * Client type: CL or EL (filter: ends_with) - */ - client_type_ends_with?: string; - /** - * Client type: CL or EL (filter: like) - */ - client_type_like?: string; - /** - * Client type: CL or EL (filter: not_like) - */ - client_type_not_like?: string; - /** - * Client type: CL or EL (filter: in_values) (comma-separated list) - */ - client_type_in_values?: string; - /** - * Client type: CL or EL (filter: not_in_values) (comma-separated list) - */ - client_type_not_in_values?: string; - /** - * Process ID of the monitored client (filter: eq) - */ - pid_eq?: number; - /** - * Process ID of the monitored client (filter: ne) - */ - pid_ne?: number; - /** - * Process ID of the monitored client (filter: lt) - */ - pid_lt?: number; - /** - * Process ID of the monitored client (filter: lte) - */ - pid_lte?: number; - /** - * Process ID of the monitored client (filter: gt) - */ - pid_gt?: number; - /** - * Process ID of the monitored client (filter: gte) - */ - pid_gte?: number; - /** - * Process ID of the monitored client (filter: between_min) - */ - pid_between_min?: number; - /** - * Process ID of the monitored client (filter: between_max_value) - */ - pid_between_max_value?: number; - /** - * Process ID of the monitored client (filter: in_values) (comma-separated list) - */ - pid_in_values?: string; - /** - * Process ID of the monitored client (filter: not_in_values) (comma-separated list) - */ - pid_not_in_values?: string; - /** - * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: eq) - */ - port_label_eq?: string; - /** - * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: ne) - */ - port_label_ne?: string; - /** - * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: contains) - */ - port_label_contains?: string; - /** - * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: starts_with) - */ - port_label_starts_with?: string; - /** - * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: ends_with) - */ - port_label_ends_with?: string; - /** - * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: like) - */ - port_label_like?: string; - /** - * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: not_like) - */ - port_label_not_like?: string; - /** - * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: in_values) (comma-separated list) - */ - port_label_in_values?: string; - /** - * Port classification (e.g. cl_p2p_tcp, el_json_rpc, unknown) (filter: not_in_values) (comma-separated list) - */ - port_label_not_in_values?: string; - /** - * Traffic direction: tx or rx (filter: eq) - */ - direction_eq?: string; - /** - * Traffic direction: tx or rx (filter: ne) - */ - direction_ne?: string; - /** - * Traffic direction: tx or rx (filter: contains) - */ - direction_contains?: string; - /** - * Traffic direction: tx or rx (filter: starts_with) - */ - direction_starts_with?: string; - /** - * Traffic direction: tx or rx (filter: ends_with) - */ - direction_ends_with?: string; - /** - * Traffic direction: tx or rx (filter: like) - */ - direction_like?: string; - /** - * Traffic direction: tx or rx (filter: not_like) - */ - direction_not_like?: string; - /** - * Traffic direction: tx or rx (filter: in_values) (comma-separated list) - */ - direction_in_values?: string; - /** - * Traffic direction: tx or rx (filter: not_in_values) (comma-separated list) - */ - direction_not_in_values?: string; - /** - * Start of the sub-slot aggregation window (filter: eq) - */ - window_start_eq?: number; - /** - * Start of the sub-slot aggregation window (filter: ne) - */ - window_start_ne?: number; - /** - * Start of the sub-slot aggregation window (filter: lt) - */ - window_start_lt?: number; - /** - * Start of the sub-slot aggregation window (filter: lte) - */ - window_start_lte?: number; - /** - * Start of the sub-slot aggregation window (filter: gt) - */ - window_start_gt?: number; - /** - * Start of the sub-slot aggregation window (filter: gte) - */ - window_start_gte?: number; - /** - * Start of the sub-slot aggregation window (filter: between_min) - */ - window_start_between_min?: number; - /** - * Start of the sub-slot aggregation window (filter: between_max_value) - */ - window_start_between_max_value?: number; - /** - * Start of the sub-slot aggregation window (filter: in_values) (comma-separated list) - */ - window_start_in_values?: string; - /** - * Start of the sub-slot aggregation window (filter: not_in_values) (comma-separated list) - */ - window_start_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The wallclock slot number (filter: eq) - */ - wallclock_slot_eq?: number; - /** - * The wallclock slot number (filter: ne) - */ - wallclock_slot_ne?: number; - /** - * The wallclock slot number (filter: lt) - */ - wallclock_slot_lt?: number; - /** - * The wallclock slot number (filter: lte) - */ - wallclock_slot_lte?: number; - /** - * The wallclock slot number (filter: gt) - */ - wallclock_slot_gt?: number; - /** - * The wallclock slot number (filter: gte) - */ - wallclock_slot_gte?: number; - /** - * The wallclock slot number (filter: between_min) - */ - wallclock_slot_between_min?: number; - /** - * The wallclock slot number (filter: between_max_value) - */ - wallclock_slot_between_max_value?: number; - /** - * The wallclock slot number (filter: in_values) (comma-separated list) - */ - wallclock_slot_in_values?: string; - /** - * The wallclock slot number (filter: not_in_values) (comma-separated list) - */ - wallclock_slot_not_in_values?: string; - /** - * Ethereum network name (filter: eq) - */ - meta_network_name_eq?: string; - /** - * Ethereum network name (filter: ne) - */ - meta_network_name_ne?: string; - /** - * Ethereum network name (filter: contains) - */ - meta_network_name_contains?: string; - /** - * Ethereum network name (filter: starts_with) - */ - meta_network_name_starts_with?: string; - /** - * Ethereum network name (filter: ends_with) - */ - meta_network_name_ends_with?: string; - /** - * Ethereum network name (filter: like) - */ - meta_network_name_like?: string; - /** - * Ethereum network name (filter: not_like) - */ - meta_network_name_not_like?: string; - /** - * Ethereum network name (filter: in_values) (comma-separated list) - */ - meta_network_name_in_values?: string; - /** - * Ethereum network name (filter: not_in_values) (comma-separated list) - */ - meta_network_name_not_in_values?: string; - /** - * Filter io_bytes using value - */ - io_bytes_value?: number; - /** - * Total packet or event count in this window (filter: eq) - */ - io_count_eq?: number; - /** - * Total packet or event count in this window (filter: ne) - */ - io_count_ne?: number; - /** - * Total packet or event count in this window (filter: lt) - */ - io_count_lt?: number; - /** - * Total packet or event count in this window (filter: lte) - */ - io_count_lte?: number; - /** - * Total packet or event count in this window (filter: gt) - */ - io_count_gt?: number; - /** - * Total packet or event count in this window (filter: gte) - */ - io_count_gte?: number; - /** - * Total packet or event count in this window (filter: between_min) - */ - io_count_between_min?: number; - /** - * Total packet or event count in this window (filter: between_max_value) - */ - io_count_between_max_value?: number; - /** - * Total packet or event count in this window (filter: in_values) (comma-separated list) - */ - io_count_in_values?: string; - /** - * Total packet or event count in this window (filter: not_in_values) (comma-separated list) - */ - io_count_not_in_values?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for filtering (e.g. eip7870) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * The maximum number of fct_node_network_io_by_process to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctNodeNetworkIoByProcess` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_node_network_io_by_process'; -}; - -export type FctNodeNetworkIoByProcessServiceListErrors = { + count_gte?: number; /** - * Default error response + * Number of times this opcode was executed in this frame (filter: between_min) */ - default: Status; -}; - -export type FctNodeNetworkIoByProcessServiceListError = FctNodeNetworkIoByProcessServiceListErrors[keyof FctNodeNetworkIoByProcessServiceListErrors]; - -export type FctNodeNetworkIoByProcessServiceListResponses = { + count_between_min?: number; /** - * OK + * Number of times this opcode was executed in this frame (filter: between_max_value) */ - 200: ListFctNodeNetworkIoByProcessResponse; -}; - -export type FctNodeNetworkIoByProcessServiceListResponse = FctNodeNetworkIoByProcessServiceListResponses[keyof FctNodeNetworkIoByProcessServiceListResponses]; - -export type FctNodeNetworkIoByProcessServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - wallclock_slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_node_network_io_by_process/{wallclock_slot_start_date_time}'; -}; - -export type FctNodeNetworkIoByProcessServiceGetErrors = { + count_between_max_value?: number; /** - * Default error response + * Number of times this opcode was executed in this frame (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctNodeNetworkIoByProcessServiceGetError = FctNodeNetworkIoByProcessServiceGetErrors[keyof FctNodeNetworkIoByProcessServiceGetErrors]; - -export type FctNodeNetworkIoByProcessServiceGetResponses = { + count_in_values?: string; /** - * OK + * Number of times this opcode was executed in this frame (filter: not_in_values) (comma-separated list) */ - 200: GetFctNodeNetworkIoByProcessResponse; -}; - -export type FctNodeNetworkIoByProcessServiceGetResponse = FctNodeNetworkIoByProcessServiceGetResponses[keyof FctNodeNetworkIoByProcessServiceGetResponses]; - -export type FctOpcodeGasByOpcodeDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: eq) - */ - opcode_eq?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ne) - */ - opcode_ne?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: contains) - */ - opcode_contains?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: starts_with) - */ - opcode_starts_with?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ends_with) - */ - opcode_ends_with?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: like) - */ - opcode_like?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_like) - */ - opcode_not_like?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: in_values) (comma-separated list) - */ - opcode_in_values?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_in_values) (comma-separated list) - */ - opcode_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks containing this opcode in this day (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks containing this opcode in this day (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks containing this opcode in this day (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks containing this opcode in this day (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks containing this opcode in this day (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks containing this opcode in this day (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks containing this opcode in this day (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks containing this opcode in this day (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks containing this opcode in this day (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks containing this opcode in this day (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total execution count of this opcode in this day (filter: eq) - */ - total_count_eq?: number; - /** - * Total execution count of this opcode in this day (filter: ne) - */ - total_count_ne?: number; - /** - * Total execution count of this opcode in this day (filter: lt) - */ - total_count_lt?: number; - /** - * Total execution count of this opcode in this day (filter: lte) - */ - total_count_lte?: number; - /** - * Total execution count of this opcode in this day (filter: gt) - */ - total_count_gt?: number; - /** - * Total execution count of this opcode in this day (filter: gte) - */ - total_count_gte?: number; - /** - * Total execution count of this opcode in this day (filter: between_min) - */ - total_count_between_min?: number; - /** - * Total execution count of this opcode in this day (filter: between_max_value) - */ - total_count_between_max_value?: number; - /** - * Total execution count of this opcode in this day (filter: in_values) (comma-separated list) - */ - total_count_in_values?: string; - /** - * Total execution count of this opcode in this day (filter: not_in_values) (comma-separated list) - */ - total_count_not_in_values?: string; - /** - * Total gas consumed by this opcode in this day (filter: eq) - */ - total_gas_eq?: number; - /** - * Total gas consumed by this opcode in this day (filter: ne) - */ - total_gas_ne?: number; - /** - * Total gas consumed by this opcode in this day (filter: lt) - */ - total_gas_lt?: number; - /** - * Total gas consumed by this opcode in this day (filter: lte) - */ - total_gas_lte?: number; - /** - * Total gas consumed by this opcode in this day (filter: gt) - */ - total_gas_gt?: number; - /** - * Total gas consumed by this opcode in this day (filter: gte) - */ - total_gas_gte?: number; - /** - * Total gas consumed by this opcode in this day (filter: between_min) - */ - total_gas_between_min?: number; - /** - * Total gas consumed by this opcode in this day (filter: between_max_value) - */ - total_gas_between_max_value?: number; - /** - * Total gas consumed by this opcode in this day (filter: in_values) (comma-separated list) - */ - total_gas_in_values?: string; - /** - * Total gas consumed by this opcode in this day (filter: not_in_values) (comma-separated list) - */ - total_gas_not_in_values?: string; - /** - * Total error count for this opcode in this day (filter: eq) - */ - total_error_count_eq?: number; - /** - * Total error count for this opcode in this day (filter: ne) - */ - total_error_count_ne?: number; - /** - * Total error count for this opcode in this day (filter: lt) - */ - total_error_count_lt?: number; - /** - * Total error count for this opcode in this day (filter: lte) - */ - total_error_count_lte?: number; - /** - * Total error count for this opcode in this day (filter: gt) - */ - total_error_count_gt?: number; - /** - * Total error count for this opcode in this day (filter: gte) - */ - total_error_count_gte?: number; - /** - * Total error count for this opcode in this day (filter: between_min) - */ - total_error_count_between_min?: number; - /** - * Total error count for this opcode in this day (filter: between_max_value) - */ - total_error_count_between_max_value?: number; - /** - * Total error count for this opcode in this day (filter: in_values) (comma-separated list) - */ - total_error_count_in_values?: string; - /** - * Total error count for this opcode in this day (filter: not_in_values) (comma-separated list) - */ - total_error_count_not_in_values?: string; - /** - * Filter avg_count_per_block using value - */ - avg_count_per_block_value?: number; - /** - * Filter avg_gas_per_block using value - */ - avg_gas_per_block_value?: number; - /** - * Filter avg_gas_per_execution using value - */ - avg_gas_per_execution_value?: number; - /** - * The maximum number of fct_opcode_gas_by_opcode_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctOpcodeGasByOpcodeDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_opcode_gas_by_opcode_daily'; -}; - -export type FctOpcodeGasByOpcodeDailyServiceListErrors = { + count_not_in_values?: string; /** - * Default error response + * Total gas consumed by this opcode in this frame (filter: eq) */ - default: Status; -}; - -export type FctOpcodeGasByOpcodeDailyServiceListError = FctOpcodeGasByOpcodeDailyServiceListErrors[keyof FctOpcodeGasByOpcodeDailyServiceListErrors]; - -export type FctOpcodeGasByOpcodeDailyServiceListResponses = { + gas_eq?: number; /** - * OK + * Total gas consumed by this opcode in this frame (filter: ne) */ - 200: ListFctOpcodeGasByOpcodeDailyResponse; -}; - -export type FctOpcodeGasByOpcodeDailyServiceListResponse = FctOpcodeGasByOpcodeDailyServiceListResponses[keyof FctOpcodeGasByOpcodeDailyServiceListResponses]; - -export type FctOpcodeGasByOpcodeDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_opcode_gas_by_opcode_daily/{day_start_date}'; -}; - -export type FctOpcodeGasByOpcodeDailyServiceGetErrors = { + gas_ne?: number; /** - * Default error response + * Total gas consumed by this opcode in this frame (filter: lt) */ - default: Status; -}; - -export type FctOpcodeGasByOpcodeDailyServiceGetError = FctOpcodeGasByOpcodeDailyServiceGetErrors[keyof FctOpcodeGasByOpcodeDailyServiceGetErrors]; - -export type FctOpcodeGasByOpcodeDailyServiceGetResponses = { + gas_lt?: number; /** - * OK + * Total gas consumed by this opcode in this frame (filter: lte) */ - 200: GetFctOpcodeGasByOpcodeDailyResponse; -}; - -export type FctOpcodeGasByOpcodeDailyServiceGetResponse = FctOpcodeGasByOpcodeDailyServiceGetResponses[keyof FctOpcodeGasByOpcodeDailyServiceGetResponses]; - -export type FctOpcodeGasByOpcodeHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: eq) - */ - opcode_eq?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ne) - */ - opcode_ne?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: contains) - */ - opcode_contains?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: starts_with) - */ - opcode_starts_with?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ends_with) - */ - opcode_ends_with?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: like) - */ - opcode_like?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_like) - */ - opcode_not_like?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: in_values) (comma-separated list) - */ - opcode_in_values?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_in_values) (comma-separated list) - */ - opcode_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks containing this opcode in this hour (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks containing this opcode in this hour (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks containing this opcode in this hour (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks containing this opcode in this hour (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks containing this opcode in this hour (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks containing this opcode in this hour (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks containing this opcode in this hour (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks containing this opcode in this hour (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks containing this opcode in this hour (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks containing this opcode in this hour (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total execution count of this opcode in this hour (filter: eq) - */ - total_count_eq?: number; - /** - * Total execution count of this opcode in this hour (filter: ne) - */ - total_count_ne?: number; - /** - * Total execution count of this opcode in this hour (filter: lt) - */ - total_count_lt?: number; - /** - * Total execution count of this opcode in this hour (filter: lte) - */ - total_count_lte?: number; - /** - * Total execution count of this opcode in this hour (filter: gt) - */ - total_count_gt?: number; - /** - * Total execution count of this opcode in this hour (filter: gte) - */ - total_count_gte?: number; - /** - * Total execution count of this opcode in this hour (filter: between_min) - */ - total_count_between_min?: number; - /** - * Total execution count of this opcode in this hour (filter: between_max_value) - */ - total_count_between_max_value?: number; - /** - * Total execution count of this opcode in this hour (filter: in_values) (comma-separated list) - */ - total_count_in_values?: string; - /** - * Total execution count of this opcode in this hour (filter: not_in_values) (comma-separated list) - */ - total_count_not_in_values?: string; - /** - * Total gas consumed by this opcode in this hour (filter: eq) - */ - total_gas_eq?: number; - /** - * Total gas consumed by this opcode in this hour (filter: ne) - */ - total_gas_ne?: number; - /** - * Total gas consumed by this opcode in this hour (filter: lt) - */ - total_gas_lt?: number; - /** - * Total gas consumed by this opcode in this hour (filter: lte) - */ - total_gas_lte?: number; - /** - * Total gas consumed by this opcode in this hour (filter: gt) - */ - total_gas_gt?: number; - /** - * Total gas consumed by this opcode in this hour (filter: gte) - */ - total_gas_gte?: number; - /** - * Total gas consumed by this opcode in this hour (filter: between_min) - */ - total_gas_between_min?: number; - /** - * Total gas consumed by this opcode in this hour (filter: between_max_value) - */ - total_gas_between_max_value?: number; - /** - * Total gas consumed by this opcode in this hour (filter: in_values) (comma-separated list) - */ - total_gas_in_values?: string; - /** - * Total gas consumed by this opcode in this hour (filter: not_in_values) (comma-separated list) - */ - total_gas_not_in_values?: string; - /** - * Total error count for this opcode in this hour (filter: eq) - */ - total_error_count_eq?: number; - /** - * Total error count for this opcode in this hour (filter: ne) - */ - total_error_count_ne?: number; - /** - * Total error count for this opcode in this hour (filter: lt) - */ - total_error_count_lt?: number; - /** - * Total error count for this opcode in this hour (filter: lte) - */ - total_error_count_lte?: number; - /** - * Total error count for this opcode in this hour (filter: gt) - */ - total_error_count_gt?: number; - /** - * Total error count for this opcode in this hour (filter: gte) - */ - total_error_count_gte?: number; - /** - * Total error count for this opcode in this hour (filter: between_min) - */ - total_error_count_between_min?: number; - /** - * Total error count for this opcode in this hour (filter: between_max_value) - */ - total_error_count_between_max_value?: number; - /** - * Total error count for this opcode in this hour (filter: in_values) (comma-separated list) - */ - total_error_count_in_values?: string; - /** - * Total error count for this opcode in this hour (filter: not_in_values) (comma-separated list) - */ - total_error_count_not_in_values?: string; - /** - * Filter avg_count_per_block using value - */ - avg_count_per_block_value?: number; - /** - * Filter avg_gas_per_block using value - */ - avg_gas_per_block_value?: number; - /** - * Filter avg_gas_per_execution using value - */ - avg_gas_per_execution_value?: number; - /** - * The maximum number of fct_opcode_gas_by_opcode_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctOpcodeGasByOpcodeHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_opcode_gas_by_opcode_hourly'; -}; - -export type FctOpcodeGasByOpcodeHourlyServiceListErrors = { + gas_lte?: number; /** - * Default error response + * Total gas consumed by this opcode in this frame (filter: gt) */ - default: Status; -}; - -export type FctOpcodeGasByOpcodeHourlyServiceListError = FctOpcodeGasByOpcodeHourlyServiceListErrors[keyof FctOpcodeGasByOpcodeHourlyServiceListErrors]; - -export type FctOpcodeGasByOpcodeHourlyServiceListResponses = { + gas_gt?: number; /** - * OK + * Total gas consumed by this opcode in this frame (filter: gte) */ - 200: ListFctOpcodeGasByOpcodeHourlyResponse; -}; - -export type FctOpcodeGasByOpcodeHourlyServiceListResponse = FctOpcodeGasByOpcodeHourlyServiceListResponses[keyof FctOpcodeGasByOpcodeHourlyServiceListResponses]; - -export type FctOpcodeGasByOpcodeHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_opcode_gas_by_opcode_hourly/{hour_start_date_time}'; -}; - -export type FctOpcodeGasByOpcodeHourlyServiceGetErrors = { + gas_gte?: number; /** - * Default error response + * Total gas consumed by this opcode in this frame (filter: between_min) */ - default: Status; -}; - -export type FctOpcodeGasByOpcodeHourlyServiceGetError = FctOpcodeGasByOpcodeHourlyServiceGetErrors[keyof FctOpcodeGasByOpcodeHourlyServiceGetErrors]; - -export type FctOpcodeGasByOpcodeHourlyServiceGetResponses = { + gas_between_min?: number; /** - * OK + * Total gas consumed by this opcode in this frame (filter: between_max_value) */ - 200: GetFctOpcodeGasByOpcodeHourlyResponse; -}; - -export type FctOpcodeGasByOpcodeHourlyServiceGetResponse = FctOpcodeGasByOpcodeHourlyServiceGetResponses[keyof FctOpcodeGasByOpcodeHourlyServiceGetResponses]; - -export type FctOpcodeOpsDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks in this day (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks in this day (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks in this day (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks in this day (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks in this day (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks in this day (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks in this day (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks in this day (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks in this day (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks in this day (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total opcode executions in this day (filter: eq) - */ - total_opcode_count_eq?: number; - /** - * Total opcode executions in this day (filter: ne) - */ - total_opcode_count_ne?: number; - /** - * Total opcode executions in this day (filter: lt) - */ - total_opcode_count_lt?: number; - /** - * Total opcode executions in this day (filter: lte) - */ - total_opcode_count_lte?: number; - /** - * Total opcode executions in this day (filter: gt) - */ - total_opcode_count_gt?: number; - /** - * Total opcode executions in this day (filter: gte) - */ - total_opcode_count_gte?: number; - /** - * Total opcode executions in this day (filter: between_min) - */ - total_opcode_count_between_min?: number; - /** - * Total opcode executions in this day (filter: between_max_value) - */ - total_opcode_count_between_max_value?: number; - /** - * Total opcode executions in this day (filter: in_values) (comma-separated list) - */ - total_opcode_count_in_values?: string; - /** - * Total opcode executions in this day (filter: not_in_values) (comma-separated list) - */ - total_opcode_count_not_in_values?: string; - /** - * Total gas consumed by opcodes in this day (filter: eq) - */ - total_gas_eq?: number; - /** - * Total gas consumed by opcodes in this day (filter: ne) - */ - total_gas_ne?: number; - /** - * Total gas consumed by opcodes in this day (filter: lt) - */ - total_gas_lt?: number; - /** - * Total gas consumed by opcodes in this day (filter: lte) - */ - total_gas_lte?: number; - /** - * Total gas consumed by opcodes in this day (filter: gt) - */ - total_gas_gt?: number; - /** - * Total gas consumed by opcodes in this day (filter: gte) - */ - total_gas_gte?: number; - /** - * Total gas consumed by opcodes in this day (filter: between_min) - */ - total_gas_between_min?: number; - /** - * Total gas consumed by opcodes in this day (filter: between_max_value) - */ - total_gas_between_max_value?: number; - /** - * Total gas consumed by opcodes in this day (filter: in_values) (comma-separated list) - */ - total_gas_in_values?: string; - /** - * Total gas consumed by opcodes in this day (filter: not_in_values) (comma-separated list) - */ - total_gas_not_in_values?: string; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: eq) - */ - total_seconds_eq?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: ne) - */ - total_seconds_ne?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: lt) - */ - total_seconds_lt?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: lte) - */ - total_seconds_lte?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: gt) - */ - total_seconds_gt?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: gte) - */ - total_seconds_gte?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_min) - */ - total_seconds_between_min?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_max_value) - */ - total_seconds_between_max_value?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: in_values) (comma-separated list) - */ - total_seconds_in_values?: string; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: not_in_values) (comma-separated list) - */ - total_seconds_not_in_values?: string; - /** - * Filter avg_ops using value - */ - avg_ops_value?: number; - /** - * Filter min_ops using value - */ - min_ops_value?: number; - /** - * Filter max_ops using value - */ - max_ops_value?: number; - /** - * Filter p05_ops using value - */ - p05_ops_value?: number; - /** - * Filter p50_ops using value - */ - p50_ops_value?: number; - /** - * Filter p95_ops using value - */ - p95_ops_value?: number; - /** - * Filter stddev_ops using value - */ - stddev_ops_value?: number; - /** - * Filter upper_band_ops using value - */ - upper_band_ops_value?: number; - /** - * Filter lower_band_ops using value - */ - lower_band_ops_value?: number; - /** - * Filter moving_avg_ops using value - */ - moving_avg_ops_value?: number; - /** - * The maximum number of fct_opcode_ops_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctOpcodeOpsDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_opcode_ops_daily'; -}; - -export type FctOpcodeOpsDailyServiceListErrors = { + gas_between_max_value?: number; /** - * Default error response + * Total gas consumed by this opcode in this frame (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctOpcodeOpsDailyServiceListError = FctOpcodeOpsDailyServiceListErrors[keyof FctOpcodeOpsDailyServiceListErrors]; - -export type FctOpcodeOpsDailyServiceListResponses = { + gas_in_values?: string; /** - * OK + * Total gas consumed by this opcode in this frame (filter: not_in_values) (comma-separated list) */ - 200: ListFctOpcodeOpsDailyResponse; -}; - -export type FctOpcodeOpsDailyServiceListResponse = FctOpcodeOpsDailyServiceListResponses[keyof FctOpcodeOpsDailyServiceListResponses]; - -export type FctOpcodeOpsDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_opcode_ops_daily/{day_start_date}'; -}; - -export type FctOpcodeOpsDailyServiceGetErrors = { + gas_not_in_values?: string; /** - * Default error response + * Gas attributed to pure computation (filter: eq) */ - default: Status; -}; - -export type FctOpcodeOpsDailyServiceGetError = FctOpcodeOpsDailyServiceGetErrors[keyof FctOpcodeOpsDailyServiceGetErrors]; - -export type FctOpcodeOpsDailyServiceGetResponses = { + gas_compute_eq?: number; /** - * OK + * Gas attributed to pure computation (filter: ne) */ - 200: GetFctOpcodeOpsDailyResponse; -}; - -export type FctOpcodeOpsDailyServiceGetResponse = FctOpcodeOpsDailyServiceGetResponses[keyof FctOpcodeOpsDailyServiceGetResponses]; - -export type FctOpcodeOpsHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of blocks in this hour (filter: eq) - */ - block_count_eq?: number; - /** - * Number of blocks in this hour (filter: ne) - */ - block_count_ne?: number; - /** - * Number of blocks in this hour (filter: lt) - */ - block_count_lt?: number; - /** - * Number of blocks in this hour (filter: lte) - */ - block_count_lte?: number; - /** - * Number of blocks in this hour (filter: gt) - */ - block_count_gt?: number; - /** - * Number of blocks in this hour (filter: gte) - */ - block_count_gte?: number; - /** - * Number of blocks in this hour (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of blocks in this hour (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of blocks in this hour (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of blocks in this hour (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Total opcode executions in this hour (filter: eq) - */ - total_opcode_count_eq?: number; - /** - * Total opcode executions in this hour (filter: ne) - */ - total_opcode_count_ne?: number; - /** - * Total opcode executions in this hour (filter: lt) - */ - total_opcode_count_lt?: number; - /** - * Total opcode executions in this hour (filter: lte) - */ - total_opcode_count_lte?: number; - /** - * Total opcode executions in this hour (filter: gt) - */ - total_opcode_count_gt?: number; - /** - * Total opcode executions in this hour (filter: gte) - */ - total_opcode_count_gte?: number; - /** - * Total opcode executions in this hour (filter: between_min) - */ - total_opcode_count_between_min?: number; - /** - * Total opcode executions in this hour (filter: between_max_value) - */ - total_opcode_count_between_max_value?: number; - /** - * Total opcode executions in this hour (filter: in_values) (comma-separated list) - */ - total_opcode_count_in_values?: string; - /** - * Total opcode executions in this hour (filter: not_in_values) (comma-separated list) - */ - total_opcode_count_not_in_values?: string; - /** - * Total gas consumed by opcodes in this hour (filter: eq) - */ - total_gas_eq?: number; - /** - * Total gas consumed by opcodes in this hour (filter: ne) - */ - total_gas_ne?: number; - /** - * Total gas consumed by opcodes in this hour (filter: lt) - */ - total_gas_lt?: number; - /** - * Total gas consumed by opcodes in this hour (filter: lte) - */ - total_gas_lte?: number; - /** - * Total gas consumed by opcodes in this hour (filter: gt) - */ - total_gas_gt?: number; - /** - * Total gas consumed by opcodes in this hour (filter: gte) - */ - total_gas_gte?: number; - /** - * Total gas consumed by opcodes in this hour (filter: between_min) - */ - total_gas_between_min?: number; - /** - * Total gas consumed by opcodes in this hour (filter: between_max_value) - */ - total_gas_between_max_value?: number; - /** - * Total gas consumed by opcodes in this hour (filter: in_values) (comma-separated list) - */ - total_gas_in_values?: string; - /** - * Total gas consumed by opcodes in this hour (filter: not_in_values) (comma-separated list) - */ - total_gas_not_in_values?: string; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: eq) - */ - total_seconds_eq?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: ne) - */ - total_seconds_ne?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: lt) - */ - total_seconds_lt?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: lte) - */ - total_seconds_lte?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: gt) - */ - total_seconds_gt?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: gte) - */ - total_seconds_gte?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_min) - */ - total_seconds_between_min?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: between_max_value) - */ - total_seconds_between_max_value?: number; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: in_values) (comma-separated list) - */ - total_seconds_in_values?: string; - /** - * Total actual seconds covered by blocks (sum of block time gaps) (filter: not_in_values) (comma-separated list) - */ - total_seconds_not_in_values?: string; - /** - * Filter avg_ops using value - */ - avg_ops_value?: number; - /** - * Filter min_ops using value - */ - min_ops_value?: number; - /** - * Filter max_ops using value - */ - max_ops_value?: number; - /** - * Filter p05_ops using value - */ - p05_ops_value?: number; - /** - * Filter p50_ops using value - */ - p50_ops_value?: number; - /** - * Filter p95_ops using value - */ - p95_ops_value?: number; - /** - * Filter stddev_ops using value - */ - stddev_ops_value?: number; - /** - * Filter upper_band_ops using value - */ - upper_band_ops_value?: number; - /** - * Filter lower_band_ops using value - */ - lower_band_ops_value?: number; - /** - * Filter moving_avg_ops using value - */ - moving_avg_ops_value?: number; - /** - * The maximum number of fct_opcode_ops_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctOpcodeOpsHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_opcode_ops_hourly'; -}; - -export type FctOpcodeOpsHourlyServiceListErrors = { + gas_compute_ne?: number; /** - * Default error response + * Gas attributed to pure computation (filter: lt) */ - default: Status; -}; - -export type FctOpcodeOpsHourlyServiceListError = FctOpcodeOpsHourlyServiceListErrors[keyof FctOpcodeOpsHourlyServiceListErrors]; - -export type FctOpcodeOpsHourlyServiceListResponses = { + gas_compute_lt?: number; /** - * OK + * Gas attributed to pure computation (filter: lte) */ - 200: ListFctOpcodeOpsHourlyResponse; -}; - -export type FctOpcodeOpsHourlyServiceListResponse = FctOpcodeOpsHourlyServiceListResponses[keyof FctOpcodeOpsHourlyServiceListResponses]; - -export type FctOpcodeOpsHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_opcode_ops_hourly/{hour_start_date_time}'; -}; - -export type FctOpcodeOpsHourlyServiceGetErrors = { + gas_compute_lte?: number; /** - * Default error response + * Gas attributed to pure computation (filter: gt) */ - default: Status; -}; - -export type FctOpcodeOpsHourlyServiceGetError = FctOpcodeOpsHourlyServiceGetErrors[keyof FctOpcodeOpsHourlyServiceGetErrors]; - -export type FctOpcodeOpsHourlyServiceGetResponses = { + gas_compute_gt?: number; /** - * OK + * Gas attributed to pure computation (filter: gte) */ - 200: GetFctOpcodeOpsHourlyResponse; -}; - -export type FctOpcodeOpsHourlyServiceGetResponse = FctOpcodeOpsHourlyServiceGetResponses[keyof FctOpcodeOpsHourlyServiceGetResponses]; - -export type FctPreparedBlockServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The slot number from beacon block (filter: eq) - */ - slot_eq?: number; - /** - * The slot number from beacon block (filter: ne) - */ - slot_ne?: number; - /** - * The slot number from beacon block (filter: lt) - */ - slot_lt?: number; - /** - * The slot number from beacon block (filter: lte) - */ - slot_lte?: number; - /** - * The slot number from beacon block (filter: gt) - */ - slot_gt?: number; - /** - * The slot number from beacon block (filter: gte) - */ - slot_gte?: number; - /** - * The slot number from beacon block (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number from beacon block (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number from beacon block (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number from beacon block (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Name of the client that generated the event (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the client that generated the event (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the client that generated the event (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the client that generated the event (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the client that generated the event (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the client that generated the event (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the client that generated the event (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * The wall clock time when the event was received (filter: eq) - */ - event_date_time_eq?: number; - /** - * The wall clock time when the event was received (filter: ne) - */ - event_date_time_ne?: number; - /** - * The wall clock time when the event was received (filter: lt) - */ - event_date_time_lt?: number; - /** - * The wall clock time when the event was received (filter: lte) - */ - event_date_time_lte?: number; - /** - * The wall clock time when the event was received (filter: gt) - */ - event_date_time_gt?: number; - /** - * The wall clock time when the event was received (filter: gte) - */ - event_date_time_gte?: number; - /** - * The wall clock time when the event was received (filter: between_min) - */ - event_date_time_between_min?: number; - /** - * The wall clock time when the event was received (filter: between_max_value) - */ - event_date_time_between_max_value?: number; - /** - * The wall clock time when the event was received (filter: in_values) (comma-separated list) - */ - event_date_time_in_values?: string; - /** - * The wall clock time when the event was received (filter: not_in_values) (comma-separated list) - */ - event_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Version of the client that generated the event (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client that generated the event (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client that generated the event (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client that generated the event (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client that generated the event (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client that generated the event (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client that generated the event (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * Implementation of the client that generated the event (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client that generated the event (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client that generated the event (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client that generated the event (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client that generated the event (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client that generated the event (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client that generated the event (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * Consensus implementation of the validator (filter: eq) - */ - meta_consensus_implementation_eq?: string; - /** - * Consensus implementation of the validator (filter: ne) - */ - meta_consensus_implementation_ne?: string; - /** - * Consensus implementation of the validator (filter: contains) - */ - meta_consensus_implementation_contains?: string; - /** - * Consensus implementation of the validator (filter: starts_with) - */ - meta_consensus_implementation_starts_with?: string; - /** - * Consensus implementation of the validator (filter: ends_with) - */ - meta_consensus_implementation_ends_with?: string; - /** - * Consensus implementation of the validator (filter: like) - */ - meta_consensus_implementation_like?: string; - /** - * Consensus implementation of the validator (filter: not_like) - */ - meta_consensus_implementation_not_like?: string; - /** - * Consensus implementation of the validator (filter: in_values) (comma-separated list) - */ - meta_consensus_implementation_in_values?: string; - /** - * Consensus implementation of the validator (filter: not_in_values) (comma-separated list) - */ - meta_consensus_implementation_not_in_values?: string; - /** - * Consensus version of the validator (filter: eq) - */ - meta_consensus_version_eq?: string; - /** - * Consensus version of the validator (filter: ne) - */ - meta_consensus_version_ne?: string; - /** - * Consensus version of the validator (filter: contains) - */ - meta_consensus_version_contains?: string; - /** - * Consensus version of the validator (filter: starts_with) - */ - meta_consensus_version_starts_with?: string; - /** - * Consensus version of the validator (filter: ends_with) - */ - meta_consensus_version_ends_with?: string; - /** - * Consensus version of the validator (filter: like) - */ - meta_consensus_version_like?: string; - /** - * Consensus version of the validator (filter: not_like) - */ - meta_consensus_version_not_like?: string; - /** - * Consensus version of the validator (filter: in_values) (comma-separated list) - */ - meta_consensus_version_in_values?: string; - /** - * Consensus version of the validator (filter: not_in_values) (comma-separated list) - */ - meta_consensus_version_not_in_values?: string; - /** - * City of the client that generated the event (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client that generated the event (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client that generated the event (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client that generated the event (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client that generated the event (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client that generated the event (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client that generated the event (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client that generated the event (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client that generated the event (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client that generated the event (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client that generated the event (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client that generated the event (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client that generated the event (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client that generated the event (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client that generated the event (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client that generated the event (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client that generated the event (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client that generated the event (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client that generated the event (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client that generated the event (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client that generated the event (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * The version of the beacon block (filter: eq) - */ - block_version_eq?: string; - /** - * The version of the beacon block (filter: ne) - */ - block_version_ne?: string; - /** - * The version of the beacon block (filter: contains) - */ - block_version_contains?: string; - /** - * The version of the beacon block (filter: starts_with) - */ - block_version_starts_with?: string; - /** - * The version of the beacon block (filter: ends_with) - */ - block_version_ends_with?: string; - /** - * The version of the beacon block (filter: like) - */ - block_version_like?: string; - /** - * The version of the beacon block (filter: not_like) - */ - block_version_not_like?: string; - /** - * The version of the beacon block (filter: in_values) (comma-separated list) - */ - block_version_in_values?: string; - /** - * The version of the beacon block (filter: not_in_values) (comma-separated list) - */ - block_version_not_in_values?: string; - /** - * The total bytes of the beacon block payload (filter: eq) - */ - block_total_bytes_eq?: number; - /** - * The total bytes of the beacon block payload (filter: ne) - */ - block_total_bytes_ne?: number; - /** - * The total bytes of the beacon block payload (filter: lt) - */ - block_total_bytes_lt?: number; - /** - * The total bytes of the beacon block payload (filter: lte) - */ - block_total_bytes_lte?: number; - /** - * The total bytes of the beacon block payload (filter: gt) - */ - block_total_bytes_gt?: number; - /** - * The total bytes of the beacon block payload (filter: gte) - */ - block_total_bytes_gte?: number; - /** - * The total bytes of the beacon block payload (filter: between_min) - */ - block_total_bytes_between_min?: number; - /** - * The total bytes of the beacon block payload (filter: between_max_value) - */ - block_total_bytes_between_max_value?: number; - /** - * The total bytes of the beacon block payload (filter: in_values) (comma-separated list) - */ - block_total_bytes_in_values?: string; - /** - * The total bytes of the beacon block payload (filter: not_in_values) (comma-separated list) - */ - block_total_bytes_not_in_values?: string; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: eq) - */ - block_total_bytes_compressed_eq?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: ne) - */ - block_total_bytes_compressed_ne?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: lt) - */ - block_total_bytes_compressed_lt?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: lte) - */ - block_total_bytes_compressed_lte?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: gt) - */ - block_total_bytes_compressed_gt?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: gte) - */ - block_total_bytes_compressed_gte?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: between_min) - */ - block_total_bytes_compressed_between_min?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: between_max_value) - */ - block_total_bytes_compressed_between_max_value?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: in_values) (comma-separated list) - */ - block_total_bytes_compressed_in_values?: string; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: not_in_values) (comma-separated list) - */ - block_total_bytes_compressed_not_in_values?: string; - /** - * The value of the execution payload in wei (filter: eq) - */ - execution_payload_value_eq?: string; - /** - * The value of the execution payload in wei (filter: ne) - */ - execution_payload_value_ne?: string; - /** - * The value of the execution payload in wei (filter: contains) - */ - execution_payload_value_contains?: string; - /** - * The value of the execution payload in wei (filter: starts_with) - */ - execution_payload_value_starts_with?: string; - /** - * The value of the execution payload in wei (filter: ends_with) - */ - execution_payload_value_ends_with?: string; - /** - * The value of the execution payload in wei (filter: like) - */ - execution_payload_value_like?: string; - /** - * The value of the execution payload in wei (filter: not_like) - */ - execution_payload_value_not_like?: string; - /** - * The value of the execution payload in wei (filter: in_values) (comma-separated list) - */ - execution_payload_value_in_values?: string; - /** - * The value of the execution payload in wei (filter: not_in_values) (comma-separated list) - */ - execution_payload_value_not_in_values?: string; - /** - * The value of the consensus payload in wei (filter: eq) - */ - consensus_payload_value_eq?: string; - /** - * The value of the consensus payload in wei (filter: ne) - */ - consensus_payload_value_ne?: string; - /** - * The value of the consensus payload in wei (filter: contains) - */ - consensus_payload_value_contains?: string; - /** - * The value of the consensus payload in wei (filter: starts_with) - */ - consensus_payload_value_starts_with?: string; - /** - * The value of the consensus payload in wei (filter: ends_with) - */ - consensus_payload_value_ends_with?: string; - /** - * The value of the consensus payload in wei (filter: like) - */ - consensus_payload_value_like?: string; - /** - * The value of the consensus payload in wei (filter: not_like) - */ - consensus_payload_value_not_like?: string; - /** - * The value of the consensus payload in wei (filter: in_values) (comma-separated list) - */ - consensus_payload_value_in_values?: string; - /** - * The value of the consensus payload in wei (filter: not_in_values) (comma-separated list) - */ - consensus_payload_value_not_in_values?: string; - /** - * The block number of the execution payload (filter: eq) - */ - execution_payload_block_number_eq?: number; - /** - * The block number of the execution payload (filter: ne) - */ - execution_payload_block_number_ne?: number; - /** - * The block number of the execution payload (filter: lt) - */ - execution_payload_block_number_lt?: number; - /** - * The block number of the execution payload (filter: lte) - */ - execution_payload_block_number_lte?: number; - /** - * The block number of the execution payload (filter: gt) - */ - execution_payload_block_number_gt?: number; - /** - * The block number of the execution payload (filter: gte) - */ - execution_payload_block_number_gte?: number; - /** - * The block number of the execution payload (filter: between_min) - */ - execution_payload_block_number_between_min?: number; - /** - * The block number of the execution payload (filter: between_max_value) - */ - execution_payload_block_number_between_max_value?: number; - /** - * The block number of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_block_number_in_values?: string; - /** - * The block number of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_block_number_not_in_values?: string; - /** - * Gas limit for execution payload (filter: eq) - */ - execution_payload_gas_limit_eq?: number; - /** - * Gas limit for execution payload (filter: ne) - */ - execution_payload_gas_limit_ne?: number; - /** - * Gas limit for execution payload (filter: lt) - */ - execution_payload_gas_limit_lt?: number; - /** - * Gas limit for execution payload (filter: lte) - */ - execution_payload_gas_limit_lte?: number; - /** - * Gas limit for execution payload (filter: gt) - */ - execution_payload_gas_limit_gt?: number; - /** - * Gas limit for execution payload (filter: gte) - */ - execution_payload_gas_limit_gte?: number; - /** - * Gas limit for execution payload (filter: between_min) - */ - execution_payload_gas_limit_between_min?: number; - /** - * Gas limit for execution payload (filter: between_max_value) - */ - execution_payload_gas_limit_between_max_value?: number; - /** - * Gas limit for execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_gas_limit_in_values?: string; - /** - * Gas limit for execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_gas_limit_not_in_values?: string; - /** - * Gas used for execution payload (filter: eq) - */ - execution_payload_gas_used_eq?: number; - /** - * Gas used for execution payload (filter: ne) - */ - execution_payload_gas_used_ne?: number; - /** - * Gas used for execution payload (filter: lt) - */ - execution_payload_gas_used_lt?: number; - /** - * Gas used for execution payload (filter: lte) - */ - execution_payload_gas_used_lte?: number; - /** - * Gas used for execution payload (filter: gt) - */ - execution_payload_gas_used_gt?: number; - /** - * Gas used for execution payload (filter: gte) - */ - execution_payload_gas_used_gte?: number; - /** - * Gas used for execution payload (filter: between_min) - */ - execution_payload_gas_used_between_min?: number; - /** - * Gas used for execution payload (filter: between_max_value) - */ - execution_payload_gas_used_between_max_value?: number; - /** - * Gas used for execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_gas_used_in_values?: string; - /** - * Gas used for execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_gas_used_not_in_values?: string; - /** - * The transaction count of the execution payload (filter: eq) - */ - execution_payload_transactions_count_eq?: number; - /** - * The transaction count of the execution payload (filter: ne) - */ - execution_payload_transactions_count_ne?: number; - /** - * The transaction count of the execution payload (filter: lt) - */ - execution_payload_transactions_count_lt?: number; - /** - * The transaction count of the execution payload (filter: lte) - */ - execution_payload_transactions_count_lte?: number; - /** - * The transaction count of the execution payload (filter: gt) - */ - execution_payload_transactions_count_gt?: number; - /** - * The transaction count of the execution payload (filter: gte) - */ - execution_payload_transactions_count_gte?: number; - /** - * The transaction count of the execution payload (filter: between_min) - */ - execution_payload_transactions_count_between_min?: number; - /** - * The transaction count of the execution payload (filter: between_max_value) - */ - execution_payload_transactions_count_between_max_value?: number; - /** - * The transaction count of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_transactions_count_in_values?: string; - /** - * The transaction count of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_transactions_count_not_in_values?: string; - /** - * The transaction total bytes of the execution payload (filter: eq) - */ - execution_payload_transactions_total_bytes_eq?: number; - /** - * The transaction total bytes of the execution payload (filter: ne) - */ - execution_payload_transactions_total_bytes_ne?: number; - /** - * The transaction total bytes of the execution payload (filter: lt) - */ - execution_payload_transactions_total_bytes_lt?: number; - /** - * The transaction total bytes of the execution payload (filter: lte) - */ - execution_payload_transactions_total_bytes_lte?: number; - /** - * The transaction total bytes of the execution payload (filter: gt) - */ - execution_payload_transactions_total_bytes_gt?: number; - /** - * The transaction total bytes of the execution payload (filter: gte) - */ - execution_payload_transactions_total_bytes_gte?: number; - /** - * The transaction total bytes of the execution payload (filter: between_min) - */ - execution_payload_transactions_total_bytes_between_min?: number; - /** - * The transaction total bytes of the execution payload (filter: between_max_value) - */ - execution_payload_transactions_total_bytes_between_max_value?: number; - /** - * The transaction total bytes of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_in_values?: string; - /** - * The transaction total bytes of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_not_in_values?: string; - /** - * The maximum number of fct_prepared_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctPreparedBlock` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_prepared_block'; -}; - -export type FctPreparedBlockServiceListErrors = { + gas_compute_gte?: number; /** - * Default error response + * Gas attributed to pure computation (filter: between_min) */ - default: Status; -}; - -export type FctPreparedBlockServiceListError = FctPreparedBlockServiceListErrors[keyof FctPreparedBlockServiceListErrors]; - -export type FctPreparedBlockServiceListResponses = { + gas_compute_between_min?: number; /** - * OK + * Gas attributed to pure computation (filter: between_max_value) */ - 200: ListFctPreparedBlockResponse; -}; - -export type FctPreparedBlockServiceListResponse = FctPreparedBlockServiceListResponses[keyof FctPreparedBlockServiceListResponses]; - -export type FctPreparedBlockServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_prepared_block/{slot_start_date_time}'; -}; - -export type FctPreparedBlockServiceGetErrors = { + gas_compute_between_max_value?: number; /** - * Default error response + * Gas attributed to pure computation (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctPreparedBlockServiceGetError = FctPreparedBlockServiceGetErrors[keyof FctPreparedBlockServiceGetErrors]; - -export type FctPreparedBlockServiceGetResponses = { + gas_compute_in_values?: string; /** - * OK + * Gas attributed to pure computation (filter: not_in_values) (comma-separated list) */ - 200: GetFctPreparedBlockResponse; -}; - -export type FctPreparedBlockServiceGetResponse = FctPreparedBlockServiceGetResponses[keyof FctPreparedBlockServiceGetResponses]; - -export type FctProposerRewardDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of MEV relay blocks in this day (filter: eq) - */ - block_count_eq?: number; - /** - * Number of MEV relay blocks in this day (filter: ne) - */ - block_count_ne?: number; - /** - * Number of MEV relay blocks in this day (filter: lt) - */ - block_count_lt?: number; - /** - * Number of MEV relay blocks in this day (filter: lte) - */ - block_count_lte?: number; - /** - * Number of MEV relay blocks in this day (filter: gt) - */ - block_count_gt?: number; - /** - * Number of MEV relay blocks in this day (filter: gte) - */ - block_count_gte?: number; - /** - * Number of MEV relay blocks in this day (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of MEV relay blocks in this day (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of MEV relay blocks in this day (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of MEV relay blocks in this day (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Filter total_reward_eth using value - */ - total_reward_eth_value?: number; - /** - * Filter avg_reward_eth using value - */ - avg_reward_eth_value?: number; - /** - * Filter min_reward_eth using value - */ - min_reward_eth_value?: number; - /** - * Filter max_reward_eth using value - */ - max_reward_eth_value?: number; - /** - * Filter p05_reward_eth using value - */ - p05_reward_eth_value?: number; - /** - * Filter p50_reward_eth using value - */ - p50_reward_eth_value?: number; - /** - * Filter p95_reward_eth using value - */ - p95_reward_eth_value?: number; - /** - * Filter stddev_reward_eth using value - */ - stddev_reward_eth_value?: number; - /** - * Filter upper_band_reward_eth using value - */ - upper_band_reward_eth_value?: number; - /** - * Filter lower_band_reward_eth using value - */ - lower_band_reward_eth_value?: number; - /** - * Filter moving_avg_reward_eth using value - */ - moving_avg_reward_eth_value?: number; - /** - * The maximum number of fct_proposer_reward_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctProposerRewardDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_proposer_reward_daily'; -}; - -export type FctProposerRewardDailyServiceListErrors = { + gas_compute_not_in_values?: string; /** - * Default error response + * Gas attributed to memory expansion (filter: eq) */ - default: Status; -}; - -export type FctProposerRewardDailyServiceListError = FctProposerRewardDailyServiceListErrors[keyof FctProposerRewardDailyServiceListErrors]; - -export type FctProposerRewardDailyServiceListResponses = { + gas_memory_eq?: number; /** - * OK + * Gas attributed to memory expansion (filter: ne) */ - 200: ListFctProposerRewardDailyResponse; -}; - -export type FctProposerRewardDailyServiceListResponse = FctProposerRewardDailyServiceListResponses[keyof FctProposerRewardDailyServiceListResponses]; - -export type FctProposerRewardDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_proposer_reward_daily/{day_start_date}'; -}; - -export type FctProposerRewardDailyServiceGetErrors = { + gas_memory_ne?: number; /** - * Default error response + * Gas attributed to memory expansion (filter: lt) */ - default: Status; -}; - -export type FctProposerRewardDailyServiceGetError = FctProposerRewardDailyServiceGetErrors[keyof FctProposerRewardDailyServiceGetErrors]; - -export type FctProposerRewardDailyServiceGetResponses = { + gas_memory_lt?: number; /** - * OK + * Gas attributed to memory expansion (filter: lte) */ - 200: GetFctProposerRewardDailyResponse; -}; - -export type FctProposerRewardDailyServiceGetResponse = FctProposerRewardDailyServiceGetResponses[keyof FctProposerRewardDailyServiceGetResponses]; - -export type FctProposerRewardHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of MEV relay blocks in this hour (filter: eq) - */ - block_count_eq?: number; - /** - * Number of MEV relay blocks in this hour (filter: ne) - */ - block_count_ne?: number; - /** - * Number of MEV relay blocks in this hour (filter: lt) - */ - block_count_lt?: number; - /** - * Number of MEV relay blocks in this hour (filter: lte) - */ - block_count_lte?: number; - /** - * Number of MEV relay blocks in this hour (filter: gt) - */ - block_count_gt?: number; - /** - * Number of MEV relay blocks in this hour (filter: gte) - */ - block_count_gte?: number; - /** - * Number of MEV relay blocks in this hour (filter: between_min) - */ - block_count_between_min?: number; - /** - * Number of MEV relay blocks in this hour (filter: between_max_value) - */ - block_count_between_max_value?: number; - /** - * Number of MEV relay blocks in this hour (filter: in_values) (comma-separated list) - */ - block_count_in_values?: string; - /** - * Number of MEV relay blocks in this hour (filter: not_in_values) (comma-separated list) - */ - block_count_not_in_values?: string; - /** - * Filter total_reward_eth using value - */ - total_reward_eth_value?: number; - /** - * Filter avg_reward_eth using value - */ - avg_reward_eth_value?: number; - /** - * Filter min_reward_eth using value - */ - min_reward_eth_value?: number; - /** - * Filter max_reward_eth using value - */ - max_reward_eth_value?: number; - /** - * Filter p05_reward_eth using value - */ - p05_reward_eth_value?: number; - /** - * Filter p50_reward_eth using value - */ - p50_reward_eth_value?: number; - /** - * Filter p95_reward_eth using value - */ - p95_reward_eth_value?: number; - /** - * Filter stddev_reward_eth using value - */ - stddev_reward_eth_value?: number; - /** - * Filter upper_band_reward_eth using value - */ - upper_band_reward_eth_value?: number; - /** - * Filter lower_band_reward_eth using value - */ - lower_band_reward_eth_value?: number; - /** - * Filter moving_avg_reward_eth using value - */ - moving_avg_reward_eth_value?: number; - /** - * The maximum number of fct_proposer_reward_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctProposerRewardHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_proposer_reward_hourly'; -}; - -export type FctProposerRewardHourlyServiceListErrors = { + gas_memory_lte?: number; /** - * Default error response + * Gas attributed to memory expansion (filter: gt) */ - default: Status; -}; - -export type FctProposerRewardHourlyServiceListError = FctProposerRewardHourlyServiceListErrors[keyof FctProposerRewardHourlyServiceListErrors]; - -export type FctProposerRewardHourlyServiceListResponses = { + gas_memory_gt?: number; /** - * OK + * Gas attributed to memory expansion (filter: gte) */ - 200: ListFctProposerRewardHourlyResponse; -}; - -export type FctProposerRewardHourlyServiceListResponse = FctProposerRewardHourlyServiceListResponses[keyof FctProposerRewardHourlyServiceListResponses]; - -export type FctProposerRewardHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_proposer_reward_hourly/{hour_start_date_time}'; -}; - -export type FctProposerRewardHourlyServiceGetErrors = { + gas_memory_gte?: number; /** - * Default error response + * Gas attributed to memory expansion (filter: between_min) */ - default: Status; -}; - -export type FctProposerRewardHourlyServiceGetError = FctProposerRewardHourlyServiceGetErrors[keyof FctProposerRewardHourlyServiceGetErrors]; - -export type FctProposerRewardHourlyServiceGetResponses = { + gas_memory_between_min?: number; /** - * OK + * Gas attributed to memory expansion (filter: between_max_value) */ - 200: GetFctProposerRewardHourlyResponse; -}; - -export type FctProposerRewardHourlyServiceGetResponse = FctProposerRewardHourlyServiceGetResponses[keyof FctProposerRewardHourlyServiceGetResponses]; - -export type FctReorgDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: eq) - */ - depth_eq?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: ne) - */ - depth_ne?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: lt) - */ - depth_lt?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: lte) - */ - depth_lte?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: gt) - */ - depth_gt?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: gte) - */ - depth_gte?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: between_min) - */ - depth_between_min?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: between_max_value) - */ - depth_between_max_value?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: in_values) (comma-separated list) - */ - depth_in_values?: string; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: not_in_values) (comma-separated list) - */ - depth_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of reorg events at this depth (filter: eq) - */ - reorg_count_eq?: number; - /** - * Number of reorg events at this depth (filter: ne) - */ - reorg_count_ne?: number; - /** - * Number of reorg events at this depth (filter: lt) - */ - reorg_count_lt?: number; - /** - * Number of reorg events at this depth (filter: lte) - */ - reorg_count_lte?: number; - /** - * Number of reorg events at this depth (filter: gt) - */ - reorg_count_gt?: number; - /** - * Number of reorg events at this depth (filter: gte) - */ - reorg_count_gte?: number; - /** - * Number of reorg events at this depth (filter: between_min) - */ - reorg_count_between_min?: number; - /** - * Number of reorg events at this depth (filter: between_max_value) - */ - reorg_count_between_max_value?: number; - /** - * Number of reorg events at this depth (filter: in_values) (comma-separated list) - */ - reorg_count_in_values?: string; - /** - * Number of reorg events at this depth (filter: not_in_values) (comma-separated list) - */ - reorg_count_not_in_values?: string; - /** - * The maximum number of fct_reorg_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctReorgDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_reorg_daily'; -}; - -export type FctReorgDailyServiceListErrors = { + gas_memory_between_max_value?: number; /** - * Default error response + * Gas attributed to memory expansion (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctReorgDailyServiceListError = FctReorgDailyServiceListErrors[keyof FctReorgDailyServiceListErrors]; - -export type FctReorgDailyServiceListResponses = { + gas_memory_in_values?: string; /** - * OK + * Gas attributed to memory expansion (filter: not_in_values) (comma-separated list) */ - 200: ListFctReorgDailyResponse; -}; - -export type FctReorgDailyServiceListResponse = FctReorgDailyServiceListResponses[keyof FctReorgDailyServiceListResponses]; - -export type FctReorgDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_reorg_daily/{day_start_date}'; -}; - -export type FctReorgDailyServiceGetErrors = { + gas_memory_not_in_values?: string; /** - * Default error response + * Gas attributed to cold address/storage access (EIP-2929) (filter: eq) */ - default: Status; -}; - -export type FctReorgDailyServiceGetError = FctReorgDailyServiceGetErrors[keyof FctReorgDailyServiceGetErrors]; - -export type FctReorgDailyServiceGetResponses = { + gas_address_access_eq?: number; + /** + * Gas attributed to cold address/storage access (EIP-2929) (filter: ne) + */ + gas_address_access_ne?: number; + /** + * Gas attributed to cold address/storage access (EIP-2929) (filter: lt) + */ + gas_address_access_lt?: number; + /** + * Gas attributed to cold address/storage access (EIP-2929) (filter: lte) + */ + gas_address_access_lte?: number; + /** + * Gas attributed to cold address/storage access (EIP-2929) (filter: gt) + */ + gas_address_access_gt?: number; /** - * OK + * Gas attributed to cold address/storage access (EIP-2929) (filter: gte) */ - 200: GetFctReorgDailyResponse; -}; - -export type FctReorgDailyServiceGetResponse = FctReorgDailyServiceGetResponses[keyof FctReorgDailyServiceGetResponses]; - -export type FctReorgHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: eq) - */ - depth_eq?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: ne) - */ - depth_ne?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: lt) - */ - depth_lt?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: lte) - */ - depth_lte?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: gt) - */ - depth_gt?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: gte) - */ - depth_gte?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: between_min) - */ - depth_between_min?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: between_max_value) - */ - depth_between_max_value?: number; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: in_values) (comma-separated list) - */ - depth_in_values?: string; - /** - * Reorg depth (number of consecutive orphaned slots) (filter: not_in_values) (comma-separated list) - */ - depth_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of reorg events at this depth (filter: eq) - */ - reorg_count_eq?: number; - /** - * Number of reorg events at this depth (filter: ne) - */ - reorg_count_ne?: number; - /** - * Number of reorg events at this depth (filter: lt) - */ - reorg_count_lt?: number; - /** - * Number of reorg events at this depth (filter: lte) - */ - reorg_count_lte?: number; - /** - * Number of reorg events at this depth (filter: gt) - */ - reorg_count_gt?: number; - /** - * Number of reorg events at this depth (filter: gte) - */ - reorg_count_gte?: number; - /** - * Number of reorg events at this depth (filter: between_min) - */ - reorg_count_between_min?: number; - /** - * Number of reorg events at this depth (filter: between_max_value) - */ - reorg_count_between_max_value?: number; - /** - * Number of reorg events at this depth (filter: in_values) (comma-separated list) - */ - reorg_count_in_values?: string; - /** - * Number of reorg events at this depth (filter: not_in_values) (comma-separated list) - */ - reorg_count_not_in_values?: string; - /** - * The maximum number of fct_reorg_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctReorgHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_reorg_hourly'; -}; - -export type FctReorgHourlyServiceListErrors = { + gas_address_access_gte?: number; /** - * Default error response + * Gas attributed to cold address/storage access (EIP-2929) (filter: between_min) */ - default: Status; -}; - -export type FctReorgHourlyServiceListError = FctReorgHourlyServiceListErrors[keyof FctReorgHourlyServiceListErrors]; - -export type FctReorgHourlyServiceListResponses = { + gas_address_access_between_min?: number; /** - * OK + * Gas attributed to cold address/storage access (EIP-2929) (filter: between_max_value) */ - 200: ListFctReorgHourlyResponse; -}; - -export type FctReorgHourlyServiceListResponse = FctReorgHourlyServiceListResponses[keyof FctReorgHourlyServiceListResponses]; - -export type FctReorgHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_reorg_hourly/{hour_start_date_time}'; -}; - -export type FctReorgHourlyServiceGetErrors = { + gas_address_access_between_max_value?: number; /** - * Default error response + * Gas attributed to cold address/storage access (EIP-2929) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctReorgHourlyServiceGetError = FctReorgHourlyServiceGetErrors[keyof FctReorgHourlyServiceGetErrors]; - -export type FctReorgHourlyServiceGetResponses = { + gas_address_access_in_values?: string; /** - * OK + * Gas attributed to cold address/storage access (EIP-2929) (filter: not_in_values) (comma-separated list) */ - 200: GetFctReorgHourlyResponse; -}; - -export type FctReorgHourlyServiceGetResponse = FctReorgHourlyServiceGetResponses[keyof FctReorgHourlyServiceGetResponses]; - -export type FctRocketpoolValidatorServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The beacon chain validator index (filter: eq) - */ - validator_index_eq?: number; - /** - * The beacon chain validator index (filter: ne) - */ - validator_index_ne?: number; - /** - * The beacon chain validator index (filter: lt) - */ - validator_index_lt?: number; - /** - * The beacon chain validator index (filter: lte) - */ - validator_index_lte?: number; - /** - * The beacon chain validator index (filter: gt) - */ - validator_index_gt?: number; - /** - * The beacon chain validator index (filter: gte) - */ - validator_index_gte?: number; - /** - * The beacon chain validator index (filter: between_min) - */ - validator_index_between_min?: number; - /** - * The beacon chain validator index (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * The beacon chain validator index (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * The beacon chain validator index (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The validator BLS public key, lowercase 0x-prefixed (filter: eq) - */ - pubkey_eq?: string; - /** - * The validator BLS public key, lowercase 0x-prefixed (filter: ne) - */ - pubkey_ne?: string; - /** - * The validator BLS public key, lowercase 0x-prefixed (filter: contains) - */ - pubkey_contains?: string; - /** - * The validator BLS public key, lowercase 0x-prefixed (filter: starts_with) - */ - pubkey_starts_with?: string; - /** - * The validator BLS public key, lowercase 0x-prefixed (filter: ends_with) - */ - pubkey_ends_with?: string; - /** - * The validator BLS public key, lowercase 0x-prefixed (filter: like) - */ - pubkey_like?: string; - /** - * The validator BLS public key, lowercase 0x-prefixed (filter: not_like) - */ - pubkey_not_like?: string; - /** - * The validator BLS public key, lowercase 0x-prefixed (filter: in_values) (comma-separated list) - */ - pubkey_in_values?: string; - /** - * The validator BLS public key, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) - */ - pubkey_not_in_values?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: eq) - */ - node_operator_eq?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ne) - */ - node_operator_ne?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: contains) - */ - node_operator_contains?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: starts_with) - */ - node_operator_starts_with?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ends_with) - */ - node_operator_ends_with?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: like) - */ - node_operator_like?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_like) - */ - node_operator_not_like?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: in_values) (comma-separated list) - */ - node_operator_in_values?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) - */ - node_operator_not_in_values?: string; - /** - * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: eq) - */ - pool_type_eq?: string; - /** - * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: ne) - */ - pool_type_ne?: string; - /** - * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: contains) - */ - pool_type_contains?: string; - /** - * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: starts_with) - */ - pool_type_starts_with?: string; - /** - * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: ends_with) - */ - pool_type_ends_with?: string; - /** - * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: like) - */ - pool_type_like?: string; - /** - * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: not_like) - */ - pool_type_not_like?: string; - /** - * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: in_values) (comma-separated list) - */ - pool_type_in_values?: string; - /** - * The Rocket Pool staking mechanism backing this validator: minipool or megapool (filter: not_in_values) (comma-separated list) - */ - pool_type_not_in_values?: string; - /** - * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: eq) - */ - pool_address_eq?: string; - /** - * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: ne) - */ - pool_address_ne?: string; - /** - * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: contains) - */ - pool_address_contains?: string; - /** - * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: starts_with) - */ - pool_address_starts_with?: string; - /** - * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: ends_with) - */ - pool_address_ends_with?: string; - /** - * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: like) - */ - pool_address_like?: string; - /** - * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: not_like) - */ - pool_address_not_like?: string; - /** - * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: in_values) (comma-separated list) - */ - pool_address_in_values?: string; - /** - * The minipool contract address (minipool) or the validator withdrawal credential address (megapool), lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) - */ - pool_address_not_in_values?: string; - /** - * Wall clock time the backing minipool was created or the megapool deposit was made (filter: eq) - */ - created_date_time_eq?: number; - /** - * Wall clock time the backing minipool was created or the megapool deposit was made (filter: ne) - */ - created_date_time_ne?: number; - /** - * Wall clock time the backing minipool was created or the megapool deposit was made (filter: lt) - */ - created_date_time_lt?: number; - /** - * Wall clock time the backing minipool was created or the megapool deposit was made (filter: lte) - */ - created_date_time_lte?: number; - /** - * Wall clock time the backing minipool was created or the megapool deposit was made (filter: gt) - */ - created_date_time_gt?: number; - /** - * Wall clock time the backing minipool was created or the megapool deposit was made (filter: gte) - */ - created_date_time_gte?: number; - /** - * Wall clock time the backing minipool was created or the megapool deposit was made (filter: between_min) - */ - created_date_time_between_min?: number; - /** - * Wall clock time the backing minipool was created or the megapool deposit was made (filter: between_max_value) - */ - created_date_time_between_max_value?: number; - /** - * Wall clock time the backing minipool was created or the megapool deposit was made (filter: in_values) (comma-separated list) - */ - created_date_time_in_values?: string; - /** - * Wall clock time the backing minipool was created or the megapool deposit was made (filter: not_in_values) (comma-separated list) - */ - created_date_time_not_in_values?: string; - /** - * The maximum number of fct_rocketpool_validator to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctRocketpoolValidator` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_rocketpool_validator'; -}; - -export type FctRocketpoolValidatorServiceListErrors = { + gas_address_access_not_in_values?: string; /** - * Default error response + * Gas attributed to state growth (new storage slots, contract creation) (filter: eq) */ - default: Status; -}; - -export type FctRocketpoolValidatorServiceListError = FctRocketpoolValidatorServiceListErrors[keyof FctRocketpoolValidatorServiceListErrors]; - -export type FctRocketpoolValidatorServiceListResponses = { + gas_state_growth_eq?: number; /** - * OK + * Gas attributed to state growth (new storage slots, contract creation) (filter: ne) */ - 200: ListFctRocketpoolValidatorResponse; -}; - -export type FctRocketpoolValidatorServiceListResponse = FctRocketpoolValidatorServiceListResponses[keyof FctRocketpoolValidatorServiceListResponses]; - -export type FctRocketpoolValidatorServiceGetData = { - body?: never; - path: { - /** - * The beacon chain validator index - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/fct_rocketpool_validator/{validator_index}'; -}; - -export type FctRocketpoolValidatorServiceGetErrors = { + gas_state_growth_ne?: number; /** - * Default error response + * Gas attributed to state growth (new storage slots, contract creation) (filter: lt) */ - default: Status; -}; - -export type FctRocketpoolValidatorServiceGetError = FctRocketpoolValidatorServiceGetErrors[keyof FctRocketpoolValidatorServiceGetErrors]; - -export type FctRocketpoolValidatorServiceGetResponses = { + gas_state_growth_lt?: number; /** - * OK + * Gas attributed to state growth (new storage slots, contract creation) (filter: lte) */ - 200: GetFctRocketpoolValidatorResponse; -}; - -export type FctRocketpoolValidatorServiceGetResponse = FctRocketpoolValidatorServiceGetResponses[keyof FctRocketpoolValidatorServiceGetResponses]; - -export type FctStorageSlotStateByAddressDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative count of active storage slots at end of day (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at end of day (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at end of day (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at end of day (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at end of day (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at end of day (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at end of day (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at end of day (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at end of day (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at end of day (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at end of day (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at end of day (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of fct_storage_slot_state_by_address_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctStorageSlotStateByAddressDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_storage_slot_state_by_address_daily'; -}; - -export type FctStorageSlotStateByAddressDailyServiceListErrors = { + gas_state_growth_lte?: number; /** - * Default error response + * Gas attributed to state growth (new storage slots, contract creation) (filter: gt) */ - default: Status; -}; - -export type FctStorageSlotStateByAddressDailyServiceListError = FctStorageSlotStateByAddressDailyServiceListErrors[keyof FctStorageSlotStateByAddressDailyServiceListErrors]; - -export type FctStorageSlotStateByAddressDailyServiceListResponses = { + gas_state_growth_gt?: number; /** - * OK + * Gas attributed to state growth (new storage slots, contract creation) (filter: gte) */ - 200: ListFctStorageSlotStateByAddressDailyResponse; -}; - -export type FctStorageSlotStateByAddressDailyServiceListResponse = FctStorageSlotStateByAddressDailyServiceListResponses[keyof FctStorageSlotStateByAddressDailyServiceListResponses]; - -export type FctStorageSlotStateByAddressDailyServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/fct_storage_slot_state_by_address_daily/{address}'; -}; - -export type FctStorageSlotStateByAddressDailyServiceGetErrors = { + gas_state_growth_gte?: number; /** - * Default error response + * Gas attributed to state growth (new storage slots, contract creation) (filter: between_min) */ - default: Status; -}; - -export type FctStorageSlotStateByAddressDailyServiceGetError = FctStorageSlotStateByAddressDailyServiceGetErrors[keyof FctStorageSlotStateByAddressDailyServiceGetErrors]; - -export type FctStorageSlotStateByAddressDailyServiceGetResponses = { + gas_state_growth_between_min?: number; /** - * OK + * Gas attributed to state growth (new storage slots, contract creation) (filter: between_max_value) */ - 200: GetFctStorageSlotStateByAddressDailyResponse; -}; - -export type FctStorageSlotStateByAddressDailyServiceGetResponse = FctStorageSlotStateByAddressDailyServiceGetResponses[keyof FctStorageSlotStateByAddressDailyServiceGetResponses]; - -export type FctStorageSlotStateByAddressHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative count of active storage slots at end of hour (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at end of hour (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at end of hour (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at end of hour (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of fct_storage_slot_state_by_address_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctStorageSlotStateByAddressHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_storage_slot_state_by_address_hourly'; -}; - -export type FctStorageSlotStateByAddressHourlyServiceListErrors = { + gas_state_growth_between_max_value?: number; /** - * Default error response + * Gas attributed to state growth (new storage slots, contract creation) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctStorageSlotStateByAddressHourlyServiceListError = FctStorageSlotStateByAddressHourlyServiceListErrors[keyof FctStorageSlotStateByAddressHourlyServiceListErrors]; - -export type FctStorageSlotStateByAddressHourlyServiceListResponses = { + gas_state_growth_in_values?: string; /** - * OK + * Gas attributed to state growth (new storage slots, contract creation) (filter: not_in_values) (comma-separated list) */ - 200: ListFctStorageSlotStateByAddressHourlyResponse; -}; - -export type FctStorageSlotStateByAddressHourlyServiceListResponse = FctStorageSlotStateByAddressHourlyServiceListResponses[keyof FctStorageSlotStateByAddressHourlyServiceListResponses]; - -export type FctStorageSlotStateByAddressHourlyServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/fct_storage_slot_state_by_address_hourly/{address}'; -}; - -export type FctStorageSlotStateByAddressHourlyServiceGetErrors = { + gas_state_growth_not_in_values?: string; /** - * Default error response + * Gas attributed to history/log data storage (filter: eq) */ - default: Status; -}; - -export type FctStorageSlotStateByAddressHourlyServiceGetError = FctStorageSlotStateByAddressHourlyServiceGetErrors[keyof FctStorageSlotStateByAddressHourlyServiceGetErrors]; - -export type FctStorageSlotStateByAddressHourlyServiceGetResponses = { + gas_history_eq?: number; /** - * OK + * Gas attributed to history/log data storage (filter: ne) */ - 200: GetFctStorageSlotStateByAddressHourlyResponse; -}; - -export type FctStorageSlotStateByAddressHourlyServiceGetResponse = FctStorageSlotStateByAddressHourlyServiceGetResponses[keyof FctStorageSlotStateByAddressHourlyServiceGetResponses]; - -export type FctStorageSlotStateByBlockDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative count of active storage slots at end of day (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at end of day (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at end of day (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at end of day (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at end of day (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at end of day (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at end of day (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at end of day (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at end of day (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at end of day (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at end of day (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at end of day (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at end of day (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of fct_storage_slot_state_by_block_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctStorageSlotStateByBlockDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_storage_slot_state_by_block_daily'; -}; - -export type FctStorageSlotStateByBlockDailyServiceListErrors = { + gas_history_ne?: number; /** - * Default error response + * Gas attributed to history/log data storage (filter: lt) */ - default: Status; -}; - -export type FctStorageSlotStateByBlockDailyServiceListError = FctStorageSlotStateByBlockDailyServiceListErrors[keyof FctStorageSlotStateByBlockDailyServiceListErrors]; - -export type FctStorageSlotStateByBlockDailyServiceListResponses = { + gas_history_lt?: number; /** - * OK + * Gas attributed to history/log data storage (filter: lte) */ - 200: ListFctStorageSlotStateByBlockDailyResponse; -}; - -export type FctStorageSlotStateByBlockDailyServiceListResponse = FctStorageSlotStateByBlockDailyServiceListResponses[keyof FctStorageSlotStateByBlockDailyServiceListResponses]; - -export type FctStorageSlotStateByBlockDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_storage_slot_state_by_block_daily/{day_start_date}'; -}; - -export type FctStorageSlotStateByBlockDailyServiceGetErrors = { + gas_history_lte?: number; /** - * Default error response + * Gas attributed to history/log data storage (filter: gt) */ - default: Status; -}; - -export type FctStorageSlotStateByBlockDailyServiceGetError = FctStorageSlotStateByBlockDailyServiceGetErrors[keyof FctStorageSlotStateByBlockDailyServiceGetErrors]; - -export type FctStorageSlotStateByBlockDailyServiceGetResponses = { + gas_history_gt?: number; /** - * OK + * Gas attributed to history/log data storage (filter: gte) */ - 200: GetFctStorageSlotStateByBlockDailyResponse; -}; - -export type FctStorageSlotStateByBlockDailyServiceGetResponse = FctStorageSlotStateByBlockDailyServiceGetResponses[keyof FctStorageSlotStateByBlockDailyServiceGetResponses]; - -export type FctStorageSlotStateByBlockHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative count of active storage slots at end of hour (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at end of hour (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at end of hour (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at end of hour (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at end of hour (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at end of hour (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of fct_storage_slot_state_by_block_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctStorageSlotStateByBlockHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_storage_slot_state_by_block_hourly'; -}; - -export type FctStorageSlotStateByBlockHourlyServiceListErrors = { + gas_history_gte?: number; /** - * Default error response + * Gas attributed to history/log data storage (filter: between_min) */ - default: Status; -}; - -export type FctStorageSlotStateByBlockHourlyServiceListError = FctStorageSlotStateByBlockHourlyServiceListErrors[keyof FctStorageSlotStateByBlockHourlyServiceListErrors]; - -export type FctStorageSlotStateByBlockHourlyServiceListResponses = { + gas_history_between_min?: number; /** - * OK + * Gas attributed to history/log data storage (filter: between_max_value) */ - 200: ListFctStorageSlotStateByBlockHourlyResponse; -}; - -export type FctStorageSlotStateByBlockHourlyServiceListResponse = FctStorageSlotStateByBlockHourlyServiceListResponses[keyof FctStorageSlotStateByBlockHourlyServiceListResponses]; - -export type FctStorageSlotStateByBlockHourlyServiceGetData = { - body?: never; - path: { - /** - * Start of the hour period - */ - hour_start_date_time: number; - }; - query?: never; - url: '/api/v1/fct_storage_slot_state_by_block_hourly/{hour_start_date_time}'; -}; - -export type FctStorageSlotStateByBlockHourlyServiceGetErrors = { + gas_history_between_max_value?: number; /** - * Default error response + * Gas attributed to history/log data storage (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctStorageSlotStateByBlockHourlyServiceGetError = FctStorageSlotStateByBlockHourlyServiceGetErrors[keyof FctStorageSlotStateByBlockHourlyServiceGetErrors]; - -export type FctStorageSlotStateByBlockHourlyServiceGetResponses = { + gas_history_in_values?: string; /** - * OK + * Gas attributed to history/log data storage (filter: not_in_values) (comma-separated list) */ - 200: GetFctStorageSlotStateByBlockHourlyResponse; -}; - -export type FctStorageSlotStateByBlockHourlyServiceGetResponse = FctStorageSlotStateByBlockHourlyServiceGetResponses[keyof FctStorageSlotStateByBlockHourlyServiceGetResponses]; - -export type FctStorageSlotStateWithExpiryByAddressDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of fct_storage_slot_state_with_expiry_by_address_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctStorageSlotStateWithExpiryByAddressDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_storage_slot_state_with_expiry_by_address_daily'; -}; - -export type FctStorageSlotStateWithExpiryByAddressDailyServiceListErrors = { + gas_history_not_in_values?: string; /** - * Default error response + * Gas attributed to bloom filter topic indexing (filter: eq) */ - default: Status; -}; - -export type FctStorageSlotStateWithExpiryByAddressDailyServiceListError = FctStorageSlotStateWithExpiryByAddressDailyServiceListErrors[keyof FctStorageSlotStateWithExpiryByAddressDailyServiceListErrors]; - -export type FctStorageSlotStateWithExpiryByAddressDailyServiceListResponses = { + gas_bloom_topics_eq?: number; /** - * OK + * Gas attributed to bloom filter topic indexing (filter: ne) */ - 200: ListFctStorageSlotStateWithExpiryByAddressDailyResponse; -}; - -export type FctStorageSlotStateWithExpiryByAddressDailyServiceListResponse = FctStorageSlotStateWithExpiryByAddressDailyServiceListResponses[keyof FctStorageSlotStateWithExpiryByAddressDailyServiceListResponses]; - -export type FctStorageSlotStateWithExpiryByAddressDailyServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/fct_storage_slot_state_with_expiry_by_address_daily/{address}'; -}; - -export type FctStorageSlotStateWithExpiryByAddressDailyServiceGetErrors = { + gas_bloom_topics_ne?: number; /** - * Default error response + * Gas attributed to bloom filter topic indexing (filter: lt) */ - default: Status; -}; - -export type FctStorageSlotStateWithExpiryByAddressDailyServiceGetError = FctStorageSlotStateWithExpiryByAddressDailyServiceGetErrors[keyof FctStorageSlotStateWithExpiryByAddressDailyServiceGetErrors]; - -export type FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponses = { + gas_bloom_topics_lt?: number; /** - * OK + * Gas attributed to bloom filter topic indexing (filter: lte) */ - 200: GetFctStorageSlotStateWithExpiryByAddressDailyResponse; -}; - -export type FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse = FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponses[keyof FctStorageSlotStateWithExpiryByAddressDailyServiceGetResponses]; - -export type FctStorageSlotStateWithExpiryByAddressHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of fct_storage_slot_state_with_expiry_by_address_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctStorageSlotStateWithExpiryByAddressHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_storage_slot_state_with_expiry_by_address_hourly'; -}; - -export type FctStorageSlotStateWithExpiryByAddressHourlyServiceListErrors = { + gas_bloom_topics_lte?: number; /** - * Default error response + * Gas attributed to bloom filter topic indexing (filter: gt) */ - default: Status; -}; - -export type FctStorageSlotStateWithExpiryByAddressHourlyServiceListError = FctStorageSlotStateWithExpiryByAddressHourlyServiceListErrors[keyof FctStorageSlotStateWithExpiryByAddressHourlyServiceListErrors]; - -export type FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponses = { + gas_bloom_topics_gt?: number; /** - * OK + * Gas attributed to bloom filter topic indexing (filter: gte) */ - 200: ListFctStorageSlotStateWithExpiryByAddressHourlyResponse; -}; - -export type FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse = FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponses[keyof FctStorageSlotStateWithExpiryByAddressHourlyServiceListResponses]; - -export type FctStorageSlotStateWithExpiryByAddressHourlyServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/fct_storage_slot_state_with_expiry_by_address_hourly/{address}'; -}; - -export type FctStorageSlotStateWithExpiryByAddressHourlyServiceGetErrors = { + gas_bloom_topics_gte?: number; /** - * Default error response + * Gas attributed to bloom filter topic indexing (filter: between_min) */ - default: Status; -}; - -export type FctStorageSlotStateWithExpiryByAddressHourlyServiceGetError = FctStorageSlotStateWithExpiryByAddressHourlyServiceGetErrors[keyof FctStorageSlotStateWithExpiryByAddressHourlyServiceGetErrors]; - -export type FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponses = { + gas_bloom_topics_between_min?: number; /** - * OK + * Gas attributed to bloom filter topic indexing (filter: between_max_value) */ - 200: GetFctStorageSlotStateWithExpiryByAddressHourlyResponse; -}; - -export type FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse = FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponses[keyof FctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponses]; - -export type FctStorageSlotStateWithExpiryByBlockDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at end of day (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at end of day (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of fct_storage_slot_state_with_expiry_by_block_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctStorageSlotStateWithExpiryByBlockDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_storage_slot_state_with_expiry_by_block_daily'; -}; - -export type FctStorageSlotStateWithExpiryByBlockDailyServiceListErrors = { + gas_bloom_topics_between_max_value?: number; /** - * Default error response + * Gas attributed to bloom filter topic indexing (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctStorageSlotStateWithExpiryByBlockDailyServiceListError = FctStorageSlotStateWithExpiryByBlockDailyServiceListErrors[keyof FctStorageSlotStateWithExpiryByBlockDailyServiceListErrors]; - -export type FctStorageSlotStateWithExpiryByBlockDailyServiceListResponses = { + gas_bloom_topics_in_values?: string; /** - * OK + * Gas attributed to bloom filter topic indexing (filter: not_in_values) (comma-separated list) */ - 200: ListFctStorageSlotStateWithExpiryByBlockDailyResponse; -}; - -export type FctStorageSlotStateWithExpiryByBlockDailyServiceListResponse = FctStorageSlotStateWithExpiryByBlockDailyServiceListResponses[keyof FctStorageSlotStateWithExpiryByBlockDailyServiceListResponses]; - -export type FctStorageSlotStateWithExpiryByBlockDailyServiceGetData = { - body?: never; - path: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy: string; - }; - query?: never; - url: '/api/v1/fct_storage_slot_state_with_expiry_by_block_daily/{expiry_policy}'; -}; - -export type FctStorageSlotStateWithExpiryByBlockDailyServiceGetErrors = { + gas_bloom_topics_not_in_values?: string; /** - * Default error response + * Gas attributed to block size (always 0 at opcode level) (filter: eq) */ - default: Status; -}; - -export type FctStorageSlotStateWithExpiryByBlockDailyServiceGetError = FctStorageSlotStateWithExpiryByBlockDailyServiceGetErrors[keyof FctStorageSlotStateWithExpiryByBlockDailyServiceGetErrors]; - -export type FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponses = { + gas_block_size_eq?: number; /** - * OK + * Gas attributed to block size (always 0 at opcode level) (filter: ne) */ - 200: GetFctStorageSlotStateWithExpiryByBlockDailyResponse; -}; - -export type FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse = FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponses[keyof FctStorageSlotStateWithExpiryByBlockDailyServiceGetResponses]; - -export type FctStorageSlotStateWithExpiryByBlockHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * Start of the hour period (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * Start of the hour period (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * Start of the hour period (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * Start of the hour period (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * Start of the hour period (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * Start of the hour period (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * Start of the hour period (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * Start of the hour period (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * Start of the hour period (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * Start of the hour period (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at end of hour (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at end of hour (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of fct_storage_slot_state_with_expiry_by_block_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctStorageSlotStateWithExpiryByBlockHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_storage_slot_state_with_expiry_by_block_hourly'; -}; - -export type FctStorageSlotStateWithExpiryByBlockHourlyServiceListErrors = { + gas_block_size_ne?: number; /** - * Default error response + * Gas attributed to block size (always 0 at opcode level) (filter: lt) */ - default: Status; -}; - -export type FctStorageSlotStateWithExpiryByBlockHourlyServiceListError = FctStorageSlotStateWithExpiryByBlockHourlyServiceListErrors[keyof FctStorageSlotStateWithExpiryByBlockHourlyServiceListErrors]; - -export type FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponses = { + gas_block_size_lt?: number; /** - * OK + * Gas attributed to block size (always 0 at opcode level) (filter: lte) */ - 200: ListFctStorageSlotStateWithExpiryByBlockHourlyResponse; -}; - -export type FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse = FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponses[keyof FctStorageSlotStateWithExpiryByBlockHourlyServiceListResponses]; - -export type FctStorageSlotStateWithExpiryByBlockHourlyServiceGetData = { - body?: never; - path: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy: string; - }; - query?: never; - url: '/api/v1/fct_storage_slot_state_with_expiry_by_block_hourly/{expiry_policy}'; -}; - -export type FctStorageSlotStateWithExpiryByBlockHourlyServiceGetErrors = { + gas_block_size_lte?: number; /** - * Default error response + * Gas attributed to block size (always 0 at opcode level) (filter: gt) */ - default: Status; -}; - -export type FctStorageSlotStateWithExpiryByBlockHourlyServiceGetError = FctStorageSlotStateWithExpiryByBlockHourlyServiceGetErrors[keyof FctStorageSlotStateWithExpiryByBlockHourlyServiceGetErrors]; - -export type FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponses = { + gas_block_size_gt?: number; /** - * OK + * Gas attributed to block size (always 0 at opcode level) (filter: gte) */ - 200: GetFctStorageSlotStateWithExpiryByBlockHourlyResponse; -}; - -export type FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse = FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponses[keyof FctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponses]; - -export type FctStorageSlotTop100ByBytesServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Rank by effective bytes (1=highest), based on raw state (filter: eq) - */ - rank_eq?: number; - /** - * Rank by effective bytes (1=highest), based on raw state (filter: ne) - */ - rank_ne?: number; - /** - * Rank by effective bytes (1=highest), based on raw state (filter: lt) - */ - rank_lt?: number; - /** - * Rank by effective bytes (1=highest), based on raw state (filter: lte) - */ - rank_lte?: number; - /** - * Rank by effective bytes (1=highest), based on raw state (filter: gt) - */ - rank_gt?: number; - /** - * Rank by effective bytes (1=highest), based on raw state (filter: gte) - */ - rank_gte?: number; - /** - * Rank by effective bytes (1=highest), based on raw state (filter: between_min) - */ - rank_between_min?: number; - /** - * Rank by effective bytes (1=highest), based on raw state (filter: between_max_value) - */ - rank_between_max_value?: number; - /** - * Rank by effective bytes (1=highest), based on raw state (filter: in_values) (comma-separated list) - */ - rank_in_values?: string; - /** - * Rank by effective bytes (1=highest), based on raw state (filter: not_in_values) (comma-separated list) - */ - rank_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - contract_address_eq?: string; - /** - * The contract address (filter: ne) - */ - contract_address_ne?: string; - /** - * The contract address (filter: contains) - */ - contract_address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - contract_address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - contract_address_ends_with?: string; - /** - * The contract address (filter: like) - */ - contract_address_like?: string; - /** - * The contract address (filter: not_like) - */ - contract_address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - contract_address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - contract_address_not_in_values?: string; - /** - * Effective bytes of storage for this contract (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Effective bytes of storage for this contract (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Effective bytes of storage for this contract (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Effective bytes of storage for this contract (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Effective bytes of storage for this contract (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Effective bytes of storage for this contract (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Effective bytes of storage for this contract (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Effective bytes of storage for this contract (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Effective bytes of storage for this contract (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Effective bytes of storage for this contract (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * Number of active storage slots for this contract (filter: eq) - */ - active_slots_eq?: number; - /** - * Number of active storage slots for this contract (filter: ne) - */ - active_slots_ne?: number; - /** - * Number of active storage slots for this contract (filter: lt) - */ - active_slots_lt?: number; - /** - * Number of active storage slots for this contract (filter: lte) - */ - active_slots_lte?: number; - /** - * Number of active storage slots for this contract (filter: gt) - */ - active_slots_gt?: number; - /** - * Number of active storage slots for this contract (filter: gte) - */ - active_slots_gte?: number; - /** - * Number of active storage slots for this contract (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Number of active storage slots for this contract (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Number of active storage slots for this contract (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Number of active storage slots for this contract (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Owner key identifier (filter: eq) - */ - owner_key_eq?: string; - /** - * Owner key identifier (filter: ne) - */ - owner_key_ne?: string; - /** - * Owner key identifier (filter: contains) - */ - owner_key_contains?: string; - /** - * Owner key identifier (filter: starts_with) - */ - owner_key_starts_with?: string; - /** - * Owner key identifier (filter: ends_with) - */ - owner_key_ends_with?: string; - /** - * Owner key identifier (filter: like) - */ - owner_key_like?: string; - /** - * Owner key identifier (filter: not_like) - */ - owner_key_not_like?: string; - /** - * Owner key identifier (filter: in_values) (comma-separated list) - */ - owner_key_in_values?: string; - /** - * Owner key identifier (filter: not_in_values) (comma-separated list) - */ - owner_key_not_in_values?: string; - /** - * Account owner of the contract (filter: eq) - */ - account_owner_eq?: string; - /** - * Account owner of the contract (filter: ne) - */ - account_owner_ne?: string; - /** - * Account owner of the contract (filter: contains) - */ - account_owner_contains?: string; - /** - * Account owner of the contract (filter: starts_with) - */ - account_owner_starts_with?: string; - /** - * Account owner of the contract (filter: ends_with) - */ - account_owner_ends_with?: string; - /** - * Account owner of the contract (filter: like) - */ - account_owner_like?: string; - /** - * Account owner of the contract (filter: not_like) - */ - account_owner_not_like?: string; - /** - * Account owner of the contract (filter: in_values) (comma-separated list) - */ - account_owner_in_values?: string; - /** - * Account owner of the contract (filter: not_in_values) (comma-separated list) - */ - account_owner_not_in_values?: string; - /** - * Name of the contract (filter: eq) - */ - contract_name_eq?: string; - /** - * Name of the contract (filter: ne) - */ - contract_name_ne?: string; - /** - * Name of the contract (filter: contains) - */ - contract_name_contains?: string; - /** - * Name of the contract (filter: starts_with) - */ - contract_name_starts_with?: string; - /** - * Name of the contract (filter: ends_with) - */ - contract_name_ends_with?: string; - /** - * Name of the contract (filter: like) - */ - contract_name_like?: string; - /** - * Name of the contract (filter: not_like) - */ - contract_name_not_like?: string; - /** - * Name of the contract (filter: in_values) (comma-separated list) - */ - contract_name_in_values?: string; - /** - * Name of the contract (filter: not_in_values) (comma-separated list) - */ - contract_name_not_in_values?: string; - /** - * Factory contract or deployer address (filter: eq) - */ - factory_contract_eq?: string; - /** - * Factory contract or deployer address (filter: ne) - */ - factory_contract_ne?: string; - /** - * Factory contract or deployer address (filter: contains) - */ - factory_contract_contains?: string; - /** - * Factory contract or deployer address (filter: starts_with) - */ - factory_contract_starts_with?: string; - /** - * Factory contract or deployer address (filter: ends_with) - */ - factory_contract_ends_with?: string; - /** - * Factory contract or deployer address (filter: like) - */ - factory_contract_like?: string; - /** - * Factory contract or deployer address (filter: not_like) - */ - factory_contract_not_like?: string; - /** - * Factory contract or deployer address (filter: in_values) (comma-separated list) - */ - factory_contract_in_values?: string; - /** - * Factory contract or deployer address (filter: not_in_values) (comma-separated list) - */ - factory_contract_not_in_values?: string; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: has) - */ - labels_has?: string; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: has_all_values) - */ - labels_has_all_values?: Array; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: has_any_values) - */ - labels_has_any_values?: Array; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_eq) - */ - labels_length_eq?: number; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_gt) - */ - labels_length_gt?: number; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_gte) - */ - labels_length_gte?: number; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_lt) - */ - labels_length_lt?: number; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_lte) - */ - labels_length_lte?: number; - /** - * The maximum number of fct_storage_slot_top_100_by_bytes to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctStorageSlotTop100ByBytes` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_storage_slot_top_100_by_bytes'; -}; - -export type FctStorageSlotTop100ByBytesServiceListErrors = { + gas_block_size_gte?: number; /** - * Default error response + * Gas attributed to block size (always 0 at opcode level) (filter: between_min) */ - default: Status; -}; - -export type FctStorageSlotTop100ByBytesServiceListError = FctStorageSlotTop100ByBytesServiceListErrors[keyof FctStorageSlotTop100ByBytesServiceListErrors]; - -export type FctStorageSlotTop100ByBytesServiceListResponses = { + gas_block_size_between_min?: number; /** - * OK + * Gas attributed to block size (always 0 at opcode level) (filter: between_max_value) */ - 200: ListFctStorageSlotTop100ByBytesResponse; -}; - -export type FctStorageSlotTop100ByBytesServiceListResponse = FctStorageSlotTop100ByBytesServiceListResponses[keyof FctStorageSlotTop100ByBytesServiceListResponses]; - -export type FctStorageSlotTop100ByBytesServiceGetData = { - body?: never; - path: { - /** - * Rank by effective bytes (1=highest), based on raw state - */ - rank: number; - }; - query?: never; - url: '/api/v1/fct_storage_slot_top_100_by_bytes/{rank}'; -}; - -export type FctStorageSlotTop100ByBytesServiceGetErrors = { + gas_block_size_between_max_value?: number; /** - * Default error response + * Gas attributed to block size (always 0 at opcode level) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctStorageSlotTop100ByBytesServiceGetError = FctStorageSlotTop100ByBytesServiceGetErrors[keyof FctStorageSlotTop100ByBytesServiceGetErrors]; - -export type FctStorageSlotTop100ByBytesServiceGetResponses = { + gas_block_size_in_values?: string; /** - * OK + * Gas attributed to block size (always 0 at opcode level) (filter: not_in_values) (comma-separated list) */ - 200: GetFctStorageSlotTop100ByBytesResponse; -}; - -export type FctStorageSlotTop100ByBytesServiceGetResponse = FctStorageSlotTop100ByBytesServiceGetResponses[keyof FctStorageSlotTop100ByBytesServiceGetResponses]; - -export type FctStorageSlotTop100BySlotsServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Rank by active slots (1=highest), based on raw state (filter: eq) - */ - rank_eq?: number; - /** - * Rank by active slots (1=highest), based on raw state (filter: ne) - */ - rank_ne?: number; - /** - * Rank by active slots (1=highest), based on raw state (filter: lt) - */ - rank_lt?: number; - /** - * Rank by active slots (1=highest), based on raw state (filter: lte) - */ - rank_lte?: number; - /** - * Rank by active slots (1=highest), based on raw state (filter: gt) - */ - rank_gt?: number; - /** - * Rank by active slots (1=highest), based on raw state (filter: gte) - */ - rank_gte?: number; - /** - * Rank by active slots (1=highest), based on raw state (filter: between_min) - */ - rank_between_min?: number; - /** - * Rank by active slots (1=highest), based on raw state (filter: between_max_value) - */ - rank_between_max_value?: number; - /** - * Rank by active slots (1=highest), based on raw state (filter: in_values) (comma-separated list) - */ - rank_in_values?: string; - /** - * Rank by active slots (1=highest), based on raw state (filter: not_in_values) (comma-separated list) - */ - rank_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: NULL (raw), 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - contract_address_eq?: string; - /** - * The contract address (filter: ne) - */ - contract_address_ne?: string; - /** - * The contract address (filter: contains) - */ - contract_address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - contract_address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - contract_address_ends_with?: string; - /** - * The contract address (filter: like) - */ - contract_address_like?: string; - /** - * The contract address (filter: not_like) - */ - contract_address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - contract_address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - contract_address_not_in_values?: string; - /** - * Number of active storage slots for this contract (filter: eq) - */ - active_slots_eq?: number; - /** - * Number of active storage slots for this contract (filter: ne) - */ - active_slots_ne?: number; - /** - * Number of active storage slots for this contract (filter: lt) - */ - active_slots_lt?: number; - /** - * Number of active storage slots for this contract (filter: lte) - */ - active_slots_lte?: number; - /** - * Number of active storage slots for this contract (filter: gt) - */ - active_slots_gt?: number; - /** - * Number of active storage slots for this contract (filter: gte) - */ - active_slots_gte?: number; - /** - * Number of active storage slots for this contract (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Number of active storage slots for this contract (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Number of active storage slots for this contract (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Number of active storage slots for this contract (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Effective bytes of storage for this contract (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Effective bytes of storage for this contract (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Effective bytes of storage for this contract (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Effective bytes of storage for this contract (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Effective bytes of storage for this contract (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Effective bytes of storage for this contract (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Effective bytes of storage for this contract (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Effective bytes of storage for this contract (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Effective bytes of storage for this contract (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Effective bytes of storage for this contract (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * Owner key identifier (filter: eq) - */ - owner_key_eq?: string; - /** - * Owner key identifier (filter: ne) - */ - owner_key_ne?: string; - /** - * Owner key identifier (filter: contains) - */ - owner_key_contains?: string; - /** - * Owner key identifier (filter: starts_with) - */ - owner_key_starts_with?: string; - /** - * Owner key identifier (filter: ends_with) - */ - owner_key_ends_with?: string; - /** - * Owner key identifier (filter: like) - */ - owner_key_like?: string; - /** - * Owner key identifier (filter: not_like) - */ - owner_key_not_like?: string; - /** - * Owner key identifier (filter: in_values) (comma-separated list) - */ - owner_key_in_values?: string; - /** - * Owner key identifier (filter: not_in_values) (comma-separated list) - */ - owner_key_not_in_values?: string; - /** - * Account owner of the contract (filter: eq) - */ - account_owner_eq?: string; - /** - * Account owner of the contract (filter: ne) - */ - account_owner_ne?: string; - /** - * Account owner of the contract (filter: contains) - */ - account_owner_contains?: string; - /** - * Account owner of the contract (filter: starts_with) - */ - account_owner_starts_with?: string; - /** - * Account owner of the contract (filter: ends_with) - */ - account_owner_ends_with?: string; - /** - * Account owner of the contract (filter: like) - */ - account_owner_like?: string; - /** - * Account owner of the contract (filter: not_like) - */ - account_owner_not_like?: string; - /** - * Account owner of the contract (filter: in_values) (comma-separated list) - */ - account_owner_in_values?: string; - /** - * Account owner of the contract (filter: not_in_values) (comma-separated list) - */ - account_owner_not_in_values?: string; - /** - * Name of the contract (filter: eq) - */ - contract_name_eq?: string; - /** - * Name of the contract (filter: ne) - */ - contract_name_ne?: string; - /** - * Name of the contract (filter: contains) - */ - contract_name_contains?: string; - /** - * Name of the contract (filter: starts_with) - */ - contract_name_starts_with?: string; - /** - * Name of the contract (filter: ends_with) - */ - contract_name_ends_with?: string; - /** - * Name of the contract (filter: like) - */ - contract_name_like?: string; - /** - * Name of the contract (filter: not_like) - */ - contract_name_not_like?: string; - /** - * Name of the contract (filter: in_values) (comma-separated list) - */ - contract_name_in_values?: string; - /** - * Name of the contract (filter: not_in_values) (comma-separated list) - */ - contract_name_not_in_values?: string; - /** - * Factory contract or deployer address (filter: eq) - */ - factory_contract_eq?: string; - /** - * Factory contract or deployer address (filter: ne) - */ - factory_contract_ne?: string; - /** - * Factory contract or deployer address (filter: contains) - */ - factory_contract_contains?: string; - /** - * Factory contract or deployer address (filter: starts_with) - */ - factory_contract_starts_with?: string; - /** - * Factory contract or deployer address (filter: ends_with) - */ - factory_contract_ends_with?: string; - /** - * Factory contract or deployer address (filter: like) - */ - factory_contract_like?: string; - /** - * Factory contract or deployer address (filter: not_like) - */ - factory_contract_not_like?: string; - /** - * Factory contract or deployer address (filter: in_values) (comma-separated list) - */ - factory_contract_in_values?: string; - /** - * Factory contract or deployer address (filter: not_in_values) (comma-separated list) - */ - factory_contract_not_in_values?: string; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: has) - */ - labels_has?: string; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: has_all_values) - */ - labels_has_all_values?: Array; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: has_any_values) - */ - labels_has_any_values?: Array; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_eq) - */ - labels_length_eq?: number; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_gt) - */ - labels_length_gt?: number; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_gte) - */ - labels_length_gte?: number; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_lt) - */ - labels_length_lt?: number; - /** - * Labels/categories (e.g., stablecoin, dex, circle) (filter: length_lte) - */ - labels_length_lte?: number; - /** - * The maximum number of fct_storage_slot_top_100_by_slots to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctStorageSlotTop100BySlots` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_storage_slot_top_100_by_slots'; -}; - -export type FctStorageSlotTop100BySlotsServiceListErrors = { + gas_block_size_not_in_values?: string; + /** + * The maximum number of int_transaction_call_frame_opcode_resource_gas to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntTransactionCallFrameOpcodeResourceGas` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; /** - * Default error response + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - default: Status; + order_by?: string; + }; + url: '/api/v1/int_transaction_call_frame_opcode_resource_gas'; }; -export type FctStorageSlotTop100BySlotsServiceListError = FctStorageSlotTop100BySlotsServiceListErrors[keyof FctStorageSlotTop100BySlotsServiceListErrors]; - -export type FctStorageSlotTop100BySlotsServiceListResponses = { - /** - * OK - */ - 200: ListFctStorageSlotTop100BySlotsResponse; +export type IntTransactionCallFrameOpcodeResourceGasServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -export type FctStorageSlotTop100BySlotsServiceListResponse = FctStorageSlotTop100BySlotsServiceListResponses[keyof FctStorageSlotTop100BySlotsServiceListResponses]; +export type IntTransactionCallFrameOpcodeResourceGasServiceListError = + IntTransactionCallFrameOpcodeResourceGasServiceListErrors[keyof IntTransactionCallFrameOpcodeResourceGasServiceListErrors]; -export type FctStorageSlotTop100BySlotsServiceGetData = { - body?: never; - path: { - /** - * Rank by active slots (1=highest), based on raw state - */ - rank: number; - }; - query?: never; - url: '/api/v1/fct_storage_slot_top_100_by_slots/{rank}'; +export type IntTransactionCallFrameOpcodeResourceGasServiceListResponses = { + /** + * OK + */ + 200: ListIntTransactionCallFrameOpcodeResourceGasResponse; }; -export type FctStorageSlotTop100BySlotsServiceGetErrors = { +export type IntTransactionCallFrameOpcodeResourceGasServiceListResponse = + IntTransactionCallFrameOpcodeResourceGasServiceListResponses[keyof IntTransactionCallFrameOpcodeResourceGasServiceListResponses]; + +export type IntTransactionCallFrameOpcodeResourceGasServiceGetData = { + body?: never; + path: { /** - * Default error response + * The block number containing the transaction */ - default: Status; + block_number: number; + }; + query?: never; + url: '/api/v1/int_transaction_call_frame_opcode_resource_gas/{block_number}'; }; -export type FctStorageSlotTop100BySlotsServiceGetError = FctStorageSlotTop100BySlotsServiceGetErrors[keyof FctStorageSlotTop100BySlotsServiceGetErrors]; - -export type FctStorageSlotTop100BySlotsServiceGetResponses = { - /** - * OK - */ - 200: GetFctStorageSlotTop100BySlotsResponse; +export type IntTransactionCallFrameOpcodeResourceGasServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -export type FctStorageSlotTop100BySlotsServiceGetResponse = FctStorageSlotTop100BySlotsServiceGetResponses[keyof FctStorageSlotTop100BySlotsServiceGetResponses]; +export type IntTransactionCallFrameOpcodeResourceGasServiceGetError = + IntTransactionCallFrameOpcodeResourceGasServiceGetErrors[keyof IntTransactionCallFrameOpcodeResourceGasServiceGetErrors]; -export type FctSyncCommitteeParticipationByValidatorServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Index of the validator (filter: eq) - */ - validator_index_eq?: number; - /** - * Index of the validator (filter: ne) - */ - validator_index_ne?: number; - /** - * Index of the validator (filter: lt) - */ - validator_index_lt?: number; - /** - * Index of the validator (filter: lte) - */ - validator_index_lte?: number; - /** - * Index of the validator (filter: gt) - */ - validator_index_gt?: number; - /** - * Index of the validator (filter: gte) - */ - validator_index_gte?: number; - /** - * Index of the validator (filter: between_min) - */ - validator_index_between_min?: number; - /** - * Index of the validator (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * Index of the validator (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * Index of the validator (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * The start time of the slot (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The start time of the slot (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The start time of the slot (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The start time of the slot (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The start time of the slot (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The start time of the slot (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The start time of the slot (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The start time of the slot (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The start time of the slot (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The start time of the slot (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Whether the validator participated in sync committee for this slot (filter: eq) - */ - participated_eq?: boolean; - /** - * Whether the validator participated in sync committee for this slot (filter: ne) - */ - participated_ne?: boolean; - /** - * The maximum number of fct_sync_committee_participation_by_validator to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctSyncCommitteeParticipationByValidator` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_sync_committee_participation_by_validator'; +export type IntTransactionCallFrameOpcodeResourceGasServiceGetResponses = { + /** + * OK + */ + 200: GetIntTransactionCallFrameOpcodeResourceGasResponse; }; -export type FctSyncCommitteeParticipationByValidatorServiceListErrors = { +export type IntTransactionCallFrameOpcodeResourceGasServiceGetResponse = + IntTransactionCallFrameOpcodeResourceGasServiceGetResponses[keyof IntTransactionCallFrameOpcodeResourceGasServiceGetResponses]; + +export type IntTransactionOpcodeGasServiceListData = { + body?: never; + path?: never; + query?: { /** - * Default error response + * The block number containing the transaction (filter: eq) */ - default: Status; -}; - -export type FctSyncCommitteeParticipationByValidatorServiceListError = FctSyncCommitteeParticipationByValidatorServiceListErrors[keyof FctSyncCommitteeParticipationByValidatorServiceListErrors]; - -export type FctSyncCommitteeParticipationByValidatorServiceListResponses = { + block_number_eq?: number; /** - * OK + * The block number containing the transaction (filter: ne) */ - 200: ListFctSyncCommitteeParticipationByValidatorResponse; -}; - -export type FctSyncCommitteeParticipationByValidatorServiceListResponse = FctSyncCommitteeParticipationByValidatorServiceListResponses[keyof FctSyncCommitteeParticipationByValidatorServiceListResponses]; - -export type FctSyncCommitteeParticipationByValidatorServiceGetData = { - body?: never; - path: { - /** - * Index of the validator - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/fct_sync_committee_participation_by_validator/{validator_index}'; -}; - -export type FctSyncCommitteeParticipationByValidatorServiceGetErrors = { + block_number_ne?: number; /** - * Default error response + * The block number containing the transaction (filter: lt) */ - default: Status; -}; - -export type FctSyncCommitteeParticipationByValidatorServiceGetError = FctSyncCommitteeParticipationByValidatorServiceGetErrors[keyof FctSyncCommitteeParticipationByValidatorServiceGetErrors]; - -export type FctSyncCommitteeParticipationByValidatorServiceGetResponses = { + block_number_lt?: number; /** - * OK + * The block number containing the transaction (filter: lte) */ - 200: GetFctSyncCommitteeParticipationByValidatorResponse; -}; - -export type FctSyncCommitteeParticipationByValidatorServiceGetResponse = FctSyncCommitteeParticipationByValidatorServiceGetResponses[keyof FctSyncCommitteeParticipationByValidatorServiceGetResponses]; - -export type FctSyncCommitteeParticipationByValidatorDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Index of the validator (filter: eq) - */ - validator_index_eq?: number; - /** - * Index of the validator (filter: ne) - */ - validator_index_ne?: number; - /** - * Index of the validator (filter: lt) - */ - validator_index_lt?: number; - /** - * Index of the validator (filter: lte) - */ - validator_index_lte?: number; - /** - * Index of the validator (filter: gt) - */ - validator_index_gt?: number; - /** - * Index of the validator (filter: gte) - */ - validator_index_gte?: number; - /** - * Index of the validator (filter: between_min) - */ - validator_index_between_min?: number; - /** - * Index of the validator (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * Index of the validator (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * Index of the validator (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * The start of the day for this aggregation (filter: eq) - */ - day_start_date_eq?: string; - /** - * The start of the day for this aggregation (filter: ne) - */ - day_start_date_ne?: string; - /** - * The start of the day for this aggregation (filter: contains) - */ - day_start_date_contains?: string; - /** - * The start of the day for this aggregation (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * The start of the day for this aggregation (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * The start of the day for this aggregation (filter: like) - */ - day_start_date_like?: string; - /** - * The start of the day for this aggregation (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * The start of the day for this aggregation (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * The start of the day for this aggregation (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total sync committee slots for the validator in this day (filter: eq) - */ - total_slots_eq?: number; - /** - * Total sync committee slots for the validator in this day (filter: ne) - */ - total_slots_ne?: number; - /** - * Total sync committee slots for the validator in this day (filter: lt) - */ - total_slots_lt?: number; - /** - * Total sync committee slots for the validator in this day (filter: lte) - */ - total_slots_lte?: number; - /** - * Total sync committee slots for the validator in this day (filter: gt) - */ - total_slots_gt?: number; - /** - * Total sync committee slots for the validator in this day (filter: gte) - */ - total_slots_gte?: number; - /** - * Total sync committee slots for the validator in this day (filter: between_min) - */ - total_slots_between_min?: number; - /** - * Total sync committee slots for the validator in this day (filter: between_max_value) - */ - total_slots_between_max_value?: number; - /** - * Total sync committee slots for the validator in this day (filter: in_values) (comma-separated list) - */ - total_slots_in_values?: string; - /** - * Total sync committee slots for the validator in this day (filter: not_in_values) (comma-separated list) - */ - total_slots_not_in_values?: string; - /** - * Number of slots where validator participated (filter: eq) - */ - participated_count_eq?: number; - /** - * Number of slots where validator participated (filter: ne) - */ - participated_count_ne?: number; - /** - * Number of slots where validator participated (filter: lt) - */ - participated_count_lt?: number; - /** - * Number of slots where validator participated (filter: lte) - */ - participated_count_lte?: number; - /** - * Number of slots where validator participated (filter: gt) - */ - participated_count_gt?: number; - /** - * Number of slots where validator participated (filter: gte) - */ - participated_count_gte?: number; - /** - * Number of slots where validator participated (filter: between_min) - */ - participated_count_between_min?: number; - /** - * Number of slots where validator participated (filter: between_max_value) - */ - participated_count_between_max_value?: number; - /** - * Number of slots where validator participated (filter: in_values) (comma-separated list) - */ - participated_count_in_values?: string; - /** - * Number of slots where validator participated (filter: not_in_values) (comma-separated list) - */ - participated_count_not_in_values?: string; - /** - * Number of slots where validator missed (filter: eq) - */ - missed_count_eq?: number; - /** - * Number of slots where validator missed (filter: ne) - */ - missed_count_ne?: number; - /** - * Number of slots where validator missed (filter: lt) - */ - missed_count_lt?: number; - /** - * Number of slots where validator missed (filter: lte) - */ - missed_count_lte?: number; - /** - * Number of slots where validator missed (filter: gt) - */ - missed_count_gt?: number; - /** - * Number of slots where validator missed (filter: gte) - */ - missed_count_gte?: number; - /** - * Number of slots where validator missed (filter: between_min) - */ - missed_count_between_min?: number; - /** - * Number of slots where validator missed (filter: between_max_value) - */ - missed_count_between_max_value?: number; - /** - * Number of slots where validator missed (filter: in_values) (comma-separated list) - */ - missed_count_in_values?: string; - /** - * Number of slots where validator missed (filter: not_in_values) (comma-separated list) - */ - missed_count_not_in_values?: string; - /** - * The maximum number of fct_sync_committee_participation_by_validator_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctSyncCommitteeParticipationByValidatorDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_sync_committee_participation_by_validator_daily'; -}; - -export type FctSyncCommitteeParticipationByValidatorDailyServiceListErrors = { + block_number_lte?: number; /** - * Default error response + * The block number containing the transaction (filter: gt) */ - default: Status; -}; - -export type FctSyncCommitteeParticipationByValidatorDailyServiceListError = FctSyncCommitteeParticipationByValidatorDailyServiceListErrors[keyof FctSyncCommitteeParticipationByValidatorDailyServiceListErrors]; - -export type FctSyncCommitteeParticipationByValidatorDailyServiceListResponses = { + block_number_gt?: number; /** - * OK + * The block number containing the transaction (filter: gte) */ - 200: ListFctSyncCommitteeParticipationByValidatorDailyResponse; -}; - -export type FctSyncCommitteeParticipationByValidatorDailyServiceListResponse = FctSyncCommitteeParticipationByValidatorDailyServiceListResponses[keyof FctSyncCommitteeParticipationByValidatorDailyServiceListResponses]; - -export type FctSyncCommitteeParticipationByValidatorDailyServiceGetData = { - body?: never; - path: { - /** - * Index of the validator - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/fct_sync_committee_participation_by_validator_daily/{validator_index}'; -}; - -export type FctSyncCommitteeParticipationByValidatorDailyServiceGetErrors = { + block_number_gte?: number; /** - * Default error response + * The block number containing the transaction (filter: between_min) */ - default: Status; -}; - -export type FctSyncCommitteeParticipationByValidatorDailyServiceGetError = FctSyncCommitteeParticipationByValidatorDailyServiceGetErrors[keyof FctSyncCommitteeParticipationByValidatorDailyServiceGetErrors]; - -export type FctSyncCommitteeParticipationByValidatorDailyServiceGetResponses = { + block_number_between_min?: number; /** - * OK + * The block number containing the transaction (filter: between_max_value) */ - 200: GetFctSyncCommitteeParticipationByValidatorDailyResponse; -}; - -export type FctSyncCommitteeParticipationByValidatorDailyServiceGetResponse = FctSyncCommitteeParticipationByValidatorDailyServiceGetResponses[keyof FctSyncCommitteeParticipationByValidatorDailyServiceGetResponses]; - -export type FctSyncCommitteeParticipationByValidatorHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Index of the validator (filter: eq) - */ - validator_index_eq?: number; - /** - * Index of the validator (filter: ne) - */ - validator_index_ne?: number; - /** - * Index of the validator (filter: lt) - */ - validator_index_lt?: number; - /** - * Index of the validator (filter: lte) - */ - validator_index_lte?: number; - /** - * Index of the validator (filter: gt) - */ - validator_index_gt?: number; - /** - * Index of the validator (filter: gte) - */ - validator_index_gte?: number; - /** - * Index of the validator (filter: between_min) - */ - validator_index_between_min?: number; - /** - * Index of the validator (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * Index of the validator (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * Index of the validator (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * The start of the hour for this aggregation (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * The start of the hour for this aggregation (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * The start of the hour for this aggregation (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * The start of the hour for this aggregation (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * The start of the hour for this aggregation (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * The start of the hour for this aggregation (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * The start of the hour for this aggregation (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * The start of the hour for this aggregation (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * The start of the hour for this aggregation (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * The start of the hour for this aggregation (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total sync committee slots for the validator in this hour (filter: eq) - */ - total_slots_eq?: number; - /** - * Total sync committee slots for the validator in this hour (filter: ne) - */ - total_slots_ne?: number; - /** - * Total sync committee slots for the validator in this hour (filter: lt) - */ - total_slots_lt?: number; - /** - * Total sync committee slots for the validator in this hour (filter: lte) - */ - total_slots_lte?: number; - /** - * Total sync committee slots for the validator in this hour (filter: gt) - */ - total_slots_gt?: number; - /** - * Total sync committee slots for the validator in this hour (filter: gte) - */ - total_slots_gte?: number; - /** - * Total sync committee slots for the validator in this hour (filter: between_min) - */ - total_slots_between_min?: number; - /** - * Total sync committee slots for the validator in this hour (filter: between_max_value) - */ - total_slots_between_max_value?: number; - /** - * Total sync committee slots for the validator in this hour (filter: in_values) (comma-separated list) - */ - total_slots_in_values?: string; - /** - * Total sync committee slots for the validator in this hour (filter: not_in_values) (comma-separated list) - */ - total_slots_not_in_values?: string; - /** - * Number of slots where validator participated (filter: eq) - */ - participated_count_eq?: number; - /** - * Number of slots where validator participated (filter: ne) - */ - participated_count_ne?: number; - /** - * Number of slots where validator participated (filter: lt) - */ - participated_count_lt?: number; - /** - * Number of slots where validator participated (filter: lte) - */ - participated_count_lte?: number; - /** - * Number of slots where validator participated (filter: gt) - */ - participated_count_gt?: number; - /** - * Number of slots where validator participated (filter: gte) - */ - participated_count_gte?: number; - /** - * Number of slots where validator participated (filter: between_min) - */ - participated_count_between_min?: number; - /** - * Number of slots where validator participated (filter: between_max_value) - */ - participated_count_between_max_value?: number; - /** - * Number of slots where validator participated (filter: in_values) (comma-separated list) - */ - participated_count_in_values?: string; - /** - * Number of slots where validator participated (filter: not_in_values) (comma-separated list) - */ - participated_count_not_in_values?: string; - /** - * Number of slots where validator missed (filter: eq) - */ - missed_count_eq?: number; - /** - * Number of slots where validator missed (filter: ne) - */ - missed_count_ne?: number; - /** - * Number of slots where validator missed (filter: lt) - */ - missed_count_lt?: number; - /** - * Number of slots where validator missed (filter: lte) - */ - missed_count_lte?: number; - /** - * Number of slots where validator missed (filter: gt) - */ - missed_count_gt?: number; - /** - * Number of slots where validator missed (filter: gte) - */ - missed_count_gte?: number; - /** - * Number of slots where validator missed (filter: between_min) - */ - missed_count_between_min?: number; - /** - * Number of slots where validator missed (filter: between_max_value) - */ - missed_count_between_max_value?: number; - /** - * Number of slots where validator missed (filter: in_values) (comma-separated list) - */ - missed_count_in_values?: string; - /** - * Number of slots where validator missed (filter: not_in_values) (comma-separated list) - */ - missed_count_not_in_values?: string; - /** - * The maximum number of fct_sync_committee_participation_by_validator_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctSyncCommitteeParticipationByValidatorHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_sync_committee_participation_by_validator_hourly'; -}; - -export type FctSyncCommitteeParticipationByValidatorHourlyServiceListErrors = { + block_number_between_max_value?: number; /** - * Default error response + * The block number containing the transaction (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctSyncCommitteeParticipationByValidatorHourlyServiceListError = FctSyncCommitteeParticipationByValidatorHourlyServiceListErrors[keyof FctSyncCommitteeParticipationByValidatorHourlyServiceListErrors]; - -export type FctSyncCommitteeParticipationByValidatorHourlyServiceListResponses = { + block_number_in_values?: string; /** - * OK + * The block number containing the transaction (filter: not_in_values) (comma-separated list) */ - 200: ListFctSyncCommitteeParticipationByValidatorHourlyResponse; -}; - -export type FctSyncCommitteeParticipationByValidatorHourlyServiceListResponse = FctSyncCommitteeParticipationByValidatorHourlyServiceListResponses[keyof FctSyncCommitteeParticipationByValidatorHourlyServiceListResponses]; - -export type FctSyncCommitteeParticipationByValidatorHourlyServiceGetData = { - body?: never; - path: { - /** - * Index of the validator - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/fct_sync_committee_participation_by_validator_hourly/{validator_index}'; -}; - -export type FctSyncCommitteeParticipationByValidatorHourlyServiceGetErrors = { + block_number_not_in_values?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: eq) */ - default: Status; -}; - -export type FctSyncCommitteeParticipationByValidatorHourlyServiceGetError = FctSyncCommitteeParticipationByValidatorHourlyServiceGetErrors[keyof FctSyncCommitteeParticipationByValidatorHourlyServiceGetErrors]; - -export type FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponses = { + transaction_hash_eq?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: ne) */ - 200: GetFctSyncCommitteeParticipationByValidatorHourlyResponse; -}; - -export type FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse = FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponses[keyof FctSyncCommitteeParticipationByValidatorHourlyServiceGetResponses]; - -export type FctTokenContractStorageStateByBlockDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Token standard: erc20 or erc721 (filter: eq) - */ - token_standard_eq?: string; - /** - * Token standard: erc20 or erc721 (filter: ne) - */ - token_standard_ne?: string; - /** - * Token standard: erc20 or erc721 (filter: contains) - */ - token_standard_contains?: string; - /** - * Token standard: erc20 or erc721 (filter: starts_with) - */ - token_standard_starts_with?: string; - /** - * Token standard: erc20 or erc721 (filter: ends_with) - */ - token_standard_ends_with?: string; - /** - * Token standard: erc20 or erc721 (filter: like) - */ - token_standard_like?: string; - /** - * Token standard: erc20 or erc721 (filter: not_like) - */ - token_standard_not_like?: string; - /** - * Token standard: erc20 or erc721 (filter: in_values) (comma-separated list) - */ - token_standard_in_values?: string; - /** - * Token standard: erc20 or erc721 (filter: not_in_values) (comma-separated list) - */ - token_standard_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative active storage slots owned by contracts of this standard at end of day (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at end of day (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at end of day (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at end of day (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at end of day (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at end of day (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at end of day (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at end of day (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at end of day (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative active storage slots owned by contracts of this standard at end of day (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * The maximum number of fct_token_contract_storage_state_by_block_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctTokenContractStorageStateByBlockDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_token_contract_storage_state_by_block_daily'; -}; - -export type FctTokenContractStorageStateByBlockDailyServiceListErrors = { + transaction_hash_ne?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: contains) */ - default: Status; -}; - -export type FctTokenContractStorageStateByBlockDailyServiceListError = FctTokenContractStorageStateByBlockDailyServiceListErrors[keyof FctTokenContractStorageStateByBlockDailyServiceListErrors]; - -export type FctTokenContractStorageStateByBlockDailyServiceListResponses = { + transaction_hash_contains?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: starts_with) */ - 200: ListFctTokenContractStorageStateByBlockDailyResponse; -}; - -export type FctTokenContractStorageStateByBlockDailyServiceListResponse = FctTokenContractStorageStateByBlockDailyServiceListResponses[keyof FctTokenContractStorageStateByBlockDailyServiceListResponses]; - -export type FctTokenContractStorageStateByBlockDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_token_contract_storage_state_by_block_daily/{day_start_date}'; -}; - -export type FctTokenContractStorageStateByBlockDailyServiceGetErrors = { + transaction_hash_starts_with?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: ends_with) */ - default: Status; -}; - -export type FctTokenContractStorageStateByBlockDailyServiceGetError = FctTokenContractStorageStateByBlockDailyServiceGetErrors[keyof FctTokenContractStorageStateByBlockDailyServiceGetErrors]; - -export type FctTokenContractStorageStateByBlockDailyServiceGetResponses = { + transaction_hash_ends_with?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: like) */ - 200: GetFctTokenContractStorageStateByBlockDailyResponse; -}; - -export type FctTokenContractStorageStateByBlockDailyServiceGetResponse = FctTokenContractStorageStateByBlockDailyServiceGetResponses[keyof FctTokenContractStorageStateByBlockDailyServiceGetResponses]; - -export type FctValidatorBalanceServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The index of the validator (filter: eq) - */ - validator_index_eq?: number; - /** - * The index of the validator (filter: ne) - */ - validator_index_ne?: number; - /** - * The index of the validator (filter: lt) - */ - validator_index_lt?: number; - /** - * The index of the validator (filter: lte) - */ - validator_index_lte?: number; - /** - * The index of the validator (filter: gt) - */ - validator_index_gt?: number; - /** - * The index of the validator (filter: gte) - */ - validator_index_gte?: number; - /** - * The index of the validator (filter: between_min) - */ - validator_index_between_min?: number; - /** - * The index of the validator (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * The index of the validator (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * The index of the validator (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * The start time of the epoch (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The start time of the epoch (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The start time of the epoch (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The start time of the epoch (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The start time of the epoch (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The start time of the epoch (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The start time of the epoch (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The start time of the epoch (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The start time of the epoch (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The start time of the epoch (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The epoch number (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * Validator balance at this epoch in Gwei (filter: eq) - */ - balance_eq?: number; - /** - * Validator balance at this epoch in Gwei (filter: ne) - */ - balance_ne?: number; - /** - * Validator balance at this epoch in Gwei (filter: lt) - */ - balance_lt?: number; - /** - * Validator balance at this epoch in Gwei (filter: lte) - */ - balance_lte?: number; - /** - * Validator balance at this epoch in Gwei (filter: gt) - */ - balance_gt?: number; - /** - * Validator balance at this epoch in Gwei (filter: gte) - */ - balance_gte?: number; - /** - * Validator balance at this epoch in Gwei (filter: between_min) - */ - balance_between_min?: number; - /** - * Validator balance at this epoch in Gwei (filter: between_max_value) - */ - balance_between_max_value?: number; - /** - * Validator balance at this epoch in Gwei (filter: in_values) (comma-separated list) - */ - balance_in_values?: string; - /** - * Validator balance at this epoch in Gwei (filter: not_in_values) (comma-separated list) - */ - balance_not_in_values?: string; - /** - * Effective balance at this epoch in Gwei (filter: eq) - */ - effective_balance_eq?: number; - /** - * Effective balance at this epoch in Gwei (filter: ne) - */ - effective_balance_ne?: number; - /** - * Effective balance at this epoch in Gwei (filter: lt) - */ - effective_balance_lt?: number; - /** - * Effective balance at this epoch in Gwei (filter: lte) - */ - effective_balance_lte?: number; - /** - * Effective balance at this epoch in Gwei (filter: gt) - */ - effective_balance_gt?: number; - /** - * Effective balance at this epoch in Gwei (filter: gte) - */ - effective_balance_gte?: number; - /** - * Effective balance at this epoch in Gwei (filter: between_min) - */ - effective_balance_between_min?: number; - /** - * Effective balance at this epoch in Gwei (filter: between_max_value) - */ - effective_balance_between_max_value?: number; - /** - * Effective balance at this epoch in Gwei (filter: in_values) (comma-separated list) - */ - effective_balance_in_values?: string; - /** - * Effective balance at this epoch in Gwei (filter: not_in_values) (comma-separated list) - */ - effective_balance_not_in_values?: string; - /** - * Validator status at this epoch (filter: eq) - */ - status_eq?: string; - /** - * Validator status at this epoch (filter: ne) - */ - status_ne?: string; - /** - * Validator status at this epoch (filter: contains) - */ - status_contains?: string; - /** - * Validator status at this epoch (filter: starts_with) - */ - status_starts_with?: string; - /** - * Validator status at this epoch (filter: ends_with) - */ - status_ends_with?: string; - /** - * Validator status at this epoch (filter: like) - */ - status_like?: string; - /** - * Validator status at this epoch (filter: not_like) - */ - status_not_like?: string; - /** - * Validator status at this epoch (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Validator status at this epoch (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Whether the validator was slashed (as of this epoch) (filter: eq) - */ - slashed_eq?: boolean; - /** - * Whether the validator was slashed (as of this epoch) (filter: ne) - */ - slashed_ne?: boolean; - /** - * The maximum number of fct_validator_balance to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctValidatorBalance` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_validator_balance'; -}; - -export type FctValidatorBalanceServiceListErrors = { + transaction_hash_like?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: not_like) */ - default: Status; -}; - -export type FctValidatorBalanceServiceListError = FctValidatorBalanceServiceListErrors[keyof FctValidatorBalanceServiceListErrors]; - -export type FctValidatorBalanceServiceListResponses = { + transaction_hash_not_like?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) */ - 200: ListFctValidatorBalanceResponse; -}; - -export type FctValidatorBalanceServiceListResponse = FctValidatorBalanceServiceListResponses[keyof FctValidatorBalanceServiceListResponses]; - -export type FctValidatorBalanceServiceGetData = { - body?: never; - path: { - /** - * The index of the validator - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/fct_validator_balance/{validator_index}'; -}; - -export type FctValidatorBalanceServiceGetErrors = { + transaction_hash_in_values?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type FctValidatorBalanceServiceGetError = FctValidatorBalanceServiceGetErrors[keyof FctValidatorBalanceServiceGetErrors]; - -export type FctValidatorBalanceServiceGetResponses = { + transaction_hash_not_in_values?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: eq) */ - 200: GetFctValidatorBalanceResponse; -}; - -export type FctValidatorBalanceServiceGetResponse = FctValidatorBalanceServiceGetResponses[keyof FctValidatorBalanceServiceGetResponses]; - -export type FctValidatorBalanceDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The index of the validator (filter: eq) - */ - validator_index_eq?: number; - /** - * The index of the validator (filter: ne) - */ - validator_index_ne?: number; - /** - * The index of the validator (filter: lt) - */ - validator_index_lt?: number; - /** - * The index of the validator (filter: lte) - */ - validator_index_lte?: number; - /** - * The index of the validator (filter: gt) - */ - validator_index_gt?: number; - /** - * The index of the validator (filter: gte) - */ - validator_index_gte?: number; - /** - * The index of the validator (filter: between_min) - */ - validator_index_between_min?: number; - /** - * The index of the validator (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * The index of the validator (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * The index of the validator (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * The start of the day for this aggregation (filter: eq) - */ - day_start_date_eq?: string; - /** - * The start of the day for this aggregation (filter: ne) - */ - day_start_date_ne?: string; - /** - * The start of the day for this aggregation (filter: contains) - */ - day_start_date_contains?: string; - /** - * The start of the day for this aggregation (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * The start of the day for this aggregation (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * The start of the day for this aggregation (filter: like) - */ - day_start_date_like?: string; - /** - * The start of the day for this aggregation (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * The start of the day for this aggregation (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * The start of the day for this aggregation (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * First epoch in this day for this validator (filter: eq) - */ - start_epoch_eq?: number; - /** - * First epoch in this day for this validator (filter: ne) - */ - start_epoch_ne?: number; - /** - * First epoch in this day for this validator (filter: lt) - */ - start_epoch_lt?: number; - /** - * First epoch in this day for this validator (filter: lte) - */ - start_epoch_lte?: number; - /** - * First epoch in this day for this validator (filter: gt) - */ - start_epoch_gt?: number; - /** - * First epoch in this day for this validator (filter: gte) - */ - start_epoch_gte?: number; - /** - * First epoch in this day for this validator (filter: between_min) - */ - start_epoch_between_min?: number; - /** - * First epoch in this day for this validator (filter: between_max_value) - */ - start_epoch_between_max_value?: number; - /** - * First epoch in this day for this validator (filter: in_values) (comma-separated list) - */ - start_epoch_in_values?: string; - /** - * First epoch in this day for this validator (filter: not_in_values) (comma-separated list) - */ - start_epoch_not_in_values?: string; - /** - * Last epoch in this day for this validator (filter: eq) - */ - end_epoch_eq?: number; - /** - * Last epoch in this day for this validator (filter: ne) - */ - end_epoch_ne?: number; - /** - * Last epoch in this day for this validator (filter: lt) - */ - end_epoch_lt?: number; - /** - * Last epoch in this day for this validator (filter: lte) - */ - end_epoch_lte?: number; - /** - * Last epoch in this day for this validator (filter: gt) - */ - end_epoch_gt?: number; - /** - * Last epoch in this day for this validator (filter: gte) - */ - end_epoch_gte?: number; - /** - * Last epoch in this day for this validator (filter: between_min) - */ - end_epoch_between_min?: number; - /** - * Last epoch in this day for this validator (filter: between_max_value) - */ - end_epoch_between_max_value?: number; - /** - * Last epoch in this day for this validator (filter: in_values) (comma-separated list) - */ - end_epoch_in_values?: string; - /** - * Last epoch in this day for this validator (filter: not_in_values) (comma-separated list) - */ - end_epoch_not_in_values?: string; - /** - * Balance at start of day (first epoch) in Gwei (filter: eq) - */ - start_balance_eq?: number; - /** - * Balance at start of day (first epoch) in Gwei (filter: ne) - */ - start_balance_ne?: number; - /** - * Balance at start of day (first epoch) in Gwei (filter: lt) - */ - start_balance_lt?: number; - /** - * Balance at start of day (first epoch) in Gwei (filter: lte) - */ - start_balance_lte?: number; - /** - * Balance at start of day (first epoch) in Gwei (filter: gt) - */ - start_balance_gt?: number; - /** - * Balance at start of day (first epoch) in Gwei (filter: gte) - */ - start_balance_gte?: number; - /** - * Balance at start of day (first epoch) in Gwei (filter: between_min) - */ - start_balance_between_min?: number; - /** - * Balance at start of day (first epoch) in Gwei (filter: between_max_value) - */ - start_balance_between_max_value?: number; - /** - * Balance at start of day (first epoch) in Gwei (filter: in_values) (comma-separated list) - */ - start_balance_in_values?: string; - /** - * Balance at start of day (first epoch) in Gwei (filter: not_in_values) (comma-separated list) - */ - start_balance_not_in_values?: string; - /** - * Balance at end of day (last epoch) in Gwei (filter: eq) - */ - end_balance_eq?: number; - /** - * Balance at end of day (last epoch) in Gwei (filter: ne) - */ - end_balance_ne?: number; - /** - * Balance at end of day (last epoch) in Gwei (filter: lt) - */ - end_balance_lt?: number; - /** - * Balance at end of day (last epoch) in Gwei (filter: lte) - */ - end_balance_lte?: number; - /** - * Balance at end of day (last epoch) in Gwei (filter: gt) - */ - end_balance_gt?: number; - /** - * Balance at end of day (last epoch) in Gwei (filter: gte) - */ - end_balance_gte?: number; - /** - * Balance at end of day (last epoch) in Gwei (filter: between_min) - */ - end_balance_between_min?: number; - /** - * Balance at end of day (last epoch) in Gwei (filter: between_max_value) - */ - end_balance_between_max_value?: number; - /** - * Balance at end of day (last epoch) in Gwei (filter: in_values) (comma-separated list) - */ - end_balance_in_values?: string; - /** - * Balance at end of day (last epoch) in Gwei (filter: not_in_values) (comma-separated list) - */ - end_balance_not_in_values?: string; - /** - * Minimum balance during the day in Gwei (filter: eq) - */ - min_balance_eq?: number; - /** - * Minimum balance during the day in Gwei (filter: ne) - */ - min_balance_ne?: number; - /** - * Minimum balance during the day in Gwei (filter: lt) - */ - min_balance_lt?: number; - /** - * Minimum balance during the day in Gwei (filter: lte) - */ - min_balance_lte?: number; - /** - * Minimum balance during the day in Gwei (filter: gt) - */ - min_balance_gt?: number; - /** - * Minimum balance during the day in Gwei (filter: gte) - */ - min_balance_gte?: number; - /** - * Minimum balance during the day in Gwei (filter: between_min) - */ - min_balance_between_min?: number; - /** - * Minimum balance during the day in Gwei (filter: between_max_value) - */ - min_balance_between_max_value?: number; - /** - * Minimum balance during the day in Gwei (filter: in_values) (comma-separated list) - */ - min_balance_in_values?: string; - /** - * Minimum balance during the day in Gwei (filter: not_in_values) (comma-separated list) - */ - min_balance_not_in_values?: string; - /** - * Maximum balance during the day in Gwei (filter: eq) - */ - max_balance_eq?: number; - /** - * Maximum balance during the day in Gwei (filter: ne) - */ - max_balance_ne?: number; - /** - * Maximum balance during the day in Gwei (filter: lt) - */ - max_balance_lt?: number; - /** - * Maximum balance during the day in Gwei (filter: lte) - */ - max_balance_lte?: number; - /** - * Maximum balance during the day in Gwei (filter: gt) - */ - max_balance_gt?: number; - /** - * Maximum balance during the day in Gwei (filter: gte) - */ - max_balance_gte?: number; - /** - * Maximum balance during the day in Gwei (filter: between_min) - */ - max_balance_between_min?: number; - /** - * Maximum balance during the day in Gwei (filter: between_max_value) - */ - max_balance_between_max_value?: number; - /** - * Maximum balance during the day in Gwei (filter: in_values) (comma-separated list) - */ - max_balance_in_values?: string; - /** - * Maximum balance during the day in Gwei (filter: not_in_values) (comma-separated list) - */ - max_balance_not_in_values?: string; - /** - * Effective balance at end of day in Gwei (filter: eq) - */ - effective_balance_eq?: number; - /** - * Effective balance at end of day in Gwei (filter: ne) - */ - effective_balance_ne?: number; - /** - * Effective balance at end of day in Gwei (filter: lt) - */ - effective_balance_lt?: number; - /** - * Effective balance at end of day in Gwei (filter: lte) - */ - effective_balance_lte?: number; - /** - * Effective balance at end of day in Gwei (filter: gt) - */ - effective_balance_gt?: number; - /** - * Effective balance at end of day in Gwei (filter: gte) - */ - effective_balance_gte?: number; - /** - * Effective balance at end of day in Gwei (filter: between_min) - */ - effective_balance_between_min?: number; - /** - * Effective balance at end of day in Gwei (filter: between_max_value) - */ - effective_balance_between_max_value?: number; - /** - * Effective balance at end of day in Gwei (filter: in_values) (comma-separated list) - */ - effective_balance_in_values?: string; - /** - * Effective balance at end of day in Gwei (filter: not_in_values) (comma-separated list) - */ - effective_balance_not_in_values?: string; - /** - * Validator status at end of day (filter: eq) - */ - status_eq?: string; - /** - * Validator status at end of day (filter: ne) - */ - status_ne?: string; - /** - * Validator status at end of day (filter: contains) - */ - status_contains?: string; - /** - * Validator status at end of day (filter: starts_with) - */ - status_starts_with?: string; - /** - * Validator status at end of day (filter: ends_with) - */ - status_ends_with?: string; - /** - * Validator status at end of day (filter: like) - */ - status_like?: string; - /** - * Validator status at end of day (filter: not_like) - */ - status_not_like?: string; - /** - * Validator status at end of day (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Validator status at end of day (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Whether the validator was slashed (as of end of day) (filter: eq) - */ - slashed_eq?: boolean; - /** - * Whether the validator was slashed (as of end of day) (filter: ne) - */ - slashed_ne?: boolean; - /** - * The maximum number of fct_validator_balance_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctValidatorBalanceDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_validator_balance_daily'; -}; - -export type FctValidatorBalanceDailyServiceListErrors = { + opcode_eq?: string; /** - * Default error response + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ne) */ - default: Status; -}; - -export type FctValidatorBalanceDailyServiceListError = FctValidatorBalanceDailyServiceListErrors[keyof FctValidatorBalanceDailyServiceListErrors]; - -export type FctValidatorBalanceDailyServiceListResponses = { + opcode_ne?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: contains) */ - 200: ListFctValidatorBalanceDailyResponse; -}; - -export type FctValidatorBalanceDailyServiceListResponse = FctValidatorBalanceDailyServiceListResponses[keyof FctValidatorBalanceDailyServiceListResponses]; - -export type FctValidatorBalanceDailyServiceGetData = { - body?: never; - path: { - /** - * The index of the validator - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/fct_validator_balance_daily/{validator_index}'; -}; - -export type FctValidatorBalanceDailyServiceGetErrors = { + opcode_contains?: string; /** - * Default error response + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: starts_with) */ - default: Status; -}; - -export type FctValidatorBalanceDailyServiceGetError = FctValidatorBalanceDailyServiceGetErrors[keyof FctValidatorBalanceDailyServiceGetErrors]; - -export type FctValidatorBalanceDailyServiceGetResponses = { + opcode_starts_with?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ends_with) */ - 200: GetFctValidatorBalanceDailyResponse; -}; - -export type FctValidatorBalanceDailyServiceGetResponse = FctValidatorBalanceDailyServiceGetResponses[keyof FctValidatorBalanceDailyServiceGetResponses]; - -export type FctValidatorBalanceHourlyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The index of the validator (filter: eq) - */ - validator_index_eq?: number; - /** - * The index of the validator (filter: ne) - */ - validator_index_ne?: number; - /** - * The index of the validator (filter: lt) - */ - validator_index_lt?: number; - /** - * The index of the validator (filter: lte) - */ - validator_index_lte?: number; - /** - * The index of the validator (filter: gt) - */ - validator_index_gt?: number; - /** - * The index of the validator (filter: gte) - */ - validator_index_gte?: number; - /** - * The index of the validator (filter: between_min) - */ - validator_index_between_min?: number; - /** - * The index of the validator (filter: between_max_value) - */ - validator_index_between_max_value?: number; - /** - * The index of the validator (filter: in_values) (comma-separated list) - */ - validator_index_in_values?: string; - /** - * The index of the validator (filter: not_in_values) (comma-separated list) - */ - validator_index_not_in_values?: string; - /** - * The start of the hour for this aggregation (filter: eq) - */ - hour_start_date_time_eq?: number; - /** - * The start of the hour for this aggregation (filter: ne) - */ - hour_start_date_time_ne?: number; - /** - * The start of the hour for this aggregation (filter: lt) - */ - hour_start_date_time_lt?: number; - /** - * The start of the hour for this aggregation (filter: lte) - */ - hour_start_date_time_lte?: number; - /** - * The start of the hour for this aggregation (filter: gt) - */ - hour_start_date_time_gt?: number; - /** - * The start of the hour for this aggregation (filter: gte) - */ - hour_start_date_time_gte?: number; - /** - * The start of the hour for this aggregation (filter: between_min) - */ - hour_start_date_time_between_min?: number; - /** - * The start of the hour for this aggregation (filter: between_max_value) - */ - hour_start_date_time_between_max_value?: number; - /** - * The start of the hour for this aggregation (filter: in_values) (comma-separated list) - */ - hour_start_date_time_in_values?: string; - /** - * The start of the hour for this aggregation (filter: not_in_values) (comma-separated list) - */ - hour_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * First epoch in this hour for this validator (filter: eq) - */ - start_epoch_eq?: number; - /** - * First epoch in this hour for this validator (filter: ne) - */ - start_epoch_ne?: number; - /** - * First epoch in this hour for this validator (filter: lt) - */ - start_epoch_lt?: number; - /** - * First epoch in this hour for this validator (filter: lte) - */ - start_epoch_lte?: number; - /** - * First epoch in this hour for this validator (filter: gt) - */ - start_epoch_gt?: number; - /** - * First epoch in this hour for this validator (filter: gte) - */ - start_epoch_gte?: number; - /** - * First epoch in this hour for this validator (filter: between_min) - */ - start_epoch_between_min?: number; - /** - * First epoch in this hour for this validator (filter: between_max_value) - */ - start_epoch_between_max_value?: number; - /** - * First epoch in this hour for this validator (filter: in_values) (comma-separated list) - */ - start_epoch_in_values?: string; - /** - * First epoch in this hour for this validator (filter: not_in_values) (comma-separated list) - */ - start_epoch_not_in_values?: string; - /** - * Last epoch in this hour for this validator (filter: eq) - */ - end_epoch_eq?: number; - /** - * Last epoch in this hour for this validator (filter: ne) - */ - end_epoch_ne?: number; - /** - * Last epoch in this hour for this validator (filter: lt) - */ - end_epoch_lt?: number; - /** - * Last epoch in this hour for this validator (filter: lte) - */ - end_epoch_lte?: number; - /** - * Last epoch in this hour for this validator (filter: gt) - */ - end_epoch_gt?: number; - /** - * Last epoch in this hour for this validator (filter: gte) - */ - end_epoch_gte?: number; - /** - * Last epoch in this hour for this validator (filter: between_min) - */ - end_epoch_between_min?: number; - /** - * Last epoch in this hour for this validator (filter: between_max_value) - */ - end_epoch_between_max_value?: number; - /** - * Last epoch in this hour for this validator (filter: in_values) (comma-separated list) - */ - end_epoch_in_values?: string; - /** - * Last epoch in this hour for this validator (filter: not_in_values) (comma-separated list) - */ - end_epoch_not_in_values?: string; - /** - * Balance at start of hour (first epoch) in Gwei (filter: eq) - */ - start_balance_eq?: number; - /** - * Balance at start of hour (first epoch) in Gwei (filter: ne) - */ - start_balance_ne?: number; - /** - * Balance at start of hour (first epoch) in Gwei (filter: lt) - */ - start_balance_lt?: number; - /** - * Balance at start of hour (first epoch) in Gwei (filter: lte) - */ - start_balance_lte?: number; - /** - * Balance at start of hour (first epoch) in Gwei (filter: gt) - */ - start_balance_gt?: number; - /** - * Balance at start of hour (first epoch) in Gwei (filter: gte) - */ - start_balance_gte?: number; - /** - * Balance at start of hour (first epoch) in Gwei (filter: between_min) - */ - start_balance_between_min?: number; - /** - * Balance at start of hour (first epoch) in Gwei (filter: between_max_value) - */ - start_balance_between_max_value?: number; - /** - * Balance at start of hour (first epoch) in Gwei (filter: in_values) (comma-separated list) - */ - start_balance_in_values?: string; - /** - * Balance at start of hour (first epoch) in Gwei (filter: not_in_values) (comma-separated list) - */ - start_balance_not_in_values?: string; - /** - * Balance at end of hour (last epoch) in Gwei (filter: eq) - */ - end_balance_eq?: number; - /** - * Balance at end of hour (last epoch) in Gwei (filter: ne) - */ - end_balance_ne?: number; - /** - * Balance at end of hour (last epoch) in Gwei (filter: lt) - */ - end_balance_lt?: number; - /** - * Balance at end of hour (last epoch) in Gwei (filter: lte) - */ - end_balance_lte?: number; - /** - * Balance at end of hour (last epoch) in Gwei (filter: gt) - */ - end_balance_gt?: number; - /** - * Balance at end of hour (last epoch) in Gwei (filter: gte) - */ - end_balance_gte?: number; - /** - * Balance at end of hour (last epoch) in Gwei (filter: between_min) - */ - end_balance_between_min?: number; - /** - * Balance at end of hour (last epoch) in Gwei (filter: between_max_value) - */ - end_balance_between_max_value?: number; - /** - * Balance at end of hour (last epoch) in Gwei (filter: in_values) (comma-separated list) - */ - end_balance_in_values?: string; - /** - * Balance at end of hour (last epoch) in Gwei (filter: not_in_values) (comma-separated list) - */ - end_balance_not_in_values?: string; - /** - * Minimum balance during the hour in Gwei (filter: eq) - */ - min_balance_eq?: number; - /** - * Minimum balance during the hour in Gwei (filter: ne) - */ - min_balance_ne?: number; - /** - * Minimum balance during the hour in Gwei (filter: lt) - */ - min_balance_lt?: number; - /** - * Minimum balance during the hour in Gwei (filter: lte) - */ - min_balance_lte?: number; - /** - * Minimum balance during the hour in Gwei (filter: gt) - */ - min_balance_gt?: number; - /** - * Minimum balance during the hour in Gwei (filter: gte) - */ - min_balance_gte?: number; - /** - * Minimum balance during the hour in Gwei (filter: between_min) - */ - min_balance_between_min?: number; - /** - * Minimum balance during the hour in Gwei (filter: between_max_value) - */ - min_balance_between_max_value?: number; - /** - * Minimum balance during the hour in Gwei (filter: in_values) (comma-separated list) - */ - min_balance_in_values?: string; - /** - * Minimum balance during the hour in Gwei (filter: not_in_values) (comma-separated list) - */ - min_balance_not_in_values?: string; - /** - * Maximum balance during the hour in Gwei (filter: eq) - */ - max_balance_eq?: number; - /** - * Maximum balance during the hour in Gwei (filter: ne) - */ - max_balance_ne?: number; - /** - * Maximum balance during the hour in Gwei (filter: lt) - */ - max_balance_lt?: number; - /** - * Maximum balance during the hour in Gwei (filter: lte) - */ - max_balance_lte?: number; - /** - * Maximum balance during the hour in Gwei (filter: gt) - */ - max_balance_gt?: number; - /** - * Maximum balance during the hour in Gwei (filter: gte) - */ - max_balance_gte?: number; - /** - * Maximum balance during the hour in Gwei (filter: between_min) - */ - max_balance_between_min?: number; - /** - * Maximum balance during the hour in Gwei (filter: between_max_value) - */ - max_balance_between_max_value?: number; - /** - * Maximum balance during the hour in Gwei (filter: in_values) (comma-separated list) - */ - max_balance_in_values?: string; - /** - * Maximum balance during the hour in Gwei (filter: not_in_values) (comma-separated list) - */ - max_balance_not_in_values?: string; - /** - * Effective balance at end of hour in Gwei (filter: eq) - */ - effective_balance_eq?: number; - /** - * Effective balance at end of hour in Gwei (filter: ne) - */ - effective_balance_ne?: number; - /** - * Effective balance at end of hour in Gwei (filter: lt) - */ - effective_balance_lt?: number; - /** - * Effective balance at end of hour in Gwei (filter: lte) - */ - effective_balance_lte?: number; - /** - * Effective balance at end of hour in Gwei (filter: gt) - */ - effective_balance_gt?: number; - /** - * Effective balance at end of hour in Gwei (filter: gte) - */ - effective_balance_gte?: number; - /** - * Effective balance at end of hour in Gwei (filter: between_min) - */ - effective_balance_between_min?: number; - /** - * Effective balance at end of hour in Gwei (filter: between_max_value) - */ - effective_balance_between_max_value?: number; - /** - * Effective balance at end of hour in Gwei (filter: in_values) (comma-separated list) - */ - effective_balance_in_values?: string; - /** - * Effective balance at end of hour in Gwei (filter: not_in_values) (comma-separated list) - */ - effective_balance_not_in_values?: string; - /** - * Validator status at end of hour (filter: eq) - */ - status_eq?: string; - /** - * Validator status at end of hour (filter: ne) - */ - status_ne?: string; - /** - * Validator status at end of hour (filter: contains) - */ - status_contains?: string; - /** - * Validator status at end of hour (filter: starts_with) - */ - status_starts_with?: string; - /** - * Validator status at end of hour (filter: ends_with) - */ - status_ends_with?: string; - /** - * Validator status at end of hour (filter: like) - */ - status_like?: string; - /** - * Validator status at end of hour (filter: not_like) - */ - status_not_like?: string; - /** - * Validator status at end of hour (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Validator status at end of hour (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Whether the validator was slashed (as of end of hour) (filter: eq) - */ - slashed_eq?: boolean; - /** - * Whether the validator was slashed (as of end of hour) (filter: ne) - */ - slashed_ne?: boolean; - /** - * The maximum number of fct_validator_balance_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctValidatorBalanceHourly` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_validator_balance_hourly'; -}; - -export type FctValidatorBalanceHourlyServiceListErrors = { + opcode_ends_with?: string; /** - * Default error response + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: like) */ - default: Status; -}; - -export type FctValidatorBalanceHourlyServiceListError = FctValidatorBalanceHourlyServiceListErrors[keyof FctValidatorBalanceHourlyServiceListErrors]; - -export type FctValidatorBalanceHourlyServiceListResponses = { + opcode_like?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_like) */ - 200: ListFctValidatorBalanceHourlyResponse; -}; - -export type FctValidatorBalanceHourlyServiceListResponse = FctValidatorBalanceHourlyServiceListResponses[keyof FctValidatorBalanceHourlyServiceListResponses]; - -export type FctValidatorBalanceHourlyServiceGetData = { - body?: never; - path: { - /** - * The index of the validator - */ - validator_index: number; - }; - query?: never; - url: '/api/v1/fct_validator_balance_hourly/{validator_index}'; -}; - -export type FctValidatorBalanceHourlyServiceGetErrors = { + opcode_not_like?: string; /** - * Default error response + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type FctValidatorBalanceHourlyServiceGetError = FctValidatorBalanceHourlyServiceGetErrors[keyof FctValidatorBalanceHourlyServiceGetErrors]; - -export type FctValidatorBalanceHourlyServiceGetResponses = { + opcode_in_values?: string; /** - * OK + * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_in_values) (comma-separated list) */ - 200: GetFctValidatorBalanceHourlyResponse; -}; - -export type FctValidatorBalanceHourlyServiceGetResponse = FctValidatorBalanceHourlyServiceGetResponses[keyof FctValidatorBalanceHourlyServiceGetResponses]; - -export type FctValidatorCountByEntityByStatusDailyServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start of the day period (filter: eq) - */ - day_start_date_eq?: string; - /** - * Start of the day period (filter: ne) - */ - day_start_date_ne?: string; - /** - * Start of the day period (filter: contains) - */ - day_start_date_contains?: string; - /** - * Start of the day period (filter: starts_with) - */ - day_start_date_starts_with?: string; - /** - * Start of the day period (filter: ends_with) - */ - day_start_date_ends_with?: string; - /** - * Start of the day period (filter: like) - */ - day_start_date_like?: string; - /** - * Start of the day period (filter: not_like) - */ - day_start_date_not_like?: string; - /** - * Start of the day period (filter: in_values) (comma-separated list) - */ - day_start_date_in_values?: string; - /** - * Start of the day period (filter: not_in_values) (comma-separated list) - */ - day_start_date_not_in_values?: string; - /** - * Entity name from dim_node mapping (filter: eq) - */ - entity_eq?: string; - /** - * Entity name from dim_node mapping (filter: ne) - */ - entity_ne?: string; - /** - * Entity name from dim_node mapping (filter: contains) - */ - entity_contains?: string; - /** - * Entity name from dim_node mapping (filter: starts_with) - */ - entity_starts_with?: string; - /** - * Entity name from dim_node mapping (filter: ends_with) - */ - entity_ends_with?: string; - /** - * Entity name from dim_node mapping (filter: like) - */ - entity_like?: string; - /** - * Entity name from dim_node mapping (filter: not_like) - */ - entity_not_like?: string; - /** - * Entity name from dim_node mapping (filter: in_values) (comma-separated list) - */ - entity_in_values?: string; - /** - * Entity name from dim_node mapping (filter: not_in_values) (comma-separated list) - */ - entity_not_in_values?: string; - /** - * Validator status (active_ongoing, pending_queued, etc) (filter: eq) - */ - status_eq?: string; - /** - * Validator status (active_ongoing, pending_queued, etc) (filter: ne) - */ - status_ne?: string; - /** - * Validator status (active_ongoing, pending_queued, etc) (filter: contains) - */ - status_contains?: string; - /** - * Validator status (active_ongoing, pending_queued, etc) (filter: starts_with) - */ - status_starts_with?: string; - /** - * Validator status (active_ongoing, pending_queued, etc) (filter: ends_with) - */ - status_ends_with?: string; - /** - * Validator status (active_ongoing, pending_queued, etc) (filter: like) - */ - status_like?: string; - /** - * Validator status (active_ongoing, pending_queued, etc) (filter: not_like) - */ - status_not_like?: string; - /** - * Validator status (active_ongoing, pending_queued, etc) (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Validator status (active_ongoing, pending_queued, etc) (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of validators with this status for this entity on this day (filter: eq) - */ - validator_count_eq?: number; - /** - * Number of validators with this status for this entity on this day (filter: ne) - */ - validator_count_ne?: number; - /** - * Number of validators with this status for this entity on this day (filter: lt) - */ - validator_count_lt?: number; - /** - * Number of validators with this status for this entity on this day (filter: lte) - */ - validator_count_lte?: number; - /** - * Number of validators with this status for this entity on this day (filter: gt) - */ - validator_count_gt?: number; - /** - * Number of validators with this status for this entity on this day (filter: gte) - */ - validator_count_gte?: number; - /** - * Number of validators with this status for this entity on this day (filter: between_min) - */ - validator_count_between_min?: number; - /** - * Number of validators with this status for this entity on this day (filter: between_max_value) - */ - validator_count_between_max_value?: number; - /** - * Number of validators with this status for this entity on this day (filter: in_values) (comma-separated list) - */ - validator_count_in_values?: string; - /** - * Number of validators with this status for this entity on this day (filter: not_in_values) (comma-separated list) - */ - validator_count_not_in_values?: string; - /** - * The maximum number of fct_validator_count_by_entity_by_status_daily to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListFctValidatorCountByEntityByStatusDaily` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/fct_validator_count_by_entity_by_status_daily'; -}; - -export type FctValidatorCountByEntityByStatusDailyServiceListErrors = { + opcode_not_in_values?: string; /** - * Default error response + * The name of the network (filter: eq) */ - default: Status; -}; - -export type FctValidatorCountByEntityByStatusDailyServiceListError = FctValidatorCountByEntityByStatusDailyServiceListErrors[keyof FctValidatorCountByEntityByStatusDailyServiceListErrors]; - -export type FctValidatorCountByEntityByStatusDailyServiceListResponses = { + meta_network_name_eq?: string; /** - * OK + * The name of the network (filter: ne) */ - 200: ListFctValidatorCountByEntityByStatusDailyResponse; -}; - -export type FctValidatorCountByEntityByStatusDailyServiceListResponse = FctValidatorCountByEntityByStatusDailyServiceListResponses[keyof FctValidatorCountByEntityByStatusDailyServiceListResponses]; - -export type FctValidatorCountByEntityByStatusDailyServiceGetData = { - body?: never; - path: { - /** - * Start of the day period - */ - day_start_date: string; - }; - query?: never; - url: '/api/v1/fct_validator_count_by_entity_by_status_daily/{day_start_date}'; -}; - -export type FctValidatorCountByEntityByStatusDailyServiceGetErrors = { + meta_network_name_ne?: string; /** - * Default error response + * The name of the network (filter: contains) */ - default: Status; -}; - -export type FctValidatorCountByEntityByStatusDailyServiceGetError = FctValidatorCountByEntityByStatusDailyServiceGetErrors[keyof FctValidatorCountByEntityByStatusDailyServiceGetErrors]; - -export type FctValidatorCountByEntityByStatusDailyServiceGetResponses = { + meta_network_name_contains?: string; /** - * OK + * The name of the network (filter: starts_with) */ - 200: GetFctValidatorCountByEntityByStatusDailyResponse; -}; - -export type FctValidatorCountByEntityByStatusDailyServiceGetResponse = FctValidatorCountByEntityByStatusDailyServiceGetResponses[keyof FctValidatorCountByEntityByStatusDailyServiceGetResponses]; - -export type IntAttestationAttestedCanonicalServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The beacon block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The index of the validator attesting (filter: eq) - */ - attesting_validator_index_eq?: number; - /** - * The index of the validator attesting (filter: ne) - */ - attesting_validator_index_ne?: number; - /** - * The index of the validator attesting (filter: lt) - */ - attesting_validator_index_lt?: number; - /** - * The index of the validator attesting (filter: lte) - */ - attesting_validator_index_lte?: number; - /** - * The index of the validator attesting (filter: gt) - */ - attesting_validator_index_gt?: number; - /** - * The index of the validator attesting (filter: gte) - */ - attesting_validator_index_gte?: number; - /** - * The index of the validator attesting (filter: between_min) - */ - attesting_validator_index_between_min?: number; - /** - * The index of the validator attesting (filter: between_max_value) - */ - attesting_validator_index_between_max_value?: number; - /** - * The index of the validator attesting (filter: in_values) (comma-separated list) - */ - attesting_validator_index_in_values?: string; - /** - * The index of the validator attesting (filter: not_in_values) (comma-separated list) - */ - attesting_validator_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The source epoch number in the attestation group (filter: eq) - */ - source_epoch_eq?: number; - /** - * The source epoch number in the attestation group (filter: ne) - */ - source_epoch_ne?: number; - /** - * The source epoch number in the attestation group (filter: lt) - */ - source_epoch_lt?: number; - /** - * The source epoch number in the attestation group (filter: lte) - */ - source_epoch_lte?: number; - /** - * The source epoch number in the attestation group (filter: gt) - */ - source_epoch_gt?: number; - /** - * The source epoch number in the attestation group (filter: gte) - */ - source_epoch_gte?: number; - /** - * The source epoch number in the attestation group (filter: between_min) - */ - source_epoch_between_min?: number; - /** - * The source epoch number in the attestation group (filter: between_max_value) - */ - source_epoch_between_max_value?: number; - /** - * The source epoch number in the attestation group (filter: in_values) (comma-separated list) - */ - source_epoch_in_values?: string; - /** - * The source epoch number in the attestation group (filter: not_in_values) (comma-separated list) - */ - source_epoch_not_in_values?: string; - /** - * The wall clock time when the source epoch started (filter: eq) - */ - source_epoch_start_date_time_eq?: number; - /** - * The wall clock time when the source epoch started (filter: ne) - */ - source_epoch_start_date_time_ne?: number; - /** - * The wall clock time when the source epoch started (filter: lt) - */ - source_epoch_start_date_time_lt?: number; - /** - * The wall clock time when the source epoch started (filter: lte) - */ - source_epoch_start_date_time_lte?: number; - /** - * The wall clock time when the source epoch started (filter: gt) - */ - source_epoch_start_date_time_gt?: number; - /** - * The wall clock time when the source epoch started (filter: gte) - */ - source_epoch_start_date_time_gte?: number; - /** - * The wall clock time when the source epoch started (filter: between_min) - */ - source_epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the source epoch started (filter: between_max_value) - */ - source_epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the source epoch started (filter: in_values) (comma-separated list) - */ - source_epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the source epoch started (filter: not_in_values) (comma-separated list) - */ - source_epoch_start_date_time_not_in_values?: string; - /** - * The source beacon block root hash in the attestation group (filter: eq) - */ - source_root_eq?: string; - /** - * The source beacon block root hash in the attestation group (filter: ne) - */ - source_root_ne?: string; - /** - * The source beacon block root hash in the attestation group (filter: contains) - */ - source_root_contains?: string; - /** - * The source beacon block root hash in the attestation group (filter: starts_with) - */ - source_root_starts_with?: string; - /** - * The source beacon block root hash in the attestation group (filter: ends_with) - */ - source_root_ends_with?: string; - /** - * The source beacon block root hash in the attestation group (filter: like) - */ - source_root_like?: string; - /** - * The source beacon block root hash in the attestation group (filter: not_like) - */ - source_root_not_like?: string; - /** - * The source beacon block root hash in the attestation group (filter: in_values) (comma-separated list) - */ - source_root_in_values?: string; - /** - * The source beacon block root hash in the attestation group (filter: not_in_values) (comma-separated list) - */ - source_root_not_in_values?: string; - /** - * The target epoch number in the attestation group (filter: eq) - */ - target_epoch_eq?: number; - /** - * The target epoch number in the attestation group (filter: ne) - */ - target_epoch_ne?: number; - /** - * The target epoch number in the attestation group (filter: lt) - */ - target_epoch_lt?: number; - /** - * The target epoch number in the attestation group (filter: lte) - */ - target_epoch_lte?: number; - /** - * The target epoch number in the attestation group (filter: gt) - */ - target_epoch_gt?: number; - /** - * The target epoch number in the attestation group (filter: gte) - */ - target_epoch_gte?: number; - /** - * The target epoch number in the attestation group (filter: between_min) - */ - target_epoch_between_min?: number; - /** - * The target epoch number in the attestation group (filter: between_max_value) - */ - target_epoch_between_max_value?: number; - /** - * The target epoch number in the attestation group (filter: in_values) (comma-separated list) - */ - target_epoch_in_values?: string; - /** - * The target epoch number in the attestation group (filter: not_in_values) (comma-separated list) - */ - target_epoch_not_in_values?: string; - /** - * The wall clock time when the target epoch started (filter: eq) - */ - target_epoch_start_date_time_eq?: number; - /** - * The wall clock time when the target epoch started (filter: ne) - */ - target_epoch_start_date_time_ne?: number; - /** - * The wall clock time when the target epoch started (filter: lt) - */ - target_epoch_start_date_time_lt?: number; - /** - * The wall clock time when the target epoch started (filter: lte) - */ - target_epoch_start_date_time_lte?: number; - /** - * The wall clock time when the target epoch started (filter: gt) - */ - target_epoch_start_date_time_gt?: number; - /** - * The wall clock time when the target epoch started (filter: gte) - */ - target_epoch_start_date_time_gte?: number; - /** - * The wall clock time when the target epoch started (filter: between_min) - */ - target_epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the target epoch started (filter: between_max_value) - */ - target_epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the target epoch started (filter: in_values) (comma-separated list) - */ - target_epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the target epoch started (filter: not_in_values) (comma-separated list) - */ - target_epoch_start_date_time_not_in_values?: string; - /** - * The target beacon block root hash in the attestation group (filter: eq) - */ - target_root_eq?: string; - /** - * The target beacon block root hash in the attestation group (filter: ne) - */ - target_root_ne?: string; - /** - * The target beacon block root hash in the attestation group (filter: contains) - */ - target_root_contains?: string; - /** - * The target beacon block root hash in the attestation group (filter: starts_with) - */ - target_root_starts_with?: string; - /** - * The target beacon block root hash in the attestation group (filter: ends_with) - */ - target_root_ends_with?: string; - /** - * The target beacon block root hash in the attestation group (filter: like) - */ - target_root_like?: string; - /** - * The target beacon block root hash in the attestation group (filter: not_like) - */ - target_root_not_like?: string; - /** - * The target beacon block root hash in the attestation group (filter: in_values) (comma-separated list) - */ - target_root_in_values?: string; - /** - * The target beacon block root hash in the attestation group (filter: not_in_values) (comma-separated list) - */ - target_root_not_in_values?: string; - /** - * The distance from the slot when the attestation was included (filter: eq) - */ - inclusion_distance_eq?: number; - /** - * The distance from the slot when the attestation was included (filter: ne) - */ - inclusion_distance_ne?: number; - /** - * The distance from the slot when the attestation was included (filter: lt) - */ - inclusion_distance_lt?: number; - /** - * The distance from the slot when the attestation was included (filter: lte) - */ - inclusion_distance_lte?: number; - /** - * The distance from the slot when the attestation was included (filter: gt) - */ - inclusion_distance_gt?: number; - /** - * The distance from the slot when the attestation was included (filter: gte) - */ - inclusion_distance_gte?: number; - /** - * The distance from the slot when the attestation was included (filter: between_min) - */ - inclusion_distance_between_min?: number; - /** - * The distance from the slot when the attestation was included (filter: between_max_value) - */ - inclusion_distance_between_max_value?: number; - /** - * The distance from the slot when the attestation was included (filter: in_values) (comma-separated list) - */ - inclusion_distance_in_values?: string; - /** - * The distance from the slot when the attestation was included (filter: not_in_values) (comma-separated list) - */ - inclusion_distance_not_in_values?: string; - /** - * The maximum number of int_attestation_attested_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntAttestationAttestedCanonical` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_attestation_attested_canonical'; -}; - -export type IntAttestationAttestedCanonicalServiceListErrors = { + meta_network_name_starts_with?: string; /** - * Default error response + * The name of the network (filter: ends_with) */ - default: Status; -}; - -export type IntAttestationAttestedCanonicalServiceListError = IntAttestationAttestedCanonicalServiceListErrors[keyof IntAttestationAttestedCanonicalServiceListErrors]; - -export type IntAttestationAttestedCanonicalServiceListResponses = { + meta_network_name_ends_with?: string; /** - * OK + * The name of the network (filter: like) */ - 200: ListIntAttestationAttestedCanonicalResponse; -}; - -export type IntAttestationAttestedCanonicalServiceListResponse = IntAttestationAttestedCanonicalServiceListResponses[keyof IntAttestationAttestedCanonicalServiceListResponses]; - -export type IntAttestationAttestedCanonicalServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_attestation_attested_canonical/{slot_start_date_time}'; -}; - -export type IntAttestationAttestedCanonicalServiceGetErrors = { + meta_network_name_like?: string; /** - * Default error response + * The name of the network (filter: not_like) */ - default: Status; -}; - -export type IntAttestationAttestedCanonicalServiceGetError = IntAttestationAttestedCanonicalServiceGetErrors[keyof IntAttestationAttestedCanonicalServiceGetErrors]; - -export type IntAttestationAttestedCanonicalServiceGetResponses = { + meta_network_name_not_like?: string; /** - * OK + * The name of the network (filter: in_values) (comma-separated list) */ - 200: GetIntAttestationAttestedCanonicalResponse; -}; - -export type IntAttestationAttestedCanonicalServiceGetResponse = IntAttestationAttestedCanonicalServiceGetResponses[keyof IntAttestationAttestedCanonicalServiceGetResponses]; - -export type IntAttestationAttestedHeadServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The beacon block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The index of the validator attesting (filter: eq) - */ - attesting_validator_index_eq?: number; - /** - * The index of the validator attesting (filter: ne) - */ - attesting_validator_index_ne?: number; - /** - * The index of the validator attesting (filter: lt) - */ - attesting_validator_index_lt?: number; - /** - * The index of the validator attesting (filter: lte) - */ - attesting_validator_index_lte?: number; - /** - * The index of the validator attesting (filter: gt) - */ - attesting_validator_index_gt?: number; - /** - * The index of the validator attesting (filter: gte) - */ - attesting_validator_index_gte?: number; - /** - * The index of the validator attesting (filter: between_min) - */ - attesting_validator_index_between_min?: number; - /** - * The index of the validator attesting (filter: between_max_value) - */ - attesting_validator_index_between_max_value?: number; - /** - * The index of the validator attesting (filter: in_values) (comma-separated list) - */ - attesting_validator_index_in_values?: string; - /** - * The index of the validator attesting (filter: not_in_values) (comma-separated list) - */ - attesting_validator_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The source epoch number in the attestation group (filter: eq) - */ - source_epoch_eq?: number; - /** - * The source epoch number in the attestation group (filter: ne) - */ - source_epoch_ne?: number; - /** - * The source epoch number in the attestation group (filter: lt) - */ - source_epoch_lt?: number; - /** - * The source epoch number in the attestation group (filter: lte) - */ - source_epoch_lte?: number; - /** - * The source epoch number in the attestation group (filter: gt) - */ - source_epoch_gt?: number; - /** - * The source epoch number in the attestation group (filter: gte) - */ - source_epoch_gte?: number; - /** - * The source epoch number in the attestation group (filter: between_min) - */ - source_epoch_between_min?: number; - /** - * The source epoch number in the attestation group (filter: between_max_value) - */ - source_epoch_between_max_value?: number; - /** - * The source epoch number in the attestation group (filter: in_values) (comma-separated list) - */ - source_epoch_in_values?: string; - /** - * The source epoch number in the attestation group (filter: not_in_values) (comma-separated list) - */ - source_epoch_not_in_values?: string; - /** - * The wall clock time when the source epoch started (filter: eq) - */ - source_epoch_start_date_time_eq?: number; - /** - * The wall clock time when the source epoch started (filter: ne) - */ - source_epoch_start_date_time_ne?: number; - /** - * The wall clock time when the source epoch started (filter: lt) - */ - source_epoch_start_date_time_lt?: number; - /** - * The wall clock time when the source epoch started (filter: lte) - */ - source_epoch_start_date_time_lte?: number; - /** - * The wall clock time when the source epoch started (filter: gt) - */ - source_epoch_start_date_time_gt?: number; - /** - * The wall clock time when the source epoch started (filter: gte) - */ - source_epoch_start_date_time_gte?: number; - /** - * The wall clock time when the source epoch started (filter: between_min) - */ - source_epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the source epoch started (filter: between_max_value) - */ - source_epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the source epoch started (filter: in_values) (comma-separated list) - */ - source_epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the source epoch started (filter: not_in_values) (comma-separated list) - */ - source_epoch_start_date_time_not_in_values?: string; - /** - * The source beacon block root hash in the attestation group (filter: eq) - */ - source_root_eq?: string; - /** - * The source beacon block root hash in the attestation group (filter: ne) - */ - source_root_ne?: string; - /** - * The source beacon block root hash in the attestation group (filter: contains) - */ - source_root_contains?: string; - /** - * The source beacon block root hash in the attestation group (filter: starts_with) - */ - source_root_starts_with?: string; - /** - * The source beacon block root hash in the attestation group (filter: ends_with) - */ - source_root_ends_with?: string; - /** - * The source beacon block root hash in the attestation group (filter: like) - */ - source_root_like?: string; - /** - * The source beacon block root hash in the attestation group (filter: not_like) - */ - source_root_not_like?: string; - /** - * The source beacon block root hash in the attestation group (filter: in_values) (comma-separated list) - */ - source_root_in_values?: string; - /** - * The source beacon block root hash in the attestation group (filter: not_in_values) (comma-separated list) - */ - source_root_not_in_values?: string; - /** - * The target epoch number in the attestation group (filter: eq) - */ - target_epoch_eq?: number; - /** - * The target epoch number in the attestation group (filter: ne) - */ - target_epoch_ne?: number; - /** - * The target epoch number in the attestation group (filter: lt) - */ - target_epoch_lt?: number; - /** - * The target epoch number in the attestation group (filter: lte) - */ - target_epoch_lte?: number; - /** - * The target epoch number in the attestation group (filter: gt) - */ - target_epoch_gt?: number; - /** - * The target epoch number in the attestation group (filter: gte) - */ - target_epoch_gte?: number; - /** - * The target epoch number in the attestation group (filter: between_min) - */ - target_epoch_between_min?: number; - /** - * The target epoch number in the attestation group (filter: between_max_value) - */ - target_epoch_between_max_value?: number; - /** - * The target epoch number in the attestation group (filter: in_values) (comma-separated list) - */ - target_epoch_in_values?: string; - /** - * The target epoch number in the attestation group (filter: not_in_values) (comma-separated list) - */ - target_epoch_not_in_values?: string; - /** - * The wall clock time when the target epoch started (filter: eq) - */ - target_epoch_start_date_time_eq?: number; - /** - * The wall clock time when the target epoch started (filter: ne) - */ - target_epoch_start_date_time_ne?: number; - /** - * The wall clock time when the target epoch started (filter: lt) - */ - target_epoch_start_date_time_lt?: number; - /** - * The wall clock time when the target epoch started (filter: lte) - */ - target_epoch_start_date_time_lte?: number; - /** - * The wall clock time when the target epoch started (filter: gt) - */ - target_epoch_start_date_time_gt?: number; - /** - * The wall clock time when the target epoch started (filter: gte) - */ - target_epoch_start_date_time_gte?: number; - /** - * The wall clock time when the target epoch started (filter: between_min) - */ - target_epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the target epoch started (filter: between_max_value) - */ - target_epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the target epoch started (filter: in_values) (comma-separated list) - */ - target_epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the target epoch started (filter: not_in_values) (comma-separated list) - */ - target_epoch_start_date_time_not_in_values?: string; - /** - * The target beacon block root hash in the attestation group (filter: eq) - */ - target_root_eq?: string; - /** - * The target beacon block root hash in the attestation group (filter: ne) - */ - target_root_ne?: string; - /** - * The target beacon block root hash in the attestation group (filter: contains) - */ - target_root_contains?: string; - /** - * The target beacon block root hash in the attestation group (filter: starts_with) - */ - target_root_starts_with?: string; - /** - * The target beacon block root hash in the attestation group (filter: ends_with) - */ - target_root_ends_with?: string; - /** - * The target beacon block root hash in the attestation group (filter: like) - */ - target_root_like?: string; - /** - * The target beacon block root hash in the attestation group (filter: not_like) - */ - target_root_not_like?: string; - /** - * The target beacon block root hash in the attestation group (filter: in_values) (comma-separated list) - */ - target_root_in_values?: string; - /** - * The target beacon block root hash in the attestation group (filter: not_in_values) (comma-separated list) - */ - target_root_not_in_values?: string; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: eq) - */ - propagation_distance_eq?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: ne) - */ - propagation_distance_ne?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: lt) - */ - propagation_distance_lt?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: lte) - */ - propagation_distance_lte?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: gt) - */ - propagation_distance_gt?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: gte) - */ - propagation_distance_gte?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: between_min) - */ - propagation_distance_between_min?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: between_max_value) - */ - propagation_distance_between_max_value?: number; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: in_values) (comma-separated list) - */ - propagation_distance_in_values?: string; - /** - * The distance from the slot when the attestation was propagated. 0 means the attestation was propagated within the same slot as its duty was assigned, 1 means the attestation was propagated within the next slot, etc. (filter: not_in_values) (comma-separated list) - */ - propagation_distance_not_in_values?: string; - /** - * The maximum number of int_attestation_attested_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntAttestationAttestedHead` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_attestation_attested_head'; -}; - -export type IntAttestationAttestedHeadServiceListErrors = { + meta_network_name_in_values?: string; /** - * Default error response + * The name of the network (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntAttestationAttestedHeadServiceListError = IntAttestationAttestedHeadServiceListErrors[keyof IntAttestationAttestedHeadServiceListErrors]; - -export type IntAttestationAttestedHeadServiceListResponses = { + meta_network_name_not_in_values?: string; /** - * OK + * Timestamp when the record was last updated (filter: eq) */ - 200: ListIntAttestationAttestedHeadResponse; -}; - -export type IntAttestationAttestedHeadServiceListResponse = IntAttestationAttestedHeadServiceListResponses[keyof IntAttestationAttestedHeadServiceListResponses]; - -export type IntAttestationAttestedHeadServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_attestation_attested_head/{slot_start_date_time}'; -}; - -export type IntAttestationAttestedHeadServiceGetErrors = { + updated_date_time_eq?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: ne) */ - default: Status; -}; - -export type IntAttestationAttestedHeadServiceGetError = IntAttestationAttestedHeadServiceGetErrors[keyof IntAttestationAttestedHeadServiceGetErrors]; - -export type IntAttestationAttestedHeadServiceGetResponses = { + updated_date_time_ne?: number; /** - * OK + * Timestamp when the record was last updated (filter: lt) */ - 200: GetIntAttestationAttestedHeadResponse; -}; - -export type IntAttestationAttestedHeadServiceGetResponse = IntAttestationAttestedHeadServiceGetResponses[keyof IntAttestationAttestedHeadServiceGetResponses]; - -export type IntAttestationFirstSeenServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The index of the validator attesting (filter: eq) - */ - attesting_validator_index_eq?: number; - /** - * The index of the validator attesting (filter: ne) - */ - attesting_validator_index_ne?: number; - /** - * The index of the validator attesting (filter: lt) - */ - attesting_validator_index_lt?: number; - /** - * The index of the validator attesting (filter: lte) - */ - attesting_validator_index_lte?: number; - /** - * The index of the validator attesting (filter: gt) - */ - attesting_validator_index_gt?: number; - /** - * The index of the validator attesting (filter: gte) - */ - attesting_validator_index_gte?: number; - /** - * The index of the validator attesting (filter: between_min) - */ - attesting_validator_index_between_min?: number; - /** - * The index of the validator attesting (filter: between_max_value) - */ - attesting_validator_index_between_max_value?: number; - /** - * The index of the validator attesting (filter: in_values) (comma-separated list) - */ - attesting_validator_index_in_values?: string; - /** - * The index of the validator attesting (filter: not_in_values) (comma-separated list) - */ - attesting_validator_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Source of the event (filter: eq) - */ - source_eq?: string; - /** - * Source of the event (filter: ne) - */ - source_ne?: string; - /** - * Source of the event (filter: contains) - */ - source_contains?: string; - /** - * Source of the event (filter: starts_with) - */ - source_starts_with?: string; - /** - * Source of the event (filter: ends_with) - */ - source_ends_with?: string; - /** - * Source of the event (filter: like) - */ - source_like?: string; - /** - * Source of the event (filter: not_like) - */ - source_not_like?: string; - /** - * Source of the event (filter: in_values) (comma-separated list) - */ - source_in_values?: string; - /** - * Source of the event (filter: not_in_values) (comma-separated list) - */ - source_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The time from slot start for the client to see the block (filter: eq) - */ - seen_slot_start_diff_eq?: number; - /** - * The time from slot start for the client to see the block (filter: ne) - */ - seen_slot_start_diff_ne?: number; - /** - * The time from slot start for the client to see the block (filter: lt) - */ - seen_slot_start_diff_lt?: number; - /** - * The time from slot start for the client to see the block (filter: lte) - */ - seen_slot_start_diff_lte?: number; - /** - * The time from slot start for the client to see the block (filter: gt) - */ - seen_slot_start_diff_gt?: number; - /** - * The time from slot start for the client to see the block (filter: gte) - */ - seen_slot_start_diff_gte?: number; - /** - * The time from slot start for the client to see the block (filter: between_min) - */ - seen_slot_start_diff_between_min?: number; - /** - * The time from slot start for the client to see the block (filter: between_max_value) - */ - seen_slot_start_diff_between_max_value?: number; - /** - * The time from slot start for the client to see the block (filter: in_values) (comma-separated list) - */ - seen_slot_start_diff_in_values?: string; - /** - * The time from slot start for the client to see the block (filter: not_in_values) (comma-separated list) - */ - seen_slot_start_diff_not_in_values?: string; - /** - * The beacon block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The committee index of the attesting validator (filter: eq) - */ - attesting_validator_committee_index_eq?: string; - /** - * The committee index of the attesting validator (filter: ne) - */ - attesting_validator_committee_index_ne?: string; - /** - * The committee index of the attesting validator (filter: contains) - */ - attesting_validator_committee_index_contains?: string; - /** - * The committee index of the attesting validator (filter: starts_with) - */ - attesting_validator_committee_index_starts_with?: string; - /** - * The committee index of the attesting validator (filter: ends_with) - */ - attesting_validator_committee_index_ends_with?: string; - /** - * The committee index of the attesting validator (filter: like) - */ - attesting_validator_committee_index_like?: string; - /** - * The committee index of the attesting validator (filter: not_like) - */ - attesting_validator_committee_index_not_like?: string; - /** - * The committee index of the attesting validator (filter: in_values) (comma-separated list) - */ - attesting_validator_committee_index_in_values?: string; - /** - * The committee index of the attesting validator (filter: not_in_values) (comma-separated list) - */ - attesting_validator_committee_index_not_in_values?: string; - /** - * Source checkpoint epoch of the attestation (filter: eq) - */ - source_epoch_eq?: number; - /** - * Source checkpoint epoch of the attestation (filter: ne) - */ - source_epoch_ne?: number; - /** - * Source checkpoint epoch of the attestation (filter: lt) - */ - source_epoch_lt?: number; - /** - * Source checkpoint epoch of the attestation (filter: lte) - */ - source_epoch_lte?: number; - /** - * Source checkpoint epoch of the attestation (filter: gt) - */ - source_epoch_gt?: number; - /** - * Source checkpoint epoch of the attestation (filter: gte) - */ - source_epoch_gte?: number; - /** - * Source checkpoint epoch of the attestation (filter: between_min) - */ - source_epoch_between_min?: number; - /** - * Source checkpoint epoch of the attestation (filter: between_max_value) - */ - source_epoch_between_max_value?: number; - /** - * Source checkpoint epoch of the attestation (filter: in_values) (comma-separated list) - */ - source_epoch_in_values?: string; - /** - * Source checkpoint epoch of the attestation (filter: not_in_values) (comma-separated list) - */ - source_epoch_not_in_values?: string; - /** - * Source checkpoint root of the attestation (filter: eq) - */ - source_root_eq?: string; - /** - * Source checkpoint root of the attestation (filter: ne) - */ - source_root_ne?: string; - /** - * Source checkpoint root of the attestation (filter: contains) - */ - source_root_contains?: string; - /** - * Source checkpoint root of the attestation (filter: starts_with) - */ - source_root_starts_with?: string; - /** - * Source checkpoint root of the attestation (filter: ends_with) - */ - source_root_ends_with?: string; - /** - * Source checkpoint root of the attestation (filter: like) - */ - source_root_like?: string; - /** - * Source checkpoint root of the attestation (filter: not_like) - */ - source_root_not_like?: string; - /** - * Source checkpoint root of the attestation (filter: in_values) (comma-separated list) - */ - source_root_in_values?: string; - /** - * Source checkpoint root of the attestation (filter: not_in_values) (comma-separated list) - */ - source_root_not_in_values?: string; - /** - * Target checkpoint epoch of the attestation (filter: eq) - */ - target_epoch_eq?: number; - /** - * Target checkpoint epoch of the attestation (filter: ne) - */ - target_epoch_ne?: number; - /** - * Target checkpoint epoch of the attestation (filter: lt) - */ - target_epoch_lt?: number; - /** - * Target checkpoint epoch of the attestation (filter: lte) - */ - target_epoch_lte?: number; - /** - * Target checkpoint epoch of the attestation (filter: gt) - */ - target_epoch_gt?: number; - /** - * Target checkpoint epoch of the attestation (filter: gte) - */ - target_epoch_gte?: number; - /** - * Target checkpoint epoch of the attestation (filter: between_min) - */ - target_epoch_between_min?: number; - /** - * Target checkpoint epoch of the attestation (filter: between_max_value) - */ - target_epoch_between_max_value?: number; - /** - * Target checkpoint epoch of the attestation (filter: in_values) (comma-separated list) - */ - target_epoch_in_values?: string; - /** - * Target checkpoint epoch of the attestation (filter: not_in_values) (comma-separated list) - */ - target_epoch_not_in_values?: string; - /** - * Target checkpoint root of the attestation (filter: eq) - */ - target_root_eq?: string; - /** - * Target checkpoint root of the attestation (filter: ne) - */ - target_root_ne?: string; - /** - * Target checkpoint root of the attestation (filter: contains) - */ - target_root_contains?: string; - /** - * Target checkpoint root of the attestation (filter: starts_with) - */ - target_root_starts_with?: string; - /** - * Target checkpoint root of the attestation (filter: ends_with) - */ - target_root_ends_with?: string; - /** - * Target checkpoint root of the attestation (filter: like) - */ - target_root_like?: string; - /** - * Target checkpoint root of the attestation (filter: not_like) - */ - target_root_not_like?: string; - /** - * Target checkpoint root of the attestation (filter: in_values) (comma-separated list) - */ - target_root_in_values?: string; - /** - * Target checkpoint root of the attestation (filter: not_in_values) (comma-separated list) - */ - target_root_not_in_values?: string; - /** - * Username of the node (filter: eq) - */ - username_eq?: string; - /** - * Username of the node (filter: ne) - */ - username_ne?: string; - /** - * Username of the node (filter: contains) - */ - username_contains?: string; - /** - * Username of the node (filter: starts_with) - */ - username_starts_with?: string; - /** - * Username of the node (filter: ends_with) - */ - username_ends_with?: string; - /** - * Username of the node (filter: like) - */ - username_like?: string; - /** - * Username of the node (filter: not_like) - */ - username_not_like?: string; - /** - * Username of the node (filter: in_values) (comma-separated list) - */ - username_in_values?: string; - /** - * Username of the node (filter: not_in_values) (comma-separated list) - */ - username_not_in_values?: string; - /** - * ID of the node (filter: eq) - */ - node_id_eq?: string; - /** - * ID of the node (filter: ne) - */ - node_id_ne?: string; - /** - * ID of the node (filter: contains) - */ - node_id_contains?: string; - /** - * ID of the node (filter: starts_with) - */ - node_id_starts_with?: string; - /** - * ID of the node (filter: ends_with) - */ - node_id_ends_with?: string; - /** - * ID of the node (filter: like) - */ - node_id_like?: string; - /** - * ID of the node (filter: not_like) - */ - node_id_not_like?: string; - /** - * ID of the node (filter: in_values) (comma-separated list) - */ - node_id_in_values?: string; - /** - * ID of the node (filter: not_in_values) (comma-separated list) - */ - node_id_not_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: eq) - */ - classification_eq?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ne) - */ - classification_ne?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: contains) - */ - classification_contains?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: starts_with) - */ - classification_starts_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: ends_with) - */ - classification_ends_with?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: like) - */ - classification_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_like) - */ - classification_not_like?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: in_values) (comma-separated list) - */ - classification_in_values?: string; - /** - * Classification of the node, e.g. "individual", "corporate", "internal" (aka ethPandaOps) or "unclassified" (filter: not_in_values) (comma-separated list) - */ - classification_not_in_values?: string; - /** - * Name of the client (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the client (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the client (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the client (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the client (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the client (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the client (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the client (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * Version of the client (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * Implementation of the client (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * City of the client (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * Continent code of the client (filter: eq) - */ - meta_client_geo_continent_code_eq?: string; - /** - * Continent code of the client (filter: ne) - */ - meta_client_geo_continent_code_ne?: string; - /** - * Continent code of the client (filter: contains) - */ - meta_client_geo_continent_code_contains?: string; - /** - * Continent code of the client (filter: starts_with) - */ - meta_client_geo_continent_code_starts_with?: string; - /** - * Continent code of the client (filter: ends_with) - */ - meta_client_geo_continent_code_ends_with?: string; - /** - * Continent code of the client (filter: like) - */ - meta_client_geo_continent_code_like?: string; - /** - * Continent code of the client (filter: not_like) - */ - meta_client_geo_continent_code_not_like?: string; - /** - * Continent code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_continent_code_in_values?: string; - /** - * Continent code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_continent_code_not_in_values?: string; - /** - * Filter meta_client_geo_longitude using value - */ - meta_client_geo_longitude_value?: number; - /** - * Filter meta_client_geo_latitude using value - */ - meta_client_geo_latitude_value?: number; - /** - * Autonomous system number of the client (filter: eq) - */ - meta_client_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the client (filter: ne) - */ - meta_client_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the client (filter: lt) - */ - meta_client_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the client (filter: lte) - */ - meta_client_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the client (filter: gt) - */ - meta_client_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the client (filter: gte) - */ - meta_client_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the client (filter: between_min) - */ - meta_client_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the client (filter: between_max_value) - */ - meta_client_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the client (filter: eq) - */ - meta_client_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the client (filter: ne) - */ - meta_client_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the client (filter: contains) - */ - meta_client_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the client (filter: starts_with) - */ - meta_client_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the client (filter: ends_with) - */ - meta_client_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the client (filter: like) - */ - meta_client_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the client (filter: not_like) - */ - meta_client_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_not_in_values?: string; - /** - * Ethereum consensus client version (filter: eq) - */ - meta_consensus_version_eq?: string; - /** - * Ethereum consensus client version (filter: ne) - */ - meta_consensus_version_ne?: string; - /** - * Ethereum consensus client version (filter: contains) - */ - meta_consensus_version_contains?: string; - /** - * Ethereum consensus client version (filter: starts_with) - */ - meta_consensus_version_starts_with?: string; - /** - * Ethereum consensus client version (filter: ends_with) - */ - meta_consensus_version_ends_with?: string; - /** - * Ethereum consensus client version (filter: like) - */ - meta_consensus_version_like?: string; - /** - * Ethereum consensus client version (filter: not_like) - */ - meta_consensus_version_not_like?: string; - /** - * Ethereum consensus client version (filter: in_values) (comma-separated list) - */ - meta_consensus_version_in_values?: string; - /** - * Ethereum consensus client version (filter: not_in_values) (comma-separated list) - */ - meta_consensus_version_not_in_values?: string; - /** - * Ethereum consensus client implementation (filter: eq) - */ - meta_consensus_implementation_eq?: string; - /** - * Ethereum consensus client implementation (filter: ne) - */ - meta_consensus_implementation_ne?: string; - /** - * Ethereum consensus client implementation (filter: contains) - */ - meta_consensus_implementation_contains?: string; - /** - * Ethereum consensus client implementation (filter: starts_with) - */ - meta_consensus_implementation_starts_with?: string; - /** - * Ethereum consensus client implementation (filter: ends_with) - */ - meta_consensus_implementation_ends_with?: string; - /** - * Ethereum consensus client implementation (filter: like) - */ - meta_consensus_implementation_like?: string; - /** - * Ethereum consensus client implementation (filter: not_like) - */ - meta_consensus_implementation_not_like?: string; - /** - * Ethereum consensus client implementation (filter: in_values) (comma-separated list) - */ - meta_consensus_implementation_in_values?: string; - /** - * Ethereum consensus client implementation (filter: not_in_values) (comma-separated list) - */ - meta_consensus_implementation_not_in_values?: string; - /** - * The maximum number of int_attestation_first_seen to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntAttestationFirstSeen` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_attestation_first_seen'; -}; - -export type IntAttestationFirstSeenServiceListErrors = { + updated_date_time_lt?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: lte) */ - default: Status; -}; - -export type IntAttestationFirstSeenServiceListError = IntAttestationFirstSeenServiceListErrors[keyof IntAttestationFirstSeenServiceListErrors]; - -export type IntAttestationFirstSeenServiceListResponses = { + updated_date_time_lte?: number; /** - * OK + * Timestamp when the record was last updated (filter: gt) */ - 200: ListIntAttestationFirstSeenResponse; -}; - -export type IntAttestationFirstSeenServiceListResponse = IntAttestationFirstSeenServiceListResponses[keyof IntAttestationFirstSeenServiceListResponses]; - -export type IntAttestationFirstSeenServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_attestation_first_seen/{slot_start_date_time}'; -}; - -export type IntAttestationFirstSeenServiceGetErrors = { + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: between_max_value) */ - default: Status; -}; - -export type IntAttestationFirstSeenServiceGetError = IntAttestationFirstSeenServiceGetErrors[keyof IntAttestationFirstSeenServiceGetErrors]; - -export type IntAttestationFirstSeenServiceGetResponses = { + updated_date_time_between_max_value?: number; /** - * OK + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - 200: GetIntAttestationFirstSeenResponse; -}; - -export type IntAttestationFirstSeenServiceGetResponse = IntAttestationFirstSeenServiceGetResponses[keyof IntAttestationFirstSeenServiceGetResponses]; - -export type IntAttestationFirstSeenAggregateServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The index of the validator attesting (filter: eq) - */ - attesting_validator_index_eq?: number; - /** - * The index of the validator attesting (filter: ne) - */ - attesting_validator_index_ne?: number; - /** - * The index of the validator attesting (filter: lt) - */ - attesting_validator_index_lt?: number; - /** - * The index of the validator attesting (filter: lte) - */ - attesting_validator_index_lte?: number; - /** - * The index of the validator attesting (filter: gt) - */ - attesting_validator_index_gt?: number; - /** - * The index of the validator attesting (filter: gte) - */ - attesting_validator_index_gte?: number; - /** - * The index of the validator attesting (filter: between_min) - */ - attesting_validator_index_between_min?: number; - /** - * The index of the validator attesting (filter: between_max_value) - */ - attesting_validator_index_between_max_value?: number; - /** - * The index of the validator attesting (filter: in_values) (comma-separated list) - */ - attesting_validator_index_in_values?: string; - /** - * The index of the validator attesting (filter: not_in_values) (comma-separated list) - */ - attesting_validator_index_not_in_values?: string; - /** - * The head vote (beacon block root) from this aggregate (filter: eq) - */ - block_root_eq?: string; - /** - * The head vote (beacon block root) from this aggregate (filter: ne) - */ - block_root_ne?: string; - /** - * The head vote (beacon block root) from this aggregate (filter: contains) - */ - block_root_contains?: string; - /** - * The head vote (beacon block root) from this aggregate (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The head vote (beacon block root) from this aggregate (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The head vote (beacon block root) from this aggregate (filter: like) - */ - block_root_like?: string; - /** - * The head vote (beacon block root) from this aggregate (filter: not_like) - */ - block_root_not_like?: string; - /** - * The head vote (beacon block root) from this aggregate (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The head vote (beacon block root) from this aggregate (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Source checkpoint epoch from this aggregate (filter: eq) - */ - source_epoch_eq?: number; - /** - * Source checkpoint epoch from this aggregate (filter: ne) - */ - source_epoch_ne?: number; - /** - * Source checkpoint epoch from this aggregate (filter: lt) - */ - source_epoch_lt?: number; - /** - * Source checkpoint epoch from this aggregate (filter: lte) - */ - source_epoch_lte?: number; - /** - * Source checkpoint epoch from this aggregate (filter: gt) - */ - source_epoch_gt?: number; - /** - * Source checkpoint epoch from this aggregate (filter: gte) - */ - source_epoch_gte?: number; - /** - * Source checkpoint epoch from this aggregate (filter: between_min) - */ - source_epoch_between_min?: number; - /** - * Source checkpoint epoch from this aggregate (filter: between_max_value) - */ - source_epoch_between_max_value?: number; - /** - * Source checkpoint epoch from this aggregate (filter: in_values) (comma-separated list) - */ - source_epoch_in_values?: string; - /** - * Source checkpoint epoch from this aggregate (filter: not_in_values) (comma-separated list) - */ - source_epoch_not_in_values?: string; - /** - * Source checkpoint root from this aggregate (filter: eq) - */ - source_root_eq?: string; - /** - * Source checkpoint root from this aggregate (filter: ne) - */ - source_root_ne?: string; - /** - * Source checkpoint root from this aggregate (filter: contains) - */ - source_root_contains?: string; - /** - * Source checkpoint root from this aggregate (filter: starts_with) - */ - source_root_starts_with?: string; - /** - * Source checkpoint root from this aggregate (filter: ends_with) - */ - source_root_ends_with?: string; - /** - * Source checkpoint root from this aggregate (filter: like) - */ - source_root_like?: string; - /** - * Source checkpoint root from this aggregate (filter: not_like) - */ - source_root_not_like?: string; - /** - * Source checkpoint root from this aggregate (filter: in_values) (comma-separated list) - */ - source_root_in_values?: string; - /** - * Source checkpoint root from this aggregate (filter: not_in_values) (comma-separated list) - */ - source_root_not_in_values?: string; - /** - * Target checkpoint epoch from this aggregate (filter: eq) - */ - target_epoch_eq?: number; - /** - * Target checkpoint epoch from this aggregate (filter: ne) - */ - target_epoch_ne?: number; - /** - * Target checkpoint epoch from this aggregate (filter: lt) - */ - target_epoch_lt?: number; - /** - * Target checkpoint epoch from this aggregate (filter: lte) - */ - target_epoch_lte?: number; - /** - * Target checkpoint epoch from this aggregate (filter: gt) - */ - target_epoch_gt?: number; - /** - * Target checkpoint epoch from this aggregate (filter: gte) - */ - target_epoch_gte?: number; - /** - * Target checkpoint epoch from this aggregate (filter: between_min) - */ - target_epoch_between_min?: number; - /** - * Target checkpoint epoch from this aggregate (filter: between_max_value) - */ - target_epoch_between_max_value?: number; - /** - * Target checkpoint epoch from this aggregate (filter: in_values) (comma-separated list) - */ - target_epoch_in_values?: string; - /** - * Target checkpoint epoch from this aggregate (filter: not_in_values) (comma-separated list) - */ - target_epoch_not_in_values?: string; - /** - * Target checkpoint root from this aggregate (filter: eq) - */ - target_root_eq?: string; - /** - * Target checkpoint root from this aggregate (filter: ne) - */ - target_root_ne?: string; - /** - * Target checkpoint root from this aggregate (filter: contains) - */ - target_root_contains?: string; - /** - * Target checkpoint root from this aggregate (filter: starts_with) - */ - target_root_starts_with?: string; - /** - * Target checkpoint root from this aggregate (filter: ends_with) - */ - target_root_ends_with?: string; - /** - * Target checkpoint root from this aggregate (filter: like) - */ - target_root_like?: string; - /** - * Target checkpoint root from this aggregate (filter: not_like) - */ - target_root_not_like?: string; - /** - * Target checkpoint root from this aggregate (filter: in_values) (comma-separated list) - */ - target_root_in_values?: string; - /** - * Target checkpoint root from this aggregate (filter: not_in_values) (comma-separated list) - */ - target_root_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The committee index the validator is assigned to (filter: eq) - */ - committee_index_eq?: string; - /** - * The committee index the validator is assigned to (filter: ne) - */ - committee_index_ne?: string; - /** - * The committee index the validator is assigned to (filter: contains) - */ - committee_index_contains?: string; - /** - * The committee index the validator is assigned to (filter: starts_with) - */ - committee_index_starts_with?: string; - /** - * The committee index the validator is assigned to (filter: ends_with) - */ - committee_index_ends_with?: string; - /** - * The committee index the validator is assigned to (filter: like) - */ - committee_index_like?: string; - /** - * The committee index the validator is assigned to (filter: not_like) - */ - committee_index_not_like?: string; - /** - * The committee index the validator is assigned to (filter: in_values) (comma-separated list) - */ - committee_index_in_values?: string; - /** - * The committee index the validator is assigned to (filter: not_in_values) (comma-separated list) - */ - committee_index_not_in_values?: string; - /** - * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: eq) - */ - seen_slot_start_diff_eq?: number; - /** - * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: ne) - */ - seen_slot_start_diff_ne?: number; - /** - * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: lt) - */ - seen_slot_start_diff_lt?: number; - /** - * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: lte) - */ - seen_slot_start_diff_lte?: number; - /** - * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: gt) - */ - seen_slot_start_diff_gt?: number; - /** - * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: gte) - */ - seen_slot_start_diff_gte?: number; - /** - * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: between_min) - */ - seen_slot_start_diff_between_min?: number; - /** - * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: between_max_value) - */ - seen_slot_start_diff_between_max_value?: number; - /** - * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: in_values) (comma-separated list) - */ - seen_slot_start_diff_in_values?: string; - /** - * The earliest time (ms after slot start) the validator was seen attesting this specific vote inside an aggregate (filter: not_in_values) (comma-separated list) - */ - seen_slot_start_diff_not_in_values?: string; - /** - * The first source this aggregate was observed from (beacon_api or libp2p) (filter: eq) - */ - source_eq?: string; - /** - * The first source this aggregate was observed from (beacon_api or libp2p) (filter: ne) - */ - source_ne?: string; - /** - * The first source this aggregate was observed from (beacon_api or libp2p) (filter: contains) - */ - source_contains?: string; - /** - * The first source this aggregate was observed from (beacon_api or libp2p) (filter: starts_with) - */ - source_starts_with?: string; - /** - * The first source this aggregate was observed from (beacon_api or libp2p) (filter: ends_with) - */ - source_ends_with?: string; - /** - * The first source this aggregate was observed from (beacon_api or libp2p) (filter: like) - */ - source_like?: string; - /** - * The first source this aggregate was observed from (beacon_api or libp2p) (filter: not_like) - */ - source_not_like?: string; - /** - * The first source this aggregate was observed from (beacon_api or libp2p) (filter: in_values) (comma-separated list) - */ - source_in_values?: string; - /** - * The first source this aggregate was observed from (beacon_api or libp2p) (filter: not_in_values) (comma-separated list) - */ - source_not_in_values?: string; - /** - * The maximum number of int_attestation_first_seen_aggregate to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntAttestationFirstSeenAggregate` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_attestation_first_seen_aggregate'; -}; - -export type IntAttestationFirstSeenAggregateServiceListErrors = { + updated_date_time_in_values?: string; /** - * Default error response + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntAttestationFirstSeenAggregateServiceListError = IntAttestationFirstSeenAggregateServiceListErrors[keyof IntAttestationFirstSeenAggregateServiceListErrors]; - -export type IntAttestationFirstSeenAggregateServiceListResponses = { + updated_date_time_not_in_values?: string; /** - * OK + * The index of the transaction within the block (filter: eq) */ - 200: ListIntAttestationFirstSeenAggregateResponse; -}; - -export type IntAttestationFirstSeenAggregateServiceListResponse = IntAttestationFirstSeenAggregateServiceListResponses[keyof IntAttestationFirstSeenAggregateServiceListResponses]; - -export type IntAttestationFirstSeenAggregateServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_attestation_first_seen_aggregate/{slot_start_date_time}'; -}; - -export type IntAttestationFirstSeenAggregateServiceGetErrors = { + transaction_index_eq?: number; /** - * Default error response + * The index of the transaction within the block (filter: ne) */ - default: Status; -}; - -export type IntAttestationFirstSeenAggregateServiceGetError = IntAttestationFirstSeenAggregateServiceGetErrors[keyof IntAttestationFirstSeenAggregateServiceGetErrors]; - -export type IntAttestationFirstSeenAggregateServiceGetResponses = { + transaction_index_ne?: number; /** - * OK + * The index of the transaction within the block (filter: lt) */ - 200: GetIntAttestationFirstSeenAggregateResponse; -}; - -export type IntAttestationFirstSeenAggregateServiceGetResponse = IntAttestationFirstSeenAggregateServiceGetResponses[keyof IntAttestationFirstSeenAggregateServiceGetResponses]; - -export type IntBeaconCommitteeHeadServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The committee index in the beacon API committee payload (filter: eq) - */ - committee_index_eq?: string; - /** - * The committee index in the beacon API committee payload (filter: ne) - */ - committee_index_ne?: string; - /** - * The committee index in the beacon API committee payload (filter: contains) - */ - committee_index_contains?: string; - /** - * The committee index in the beacon API committee payload (filter: starts_with) - */ - committee_index_starts_with?: string; - /** - * The committee index in the beacon API committee payload (filter: ends_with) - */ - committee_index_ends_with?: string; - /** - * The committee index in the beacon API committee payload (filter: like) - */ - committee_index_like?: string; - /** - * The committee index in the beacon API committee payload (filter: not_like) - */ - committee_index_not_like?: string; - /** - * The committee index in the beacon API committee payload (filter: in_values) (comma-separated list) - */ - committee_index_in_values?: string; - /** - * The committee index in the beacon API committee payload (filter: not_in_values) (comma-separated list) - */ - committee_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The validator indices in the beacon API committee payload (filter: has) - */ - validators_has?: number; - /** - * The validator indices in the beacon API committee payload (filter: has_all_values) - */ - validators_has_all_values?: Array; - /** - * The validator indices in the beacon API committee payload (filter: has_any_values) - */ - validators_has_any_values?: Array; - /** - * The validator indices in the beacon API committee payload (filter: length_eq) - */ - validators_length_eq?: number; - /** - * The validator indices in the beacon API committee payload (filter: length_gt) - */ - validators_length_gt?: number; - /** - * The validator indices in the beacon API committee payload (filter: length_gte) - */ - validators_length_gte?: number; - /** - * The validator indices in the beacon API committee payload (filter: length_lt) - */ - validators_length_lt?: number; - /** - * The validator indices in the beacon API committee payload (filter: length_lte) - */ - validators_length_lte?: number; - /** - * The maximum number of int_beacon_committee_head to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntBeaconCommitteeHead` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_beacon_committee_head'; -}; - -export type IntBeaconCommitteeHeadServiceListErrors = { + transaction_index_lt?: number; /** - * Default error response + * The index of the transaction within the block (filter: lte) */ - default: Status; -}; - -export type IntBeaconCommitteeHeadServiceListError = IntBeaconCommitteeHeadServiceListErrors[keyof IntBeaconCommitteeHeadServiceListErrors]; - -export type IntBeaconCommitteeHeadServiceListResponses = { + transaction_index_lte?: number; /** - * OK + * The index of the transaction within the block (filter: gt) */ - 200: ListIntBeaconCommitteeHeadResponse; -}; - -export type IntBeaconCommitteeHeadServiceListResponse = IntBeaconCommitteeHeadServiceListResponses[keyof IntBeaconCommitteeHeadServiceListResponses]; - -export type IntBeaconCommitteeHeadServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_beacon_committee_head/{slot_start_date_time}'; -}; - -export type IntBeaconCommitteeHeadServiceGetErrors = { + transaction_index_gt?: number; /** - * Default error response + * The index of the transaction within the block (filter: gte) */ - default: Status; -}; - -export type IntBeaconCommitteeHeadServiceGetError = IntBeaconCommitteeHeadServiceGetErrors[keyof IntBeaconCommitteeHeadServiceGetErrors]; - -export type IntBeaconCommitteeHeadServiceGetResponses = { + transaction_index_gte?: number; /** - * OK + * The index of the transaction within the block (filter: between_min) */ - 200: GetIntBeaconCommitteeHeadResponse; -}; - -export type IntBeaconCommitteeHeadServiceGetResponse = IntBeaconCommitteeHeadServiceGetResponses[keyof IntBeaconCommitteeHeadServiceGetResponses]; - -export type IntBlockBlobCountCanonicalServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The beacon block root hash (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The number of blobs in the block (filter: eq) - */ - blob_count_eq?: number; - /** - * The number of blobs in the block (filter: ne) - */ - blob_count_ne?: number; - /** - * The number of blobs in the block (filter: lt) - */ - blob_count_lt?: number; - /** - * The number of blobs in the block (filter: lte) - */ - blob_count_lte?: number; - /** - * The number of blobs in the block (filter: gt) - */ - blob_count_gt?: number; - /** - * The number of blobs in the block (filter: gte) - */ - blob_count_gte?: number; - /** - * The number of blobs in the block (filter: between_min) - */ - blob_count_between_min?: number; - /** - * The number of blobs in the block (filter: between_max_value) - */ - blob_count_between_max_value?: number; - /** - * The number of blobs in the block (filter: in_values) (comma-separated list) - */ - blob_count_in_values?: string; - /** - * The number of blobs in the block (filter: not_in_values) (comma-separated list) - */ - blob_count_not_in_values?: string; - /** - * The maximum number of int_block_blob_count_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntBlockBlobCountCanonical` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_block_blob_count_canonical'; -}; - -export type IntBlockBlobCountCanonicalServiceListErrors = { + transaction_index_between_min?: number; /** - * Default error response + * The index of the transaction within the block (filter: between_max_value) */ - default: Status; -}; - -export type IntBlockBlobCountCanonicalServiceListError = IntBlockBlobCountCanonicalServiceListErrors[keyof IntBlockBlobCountCanonicalServiceListErrors]; - -export type IntBlockBlobCountCanonicalServiceListResponses = { + transaction_index_between_max_value?: number; /** - * OK + * The index of the transaction within the block (filter: in_values) (comma-separated list) */ - 200: ListIntBlockBlobCountCanonicalResponse; -}; - -export type IntBlockBlobCountCanonicalServiceListResponse = IntBlockBlobCountCanonicalServiceListResponses[keyof IntBlockBlobCountCanonicalServiceListResponses]; - -export type IntBlockBlobCountCanonicalServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_block_blob_count_canonical/{slot_start_date_time}'; -}; - -export type IntBlockBlobCountCanonicalServiceGetErrors = { + transaction_index_in_values?: string; /** - * Default error response + * The index of the transaction within the block (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntBlockBlobCountCanonicalServiceGetError = IntBlockBlobCountCanonicalServiceGetErrors[keyof IntBlockBlobCountCanonicalServiceGetErrors]; - -export type IntBlockBlobCountCanonicalServiceGetResponses = { + transaction_index_not_in_values?: string; /** - * OK + * Number of times this opcode was executed in the transaction (filter: eq) */ - 200: GetIntBlockBlobCountCanonicalResponse; -}; - -export type IntBlockBlobCountCanonicalServiceGetResponse = IntBlockBlobCountCanonicalServiceGetResponses[keyof IntBlockBlobCountCanonicalServiceGetResponses]; - -export type IntBlockCanonicalServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the reorg slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the reorg slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the reorg slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the reorg slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the reorg slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the reorg slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the reorg slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the reorg slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the reorg slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the reorg slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The root hash of the beacon block (filter: eq) - */ - block_root_eq?: string; - /** - * The root hash of the beacon block (filter: ne) - */ - block_root_ne?: string; - /** - * The root hash of the beacon block (filter: contains) - */ - block_root_contains?: string; - /** - * The root hash of the beacon block (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The root hash of the beacon block (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The root hash of the beacon block (filter: like) - */ - block_root_like?: string; - /** - * The root hash of the beacon block (filter: not_like) - */ - block_root_not_like?: string; - /** - * The root hash of the beacon block (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The root hash of the beacon block (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number from beacon block payload (filter: eq) - */ - slot_eq?: number; - /** - * The slot number from beacon block payload (filter: ne) - */ - slot_ne?: number; - /** - * The slot number from beacon block payload (filter: lt) - */ - slot_lt?: number; - /** - * The slot number from beacon block payload (filter: lte) - */ - slot_lte?: number; - /** - * The slot number from beacon block payload (filter: gt) - */ - slot_gt?: number; - /** - * The slot number from beacon block payload (filter: gte) - */ - slot_gte?: number; - /** - * The slot number from beacon block payload (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number from beacon block payload (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number from beacon block payload (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number from beacon block payload (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number from beacon block payload (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number from beacon block payload (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number from beacon block payload (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number from beacon block payload (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number from beacon block payload (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number from beacon block payload (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number from beacon block payload (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number from beacon block payload (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number from beacon block payload (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number from beacon block payload (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The version of the beacon block (filter: eq) - */ - block_version_eq?: string; - /** - * The version of the beacon block (filter: ne) - */ - block_version_ne?: string; - /** - * The version of the beacon block (filter: contains) - */ - block_version_contains?: string; - /** - * The version of the beacon block (filter: starts_with) - */ - block_version_starts_with?: string; - /** - * The version of the beacon block (filter: ends_with) - */ - block_version_ends_with?: string; - /** - * The version of the beacon block (filter: like) - */ - block_version_like?: string; - /** - * The version of the beacon block (filter: not_like) - */ - block_version_not_like?: string; - /** - * The version of the beacon block (filter: in_values) (comma-separated list) - */ - block_version_in_values?: string; - /** - * The version of the beacon block (filter: not_in_values) (comma-separated list) - */ - block_version_not_in_values?: string; - /** - * The total bytes of the beacon block payload (filter: eq) - */ - block_total_bytes_eq?: number; - /** - * The total bytes of the beacon block payload (filter: ne) - */ - block_total_bytes_ne?: number; - /** - * The total bytes of the beacon block payload (filter: lt) - */ - block_total_bytes_lt?: number; - /** - * The total bytes of the beacon block payload (filter: lte) - */ - block_total_bytes_lte?: number; - /** - * The total bytes of the beacon block payload (filter: gt) - */ - block_total_bytes_gt?: number; - /** - * The total bytes of the beacon block payload (filter: gte) - */ - block_total_bytes_gte?: number; - /** - * The total bytes of the beacon block payload (filter: between_min) - */ - block_total_bytes_between_min?: number; - /** - * The total bytes of the beacon block payload (filter: between_max_value) - */ - block_total_bytes_between_max_value?: number; - /** - * The total bytes of the beacon block payload (filter: in_values) (comma-separated list) - */ - block_total_bytes_in_values?: string; - /** - * The total bytes of the beacon block payload (filter: not_in_values) (comma-separated list) - */ - block_total_bytes_not_in_values?: string; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: eq) - */ - block_total_bytes_compressed_eq?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: ne) - */ - block_total_bytes_compressed_ne?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: lt) - */ - block_total_bytes_compressed_lt?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: lte) - */ - block_total_bytes_compressed_lte?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: gt) - */ - block_total_bytes_compressed_gt?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: gte) - */ - block_total_bytes_compressed_gte?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: between_min) - */ - block_total_bytes_compressed_between_min?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: between_max_value) - */ - block_total_bytes_compressed_between_max_value?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: in_values) (comma-separated list) - */ - block_total_bytes_compressed_in_values?: string; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: not_in_values) (comma-separated list) - */ - block_total_bytes_compressed_not_in_values?: string; - /** - * The root hash of the parent beacon block (filter: eq) - */ - parent_root_eq?: string; - /** - * The root hash of the parent beacon block (filter: ne) - */ - parent_root_ne?: string; - /** - * The root hash of the parent beacon block (filter: contains) - */ - parent_root_contains?: string; - /** - * The root hash of the parent beacon block (filter: starts_with) - */ - parent_root_starts_with?: string; - /** - * The root hash of the parent beacon block (filter: ends_with) - */ - parent_root_ends_with?: string; - /** - * The root hash of the parent beacon block (filter: like) - */ - parent_root_like?: string; - /** - * The root hash of the parent beacon block (filter: not_like) - */ - parent_root_not_like?: string; - /** - * The root hash of the parent beacon block (filter: in_values) (comma-separated list) - */ - parent_root_in_values?: string; - /** - * The root hash of the parent beacon block (filter: not_in_values) (comma-separated list) - */ - parent_root_not_in_values?: string; - /** - * The root hash of the beacon state at this block (filter: eq) - */ - state_root_eq?: string; - /** - * The root hash of the beacon state at this block (filter: ne) - */ - state_root_ne?: string; - /** - * The root hash of the beacon state at this block (filter: contains) - */ - state_root_contains?: string; - /** - * The root hash of the beacon state at this block (filter: starts_with) - */ - state_root_starts_with?: string; - /** - * The root hash of the beacon state at this block (filter: ends_with) - */ - state_root_ends_with?: string; - /** - * The root hash of the beacon state at this block (filter: like) - */ - state_root_like?: string; - /** - * The root hash of the beacon state at this block (filter: not_like) - */ - state_root_not_like?: string; - /** - * The root hash of the beacon state at this block (filter: in_values) (comma-separated list) - */ - state_root_in_values?: string; - /** - * The root hash of the beacon state at this block (filter: not_in_values) (comma-separated list) - */ - state_root_not_in_values?: string; - /** - * The index of the validator that proposed the beacon block (filter: eq) - */ - proposer_index_eq?: number; - /** - * The index of the validator that proposed the beacon block (filter: ne) - */ - proposer_index_ne?: number; - /** - * The index of the validator that proposed the beacon block (filter: lt) - */ - proposer_index_lt?: number; - /** - * The index of the validator that proposed the beacon block (filter: lte) - */ - proposer_index_lte?: number; - /** - * The index of the validator that proposed the beacon block (filter: gt) - */ - proposer_index_gt?: number; - /** - * The index of the validator that proposed the beacon block (filter: gte) - */ - proposer_index_gte?: number; - /** - * The index of the validator that proposed the beacon block (filter: between_min) - */ - proposer_index_between_min?: number; - /** - * The index of the validator that proposed the beacon block (filter: between_max_value) - */ - proposer_index_between_max_value?: number; - /** - * The index of the validator that proposed the beacon block (filter: in_values) (comma-separated list) - */ - proposer_index_in_values?: string; - /** - * The index of the validator that proposed the beacon block (filter: not_in_values) (comma-separated list) - */ - proposer_index_not_in_values?: string; - /** - * The block hash of the associated execution block (filter: eq) - */ - eth1_data_block_hash_eq?: string; - /** - * The block hash of the associated execution block (filter: ne) - */ - eth1_data_block_hash_ne?: string; - /** - * The block hash of the associated execution block (filter: contains) - */ - eth1_data_block_hash_contains?: string; - /** - * The block hash of the associated execution block (filter: starts_with) - */ - eth1_data_block_hash_starts_with?: string; - /** - * The block hash of the associated execution block (filter: ends_with) - */ - eth1_data_block_hash_ends_with?: string; - /** - * The block hash of the associated execution block (filter: like) - */ - eth1_data_block_hash_like?: string; - /** - * The block hash of the associated execution block (filter: not_like) - */ - eth1_data_block_hash_not_like?: string; - /** - * The block hash of the associated execution block (filter: in_values) (comma-separated list) - */ - eth1_data_block_hash_in_values?: string; - /** - * The block hash of the associated execution block (filter: not_in_values) (comma-separated list) - */ - eth1_data_block_hash_not_in_values?: string; - /** - * The root of the deposit tree in the associated execution block (filter: eq) - */ - eth1_data_deposit_root_eq?: string; - /** - * The root of the deposit tree in the associated execution block (filter: ne) - */ - eth1_data_deposit_root_ne?: string; - /** - * The root of the deposit tree in the associated execution block (filter: contains) - */ - eth1_data_deposit_root_contains?: string; - /** - * The root of the deposit tree in the associated execution block (filter: starts_with) - */ - eth1_data_deposit_root_starts_with?: string; - /** - * The root of the deposit tree in the associated execution block (filter: ends_with) - */ - eth1_data_deposit_root_ends_with?: string; - /** - * The root of the deposit tree in the associated execution block (filter: like) - */ - eth1_data_deposit_root_like?: string; - /** - * The root of the deposit tree in the associated execution block (filter: not_like) - */ - eth1_data_deposit_root_not_like?: string; - /** - * The root of the deposit tree in the associated execution block (filter: in_values) (comma-separated list) - */ - eth1_data_deposit_root_in_values?: string; - /** - * The root of the deposit tree in the associated execution block (filter: not_in_values) (comma-separated list) - */ - eth1_data_deposit_root_not_in_values?: string; - /** - * The block hash of the execution payload (filter: eq) - */ - execution_payload_block_hash_eq?: string; - /** - * The block hash of the execution payload (filter: ne) - */ - execution_payload_block_hash_ne?: string; - /** - * The block hash of the execution payload (filter: contains) - */ - execution_payload_block_hash_contains?: string; - /** - * The block hash of the execution payload (filter: starts_with) - */ - execution_payload_block_hash_starts_with?: string; - /** - * The block hash of the execution payload (filter: ends_with) - */ - execution_payload_block_hash_ends_with?: string; - /** - * The block hash of the execution payload (filter: like) - */ - execution_payload_block_hash_like?: string; - /** - * The block hash of the execution payload (filter: not_like) - */ - execution_payload_block_hash_not_like?: string; - /** - * The block hash of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_block_hash_in_values?: string; - /** - * The block hash of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_block_hash_not_in_values?: string; - /** - * The block number of the execution payload (filter: eq) - */ - execution_payload_block_number_eq?: number; - /** - * The block number of the execution payload (filter: ne) - */ - execution_payload_block_number_ne?: number; - /** - * The block number of the execution payload (filter: lt) - */ - execution_payload_block_number_lt?: number; - /** - * The block number of the execution payload (filter: lte) - */ - execution_payload_block_number_lte?: number; - /** - * The block number of the execution payload (filter: gt) - */ - execution_payload_block_number_gt?: number; - /** - * The block number of the execution payload (filter: gte) - */ - execution_payload_block_number_gte?: number; - /** - * The block number of the execution payload (filter: between_min) - */ - execution_payload_block_number_between_min?: number; - /** - * The block number of the execution payload (filter: between_max_value) - */ - execution_payload_block_number_between_max_value?: number; - /** - * The block number of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_block_number_in_values?: string; - /** - * The block number of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_block_number_not_in_values?: string; - /** - * The recipient of the fee for this execution payload (filter: eq) - */ - execution_payload_fee_recipient_eq?: string; - /** - * The recipient of the fee for this execution payload (filter: ne) - */ - execution_payload_fee_recipient_ne?: string; - /** - * The recipient of the fee for this execution payload (filter: contains) - */ - execution_payload_fee_recipient_contains?: string; - /** - * The recipient of the fee for this execution payload (filter: starts_with) - */ - execution_payload_fee_recipient_starts_with?: string; - /** - * The recipient of the fee for this execution payload (filter: ends_with) - */ - execution_payload_fee_recipient_ends_with?: string; - /** - * The recipient of the fee for this execution payload (filter: like) - */ - execution_payload_fee_recipient_like?: string; - /** - * The recipient of the fee for this execution payload (filter: not_like) - */ - execution_payload_fee_recipient_not_like?: string; - /** - * The recipient of the fee for this execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_fee_recipient_in_values?: string; - /** - * The recipient of the fee for this execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_fee_recipient_not_in_values?: string; - /** - * Base fee per gas for execution payload (filter: eq) - */ - execution_payload_base_fee_per_gas_eq?: string; - /** - * Base fee per gas for execution payload (filter: ne) - */ - execution_payload_base_fee_per_gas_ne?: string; - /** - * Base fee per gas for execution payload (filter: contains) - */ - execution_payload_base_fee_per_gas_contains?: string; - /** - * Base fee per gas for execution payload (filter: starts_with) - */ - execution_payload_base_fee_per_gas_starts_with?: string; - /** - * Base fee per gas for execution payload (filter: ends_with) - */ - execution_payload_base_fee_per_gas_ends_with?: string; - /** - * Base fee per gas for execution payload (filter: like) - */ - execution_payload_base_fee_per_gas_like?: string; - /** - * Base fee per gas for execution payload (filter: not_like) - */ - execution_payload_base_fee_per_gas_not_like?: string; - /** - * Base fee per gas for execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_base_fee_per_gas_in_values?: string; - /** - * Base fee per gas for execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_base_fee_per_gas_not_in_values?: string; - /** - * Gas used for blobs in execution payload (filter: eq) - */ - execution_payload_blob_gas_used_eq?: number; - /** - * Gas used for blobs in execution payload (filter: ne) - */ - execution_payload_blob_gas_used_ne?: number; - /** - * Gas used for blobs in execution payload (filter: lt) - */ - execution_payload_blob_gas_used_lt?: number; - /** - * Gas used for blobs in execution payload (filter: lte) - */ - execution_payload_blob_gas_used_lte?: number; - /** - * Gas used for blobs in execution payload (filter: gt) - */ - execution_payload_blob_gas_used_gt?: number; - /** - * Gas used for blobs in execution payload (filter: gte) - */ - execution_payload_blob_gas_used_gte?: number; - /** - * Gas used for blobs in execution payload (filter: between_min) - */ - execution_payload_blob_gas_used_between_min?: number; - /** - * Gas used for blobs in execution payload (filter: between_max_value) - */ - execution_payload_blob_gas_used_between_max_value?: number; - /** - * Gas used for blobs in execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_blob_gas_used_in_values?: string; - /** - * Gas used for blobs in execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_blob_gas_used_not_in_values?: string; - /** - * Excess gas used for blobs in execution payload (filter: eq) - */ - execution_payload_excess_blob_gas_eq?: number; - /** - * Excess gas used for blobs in execution payload (filter: ne) - */ - execution_payload_excess_blob_gas_ne?: number; - /** - * Excess gas used for blobs in execution payload (filter: lt) - */ - execution_payload_excess_blob_gas_lt?: number; - /** - * Excess gas used for blobs in execution payload (filter: lte) - */ - execution_payload_excess_blob_gas_lte?: number; - /** - * Excess gas used for blobs in execution payload (filter: gt) - */ - execution_payload_excess_blob_gas_gt?: number; - /** - * Excess gas used for blobs in execution payload (filter: gte) - */ - execution_payload_excess_blob_gas_gte?: number; - /** - * Excess gas used for blobs in execution payload (filter: between_min) - */ - execution_payload_excess_blob_gas_between_min?: number; - /** - * Excess gas used for blobs in execution payload (filter: between_max_value) - */ - execution_payload_excess_blob_gas_between_max_value?: number; - /** - * Excess gas used for blobs in execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_excess_blob_gas_in_values?: string; - /** - * Excess gas used for blobs in execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_excess_blob_gas_not_in_values?: string; - /** - * Gas limit for execution payload (filter: eq) - */ - execution_payload_gas_limit_eq?: number; - /** - * Gas limit for execution payload (filter: ne) - */ - execution_payload_gas_limit_ne?: number; - /** - * Gas limit for execution payload (filter: lt) - */ - execution_payload_gas_limit_lt?: number; - /** - * Gas limit for execution payload (filter: lte) - */ - execution_payload_gas_limit_lte?: number; - /** - * Gas limit for execution payload (filter: gt) - */ - execution_payload_gas_limit_gt?: number; - /** - * Gas limit for execution payload (filter: gte) - */ - execution_payload_gas_limit_gte?: number; - /** - * Gas limit for execution payload (filter: between_min) - */ - execution_payload_gas_limit_between_min?: number; - /** - * Gas limit for execution payload (filter: between_max_value) - */ - execution_payload_gas_limit_between_max_value?: number; - /** - * Gas limit for execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_gas_limit_in_values?: string; - /** - * Gas limit for execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_gas_limit_not_in_values?: string; - /** - * Gas used for execution payload (filter: eq) - */ - execution_payload_gas_used_eq?: number; - /** - * Gas used for execution payload (filter: ne) - */ - execution_payload_gas_used_ne?: number; - /** - * Gas used for execution payload (filter: lt) - */ - execution_payload_gas_used_lt?: number; - /** - * Gas used for execution payload (filter: lte) - */ - execution_payload_gas_used_lte?: number; - /** - * Gas used for execution payload (filter: gt) - */ - execution_payload_gas_used_gt?: number; - /** - * Gas used for execution payload (filter: gte) - */ - execution_payload_gas_used_gte?: number; - /** - * Gas used for execution payload (filter: between_min) - */ - execution_payload_gas_used_between_min?: number; - /** - * Gas used for execution payload (filter: between_max_value) - */ - execution_payload_gas_used_between_max_value?: number; - /** - * Gas used for execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_gas_used_in_values?: string; - /** - * Gas used for execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_gas_used_not_in_values?: string; - /** - * The state root of the execution payload (filter: eq) - */ - execution_payload_state_root_eq?: string; - /** - * The state root of the execution payload (filter: ne) - */ - execution_payload_state_root_ne?: string; - /** - * The state root of the execution payload (filter: contains) - */ - execution_payload_state_root_contains?: string; - /** - * The state root of the execution payload (filter: starts_with) - */ - execution_payload_state_root_starts_with?: string; - /** - * The state root of the execution payload (filter: ends_with) - */ - execution_payload_state_root_ends_with?: string; - /** - * The state root of the execution payload (filter: like) - */ - execution_payload_state_root_like?: string; - /** - * The state root of the execution payload (filter: not_like) - */ - execution_payload_state_root_not_like?: string; - /** - * The state root of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_state_root_in_values?: string; - /** - * The state root of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_state_root_not_in_values?: string; - /** - * The parent hash of the execution payload (filter: eq) - */ - execution_payload_parent_hash_eq?: string; - /** - * The parent hash of the execution payload (filter: ne) - */ - execution_payload_parent_hash_ne?: string; - /** - * The parent hash of the execution payload (filter: contains) - */ - execution_payload_parent_hash_contains?: string; - /** - * The parent hash of the execution payload (filter: starts_with) - */ - execution_payload_parent_hash_starts_with?: string; - /** - * The parent hash of the execution payload (filter: ends_with) - */ - execution_payload_parent_hash_ends_with?: string; - /** - * The parent hash of the execution payload (filter: like) - */ - execution_payload_parent_hash_like?: string; - /** - * The parent hash of the execution payload (filter: not_like) - */ - execution_payload_parent_hash_not_like?: string; - /** - * The parent hash of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_parent_hash_in_values?: string; - /** - * The parent hash of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_parent_hash_not_in_values?: string; - /** - * The transaction count of the execution payload (filter: eq) - */ - execution_payload_transactions_count_eq?: number; - /** - * The transaction count of the execution payload (filter: ne) - */ - execution_payload_transactions_count_ne?: number; - /** - * The transaction count of the execution payload (filter: lt) - */ - execution_payload_transactions_count_lt?: number; - /** - * The transaction count of the execution payload (filter: lte) - */ - execution_payload_transactions_count_lte?: number; - /** - * The transaction count of the execution payload (filter: gt) - */ - execution_payload_transactions_count_gt?: number; - /** - * The transaction count of the execution payload (filter: gte) - */ - execution_payload_transactions_count_gte?: number; - /** - * The transaction count of the execution payload (filter: between_min) - */ - execution_payload_transactions_count_between_min?: number; - /** - * The transaction count of the execution payload (filter: between_max_value) - */ - execution_payload_transactions_count_between_max_value?: number; - /** - * The transaction count of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_transactions_count_in_values?: string; - /** - * The transaction count of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_transactions_count_not_in_values?: string; - /** - * The transaction total bytes of the execution payload (filter: eq) - */ - execution_payload_transactions_total_bytes_eq?: number; - /** - * The transaction total bytes of the execution payload (filter: ne) - */ - execution_payload_transactions_total_bytes_ne?: number; - /** - * The transaction total bytes of the execution payload (filter: lt) - */ - execution_payload_transactions_total_bytes_lt?: number; - /** - * The transaction total bytes of the execution payload (filter: lte) - */ - execution_payload_transactions_total_bytes_lte?: number; - /** - * The transaction total bytes of the execution payload (filter: gt) - */ - execution_payload_transactions_total_bytes_gt?: number; - /** - * The transaction total bytes of the execution payload (filter: gte) - */ - execution_payload_transactions_total_bytes_gte?: number; - /** - * The transaction total bytes of the execution payload (filter: between_min) - */ - execution_payload_transactions_total_bytes_between_min?: number; - /** - * The transaction total bytes of the execution payload (filter: between_max_value) - */ - execution_payload_transactions_total_bytes_between_max_value?: number; - /** - * The transaction total bytes of the execution payload (filter: in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_in_values?: string; - /** - * The transaction total bytes of the execution payload (filter: not_in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_not_in_values?: string; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: eq) - */ - execution_payload_transactions_total_bytes_compressed_eq?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: ne) - */ - execution_payload_transactions_total_bytes_compressed_ne?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: lt) - */ - execution_payload_transactions_total_bytes_compressed_lt?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: lte) - */ - execution_payload_transactions_total_bytes_compressed_lte?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: gt) - */ - execution_payload_transactions_total_bytes_compressed_gt?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: gte) - */ - execution_payload_transactions_total_bytes_compressed_gte?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: between_min) - */ - execution_payload_transactions_total_bytes_compressed_between_min?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: between_max_value) - */ - execution_payload_transactions_total_bytes_compressed_between_max_value?: number; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_compressed_in_values?: string; - /** - * The transaction total bytes of the execution payload when compressed using snappy (filter: not_in_values) (comma-separated list) - */ - execution_payload_transactions_total_bytes_compressed_not_in_values?: string; - /** - * The maximum number of int_block_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntBlockCanonical` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_block_canonical'; -}; - -export type IntBlockCanonicalServiceListErrors = { + count_eq?: number; /** - * Default error response + * Number of times this opcode was executed in the transaction (filter: ne) */ - default: Status; -}; - -export type IntBlockCanonicalServiceListError = IntBlockCanonicalServiceListErrors[keyof IntBlockCanonicalServiceListErrors]; - -export type IntBlockCanonicalServiceListResponses = { + count_ne?: number; /** - * OK + * Number of times this opcode was executed in the transaction (filter: lt) */ - 200: ListIntBlockCanonicalResponse; -}; - -export type IntBlockCanonicalServiceListResponse = IntBlockCanonicalServiceListResponses[keyof IntBlockCanonicalServiceListResponses]; - -export type IntBlockCanonicalServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the reorg slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_block_canonical/{slot_start_date_time}'; -}; - -export type IntBlockCanonicalServiceGetErrors = { + count_lt?: number; /** - * Default error response + * Number of times this opcode was executed in the transaction (filter: lte) */ - default: Status; -}; - -export type IntBlockCanonicalServiceGetError = IntBlockCanonicalServiceGetErrors[keyof IntBlockCanonicalServiceGetErrors]; - -export type IntBlockCanonicalServiceGetResponses = { + count_lte?: number; /** - * OK + * Number of times this opcode was executed in the transaction (filter: gt) */ - 200: GetIntBlockCanonicalResponse; -}; - -export type IntBlockCanonicalServiceGetResponse = IntBlockCanonicalServiceGetResponses[keyof IntBlockCanonicalServiceGetResponses]; - -export type IntBlockMevCanonicalServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The start time for the slot that the proposer payload is for (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The start time for the slot that the proposer payload is for (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The start time for the slot that the proposer payload is for (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The start time for the slot that the proposer payload is for (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The start time for the slot that the proposer payload is for (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The start time for the slot that the proposer payload is for (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The start time for the slot that the proposer payload is for (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The start time for the slot that the proposer payload is for (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The start time for the slot that the proposer payload is for (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The start time for the slot that the proposer payload is for (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * The root hash of the beacon block (filter: eq) - */ - block_root_eq?: string; - /** - * The root hash of the beacon block (filter: ne) - */ - block_root_ne?: string; - /** - * The root hash of the beacon block (filter: contains) - */ - block_root_contains?: string; - /** - * The root hash of the beacon block (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The root hash of the beacon block (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The root hash of the beacon block (filter: like) - */ - block_root_like?: string; - /** - * The root hash of the beacon block (filter: not_like) - */ - block_root_not_like?: string; - /** - * The root hash of the beacon block (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The root hash of the beacon block (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Slot number within the block proposer payload (filter: eq) - */ - slot_eq?: number; - /** - * Slot number within the block proposer payload (filter: ne) - */ - slot_ne?: number; - /** - * Slot number within the block proposer payload (filter: lt) - */ - slot_lt?: number; - /** - * Slot number within the block proposer payload (filter: lte) - */ - slot_lte?: number; - /** - * Slot number within the block proposer payload (filter: gt) - */ - slot_gt?: number; - /** - * Slot number within the block proposer payload (filter: gte) - */ - slot_gte?: number; - /** - * Slot number within the block proposer payload (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number within the block proposer payload (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number within the block proposer payload (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number within the block proposer payload (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot that the proposer payload is for (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The start time for the epoch that the proposer payload is for (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The start time for the epoch that the proposer payload is for (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The start time for the epoch that the proposer payload is for (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: eq) - */ - earliest_bid_date_time_eq?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: ne) - */ - earliest_bid_date_time_ne?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: lt) - */ - earliest_bid_date_time_lt?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: lte) - */ - earliest_bid_date_time_lte?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: gt) - */ - earliest_bid_date_time_gt?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: gte) - */ - earliest_bid_date_time_gte?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: between_min) - */ - earliest_bid_date_time_between_min?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: between_max_value) - */ - earliest_bid_date_time_between_max_value?: number; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: in_values) (comma-separated list) - */ - earliest_bid_date_time_in_values?: string; - /** - * The earliest timestamp of the accepted bid in milliseconds (filter: not_in_values) (comma-separated list) - */ - earliest_bid_date_time_not_in_values?: string; - /** - * The relay names that delivered the proposer payload (filter: has) - */ - relay_names_has?: string; - /** - * The relay names that delivered the proposer payload (filter: has_all_values) - */ - relay_names_has_all_values?: Array; - /** - * The relay names that delivered the proposer payload (filter: has_any_values) - */ - relay_names_has_any_values?: Array; - /** - * The relay names that delivered the proposer payload (filter: length_eq) - */ - relay_names_length_eq?: number; - /** - * The relay names that delivered the proposer payload (filter: length_gt) - */ - relay_names_length_gt?: number; - /** - * The relay names that delivered the proposer payload (filter: length_gte) - */ - relay_names_length_gte?: number; - /** - * The relay names that delivered the proposer payload (filter: length_lt) - */ - relay_names_length_lt?: number; - /** - * The relay names that delivered the proposer payload (filter: length_lte) - */ - relay_names_length_lte?: number; - /** - * The parent hash of the proposer payload (filter: eq) - */ - parent_hash_eq?: string; - /** - * The parent hash of the proposer payload (filter: ne) - */ - parent_hash_ne?: string; - /** - * The parent hash of the proposer payload (filter: contains) - */ - parent_hash_contains?: string; - /** - * The parent hash of the proposer payload (filter: starts_with) - */ - parent_hash_starts_with?: string; - /** - * The parent hash of the proposer payload (filter: ends_with) - */ - parent_hash_ends_with?: string; - /** - * The parent hash of the proposer payload (filter: like) - */ - parent_hash_like?: string; - /** - * The parent hash of the proposer payload (filter: not_like) - */ - parent_hash_not_like?: string; - /** - * The parent hash of the proposer payload (filter: in_values) (comma-separated list) - */ - parent_hash_in_values?: string; - /** - * The parent hash of the proposer payload (filter: not_in_values) (comma-separated list) - */ - parent_hash_not_in_values?: string; - /** - * The block number of the proposer payload (filter: eq) - */ - block_number_eq?: number; - /** - * The block number of the proposer payload (filter: ne) - */ - block_number_ne?: number; - /** - * The block number of the proposer payload (filter: lt) - */ - block_number_lt?: number; - /** - * The block number of the proposer payload (filter: lte) - */ - block_number_lte?: number; - /** - * The block number of the proposer payload (filter: gt) - */ - block_number_gt?: number; - /** - * The block number of the proposer payload (filter: gte) - */ - block_number_gte?: number; - /** - * The block number of the proposer payload (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number of the proposer payload (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number of the proposer payload (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number of the proposer payload (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The block hash of the proposer payload (filter: eq) - */ - block_hash_eq?: string; - /** - * The block hash of the proposer payload (filter: ne) - */ - block_hash_ne?: string; - /** - * The block hash of the proposer payload (filter: contains) - */ - block_hash_contains?: string; - /** - * The block hash of the proposer payload (filter: starts_with) - */ - block_hash_starts_with?: string; - /** - * The block hash of the proposer payload (filter: ends_with) - */ - block_hash_ends_with?: string; - /** - * The block hash of the proposer payload (filter: like) - */ - block_hash_like?: string; - /** - * The block hash of the proposer payload (filter: not_like) - */ - block_hash_not_like?: string; - /** - * The block hash of the proposer payload (filter: in_values) (comma-separated list) - */ - block_hash_in_values?: string; - /** - * The block hash of the proposer payload (filter: not_in_values) (comma-separated list) - */ - block_hash_not_in_values?: string; - /** - * The builder pubkey of the proposer payload (filter: eq) - */ - builder_pubkey_eq?: string; - /** - * The builder pubkey of the proposer payload (filter: ne) - */ - builder_pubkey_ne?: string; - /** - * The builder pubkey of the proposer payload (filter: contains) - */ - builder_pubkey_contains?: string; - /** - * The builder pubkey of the proposer payload (filter: starts_with) - */ - builder_pubkey_starts_with?: string; - /** - * The builder pubkey of the proposer payload (filter: ends_with) - */ - builder_pubkey_ends_with?: string; - /** - * The builder pubkey of the proposer payload (filter: like) - */ - builder_pubkey_like?: string; - /** - * The builder pubkey of the proposer payload (filter: not_like) - */ - builder_pubkey_not_like?: string; - /** - * The builder pubkey of the proposer payload (filter: in_values) (comma-separated list) - */ - builder_pubkey_in_values?: string; - /** - * The builder pubkey of the proposer payload (filter: not_in_values) (comma-separated list) - */ - builder_pubkey_not_in_values?: string; - /** - * The proposer pubkey of the proposer payload (filter: eq) - */ - proposer_pubkey_eq?: string; - /** - * The proposer pubkey of the proposer payload (filter: ne) - */ - proposer_pubkey_ne?: string; - /** - * The proposer pubkey of the proposer payload (filter: contains) - */ - proposer_pubkey_contains?: string; - /** - * The proposer pubkey of the proposer payload (filter: starts_with) - */ - proposer_pubkey_starts_with?: string; - /** - * The proposer pubkey of the proposer payload (filter: ends_with) - */ - proposer_pubkey_ends_with?: string; - /** - * The proposer pubkey of the proposer payload (filter: like) - */ - proposer_pubkey_like?: string; - /** - * The proposer pubkey of the proposer payload (filter: not_like) - */ - proposer_pubkey_not_like?: string; - /** - * The proposer pubkey of the proposer payload (filter: in_values) (comma-separated list) - */ - proposer_pubkey_in_values?: string; - /** - * The proposer pubkey of the proposer payload (filter: not_in_values) (comma-separated list) - */ - proposer_pubkey_not_in_values?: string; - /** - * The proposer fee recipient of the proposer payload (filter: eq) - */ - proposer_fee_recipient_eq?: string; - /** - * The proposer fee recipient of the proposer payload (filter: ne) - */ - proposer_fee_recipient_ne?: string; - /** - * The proposer fee recipient of the proposer payload (filter: contains) - */ - proposer_fee_recipient_contains?: string; - /** - * The proposer fee recipient of the proposer payload (filter: starts_with) - */ - proposer_fee_recipient_starts_with?: string; - /** - * The proposer fee recipient of the proposer payload (filter: ends_with) - */ - proposer_fee_recipient_ends_with?: string; - /** - * The proposer fee recipient of the proposer payload (filter: like) - */ - proposer_fee_recipient_like?: string; - /** - * The proposer fee recipient of the proposer payload (filter: not_like) - */ - proposer_fee_recipient_not_like?: string; - /** - * The proposer fee recipient of the proposer payload (filter: in_values) (comma-separated list) - */ - proposer_fee_recipient_in_values?: string; - /** - * The proposer fee recipient of the proposer payload (filter: not_in_values) (comma-separated list) - */ - proposer_fee_recipient_not_in_values?: string; - /** - * The gas limit of the proposer payload (filter: eq) - */ - gas_limit_eq?: number; - /** - * The gas limit of the proposer payload (filter: ne) - */ - gas_limit_ne?: number; - /** - * The gas limit of the proposer payload (filter: lt) - */ - gas_limit_lt?: number; - /** - * The gas limit of the proposer payload (filter: lte) - */ - gas_limit_lte?: number; - /** - * The gas limit of the proposer payload (filter: gt) - */ - gas_limit_gt?: number; - /** - * The gas limit of the proposer payload (filter: gte) - */ - gas_limit_gte?: number; - /** - * The gas limit of the proposer payload (filter: between_min) - */ - gas_limit_between_min?: number; - /** - * The gas limit of the proposer payload (filter: between_max_value) - */ - gas_limit_between_max_value?: number; - /** - * The gas limit of the proposer payload (filter: in_values) (comma-separated list) - */ - gas_limit_in_values?: string; - /** - * The gas limit of the proposer payload (filter: not_in_values) (comma-separated list) - */ - gas_limit_not_in_values?: string; - /** - * The gas used of the proposer payload (filter: eq) - */ - gas_used_eq?: number; - /** - * The gas used of the proposer payload (filter: ne) - */ - gas_used_ne?: number; - /** - * The gas used of the proposer payload (filter: lt) - */ - gas_used_lt?: number; - /** - * The gas used of the proposer payload (filter: lte) - */ - gas_used_lte?: number; - /** - * The gas used of the proposer payload (filter: gt) - */ - gas_used_gt?: number; - /** - * The gas used of the proposer payload (filter: gte) - */ - gas_used_gte?: number; - /** - * The gas used of the proposer payload (filter: between_min) - */ - gas_used_between_min?: number; - /** - * The gas used of the proposer payload (filter: between_max_value) - */ - gas_used_between_max_value?: number; - /** - * The gas used of the proposer payload (filter: in_values) (comma-separated list) - */ - gas_used_in_values?: string; - /** - * The gas used of the proposer payload (filter: not_in_values) (comma-separated list) - */ - gas_used_not_in_values?: string; - /** - * The transaction value in wei (filter: eq) - */ - value_eq?: string; - /** - * The transaction value in wei (filter: ne) - */ - value_ne?: string; - /** - * The transaction value in wei (filter: contains) - */ - value_contains?: string; - /** - * The transaction value in wei (filter: starts_with) - */ - value_starts_with?: string; - /** - * The transaction value in wei (filter: ends_with) - */ - value_ends_with?: string; - /** - * The transaction value in wei (filter: like) - */ - value_like?: string; - /** - * The transaction value in wei (filter: not_like) - */ - value_not_like?: string; - /** - * The transaction value in wei (filter: in_values) (comma-separated list) - */ - value_in_values?: string; - /** - * The transaction value in wei (filter: not_in_values) (comma-separated list) - */ - value_not_in_values?: string; - /** - * The number of transactions in the proposer payload (filter: eq) - */ - transaction_count_eq?: number; - /** - * The number of transactions in the proposer payload (filter: ne) - */ - transaction_count_ne?: number; - /** - * The number of transactions in the proposer payload (filter: lt) - */ - transaction_count_lt?: number; - /** - * The number of transactions in the proposer payload (filter: lte) - */ - transaction_count_lte?: number; - /** - * The number of transactions in the proposer payload (filter: gt) - */ - transaction_count_gt?: number; - /** - * The number of transactions in the proposer payload (filter: gte) - */ - transaction_count_gte?: number; - /** - * The number of transactions in the proposer payload (filter: between_min) - */ - transaction_count_between_min?: number; - /** - * The number of transactions in the proposer payload (filter: between_max_value) - */ - transaction_count_between_max_value?: number; - /** - * The number of transactions in the proposer payload (filter: in_values) (comma-separated list) - */ - transaction_count_in_values?: string; - /** - * The number of transactions in the proposer payload (filter: not_in_values) (comma-separated list) - */ - transaction_count_not_in_values?: string; - /** - * The maximum number of int_block_mev_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntBlockMevCanonical` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_block_mev_canonical'; -}; - -export type IntBlockMevCanonicalServiceListErrors = { + count_gt?: number; /** - * Default error response + * Number of times this opcode was executed in the transaction (filter: gte) */ - default: Status; -}; - -export type IntBlockMevCanonicalServiceListError = IntBlockMevCanonicalServiceListErrors[keyof IntBlockMevCanonicalServiceListErrors]; - -export type IntBlockMevCanonicalServiceListResponses = { + count_gte?: number; /** - * OK + * Number of times this opcode was executed in the transaction (filter: between_min) */ - 200: ListIntBlockMevCanonicalResponse; -}; - -export type IntBlockMevCanonicalServiceListResponse = IntBlockMevCanonicalServiceListResponses[keyof IntBlockMevCanonicalServiceListResponses]; - -export type IntBlockMevCanonicalServiceGetData = { - body?: never; - path: { - /** - * The start time for the slot that the proposer payload is for - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_block_mev_canonical/{slot_start_date_time}'; -}; - -export type IntBlockMevCanonicalServiceGetErrors = { + count_between_min?: number; /** - * Default error response + * Number of times this opcode was executed in the transaction (filter: between_max_value) */ - default: Status; -}; - -export type IntBlockMevCanonicalServiceGetError = IntBlockMevCanonicalServiceGetErrors[keyof IntBlockMevCanonicalServiceGetErrors]; - -export type IntBlockMevCanonicalServiceGetResponses = { + count_between_max_value?: number; /** - * OK + * Number of times this opcode was executed in the transaction (filter: in_values) (comma-separated list) */ - 200: GetIntBlockMevCanonicalResponse; -}; - -export type IntBlockMevCanonicalServiceGetResponse = IntBlockMevCanonicalServiceGetResponses[keyof IntBlockMevCanonicalServiceGetResponses]; - -export type IntBlockOpcodeGasServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: eq) - */ - opcode_eq?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ne) - */ - opcode_ne?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: contains) - */ - opcode_contains?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: starts_with) - */ - opcode_starts_with?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ends_with) - */ - opcode_ends_with?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: like) - */ - opcode_like?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_like) - */ - opcode_not_like?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: in_values) (comma-separated list) - */ - opcode_in_values?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_in_values) (comma-separated list) - */ - opcode_not_in_values?: string; - /** - * The name of the network (filter: eq) - */ - meta_network_name_eq?: string; - /** - * The name of the network (filter: ne) - */ - meta_network_name_ne?: string; - /** - * The name of the network (filter: contains) - */ - meta_network_name_contains?: string; - /** - * The name of the network (filter: starts_with) - */ - meta_network_name_starts_with?: string; - /** - * The name of the network (filter: ends_with) - */ - meta_network_name_ends_with?: string; - /** - * The name of the network (filter: like) - */ - meta_network_name_like?: string; - /** - * The name of the network (filter: not_like) - */ - meta_network_name_not_like?: string; - /** - * The name of the network (filter: in_values) (comma-separated list) - */ - meta_network_name_in_values?: string; - /** - * The name of the network (filter: not_in_values) (comma-separated list) - */ - meta_network_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total execution count of this opcode across all transactions in the block (filter: eq) - */ - count_eq?: number; - /** - * Total execution count of this opcode across all transactions in the block (filter: ne) - */ - count_ne?: number; - /** - * Total execution count of this opcode across all transactions in the block (filter: lt) - */ - count_lt?: number; - /** - * Total execution count of this opcode across all transactions in the block (filter: lte) - */ - count_lte?: number; - /** - * Total execution count of this opcode across all transactions in the block (filter: gt) - */ - count_gt?: number; - /** - * Total execution count of this opcode across all transactions in the block (filter: gte) - */ - count_gte?: number; - /** - * Total execution count of this opcode across all transactions in the block (filter: between_min) - */ - count_between_min?: number; - /** - * Total execution count of this opcode across all transactions in the block (filter: between_max_value) - */ - count_between_max_value?: number; - /** - * Total execution count of this opcode across all transactions in the block (filter: in_values) (comma-separated list) - */ - count_in_values?: string; - /** - * Total execution count of this opcode across all transactions in the block (filter: not_in_values) (comma-separated list) - */ - count_not_in_values?: string; - /** - * Total gas consumed by this opcode across all transactions in the block (filter: eq) - */ - gas_eq?: number; - /** - * Total gas consumed by this opcode across all transactions in the block (filter: ne) - */ - gas_ne?: number; - /** - * Total gas consumed by this opcode across all transactions in the block (filter: lt) - */ - gas_lt?: number; - /** - * Total gas consumed by this opcode across all transactions in the block (filter: lte) - */ - gas_lte?: number; - /** - * Total gas consumed by this opcode across all transactions in the block (filter: gt) - */ - gas_gt?: number; - /** - * Total gas consumed by this opcode across all transactions in the block (filter: gte) - */ - gas_gte?: number; - /** - * Total gas consumed by this opcode across all transactions in the block (filter: between_min) - */ - gas_between_min?: number; - /** - * Total gas consumed by this opcode across all transactions in the block (filter: between_max_value) - */ - gas_between_max_value?: number; - /** - * Total gas consumed by this opcode across all transactions in the block (filter: in_values) (comma-separated list) - */ - gas_in_values?: string; - /** - * Total gas consumed by this opcode across all transactions in the block (filter: not_in_values) (comma-separated list) - */ - gas_not_in_values?: string; - /** - * Number of times this opcode resulted in an error across all transactions (filter: eq) - */ - error_count_eq?: number; - /** - * Number of times this opcode resulted in an error across all transactions (filter: ne) - */ - error_count_ne?: number; - /** - * Number of times this opcode resulted in an error across all transactions (filter: lt) - */ - error_count_lt?: number; - /** - * Number of times this opcode resulted in an error across all transactions (filter: lte) - */ - error_count_lte?: number; - /** - * Number of times this opcode resulted in an error across all transactions (filter: gt) - */ - error_count_gt?: number; - /** - * Number of times this opcode resulted in an error across all transactions (filter: gte) - */ - error_count_gte?: number; - /** - * Number of times this opcode resulted in an error across all transactions (filter: between_min) - */ - error_count_between_min?: number; - /** - * Number of times this opcode resulted in an error across all transactions (filter: between_max_value) - */ - error_count_between_max_value?: number; - /** - * Number of times this opcode resulted in an error across all transactions (filter: in_values) (comma-separated list) - */ - error_count_in_values?: string; - /** - * Number of times this opcode resulted in an error across all transactions (filter: not_in_values) (comma-separated list) - */ - error_count_not_in_values?: string; - /** - * The maximum number of int_block_opcode_gas to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntBlockOpcodeGas` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_block_opcode_gas'; -}; - -export type IntBlockOpcodeGasServiceListErrors = { + count_in_values?: string; /** - * Default error response + * Number of times this opcode was executed in the transaction (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntBlockOpcodeGasServiceListError = IntBlockOpcodeGasServiceListErrors[keyof IntBlockOpcodeGasServiceListErrors]; - -export type IntBlockOpcodeGasServiceListResponses = { + count_not_in_values?: string; /** - * OK + * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: eq) */ - 200: ListIntBlockOpcodeGasResponse; -}; - -export type IntBlockOpcodeGasServiceListResponse = IntBlockOpcodeGasServiceListResponses[keyof IntBlockOpcodeGasServiceListResponses]; - -export type IntBlockOpcodeGasServiceGetData = { - body?: never; - path: { - /** - * The block number - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_block_opcode_gas/{block_number}'; -}; - -export type IntBlockOpcodeGasServiceGetErrors = { + gas_eq?: number; /** - * Default error response + * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: ne) */ - default: Status; -}; - -export type IntBlockOpcodeGasServiceGetError = IntBlockOpcodeGasServiceGetErrors[keyof IntBlockOpcodeGasServiceGetErrors]; - -export type IntBlockOpcodeGasServiceGetResponses = { + gas_ne?: number; /** - * OK + * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: lt) */ - 200: GetIntBlockOpcodeGasResponse; -}; - -export type IntBlockOpcodeGasServiceGetResponse = IntBlockOpcodeGasServiceGetResponses[keyof IntBlockOpcodeGasServiceGetResponses]; - -export type IntBlockProposerCanonicalServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The slot number (filter: eq) - */ - slot_eq?: number; - /** - * The slot number (filter: ne) - */ - slot_ne?: number; - /** - * The slot number (filter: lt) - */ - slot_lt?: number; - /** - * The slot number (filter: lte) - */ - slot_lte?: number; - /** - * The slot number (filter: gt) - */ - slot_gt?: number; - /** - * The slot number (filter: gte) - */ - slot_gte?: number; - /** - * The slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * The slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * The slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * The slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * The epoch number containing the slot (filter: eq) - */ - epoch_eq?: number; - /** - * The epoch number containing the slot (filter: ne) - */ - epoch_ne?: number; - /** - * The epoch number containing the slot (filter: lt) - */ - epoch_lt?: number; - /** - * The epoch number containing the slot (filter: lte) - */ - epoch_lte?: number; - /** - * The epoch number containing the slot (filter: gt) - */ - epoch_gt?: number; - /** - * The epoch number containing the slot (filter: gte) - */ - epoch_gte?: number; - /** - * The epoch number containing the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * The epoch number containing the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * The epoch number containing the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * The epoch number containing the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * The validator index of the proposer for the slot (filter: eq) - */ - proposer_validator_index_eq?: number; - /** - * The validator index of the proposer for the slot (filter: ne) - */ - proposer_validator_index_ne?: number; - /** - * The validator index of the proposer for the slot (filter: lt) - */ - proposer_validator_index_lt?: number; - /** - * The validator index of the proposer for the slot (filter: lte) - */ - proposer_validator_index_lte?: number; - /** - * The validator index of the proposer for the slot (filter: gt) - */ - proposer_validator_index_gt?: number; - /** - * The validator index of the proposer for the slot (filter: gte) - */ - proposer_validator_index_gte?: number; - /** - * The validator index of the proposer for the slot (filter: between_min) - */ - proposer_validator_index_between_min?: number; - /** - * The validator index of the proposer for the slot (filter: between_max_value) - */ - proposer_validator_index_between_max_value?: number; - /** - * The validator index of the proposer for the slot (filter: in_values) (comma-separated list) - */ - proposer_validator_index_in_values?: string; - /** - * The validator index of the proposer for the slot (filter: not_in_values) (comma-separated list) - */ - proposer_validator_index_not_in_values?: string; - /** - * The public key of the validator proposer (filter: eq) - */ - proposer_pubkey_eq?: string; - /** - * The public key of the validator proposer (filter: ne) - */ - proposer_pubkey_ne?: string; - /** - * The public key of the validator proposer (filter: contains) - */ - proposer_pubkey_contains?: string; - /** - * The public key of the validator proposer (filter: starts_with) - */ - proposer_pubkey_starts_with?: string; - /** - * The public key of the validator proposer (filter: ends_with) - */ - proposer_pubkey_ends_with?: string; - /** - * The public key of the validator proposer (filter: like) - */ - proposer_pubkey_like?: string; - /** - * The public key of the validator proposer (filter: not_like) - */ - proposer_pubkey_not_like?: string; - /** - * The public key of the validator proposer (filter: in_values) (comma-separated list) - */ - proposer_pubkey_in_values?: string; - /** - * The public key of the validator proposer (filter: not_in_values) (comma-separated list) - */ - proposer_pubkey_not_in_values?: string; - /** - * The beacon block root hash. Null if a slot was missed (filter: eq) - */ - block_root_eq?: string; - /** - * The beacon block root hash. Null if a slot was missed (filter: ne) - */ - block_root_ne?: string; - /** - * The beacon block root hash. Null if a slot was missed (filter: contains) - */ - block_root_contains?: string; - /** - * The beacon block root hash. Null if a slot was missed (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * The beacon block root hash. Null if a slot was missed (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * The beacon block root hash. Null if a slot was missed (filter: like) - */ - block_root_like?: string; - /** - * The beacon block root hash. Null if a slot was missed (filter: not_like) - */ - block_root_not_like?: string; - /** - * The beacon block root hash. Null if a slot was missed (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * The beacon block root hash. Null if a slot was missed (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * The maximum number of int_block_proposer_canonical to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntBlockProposerCanonical` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_block_proposer_canonical'; -}; - -export type IntBlockProposerCanonicalServiceListErrors = { + gas_lt?: number; /** - * Default error response + * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: lte) */ - default: Status; -}; - -export type IntBlockProposerCanonicalServiceListError = IntBlockProposerCanonicalServiceListErrors[keyof IntBlockProposerCanonicalServiceListErrors]; - -export type IntBlockProposerCanonicalServiceListResponses = { + gas_lte?: number; /** - * OK + * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: gt) */ - 200: ListIntBlockProposerCanonicalResponse; -}; - -export type IntBlockProposerCanonicalServiceListResponse = IntBlockProposerCanonicalServiceListResponses[keyof IntBlockProposerCanonicalServiceListResponses]; - -export type IntBlockProposerCanonicalServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_block_proposer_canonical/{slot_start_date_time}'; -}; - -export type IntBlockProposerCanonicalServiceGetErrors = { + gas_gt?: number; /** - * Default error response + * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: gte) */ - default: Status; -}; - -export type IntBlockProposerCanonicalServiceGetError = IntBlockProposerCanonicalServiceGetErrors[keyof IntBlockProposerCanonicalServiceGetErrors]; - -export type IntBlockProposerCanonicalServiceGetResponses = { + gas_gte?: number; /** - * OK + * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: between_min) */ - 200: GetIntBlockProposerCanonicalResponse; -}; - -export type IntBlockProposerCanonicalServiceGetResponse = IntBlockProposerCanonicalServiceGetResponses[keyof IntBlockProposerCanonicalServiceGetResponses]; - -export type IntBlockReceiptSizeServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The name of the network (filter: eq) - */ - meta_network_name_eq?: string; - /** - * The name of the network (filter: ne) - */ - meta_network_name_ne?: string; - /** - * The name of the network (filter: contains) - */ - meta_network_name_contains?: string; - /** - * The name of the network (filter: starts_with) - */ - meta_network_name_starts_with?: string; - /** - * The name of the network (filter: ends_with) - */ - meta_network_name_ends_with?: string; - /** - * The name of the network (filter: like) - */ - meta_network_name_like?: string; - /** - * The name of the network (filter: not_like) - */ - meta_network_name_not_like?: string; - /** - * The name of the network (filter: in_values) (comma-separated list) - */ - meta_network_name_in_values?: string; - /** - * The name of the network (filter: not_in_values) (comma-separated list) - */ - meta_network_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total RLP-encoded receipt bytes across all transactions in the block (filter: eq) - */ - receipt_bytes_eq?: number; - /** - * Total RLP-encoded receipt bytes across all transactions in the block (filter: ne) - */ - receipt_bytes_ne?: number; - /** - * Total RLP-encoded receipt bytes across all transactions in the block (filter: lt) - */ - receipt_bytes_lt?: number; - /** - * Total RLP-encoded receipt bytes across all transactions in the block (filter: lte) - */ - receipt_bytes_lte?: number; - /** - * Total RLP-encoded receipt bytes across all transactions in the block (filter: gt) - */ - receipt_bytes_gt?: number; - /** - * Total RLP-encoded receipt bytes across all transactions in the block (filter: gte) - */ - receipt_bytes_gte?: number; - /** - * Total RLP-encoded receipt bytes across all transactions in the block (filter: between_min) - */ - receipt_bytes_between_min?: number; - /** - * Total RLP-encoded receipt bytes across all transactions in the block (filter: between_max_value) - */ - receipt_bytes_between_max_value?: number; - /** - * Total RLP-encoded receipt bytes across all transactions in the block (filter: in_values) (comma-separated list) - */ - receipt_bytes_in_values?: string; - /** - * Total RLP-encoded receipt bytes across all transactions in the block (filter: not_in_values) (comma-separated list) - */ - receipt_bytes_not_in_values?: string; - /** - * Number of transactions in the block (filter: eq) - */ - transaction_count_eq?: number; - /** - * Number of transactions in the block (filter: ne) - */ - transaction_count_ne?: number; - /** - * Number of transactions in the block (filter: lt) - */ - transaction_count_lt?: number; - /** - * Number of transactions in the block (filter: lte) - */ - transaction_count_lte?: number; - /** - * Number of transactions in the block (filter: gt) - */ - transaction_count_gt?: number; - /** - * Number of transactions in the block (filter: gte) - */ - transaction_count_gte?: number; - /** - * Number of transactions in the block (filter: between_min) - */ - transaction_count_between_min?: number; - /** - * Number of transactions in the block (filter: between_max_value) - */ - transaction_count_between_max_value?: number; - /** - * Number of transactions in the block (filter: in_values) (comma-separated list) - */ - transaction_count_in_values?: string; - /** - * Number of transactions in the block (filter: not_in_values) (comma-separated list) - */ - transaction_count_not_in_values?: string; - /** - * Total logs emitted across all transactions in the block (filter: eq) - */ - log_count_eq?: number; - /** - * Total logs emitted across all transactions in the block (filter: ne) - */ - log_count_ne?: number; - /** - * Total logs emitted across all transactions in the block (filter: lt) - */ - log_count_lt?: number; - /** - * Total logs emitted across all transactions in the block (filter: lte) - */ - log_count_lte?: number; - /** - * Total logs emitted across all transactions in the block (filter: gt) - */ - log_count_gt?: number; - /** - * Total logs emitted across all transactions in the block (filter: gte) - */ - log_count_gte?: number; - /** - * Total logs emitted across all transactions in the block (filter: between_min) - */ - log_count_between_min?: number; - /** - * Total logs emitted across all transactions in the block (filter: between_max_value) - */ - log_count_between_max_value?: number; - /** - * Total logs emitted across all transactions in the block (filter: in_values) (comma-separated list) - */ - log_count_in_values?: string; - /** - * Total logs emitted across all transactions in the block (filter: not_in_values) (comma-separated list) - */ - log_count_not_in_values?: string; - /** - * Total raw bytes of log data fields across all transactions (filter: eq) - */ - log_data_bytes_eq?: number; - /** - * Total raw bytes of log data fields across all transactions (filter: ne) - */ - log_data_bytes_ne?: number; - /** - * Total raw bytes of log data fields across all transactions (filter: lt) - */ - log_data_bytes_lt?: number; - /** - * Total raw bytes of log data fields across all transactions (filter: lte) - */ - log_data_bytes_lte?: number; - /** - * Total raw bytes of log data fields across all transactions (filter: gt) - */ - log_data_bytes_gt?: number; - /** - * Total raw bytes of log data fields across all transactions (filter: gte) - */ - log_data_bytes_gte?: number; - /** - * Total raw bytes of log data fields across all transactions (filter: between_min) - */ - log_data_bytes_between_min?: number; - /** - * Total raw bytes of log data fields across all transactions (filter: between_max_value) - */ - log_data_bytes_between_max_value?: number; - /** - * Total raw bytes of log data fields across all transactions (filter: in_values) (comma-separated list) - */ - log_data_bytes_in_values?: string; - /** - * Total raw bytes of log data fields across all transactions (filter: not_in_values) (comma-separated list) - */ - log_data_bytes_not_in_values?: string; - /** - * Total number of topics across all logs in the block (filter: eq) - */ - log_topic_count_eq?: number; - /** - * Total number of topics across all logs in the block (filter: ne) - */ - log_topic_count_ne?: number; - /** - * Total number of topics across all logs in the block (filter: lt) - */ - log_topic_count_lt?: number; - /** - * Total number of topics across all logs in the block (filter: lte) - */ - log_topic_count_lte?: number; - /** - * Total number of topics across all logs in the block (filter: gt) - */ - log_topic_count_gt?: number; - /** - * Total number of topics across all logs in the block (filter: gte) - */ - log_topic_count_gte?: number; - /** - * Total number of topics across all logs in the block (filter: between_min) - */ - log_topic_count_between_min?: number; - /** - * Total number of topics across all logs in the block (filter: between_max_value) - */ - log_topic_count_between_max_value?: number; - /** - * Total number of topics across all logs in the block (filter: in_values) (comma-separated list) - */ - log_topic_count_in_values?: string; - /** - * Total number of topics across all logs in the block (filter: not_in_values) (comma-separated list) - */ - log_topic_count_not_in_values?: string; - /** - * Filter avg_receipt_bytes_per_transaction using value - */ - avg_receipt_bytes_per_transaction_value?: number; - /** - * Largest single transaction receipt in this block (filter: eq) - */ - max_receipt_bytes_per_transaction_eq?: number; - /** - * Largest single transaction receipt in this block (filter: ne) - */ - max_receipt_bytes_per_transaction_ne?: number; - /** - * Largest single transaction receipt in this block (filter: lt) - */ - max_receipt_bytes_per_transaction_lt?: number; - /** - * Largest single transaction receipt in this block (filter: lte) - */ - max_receipt_bytes_per_transaction_lte?: number; - /** - * Largest single transaction receipt in this block (filter: gt) - */ - max_receipt_bytes_per_transaction_gt?: number; - /** - * Largest single transaction receipt in this block (filter: gte) - */ - max_receipt_bytes_per_transaction_gte?: number; - /** - * Largest single transaction receipt in this block (filter: between_min) - */ - max_receipt_bytes_per_transaction_between_min?: number; - /** - * Largest single transaction receipt in this block (filter: between_max_value) - */ - max_receipt_bytes_per_transaction_between_max_value?: number; - /** - * Largest single transaction receipt in this block (filter: in_values) (comma-separated list) - */ - max_receipt_bytes_per_transaction_in_values?: string; - /** - * Largest single transaction receipt in this block (filter: not_in_values) (comma-separated list) - */ - max_receipt_bytes_per_transaction_not_in_values?: string; - /** - * 50th percentile of receipt bytes per transaction (filter: eq) - */ - p50_receipt_bytes_per_transaction_eq?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: ne) - */ - p50_receipt_bytes_per_transaction_ne?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: lt) - */ - p50_receipt_bytes_per_transaction_lt?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: lte) - */ - p50_receipt_bytes_per_transaction_lte?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: gt) - */ - p50_receipt_bytes_per_transaction_gt?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: gte) - */ - p50_receipt_bytes_per_transaction_gte?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: between_min) - */ - p50_receipt_bytes_per_transaction_between_min?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: between_max_value) - */ - p50_receipt_bytes_per_transaction_between_max_value?: number; - /** - * 50th percentile of receipt bytes per transaction (filter: in_values) (comma-separated list) - */ - p50_receipt_bytes_per_transaction_in_values?: string; - /** - * 50th percentile of receipt bytes per transaction (filter: not_in_values) (comma-separated list) - */ - p50_receipt_bytes_per_transaction_not_in_values?: string; - /** - * 95th percentile of receipt bytes per transaction (filter: eq) - */ - p95_receipt_bytes_per_transaction_eq?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: ne) - */ - p95_receipt_bytes_per_transaction_ne?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: lt) - */ - p95_receipt_bytes_per_transaction_lt?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: lte) - */ - p95_receipt_bytes_per_transaction_lte?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: gt) - */ - p95_receipt_bytes_per_transaction_gt?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: gte) - */ - p95_receipt_bytes_per_transaction_gte?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: between_min) - */ - p95_receipt_bytes_per_transaction_between_min?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: between_max_value) - */ - p95_receipt_bytes_per_transaction_between_max_value?: number; - /** - * 95th percentile of receipt bytes per transaction (filter: in_values) (comma-separated list) - */ - p95_receipt_bytes_per_transaction_in_values?: string; - /** - * 95th percentile of receipt bytes per transaction (filter: not_in_values) (comma-separated list) - */ - p95_receipt_bytes_per_transaction_not_in_values?: string; - /** - * The maximum number of int_block_receipt_size to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntBlockReceiptSize` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_block_receipt_size'; -}; - -export type IntBlockReceiptSizeServiceListErrors = { + gas_between_min?: number; /** - * Default error response + * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: between_max_value) */ - default: Status; -}; - -export type IntBlockReceiptSizeServiceListError = IntBlockReceiptSizeServiceListErrors[keyof IntBlockReceiptSizeServiceListErrors]; - -export type IntBlockReceiptSizeServiceListResponses = { + gas_between_max_value?: number; /** - * OK + * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: in_values) (comma-separated list) */ - 200: ListIntBlockReceiptSizeResponse; -}; - -export type IntBlockReceiptSizeServiceListResponse = IntBlockReceiptSizeServiceListResponses[keyof IntBlockReceiptSizeServiceListResponses]; - -export type IntBlockReceiptSizeServiceGetData = { - body?: never; - path: { - /** - * The block number - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_block_receipt_size/{block_number}'; -}; - -export type IntBlockReceiptSizeServiceGetErrors = { + gas_in_values?: string; /** - * Default error response + * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntBlockReceiptSizeServiceGetError = IntBlockReceiptSizeServiceGetErrors[keyof IntBlockReceiptSizeServiceGetErrors]; - -export type IntBlockReceiptSizeServiceGetResponses = { + gas_not_in_values?: string; /** - * OK + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: eq) */ - 200: GetIntBlockReceiptSizeResponse; -}; - -export type IntBlockReceiptSizeServiceGetResponse = IntBlockReceiptSizeServiceGetResponses[keyof IntBlockReceiptSizeServiceGetResponses]; - -export type IntBlockResourceGasServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The name of the network (filter: eq) - */ - meta_network_name_eq?: string; - /** - * The name of the network (filter: ne) - */ - meta_network_name_ne?: string; - /** - * The name of the network (filter: contains) - */ - meta_network_name_contains?: string; - /** - * The name of the network (filter: starts_with) - */ - meta_network_name_starts_with?: string; - /** - * The name of the network (filter: ends_with) - */ - meta_network_name_ends_with?: string; - /** - * The name of the network (filter: like) - */ - meta_network_name_like?: string; - /** - * The name of the network (filter: not_like) - */ - meta_network_name_not_like?: string; - /** - * The name of the network (filter: in_values) (comma-separated list) - */ - meta_network_name_in_values?: string; - /** - * The name of the network (filter: not_in_values) (comma-separated list) - */ - meta_network_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total compute gas across all transactions (filter: eq) - */ - gas_compute_eq?: number; - /** - * Total compute gas across all transactions (filter: ne) - */ - gas_compute_ne?: number; - /** - * Total compute gas across all transactions (filter: lt) - */ - gas_compute_lt?: number; - /** - * Total compute gas across all transactions (filter: lte) - */ - gas_compute_lte?: number; - /** - * Total compute gas across all transactions (filter: gt) - */ - gas_compute_gt?: number; - /** - * Total compute gas across all transactions (filter: gte) - */ - gas_compute_gte?: number; - /** - * Total compute gas across all transactions (filter: between_min) - */ - gas_compute_between_min?: number; - /** - * Total compute gas across all transactions (filter: between_max_value) - */ - gas_compute_between_max_value?: number; - /** - * Total compute gas across all transactions (filter: in_values) (comma-separated list) - */ - gas_compute_in_values?: string; - /** - * Total compute gas across all transactions (filter: not_in_values) (comma-separated list) - */ - gas_compute_not_in_values?: string; - /** - * Total memory expansion gas across all transactions (filter: eq) - */ - gas_memory_eq?: number; - /** - * Total memory expansion gas across all transactions (filter: ne) - */ - gas_memory_ne?: number; - /** - * Total memory expansion gas across all transactions (filter: lt) - */ - gas_memory_lt?: number; - /** - * Total memory expansion gas across all transactions (filter: lte) - */ - gas_memory_lte?: number; - /** - * Total memory expansion gas across all transactions (filter: gt) - */ - gas_memory_gt?: number; - /** - * Total memory expansion gas across all transactions (filter: gte) - */ - gas_memory_gte?: number; - /** - * Total memory expansion gas across all transactions (filter: between_min) - */ - gas_memory_between_min?: number; - /** - * Total memory expansion gas across all transactions (filter: between_max_value) - */ - gas_memory_between_max_value?: number; - /** - * Total memory expansion gas across all transactions (filter: in_values) (comma-separated list) - */ - gas_memory_in_values?: string; - /** - * Total memory expansion gas across all transactions (filter: not_in_values) (comma-separated list) - */ - gas_memory_not_in_values?: string; - /** - * Total cold address/storage access gas across all transactions (filter: eq) - */ - gas_address_access_eq?: number; - /** - * Total cold address/storage access gas across all transactions (filter: ne) - */ - gas_address_access_ne?: number; - /** - * Total cold address/storage access gas across all transactions (filter: lt) - */ - gas_address_access_lt?: number; - /** - * Total cold address/storage access gas across all transactions (filter: lte) - */ - gas_address_access_lte?: number; - /** - * Total cold address/storage access gas across all transactions (filter: gt) - */ - gas_address_access_gt?: number; - /** - * Total cold address/storage access gas across all transactions (filter: gte) - */ - gas_address_access_gte?: number; - /** - * Total cold address/storage access gas across all transactions (filter: between_min) - */ - gas_address_access_between_min?: number; - /** - * Total cold address/storage access gas across all transactions (filter: between_max_value) - */ - gas_address_access_between_max_value?: number; - /** - * Total cold address/storage access gas across all transactions (filter: in_values) (comma-separated list) - */ - gas_address_access_in_values?: string; - /** - * Total cold address/storage access gas across all transactions (filter: not_in_values) (comma-separated list) - */ - gas_address_access_not_in_values?: string; - /** - * Total state growth gas across all transactions (filter: eq) - */ - gas_state_growth_eq?: number; - /** - * Total state growth gas across all transactions (filter: ne) - */ - gas_state_growth_ne?: number; - /** - * Total state growth gas across all transactions (filter: lt) - */ - gas_state_growth_lt?: number; - /** - * Total state growth gas across all transactions (filter: lte) - */ - gas_state_growth_lte?: number; - /** - * Total state growth gas across all transactions (filter: gt) - */ - gas_state_growth_gt?: number; - /** - * Total state growth gas across all transactions (filter: gte) - */ - gas_state_growth_gte?: number; - /** - * Total state growth gas across all transactions (filter: between_min) - */ - gas_state_growth_between_min?: number; - /** - * Total state growth gas across all transactions (filter: between_max_value) - */ - gas_state_growth_between_max_value?: number; - /** - * Total state growth gas across all transactions (filter: in_values) (comma-separated list) - */ - gas_state_growth_in_values?: string; - /** - * Total state growth gas across all transactions (filter: not_in_values) (comma-separated list) - */ - gas_state_growth_not_in_values?: string; - /** - * Total history/log data gas across all transactions (filter: eq) - */ - gas_history_eq?: number; - /** - * Total history/log data gas across all transactions (filter: ne) - */ - gas_history_ne?: number; - /** - * Total history/log data gas across all transactions (filter: lt) - */ - gas_history_lt?: number; - /** - * Total history/log data gas across all transactions (filter: lte) - */ - gas_history_lte?: number; - /** - * Total history/log data gas across all transactions (filter: gt) - */ - gas_history_gt?: number; - /** - * Total history/log data gas across all transactions (filter: gte) - */ - gas_history_gte?: number; - /** - * Total history/log data gas across all transactions (filter: between_min) - */ - gas_history_between_min?: number; - /** - * Total history/log data gas across all transactions (filter: between_max_value) - */ - gas_history_between_max_value?: number; - /** - * Total history/log data gas across all transactions (filter: in_values) (comma-separated list) - */ - gas_history_in_values?: string; - /** - * Total history/log data gas across all transactions (filter: not_in_values) (comma-separated list) - */ - gas_history_not_in_values?: string; - /** - * Total bloom filter topic gas across all transactions (filter: eq) - */ - gas_bloom_topics_eq?: number; - /** - * Total bloom filter topic gas across all transactions (filter: ne) - */ - gas_bloom_topics_ne?: number; - /** - * Total bloom filter topic gas across all transactions (filter: lt) - */ - gas_bloom_topics_lt?: number; - /** - * Total bloom filter topic gas across all transactions (filter: lte) - */ - gas_bloom_topics_lte?: number; - /** - * Total bloom filter topic gas across all transactions (filter: gt) - */ - gas_bloom_topics_gt?: number; - /** - * Total bloom filter topic gas across all transactions (filter: gte) - */ - gas_bloom_topics_gte?: number; - /** - * Total bloom filter topic gas across all transactions (filter: between_min) - */ - gas_bloom_topics_between_min?: number; - /** - * Total bloom filter topic gas across all transactions (filter: between_max_value) - */ - gas_bloom_topics_between_max_value?: number; - /** - * Total bloom filter topic gas across all transactions (filter: in_values) (comma-separated list) - */ - gas_bloom_topics_in_values?: string; - /** - * Total bloom filter topic gas across all transactions (filter: not_in_values) (comma-separated list) - */ - gas_bloom_topics_not_in_values?: string; - /** - * Total block size gas across all transactions (filter: eq) - */ - gas_block_size_eq?: number; - /** - * Total block size gas across all transactions (filter: ne) - */ - gas_block_size_ne?: number; - /** - * Total block size gas across all transactions (filter: lt) - */ - gas_block_size_lt?: number; - /** - * Total block size gas across all transactions (filter: lte) - */ - gas_block_size_lte?: number; - /** - * Total block size gas across all transactions (filter: gt) - */ - gas_block_size_gt?: number; - /** - * Total block size gas across all transactions (filter: gte) - */ - gas_block_size_gte?: number; - /** - * Total block size gas across all transactions (filter: between_min) - */ - gas_block_size_between_min?: number; - /** - * Total block size gas across all transactions (filter: between_max_value) - */ - gas_block_size_between_max_value?: number; - /** - * Total block size gas across all transactions (filter: in_values) (comma-separated list) - */ - gas_block_size_in_values?: string; - /** - * Total block size gas across all transactions (filter: not_in_values) (comma-separated list) - */ - gas_block_size_not_in_values?: string; - /** - * Total gas refund across all transactions (filter: eq) - */ - gas_refund_eq?: number; - /** - * Total gas refund across all transactions (filter: ne) - */ - gas_refund_ne?: number; - /** - * Total gas refund across all transactions (filter: lt) - */ - gas_refund_lt?: number; - /** - * Total gas refund across all transactions (filter: lte) - */ - gas_refund_lte?: number; - /** - * Total gas refund across all transactions (filter: gt) - */ - gas_refund_gt?: number; - /** - * Total gas refund across all transactions (filter: gte) - */ - gas_refund_gte?: number; - /** - * Total gas refund across all transactions (filter: between_min) - */ - gas_refund_between_min?: number; - /** - * Total gas refund across all transactions (filter: between_max_value) - */ - gas_refund_between_max_value?: number; - /** - * Total gas refund across all transactions (filter: in_values) (comma-separated list) - */ - gas_refund_in_values?: string; - /** - * Total gas refund across all transactions (filter: not_in_values) (comma-separated list) - */ - gas_refund_not_in_values?: string; - /** - * The maximum number of int_block_resource_gas to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntBlockResourceGas` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_block_resource_gas'; -}; - -export type IntBlockResourceGasServiceListErrors = { + gas_cumulative_eq?: number; /** - * Default error response + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: ne) */ - default: Status; -}; - -export type IntBlockResourceGasServiceListError = IntBlockResourceGasServiceListErrors[keyof IntBlockResourceGasServiceListErrors]; - -export type IntBlockResourceGasServiceListResponses = { + gas_cumulative_ne?: number; /** - * OK + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: lt) */ - 200: ListIntBlockResourceGasResponse; -}; - -export type IntBlockResourceGasServiceListResponse = IntBlockResourceGasServiceListResponses[keyof IntBlockResourceGasServiceListResponses]; - -export type IntBlockResourceGasServiceGetData = { - body?: never; - path: { - /** - * The block number - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_block_resource_gas/{block_number}'; -}; - -export type IntBlockResourceGasServiceGetErrors = { + gas_cumulative_lt?: number; /** - * Default error response + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: lte) */ - default: Status; -}; - -export type IntBlockResourceGasServiceGetError = IntBlockResourceGasServiceGetErrors[keyof IntBlockResourceGasServiceGetErrors]; - -export type IntBlockResourceGasServiceGetResponses = { + gas_cumulative_lte?: number; /** - * OK + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: gt) */ - 200: GetIntBlockResourceGasResponse; -}; - -export type IntBlockResourceGasServiceGetResponse = IntBlockResourceGasServiceGetResponses[keyof IntBlockResourceGasServiceGetResponses]; - -export type IntContractCreationServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Block where contract was created (filter: eq) - */ - block_number_eq?: number; - /** - * Block where contract was created (filter: ne) - */ - block_number_ne?: number; - /** - * Block where contract was created (filter: lt) - */ - block_number_lt?: number; - /** - * Block where contract was created (filter: lte) - */ - block_number_lte?: number; - /** - * Block where contract was created (filter: gt) - */ - block_number_gt?: number; - /** - * Block where contract was created (filter: gte) - */ - block_number_gte?: number; - /** - * Block where contract was created (filter: between_min) - */ - block_number_between_min?: number; - /** - * Block where contract was created (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * Block where contract was created (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * Block where contract was created (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Address of created contract (filter: eq) - */ - contract_address_eq?: string; - /** - * Address of created contract (filter: ne) - */ - contract_address_ne?: string; - /** - * Address of created contract (filter: contains) - */ - contract_address_contains?: string; - /** - * Address of created contract (filter: starts_with) - */ - contract_address_starts_with?: string; - /** - * Address of created contract (filter: ends_with) - */ - contract_address_ends_with?: string; - /** - * Address of created contract (filter: like) - */ - contract_address_like?: string; - /** - * Address of created contract (filter: not_like) - */ - contract_address_not_like?: string; - /** - * Address of created contract (filter: in_values) (comma-separated list) - */ - contract_address_in_values?: string; - /** - * Address of created contract (filter: not_in_values) (comma-separated list) - */ - contract_address_not_in_values?: string; - /** - * Transaction hash (filter: eq) - */ - transaction_hash_eq?: string; - /** - * Transaction hash (filter: ne) - */ - transaction_hash_ne?: string; - /** - * Transaction hash (filter: contains) - */ - transaction_hash_contains?: string; - /** - * Transaction hash (filter: starts_with) - */ - transaction_hash_starts_with?: string; - /** - * Transaction hash (filter: ends_with) - */ - transaction_hash_ends_with?: string; - /** - * Transaction hash (filter: like) - */ - transaction_hash_like?: string; - /** - * Transaction hash (filter: not_like) - */ - transaction_hash_not_like?: string; - /** - * Transaction hash (filter: in_values) (comma-separated list) - */ - transaction_hash_in_values?: string; - /** - * Transaction hash (filter: not_in_values) (comma-separated list) - */ - transaction_hash_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Position in block (filter: eq) - */ - transaction_index_eq?: number; - /** - * Position in block (filter: ne) - */ - transaction_index_ne?: number; - /** - * Position in block (filter: lt) - */ - transaction_index_lt?: number; - /** - * Position in block (filter: lte) - */ - transaction_index_lte?: number; - /** - * Position in block (filter: gt) - */ - transaction_index_gt?: number; - /** - * Position in block (filter: gte) - */ - transaction_index_gte?: number; - /** - * Position in block (filter: between_min) - */ - transaction_index_between_min?: number; - /** - * Position in block (filter: between_max_value) - */ - transaction_index_between_max_value?: number; - /** - * Position in block (filter: in_values) (comma-separated list) - */ - transaction_index_in_values?: string; - /** - * Position in block (filter: not_in_values) (comma-separated list) - */ - transaction_index_not_in_values?: string; - /** - * Position within transaction (filter: eq) - */ - internal_index_eq?: number; - /** - * Position within transaction (filter: ne) - */ - internal_index_ne?: number; - /** - * Position within transaction (filter: lt) - */ - internal_index_lt?: number; - /** - * Position within transaction (filter: lte) - */ - internal_index_lte?: number; - /** - * Position within transaction (filter: gt) - */ - internal_index_gt?: number; - /** - * Position within transaction (filter: gte) - */ - internal_index_gte?: number; - /** - * Position within transaction (filter: between_min) - */ - internal_index_between_min?: number; - /** - * Position within transaction (filter: between_max_value) - */ - internal_index_between_max_value?: number; - /** - * Position within transaction (filter: in_values) (comma-separated list) - */ - internal_index_in_values?: string; - /** - * Position within transaction (filter: not_in_values) (comma-separated list) - */ - internal_index_not_in_values?: string; - /** - * Address that deployed the contract (filter: eq) - */ - deployer_eq?: string; - /** - * Address that deployed the contract (filter: ne) - */ - deployer_ne?: string; - /** - * Address that deployed the contract (filter: contains) - */ - deployer_contains?: string; - /** - * Address that deployed the contract (filter: starts_with) - */ - deployer_starts_with?: string; - /** - * Address that deployed the contract (filter: ends_with) - */ - deployer_ends_with?: string; - /** - * Address that deployed the contract (filter: like) - */ - deployer_like?: string; - /** - * Address that deployed the contract (filter: not_like) - */ - deployer_not_like?: string; - /** - * Address that deployed the contract (filter: in_values) (comma-separated list) - */ - deployer_in_values?: string; - /** - * Address that deployed the contract (filter: not_in_values) (comma-separated list) - */ - deployer_not_in_values?: string; - /** - * Factory contract address if applicable (filter: eq) - */ - factory_eq?: string; - /** - * Factory contract address if applicable (filter: ne) - */ - factory_ne?: string; - /** - * Factory contract address if applicable (filter: contains) - */ - factory_contains?: string; - /** - * Factory contract address if applicable (filter: starts_with) - */ - factory_starts_with?: string; - /** - * Factory contract address if applicable (filter: ends_with) - */ - factory_ends_with?: string; - /** - * Factory contract address if applicable (filter: like) - */ - factory_like?: string; - /** - * Factory contract address if applicable (filter: not_like) - */ - factory_not_like?: string; - /** - * Factory contract address if applicable (filter: in_values) (comma-separated list) - */ - factory_in_values?: string; - /** - * Factory contract address if applicable (filter: not_in_values) (comma-separated list) - */ - factory_not_in_values?: string; - /** - * Hash of the initialization code (filter: eq) - */ - init_code_hash_eq?: string; - /** - * Hash of the initialization code (filter: ne) - */ - init_code_hash_ne?: string; - /** - * Hash of the initialization code (filter: contains) - */ - init_code_hash_contains?: string; - /** - * Hash of the initialization code (filter: starts_with) - */ - init_code_hash_starts_with?: string; - /** - * Hash of the initialization code (filter: ends_with) - */ - init_code_hash_ends_with?: string; - /** - * Hash of the initialization code (filter: like) - */ - init_code_hash_like?: string; - /** - * Hash of the initialization code (filter: not_like) - */ - init_code_hash_not_like?: string; - /** - * Hash of the initialization code (filter: in_values) (comma-separated list) - */ - init_code_hash_in_values?: string; - /** - * Hash of the initialization code (filter: not_in_values) (comma-separated list) - */ - init_code_hash_not_in_values?: string; - /** - * The maximum number of int_contract_creation to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractCreation` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_creation'; -}; - -export type IntContractCreationServiceListErrors = { + gas_cumulative_gt?: number; /** - * Default error response + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: gte) */ - default: Status; -}; - -export type IntContractCreationServiceListError = IntContractCreationServiceListErrors[keyof IntContractCreationServiceListErrors]; - -export type IntContractCreationServiceListResponses = { + gas_cumulative_gte?: number; /** - * OK + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: between_min) */ - 200: ListIntContractCreationResponse; -}; - -export type IntContractCreationServiceListResponse = IntContractCreationServiceListResponses[keyof IntContractCreationServiceListResponses]; - -export type IntContractCreationServiceGetData = { - body?: never; - path: { - /** - * Block where contract was created - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_creation/{block_number}'; -}; - -export type IntContractCreationServiceGetErrors = { + gas_cumulative_between_min?: number; /** - * Default error response + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: between_max_value) */ - default: Status; -}; - -export type IntContractCreationServiceGetError = IntContractCreationServiceGetErrors[keyof IntContractCreationServiceGetErrors]; - -export type IntContractCreationServiceGetResponses = { + gas_cumulative_between_max_value?: number; /** - * OK + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: in_values) (comma-separated list) */ - 200: GetIntContractCreationResponse; -}; - -export type IntContractCreationServiceGetResponse = IntContractCreationServiceGetResponses[keyof IntContractCreationServiceGetResponses]; - -export type IntContractSelfdestructServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Block where SELFDESTRUCT occurred (filter: eq) - */ - block_number_eq?: number; - /** - * Block where SELFDESTRUCT occurred (filter: ne) - */ - block_number_ne?: number; - /** - * Block where SELFDESTRUCT occurred (filter: lt) - */ - block_number_lt?: number; - /** - * Block where SELFDESTRUCT occurred (filter: lte) - */ - block_number_lte?: number; - /** - * Block where SELFDESTRUCT occurred (filter: gt) - */ - block_number_gt?: number; - /** - * Block where SELFDESTRUCT occurred (filter: gte) - */ - block_number_gte?: number; - /** - * Block where SELFDESTRUCT occurred (filter: between_min) - */ - block_number_between_min?: number; - /** - * Block where SELFDESTRUCT occurred (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * Block where SELFDESTRUCT occurred (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * Block where SELFDESTRUCT occurred (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Position in block (filter: eq) - */ - transaction_index_eq?: number; - /** - * Position in block (filter: ne) - */ - transaction_index_ne?: number; - /** - * Position in block (filter: lt) - */ - transaction_index_lt?: number; - /** - * Position in block (filter: lte) - */ - transaction_index_lte?: number; - /** - * Position in block (filter: gt) - */ - transaction_index_gt?: number; - /** - * Position in block (filter: gte) - */ - transaction_index_gte?: number; - /** - * Position in block (filter: between_min) - */ - transaction_index_between_min?: number; - /** - * Position in block (filter: between_max_value) - */ - transaction_index_between_max_value?: number; - /** - * Position in block (filter: in_values) (comma-separated list) - */ - transaction_index_in_values?: string; - /** - * Position in block (filter: not_in_values) (comma-separated list) - */ - transaction_index_not_in_values?: string; - /** - * Position within transaction traces (filter: eq) - */ - internal_index_eq?: number; - /** - * Position within transaction traces (filter: ne) - */ - internal_index_ne?: number; - /** - * Position within transaction traces (filter: lt) - */ - internal_index_lt?: number; - /** - * Position within transaction traces (filter: lte) - */ - internal_index_lte?: number; - /** - * Position within transaction traces (filter: gt) - */ - internal_index_gt?: number; - /** - * Position within transaction traces (filter: gte) - */ - internal_index_gte?: number; - /** - * Position within transaction traces (filter: between_min) - */ - internal_index_between_min?: number; - /** - * Position within transaction traces (filter: between_max_value) - */ - internal_index_between_max_value?: number; - /** - * Position within transaction traces (filter: in_values) (comma-separated list) - */ - internal_index_in_values?: string; - /** - * Position within transaction traces (filter: not_in_values) (comma-separated list) - */ - internal_index_not_in_values?: string; - /** - * Contract that was destroyed (filter: eq) - */ - address_eq?: string; - /** - * Contract that was destroyed (filter: ne) - */ - address_ne?: string; - /** - * Contract that was destroyed (filter: contains) - */ - address_contains?: string; - /** - * Contract that was destroyed (filter: starts_with) - */ - address_starts_with?: string; - /** - * Contract that was destroyed (filter: ends_with) - */ - address_ends_with?: string; - /** - * Contract that was destroyed (filter: like) - */ - address_like?: string; - /** - * Contract that was destroyed (filter: not_like) - */ - address_not_like?: string; - /** - * Contract that was destroyed (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * Contract that was destroyed (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Transaction hash (filter: eq) - */ - transaction_hash_eq?: string; - /** - * Transaction hash (filter: ne) - */ - transaction_hash_ne?: string; - /** - * Transaction hash (filter: contains) - */ - transaction_hash_contains?: string; - /** - * Transaction hash (filter: starts_with) - */ - transaction_hash_starts_with?: string; - /** - * Transaction hash (filter: ends_with) - */ - transaction_hash_ends_with?: string; - /** - * Transaction hash (filter: like) - */ - transaction_hash_like?: string; - /** - * Transaction hash (filter: not_like) - */ - transaction_hash_not_like?: string; - /** - * Transaction hash (filter: in_values) (comma-separated list) - */ - transaction_hash_in_values?: string; - /** - * Transaction hash (filter: not_in_values) (comma-separated list) - */ - transaction_hash_not_in_values?: string; - /** - * Address receiving the ETH (filter: eq) - */ - beneficiary_eq?: string; - /** - * Address receiving the ETH (filter: ne) - */ - beneficiary_ne?: string; - /** - * Address receiving the ETH (filter: contains) - */ - beneficiary_contains?: string; - /** - * Address receiving the ETH (filter: starts_with) - */ - beneficiary_starts_with?: string; - /** - * Address receiving the ETH (filter: ends_with) - */ - beneficiary_ends_with?: string; - /** - * Address receiving the ETH (filter: like) - */ - beneficiary_like?: string; - /** - * Address receiving the ETH (filter: not_like) - */ - beneficiary_not_like?: string; - /** - * Address receiving the ETH (filter: in_values) (comma-separated list) - */ - beneficiary_in_values?: string; - /** - * Address receiving the ETH (filter: not_in_values) (comma-separated list) - */ - beneficiary_not_in_values?: string; - /** - * Amount of ETH sent to beneficiary (filter: eq) - */ - value_transferred_eq?: string; - /** - * Amount of ETH sent to beneficiary (filter: ne) - */ - value_transferred_ne?: string; - /** - * Amount of ETH sent to beneficiary (filter: contains) - */ - value_transferred_contains?: string; - /** - * Amount of ETH sent to beneficiary (filter: starts_with) - */ - value_transferred_starts_with?: string; - /** - * Amount of ETH sent to beneficiary (filter: ends_with) - */ - value_transferred_ends_with?: string; - /** - * Amount of ETH sent to beneficiary (filter: like) - */ - value_transferred_like?: string; - /** - * Amount of ETH sent to beneficiary (filter: not_like) - */ - value_transferred_not_like?: string; - /** - * Amount of ETH sent to beneficiary (filter: in_values) (comma-separated list) - */ - value_transferred_in_values?: string; - /** - * Amount of ETH sent to beneficiary (filter: not_in_values) (comma-separated list) - */ - value_transferred_not_in_values?: string; - /** - * True if contract was created and destroyed in the same transaction - storage always cleared per EIP-6780 (filter: eq) - */ - ephemeral_eq?: boolean; - /** - * True if contract was created and destroyed in the same transaction - storage always cleared per EIP-6780 (filter: ne) - */ - ephemeral_ne?: boolean; - /** - * True if storage was cleared (pre-Shanghai OR ephemeral) (filter: eq) - */ - storage_cleared_eq?: boolean; - /** - * True if storage was cleared (pre-Shanghai OR ephemeral) (filter: ne) - */ - storage_cleared_ne?: boolean; - /** - * Block where contract was created (if known) (filter: eq) - */ - creation_block_eq?: number; - /** - * Block where contract was created (if known) (filter: ne) - */ - creation_block_ne?: number; - /** - * Block where contract was created (if known) (filter: lt) - */ - creation_block_lt?: number; - /** - * Block where contract was created (if known) (filter: lte) - */ - creation_block_lte?: number; - /** - * Block where contract was created (if known) (filter: gt) - */ - creation_block_gt?: number; - /** - * Block where contract was created (if known) (filter: gte) - */ - creation_block_gte?: number; - /** - * Block where contract was created (if known) (filter: between_min) - */ - creation_block_between_min?: number; - /** - * Block where contract was created (if known) (filter: between_max_value) - */ - creation_block_between_max_value?: number; - /** - * Block where contract was created (if known) (filter: in_values) (comma-separated list) - */ - creation_block_in_values?: string; - /** - * Block where contract was created (if known) (filter: not_in_values) (comma-separated list) - */ - creation_block_not_in_values?: string; - /** - * Transaction that created the contract (if known) (filter: eq) - */ - creation_transaction_hash_eq?: string; - /** - * Transaction that created the contract (if known) (filter: ne) - */ - creation_transaction_hash_ne?: string; - /** - * Transaction that created the contract (if known) (filter: contains) - */ - creation_transaction_hash_contains?: string; - /** - * Transaction that created the contract (if known) (filter: starts_with) - */ - creation_transaction_hash_starts_with?: string; - /** - * Transaction that created the contract (if known) (filter: ends_with) - */ - creation_transaction_hash_ends_with?: string; - /** - * Transaction that created the contract (if known) (filter: like) - */ - creation_transaction_hash_like?: string; - /** - * Transaction that created the contract (if known) (filter: not_like) - */ - creation_transaction_hash_not_like?: string; - /** - * Transaction that created the contract (if known) (filter: in_values) (comma-separated list) - */ - creation_transaction_hash_in_values?: string; - /** - * Transaction that created the contract (if known) (filter: not_in_values) (comma-separated list) - */ - creation_transaction_hash_not_in_values?: string; - /** - * The maximum number of int_contract_selfdestruct to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractSelfdestruct` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_selfdestruct'; -}; - -export type IntContractSelfdestructServiceListErrors = { + gas_cumulative_in_values?: string; /** - * Default error response + * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntContractSelfdestructServiceListError = IntContractSelfdestructServiceListErrors[keyof IntContractSelfdestructServiceListErrors]; - -export type IntContractSelfdestructServiceListResponses = { + gas_cumulative_not_in_values?: string; /** - * OK + * Number of times this opcode resulted in an error (filter: eq) */ - 200: ListIntContractSelfdestructResponse; -}; - -export type IntContractSelfdestructServiceListResponse = IntContractSelfdestructServiceListResponses[keyof IntContractSelfdestructServiceListResponses]; - -export type IntContractSelfdestructServiceGetData = { - body?: never; - path: { - /** - * Block where SELFDESTRUCT occurred - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_selfdestruct/{block_number}'; -}; - -export type IntContractSelfdestructServiceGetErrors = { + error_count_eq?: number; /** - * Default error response + * Number of times this opcode resulted in an error (filter: ne) */ - default: Status; -}; - -export type IntContractSelfdestructServiceGetError = IntContractSelfdestructServiceGetErrors[keyof IntContractSelfdestructServiceGetErrors]; - -export type IntContractSelfdestructServiceGetResponses = { + error_count_ne?: number; /** - * OK + * Number of times this opcode resulted in an error (filter: lt) */ - 200: GetIntContractSelfdestructResponse; -}; - -export type IntContractSelfdestructServiceGetResponse = IntContractSelfdestructServiceGetResponses[keyof IntContractSelfdestructServiceGetResponses]; - -export type IntContractStorageExpiry1mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this contract expiry is recorded (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this contract expiry is recorded (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this contract expiry is recorded (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this contract expiry is recorded (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this contract expiry is recorded (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this contract expiry is recorded (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this contract expiry is recorded (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this contract expiry is recorded (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this contract expiry is recorded (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this contract expiry is recorded (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Count of slots in the contract at expiry time (filter: eq) - */ - active_slots_eq?: number; - /** - * Count of slots in the contract at expiry time (filter: ne) - */ - active_slots_ne?: number; - /** - * Count of slots in the contract at expiry time (filter: lt) - */ - active_slots_lt?: number; - /** - * Count of slots in the contract at expiry time (filter: lte) - */ - active_slots_lte?: number; - /** - * Count of slots in the contract at expiry time (filter: gt) - */ - active_slots_gt?: number; - /** - * Count of slots in the contract at expiry time (filter: gte) - */ - active_slots_gte?: number; - /** - * Count of slots in the contract at expiry time (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Count of slots in the contract at expiry time (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Count of slots in the contract at expiry time (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Count of slots in the contract at expiry time (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_expiry_1m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageExpiry1m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_expiry_1m'; -}; - -export type IntContractStorageExpiry1mServiceListErrors = { + error_count_lt?: number; + /** + * Number of times this opcode resulted in an error (filter: lte) + */ + error_count_lte?: number; /** - * Default error response + * Number of times this opcode resulted in an error (filter: gt) */ - default: Status; -}; - -export type IntContractStorageExpiry1mServiceListError = IntContractStorageExpiry1mServiceListErrors[keyof IntContractStorageExpiry1mServiceListErrors]; - -export type IntContractStorageExpiry1mServiceListResponses = { + error_count_gt?: number; /** - * OK + * Number of times this opcode resulted in an error (filter: gte) */ - 200: ListIntContractStorageExpiry1mResponse; -}; - -export type IntContractStorageExpiry1mServiceListResponse = IntContractStorageExpiry1mServiceListResponses[keyof IntContractStorageExpiry1mServiceListResponses]; - -export type IntContractStorageExpiry1mServiceGetData = { - body?: never; - path: { - /** - * The block number where this contract expiry is recorded - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_expiry_1m/{block_number}'; -}; - -export type IntContractStorageExpiry1mServiceGetErrors = { + error_count_gte?: number; /** - * Default error response + * Number of times this opcode resulted in an error (filter: between_min) */ - default: Status; -}; - -export type IntContractStorageExpiry1mServiceGetError = IntContractStorageExpiry1mServiceGetErrors[keyof IntContractStorageExpiry1mServiceGetErrors]; - -export type IntContractStorageExpiry1mServiceGetResponses = { + error_count_between_min?: number; /** - * OK + * Number of times this opcode resulted in an error (filter: between_max_value) */ - 200: GetIntContractStorageExpiry1mResponse; -}; - -export type IntContractStorageExpiry1mServiceGetResponse = IntContractStorageExpiry1mServiceGetResponses[keyof IntContractStorageExpiry1mServiceGetResponses]; - -export type IntContractStorageExpiry6mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this contract expiry is recorded (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this contract expiry is recorded (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this contract expiry is recorded (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this contract expiry is recorded (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this contract expiry is recorded (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this contract expiry is recorded (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this contract expiry is recorded (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this contract expiry is recorded (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this contract expiry is recorded (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this contract expiry is recorded (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Count of slots in the contract at expiry time (filter: eq) - */ - active_slots_eq?: number; - /** - * Count of slots in the contract at expiry time (filter: ne) - */ - active_slots_ne?: number; - /** - * Count of slots in the contract at expiry time (filter: lt) - */ - active_slots_lt?: number; - /** - * Count of slots in the contract at expiry time (filter: lte) - */ - active_slots_lte?: number; - /** - * Count of slots in the contract at expiry time (filter: gt) - */ - active_slots_gt?: number; - /** - * Count of slots in the contract at expiry time (filter: gte) - */ - active_slots_gte?: number; - /** - * Count of slots in the contract at expiry time (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Count of slots in the contract at expiry time (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Count of slots in the contract at expiry time (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Count of slots in the contract at expiry time (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_expiry_6m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageExpiry6m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_expiry_6m'; -}; - -export type IntContractStorageExpiry6mServiceListErrors = { + error_count_between_max_value?: number; /** - * Default error response + * Number of times this opcode resulted in an error (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntContractStorageExpiry6mServiceListError = IntContractStorageExpiry6mServiceListErrors[keyof IntContractStorageExpiry6mServiceListErrors]; - -export type IntContractStorageExpiry6mServiceListResponses = { + error_count_in_values?: string; /** - * OK + * Number of times this opcode resulted in an error (filter: not_in_values) (comma-separated list) */ - 200: ListIntContractStorageExpiry6mResponse; -}; - -export type IntContractStorageExpiry6mServiceListResponse = IntContractStorageExpiry6mServiceListResponses[keyof IntContractStorageExpiry6mServiceListResponses]; - -export type IntContractStorageExpiry6mServiceGetData = { - body?: never; - path: { - /** - * The block number where this contract expiry is recorded - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_expiry_6m/{block_number}'; -}; - -export type IntContractStorageExpiry6mServiceGetErrors = { + error_count_not_in_values?: string; /** - * Default error response + * The maximum number of int_transaction_opcode_gas to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - default: Status; -}; - -export type IntContractStorageExpiry6mServiceGetError = IntContractStorageExpiry6mServiceGetErrors[keyof IntContractStorageExpiry6mServiceGetErrors]; - -export type IntContractStorageExpiry6mServiceGetResponses = { + page_size?: number; /** - * OK + * A page token, received from a previous `ListIntTransactionOpcodeGas` call. Provide this to retrieve the subsequent page. */ - 200: GetIntContractStorageExpiry6mResponse; -}; - -export type IntContractStorageExpiry6mServiceGetResponse = IntContractStorageExpiry6mServiceGetResponses[keyof IntContractStorageExpiry6mServiceGetResponses]; - -export type IntContractStorageExpiry12mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this contract expiry is recorded (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this contract expiry is recorded (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this contract expiry is recorded (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this contract expiry is recorded (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this contract expiry is recorded (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this contract expiry is recorded (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this contract expiry is recorded (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this contract expiry is recorded (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this contract expiry is recorded (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this contract expiry is recorded (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Count of slots in the contract at expiry time (filter: eq) - */ - active_slots_eq?: number; - /** - * Count of slots in the contract at expiry time (filter: ne) - */ - active_slots_ne?: number; - /** - * Count of slots in the contract at expiry time (filter: lt) - */ - active_slots_lt?: number; - /** - * Count of slots in the contract at expiry time (filter: lte) - */ - active_slots_lte?: number; - /** - * Count of slots in the contract at expiry time (filter: gt) - */ - active_slots_gt?: number; - /** - * Count of slots in the contract at expiry time (filter: gte) - */ - active_slots_gte?: number; - /** - * Count of slots in the contract at expiry time (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Count of slots in the contract at expiry time (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Count of slots in the contract at expiry time (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Count of slots in the contract at expiry time (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_expiry_12m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageExpiry12m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_expiry_12m'; -}; - -export type IntContractStorageExpiry12mServiceListErrors = { + page_token?: string; /** - * Default error response + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - default: Status; + order_by?: string; + }; + url: '/api/v1/int_transaction_opcode_gas'; }; -export type IntContractStorageExpiry12mServiceListError = IntContractStorageExpiry12mServiceListErrors[keyof IntContractStorageExpiry12mServiceListErrors]; - -export type IntContractStorageExpiry12mServiceListResponses = { - /** - * OK - */ - 200: ListIntContractStorageExpiry12mResponse; +export type IntTransactionOpcodeGasServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -export type IntContractStorageExpiry12mServiceListResponse = IntContractStorageExpiry12mServiceListResponses[keyof IntContractStorageExpiry12mServiceListResponses]; +export type IntTransactionOpcodeGasServiceListError = + IntTransactionOpcodeGasServiceListErrors[keyof IntTransactionOpcodeGasServiceListErrors]; -export type IntContractStorageExpiry12mServiceGetData = { - body?: never; - path: { - /** - * The block number where this contract expiry is recorded - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_expiry_12m/{block_number}'; +export type IntTransactionOpcodeGasServiceListResponses = { + /** + * OK + */ + 200: ListIntTransactionOpcodeGasResponse; }; -export type IntContractStorageExpiry12mServiceGetErrors = { +export type IntTransactionOpcodeGasServiceListResponse = + IntTransactionOpcodeGasServiceListResponses[keyof IntTransactionOpcodeGasServiceListResponses]; + +export type IntTransactionOpcodeGasServiceGetData = { + body?: never; + path: { /** - * Default error response + * The block number containing the transaction */ - default: Status; + block_number: number; + }; + query?: never; + url: '/api/v1/int_transaction_opcode_gas/{block_number}'; }; -export type IntContractStorageExpiry12mServiceGetError = IntContractStorageExpiry12mServiceGetErrors[keyof IntContractStorageExpiry12mServiceGetErrors]; - -export type IntContractStorageExpiry12mServiceGetResponses = { - /** - * OK - */ - 200: GetIntContractStorageExpiry12mResponse; +export type IntTransactionOpcodeGasServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -export type IntContractStorageExpiry12mServiceGetResponse = IntContractStorageExpiry12mServiceGetResponses[keyof IntContractStorageExpiry12mServiceGetResponses]; +export type IntTransactionOpcodeGasServiceGetError = + IntTransactionOpcodeGasServiceGetErrors[keyof IntTransactionOpcodeGasServiceGetErrors]; -export type IntContractStorageExpiry18mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this contract expiry is recorded (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this contract expiry is recorded (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this contract expiry is recorded (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this contract expiry is recorded (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this contract expiry is recorded (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this contract expiry is recorded (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this contract expiry is recorded (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this contract expiry is recorded (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this contract expiry is recorded (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this contract expiry is recorded (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Count of slots in the contract at expiry time (filter: eq) - */ - active_slots_eq?: number; - /** - * Count of slots in the contract at expiry time (filter: ne) - */ - active_slots_ne?: number; - /** - * Count of slots in the contract at expiry time (filter: lt) - */ - active_slots_lt?: number; - /** - * Count of slots in the contract at expiry time (filter: lte) - */ - active_slots_lte?: number; - /** - * Count of slots in the contract at expiry time (filter: gt) - */ - active_slots_gt?: number; - /** - * Count of slots in the contract at expiry time (filter: gte) - */ - active_slots_gte?: number; - /** - * Count of slots in the contract at expiry time (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Count of slots in the contract at expiry time (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Count of slots in the contract at expiry time (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Count of slots in the contract at expiry time (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_expiry_18m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageExpiry18m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_expiry_18m'; +export type IntTransactionOpcodeGasServiceGetResponses = { + /** + * OK + */ + 200: GetIntTransactionOpcodeGasResponse; }; -export type IntContractStorageExpiry18mServiceListErrors = { +export type IntTransactionOpcodeGasServiceGetResponse = + IntTransactionOpcodeGasServiceGetResponses[keyof IntTransactionOpcodeGasServiceGetResponses]; + +export type IntTransactionReceiptSizeServiceListData = { + body?: never; + path?: never; + query?: { /** - * Default error response + * The block number containing the transaction (filter: eq) */ - default: Status; -}; - -export type IntContractStorageExpiry18mServiceListError = IntContractStorageExpiry18mServiceListErrors[keyof IntContractStorageExpiry18mServiceListErrors]; - -export type IntContractStorageExpiry18mServiceListResponses = { + block_number_eq?: number; /** - * OK + * The block number containing the transaction (filter: ne) */ - 200: ListIntContractStorageExpiry18mResponse; -}; - -export type IntContractStorageExpiry18mServiceListResponse = IntContractStorageExpiry18mServiceListResponses[keyof IntContractStorageExpiry18mServiceListResponses]; - -export type IntContractStorageExpiry18mServiceGetData = { - body?: never; - path: { - /** - * The block number where this contract expiry is recorded - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_expiry_18m/{block_number}'; -}; - -export type IntContractStorageExpiry18mServiceGetErrors = { + block_number_ne?: number; /** - * Default error response + * The block number containing the transaction (filter: lt) */ - default: Status; -}; - -export type IntContractStorageExpiry18mServiceGetError = IntContractStorageExpiry18mServiceGetErrors[keyof IntContractStorageExpiry18mServiceGetErrors]; - -export type IntContractStorageExpiry18mServiceGetResponses = { + block_number_lt?: number; /** - * OK + * The block number containing the transaction (filter: lte) */ - 200: GetIntContractStorageExpiry18mResponse; -}; - -export type IntContractStorageExpiry18mServiceGetResponse = IntContractStorageExpiry18mServiceGetResponses[keyof IntContractStorageExpiry18mServiceGetResponses]; - -export type IntContractStorageExpiry24mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this contract expiry is recorded (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this contract expiry is recorded (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this contract expiry is recorded (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this contract expiry is recorded (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this contract expiry is recorded (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this contract expiry is recorded (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this contract expiry is recorded (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this contract expiry is recorded (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this contract expiry is recorded (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this contract expiry is recorded (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Count of slots in the contract at expiry time (filter: eq) - */ - active_slots_eq?: number; - /** - * Count of slots in the contract at expiry time (filter: ne) - */ - active_slots_ne?: number; - /** - * Count of slots in the contract at expiry time (filter: lt) - */ - active_slots_lt?: number; - /** - * Count of slots in the contract at expiry time (filter: lte) - */ - active_slots_lte?: number; - /** - * Count of slots in the contract at expiry time (filter: gt) - */ - active_slots_gt?: number; - /** - * Count of slots in the contract at expiry time (filter: gte) - */ - active_slots_gte?: number; - /** - * Count of slots in the contract at expiry time (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Count of slots in the contract at expiry time (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Count of slots in the contract at expiry time (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Count of slots in the contract at expiry time (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Sum of effective bytes across all slots in the contract at expiry time (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_expiry_24m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageExpiry24m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_expiry_24m'; -}; - -export type IntContractStorageExpiry24mServiceListErrors = { + block_number_lte?: number; /** - * Default error response + * The block number containing the transaction (filter: gt) */ - default: Status; -}; - -export type IntContractStorageExpiry24mServiceListError = IntContractStorageExpiry24mServiceListErrors[keyof IntContractStorageExpiry24mServiceListErrors]; - -export type IntContractStorageExpiry24mServiceListResponses = { + block_number_gt?: number; /** - * OK + * The block number containing the transaction (filter: gte) */ - 200: ListIntContractStorageExpiry24mResponse; -}; - -export type IntContractStorageExpiry24mServiceListResponse = IntContractStorageExpiry24mServiceListResponses[keyof IntContractStorageExpiry24mServiceListResponses]; - -export type IntContractStorageExpiry24mServiceGetData = { - body?: never; - path: { - /** - * The block number where this contract expiry is recorded - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_expiry_24m/{block_number}'; -}; - -export type IntContractStorageExpiry24mServiceGetErrors = { + block_number_gte?: number; /** - * Default error response + * The block number containing the transaction (filter: between_min) */ - default: Status; -}; - -export type IntContractStorageExpiry24mServiceGetError = IntContractStorageExpiry24mServiceGetErrors[keyof IntContractStorageExpiry24mServiceGetErrors]; - -export type IntContractStorageExpiry24mServiceGetResponses = { + block_number_between_min?: number; /** - * OK + * The block number containing the transaction (filter: between_max_value) */ - 200: GetIntContractStorageExpiry24mResponse; -}; - -export type IntContractStorageExpiry24mServiceGetResponse = IntContractStorageExpiry24mServiceGetResponses[keyof IntContractStorageExpiry24mServiceGetResponses]; - -export type IntContractStorageNextTouchServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this contract was touched (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this contract was touched (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this contract was touched (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this contract was touched (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this contract was touched (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this contract was touched (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this contract was touched (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this contract was touched (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this contract was touched (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this contract was touched (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The next block number where this contract was touched (NULL if no subsequent touch) (filter: eq) - */ - next_touch_block_eq?: number; - /** - * The next block number where this contract was touched (NULL if no subsequent touch) (filter: ne) - */ - next_touch_block_ne?: number; - /** - * The next block number where this contract was touched (NULL if no subsequent touch) (filter: lt) - */ - next_touch_block_lt?: number; - /** - * The next block number where this contract was touched (NULL if no subsequent touch) (filter: lte) - */ - next_touch_block_lte?: number; - /** - * The next block number where this contract was touched (NULL if no subsequent touch) (filter: gt) - */ - next_touch_block_gt?: number; - /** - * The next block number where this contract was touched (NULL if no subsequent touch) (filter: gte) - */ - next_touch_block_gte?: number; - /** - * The next block number where this contract was touched (NULL if no subsequent touch) (filter: between_min) - */ - next_touch_block_between_min?: number; - /** - * The next block number where this contract was touched (NULL if no subsequent touch) (filter: between_max_value) - */ - next_touch_block_between_max_value?: number; - /** - * The next block number where this contract was touched (NULL if no subsequent touch) (filter: in_values) (comma-separated list) - */ - next_touch_block_in_values?: string; - /** - * The next block number where this contract was touched (NULL if no subsequent touch) (filter: not_in_values) (comma-separated list) - */ - next_touch_block_not_in_values?: string; - /** - * The maximum number of int_contract_storage_next_touch to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageNextTouch` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_next_touch'; -}; - -export type IntContractStorageNextTouchServiceListErrors = { + block_number_between_max_value?: number; /** - * Default error response + * The block number containing the transaction (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntContractStorageNextTouchServiceListError = IntContractStorageNextTouchServiceListErrors[keyof IntContractStorageNextTouchServiceListErrors]; - -export type IntContractStorageNextTouchServiceListResponses = { + block_number_in_values?: string; /** - * OK + * The block number containing the transaction (filter: not_in_values) (comma-separated list) */ - 200: ListIntContractStorageNextTouchResponse; -}; - -export type IntContractStorageNextTouchServiceListResponse = IntContractStorageNextTouchServiceListResponses[keyof IntContractStorageNextTouchServiceListResponses]; - -export type IntContractStorageNextTouchServiceGetData = { - body?: never; - path: { - /** - * The block number where this contract was touched - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_next_touch/{block_number}'; -}; - -export type IntContractStorageNextTouchServiceGetErrors = { + block_number_not_in_values?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: eq) */ - default: Status; -}; - -export type IntContractStorageNextTouchServiceGetError = IntContractStorageNextTouchServiceGetErrors[keyof IntContractStorageNextTouchServiceGetErrors]; - -export type IntContractStorageNextTouchServiceGetResponses = { + transaction_hash_eq?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: ne) */ - 200: GetIntContractStorageNextTouchResponse; -}; - -export type IntContractStorageNextTouchServiceGetResponse = IntContractStorageNextTouchServiceGetResponses[keyof IntContractStorageNextTouchServiceGetResponses]; - -export type IntContractStorageReactivation1mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this contract was reactivated (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this contract was reactivated (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this contract was reactivated (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this contract was reactivated (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this contract was reactivated (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this contract was reactivated (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this contract was reactivated (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this contract was reactivated (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this contract was reactivated (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this contract was reactivated (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Count of slots being reactivated (filter: eq) - */ - active_slots_eq?: number; - /** - * Count of slots being reactivated (filter: ne) - */ - active_slots_ne?: number; - /** - * Count of slots being reactivated (filter: lt) - */ - active_slots_lt?: number; - /** - * Count of slots being reactivated (filter: lte) - */ - active_slots_lte?: number; - /** - * Count of slots being reactivated (filter: gt) - */ - active_slots_gt?: number; - /** - * Count of slots being reactivated (filter: gte) - */ - active_slots_gte?: number; - /** - * Count of slots being reactivated (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Count of slots being reactivated (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Count of slots being reactivated (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Count of slots being reactivated (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Sum of effective bytes being reactivated (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Sum of effective bytes being reactivated (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Sum of effective bytes being reactivated (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Sum of effective bytes being reactivated (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Sum of effective bytes being reactivated (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Sum of effective bytes being reactivated (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Sum of effective bytes being reactivated (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Sum of effective bytes being reactivated (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Sum of effective bytes being reactivated (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Sum of effective bytes being reactivated (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_reactivation_1m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageReactivation1m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_reactivation_1m'; -}; - -export type IntContractStorageReactivation1mServiceListErrors = { + transaction_hash_ne?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: contains) */ - default: Status; -}; - -export type IntContractStorageReactivation1mServiceListError = IntContractStorageReactivation1mServiceListErrors[keyof IntContractStorageReactivation1mServiceListErrors]; - -export type IntContractStorageReactivation1mServiceListResponses = { + transaction_hash_contains?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: starts_with) */ - 200: ListIntContractStorageReactivation1mResponse; -}; - -export type IntContractStorageReactivation1mServiceListResponse = IntContractStorageReactivation1mServiceListResponses[keyof IntContractStorageReactivation1mServiceListResponses]; - -export type IntContractStorageReactivation1mServiceGetData = { - body?: never; - path: { - /** - * The block number where this contract was reactivated - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_reactivation_1m/{block_number}'; -}; - -export type IntContractStorageReactivation1mServiceGetErrors = { + transaction_hash_starts_with?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: ends_with) */ - default: Status; -}; - -export type IntContractStorageReactivation1mServiceGetError = IntContractStorageReactivation1mServiceGetErrors[keyof IntContractStorageReactivation1mServiceGetErrors]; - -export type IntContractStorageReactivation1mServiceGetResponses = { + transaction_hash_ends_with?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: like) */ - 200: GetIntContractStorageReactivation1mResponse; -}; - -export type IntContractStorageReactivation1mServiceGetResponse = IntContractStorageReactivation1mServiceGetResponses[keyof IntContractStorageReactivation1mServiceGetResponses]; - -export type IntContractStorageReactivation6mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this contract was reactivated (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this contract was reactivated (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this contract was reactivated (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this contract was reactivated (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this contract was reactivated (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this contract was reactivated (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this contract was reactivated (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this contract was reactivated (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this contract was reactivated (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this contract was reactivated (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Count of slots being reactivated (filter: eq) - */ - active_slots_eq?: number; - /** - * Count of slots being reactivated (filter: ne) - */ - active_slots_ne?: number; - /** - * Count of slots being reactivated (filter: lt) - */ - active_slots_lt?: number; - /** - * Count of slots being reactivated (filter: lte) - */ - active_slots_lte?: number; - /** - * Count of slots being reactivated (filter: gt) - */ - active_slots_gt?: number; - /** - * Count of slots being reactivated (filter: gte) - */ - active_slots_gte?: number; - /** - * Count of slots being reactivated (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Count of slots being reactivated (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Count of slots being reactivated (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Count of slots being reactivated (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Sum of effective bytes being reactivated (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Sum of effective bytes being reactivated (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Sum of effective bytes being reactivated (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Sum of effective bytes being reactivated (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Sum of effective bytes being reactivated (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Sum of effective bytes being reactivated (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Sum of effective bytes being reactivated (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Sum of effective bytes being reactivated (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Sum of effective bytes being reactivated (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Sum of effective bytes being reactivated (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_reactivation_6m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageReactivation6m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_reactivation_6m'; -}; - -export type IntContractStorageReactivation6mServiceListErrors = { + transaction_hash_like?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: not_like) */ - default: Status; -}; - -export type IntContractStorageReactivation6mServiceListError = IntContractStorageReactivation6mServiceListErrors[keyof IntContractStorageReactivation6mServiceListErrors]; - -export type IntContractStorageReactivation6mServiceListResponses = { + transaction_hash_not_like?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) */ - 200: ListIntContractStorageReactivation6mResponse; -}; - -export type IntContractStorageReactivation6mServiceListResponse = IntContractStorageReactivation6mServiceListResponses[keyof IntContractStorageReactivation6mServiceListResponses]; - -export type IntContractStorageReactivation6mServiceGetData = { - body?: never; - path: { - /** - * The block number where this contract was reactivated - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_reactivation_6m/{block_number}'; -}; - -export type IntContractStorageReactivation6mServiceGetErrors = { + transaction_hash_in_values?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntContractStorageReactivation6mServiceGetError = IntContractStorageReactivation6mServiceGetErrors[keyof IntContractStorageReactivation6mServiceGetErrors]; - -export type IntContractStorageReactivation6mServiceGetResponses = { + transaction_hash_not_in_values?: string; /** - * OK + * The name of the network (filter: eq) */ - 200: GetIntContractStorageReactivation6mResponse; -}; - -export type IntContractStorageReactivation6mServiceGetResponse = IntContractStorageReactivation6mServiceGetResponses[keyof IntContractStorageReactivation6mServiceGetResponses]; - -export type IntContractStorageReactivation12mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this contract was reactivated (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this contract was reactivated (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this contract was reactivated (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this contract was reactivated (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this contract was reactivated (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this contract was reactivated (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this contract was reactivated (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this contract was reactivated (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this contract was reactivated (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this contract was reactivated (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Count of slots being reactivated (filter: eq) - */ - active_slots_eq?: number; - /** - * Count of slots being reactivated (filter: ne) - */ - active_slots_ne?: number; - /** - * Count of slots being reactivated (filter: lt) - */ - active_slots_lt?: number; - /** - * Count of slots being reactivated (filter: lte) - */ - active_slots_lte?: number; - /** - * Count of slots being reactivated (filter: gt) - */ - active_slots_gt?: number; - /** - * Count of slots being reactivated (filter: gte) - */ - active_slots_gte?: number; - /** - * Count of slots being reactivated (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Count of slots being reactivated (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Count of slots being reactivated (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Count of slots being reactivated (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Sum of effective bytes being reactivated (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Sum of effective bytes being reactivated (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Sum of effective bytes being reactivated (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Sum of effective bytes being reactivated (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Sum of effective bytes being reactivated (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Sum of effective bytes being reactivated (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Sum of effective bytes being reactivated (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Sum of effective bytes being reactivated (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Sum of effective bytes being reactivated (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Sum of effective bytes being reactivated (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_reactivation_12m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageReactivation12m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_reactivation_12m'; -}; - -export type IntContractStorageReactivation12mServiceListErrors = { + meta_network_name_eq?: string; /** - * Default error response + * The name of the network (filter: ne) */ - default: Status; -}; - -export type IntContractStorageReactivation12mServiceListError = IntContractStorageReactivation12mServiceListErrors[keyof IntContractStorageReactivation12mServiceListErrors]; - -export type IntContractStorageReactivation12mServiceListResponses = { + meta_network_name_ne?: string; /** - * OK + * The name of the network (filter: contains) */ - 200: ListIntContractStorageReactivation12mResponse; -}; - -export type IntContractStorageReactivation12mServiceListResponse = IntContractStorageReactivation12mServiceListResponses[keyof IntContractStorageReactivation12mServiceListResponses]; - -export type IntContractStorageReactivation12mServiceGetData = { - body?: never; - path: { - /** - * The block number where this contract was reactivated - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_reactivation_12m/{block_number}'; -}; - -export type IntContractStorageReactivation12mServiceGetErrors = { + meta_network_name_contains?: string; /** - * Default error response + * The name of the network (filter: starts_with) */ - default: Status; -}; - -export type IntContractStorageReactivation12mServiceGetError = IntContractStorageReactivation12mServiceGetErrors[keyof IntContractStorageReactivation12mServiceGetErrors]; - -export type IntContractStorageReactivation12mServiceGetResponses = { + meta_network_name_starts_with?: string; /** - * OK + * The name of the network (filter: ends_with) */ - 200: GetIntContractStorageReactivation12mResponse; -}; - -export type IntContractStorageReactivation12mServiceGetResponse = IntContractStorageReactivation12mServiceGetResponses[keyof IntContractStorageReactivation12mServiceGetResponses]; - -export type IntContractStorageReactivation18mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this contract was reactivated (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this contract was reactivated (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this contract was reactivated (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this contract was reactivated (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this contract was reactivated (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this contract was reactivated (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this contract was reactivated (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this contract was reactivated (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this contract was reactivated (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this contract was reactivated (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Count of slots being reactivated (filter: eq) - */ - active_slots_eq?: number; - /** - * Count of slots being reactivated (filter: ne) - */ - active_slots_ne?: number; - /** - * Count of slots being reactivated (filter: lt) - */ - active_slots_lt?: number; - /** - * Count of slots being reactivated (filter: lte) - */ - active_slots_lte?: number; - /** - * Count of slots being reactivated (filter: gt) - */ - active_slots_gt?: number; - /** - * Count of slots being reactivated (filter: gte) - */ - active_slots_gte?: number; - /** - * Count of slots being reactivated (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Count of slots being reactivated (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Count of slots being reactivated (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Count of slots being reactivated (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Sum of effective bytes being reactivated (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Sum of effective bytes being reactivated (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Sum of effective bytes being reactivated (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Sum of effective bytes being reactivated (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Sum of effective bytes being reactivated (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Sum of effective bytes being reactivated (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Sum of effective bytes being reactivated (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Sum of effective bytes being reactivated (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Sum of effective bytes being reactivated (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Sum of effective bytes being reactivated (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_reactivation_18m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageReactivation18m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_reactivation_18m'; -}; - -export type IntContractStorageReactivation18mServiceListErrors = { + meta_network_name_ends_with?: string; /** - * Default error response + * The name of the network (filter: like) */ - default: Status; -}; - -export type IntContractStorageReactivation18mServiceListError = IntContractStorageReactivation18mServiceListErrors[keyof IntContractStorageReactivation18mServiceListErrors]; - -export type IntContractStorageReactivation18mServiceListResponses = { + meta_network_name_like?: string; /** - * OK + * The name of the network (filter: not_like) */ - 200: ListIntContractStorageReactivation18mResponse; -}; - -export type IntContractStorageReactivation18mServiceListResponse = IntContractStorageReactivation18mServiceListResponses[keyof IntContractStorageReactivation18mServiceListResponses]; - -export type IntContractStorageReactivation18mServiceGetData = { - body?: never; - path: { - /** - * The block number where this contract was reactivated - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_reactivation_18m/{block_number}'; -}; - -export type IntContractStorageReactivation18mServiceGetErrors = { + meta_network_name_not_like?: string; /** - * Default error response + * The name of the network (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntContractStorageReactivation18mServiceGetError = IntContractStorageReactivation18mServiceGetErrors[keyof IntContractStorageReactivation18mServiceGetErrors]; - -export type IntContractStorageReactivation18mServiceGetResponses = { + meta_network_name_in_values?: string; /** - * OK + * The name of the network (filter: not_in_values) (comma-separated list) */ - 200: GetIntContractStorageReactivation18mResponse; -}; - -export type IntContractStorageReactivation18mServiceGetResponse = IntContractStorageReactivation18mServiceGetResponses[keyof IntContractStorageReactivation18mServiceGetResponses]; - -export type IntContractStorageReactivation24mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this contract was reactivated (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this contract was reactivated (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this contract was reactivated (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this contract was reactivated (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this contract was reactivated (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this contract was reactivated (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this contract was reactivated (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this contract was reactivated (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this contract was reactivated (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this contract was reactivated (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Count of slots being reactivated (filter: eq) - */ - active_slots_eq?: number; - /** - * Count of slots being reactivated (filter: ne) - */ - active_slots_ne?: number; - /** - * Count of slots being reactivated (filter: lt) - */ - active_slots_lt?: number; - /** - * Count of slots being reactivated (filter: lte) - */ - active_slots_lte?: number; - /** - * Count of slots being reactivated (filter: gt) - */ - active_slots_gt?: number; - /** - * Count of slots being reactivated (filter: gte) - */ - active_slots_gte?: number; - /** - * Count of slots being reactivated (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Count of slots being reactivated (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Count of slots being reactivated (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Count of slots being reactivated (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Sum of effective bytes being reactivated (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Sum of effective bytes being reactivated (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Sum of effective bytes being reactivated (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Sum of effective bytes being reactivated (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Sum of effective bytes being reactivated (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Sum of effective bytes being reactivated (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Sum of effective bytes being reactivated (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Sum of effective bytes being reactivated (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Sum of effective bytes being reactivated (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Sum of effective bytes being reactivated (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_reactivation_24m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageReactivation24m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_reactivation_24m'; -}; - -export type IntContractStorageReactivation24mServiceListErrors = { + meta_network_name_not_in_values?: string; /** - * Default error response + * Timestamp when the record was last updated (filter: eq) */ - default: Status; -}; - -export type IntContractStorageReactivation24mServiceListError = IntContractStorageReactivation24mServiceListErrors[keyof IntContractStorageReactivation24mServiceListErrors]; - -export type IntContractStorageReactivation24mServiceListResponses = { + updated_date_time_eq?: number; /** - * OK + * Timestamp when the record was last updated (filter: ne) */ - 200: ListIntContractStorageReactivation24mResponse; -}; - -export type IntContractStorageReactivation24mServiceListResponse = IntContractStorageReactivation24mServiceListResponses[keyof IntContractStorageReactivation24mServiceListResponses]; - -export type IntContractStorageReactivation24mServiceGetData = { - body?: never; - path: { - /** - * The block number where this contract was reactivated - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_reactivation_24m/{block_number}'; -}; - -export type IntContractStorageReactivation24mServiceGetErrors = { + updated_date_time_ne?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: lt) */ - default: Status; -}; - -export type IntContractStorageReactivation24mServiceGetError = IntContractStorageReactivation24mServiceGetErrors[keyof IntContractStorageReactivation24mServiceGetErrors]; - -export type IntContractStorageReactivation24mServiceGetResponses = { + updated_date_time_lt?: number; /** - * OK + * Timestamp when the record was last updated (filter: lte) */ - 200: GetIntContractStorageReactivation24mResponse; -}; - -export type IntContractStorageReactivation24mServiceGetResponse = IntContractStorageReactivation24mServiceGetResponses[keyof IntContractStorageReactivation24mServiceGetResponses]; - -export type IntContractStorageStateServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: eq) - */ - slots_delta_eq?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: ne) - */ - slots_delta_ne?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lt) - */ - slots_delta_lt?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lte) - */ - slots_delta_lte?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gt) - */ - slots_delta_gt?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gte) - */ - slots_delta_gte?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_min) - */ - slots_delta_between_min?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_max_value) - */ - slots_delta_between_max_value?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) - */ - slots_delta_in_values?: string; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) - */ - slots_delta_not_in_values?: string; - /** - * Change in effective bytes for this block (filter: eq) - */ - bytes_delta_eq?: number; - /** - * Change in effective bytes for this block (filter: ne) - */ - bytes_delta_ne?: number; - /** - * Change in effective bytes for this block (filter: lt) - */ - bytes_delta_lt?: number; - /** - * Change in effective bytes for this block (filter: lte) - */ - bytes_delta_lte?: number; - /** - * Change in effective bytes for this block (filter: gt) - */ - bytes_delta_gt?: number; - /** - * Change in effective bytes for this block (filter: gte) - */ - bytes_delta_gte?: number; - /** - * Change in effective bytes for this block (filter: between_min) - */ - bytes_delta_between_min?: number; - /** - * Change in effective bytes for this block (filter: between_max_value) - */ - bytes_delta_between_max_value?: number; - /** - * Change in effective bytes for this block (filter: in_values) (comma-separated list) - */ - bytes_delta_in_values?: string; - /** - * Change in effective bytes for this block (filter: not_in_values) (comma-separated list) - */ - bytes_delta_not_in_values?: string; - /** - * Cumulative count of active storage slots for this contract at this block (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots for this contract at this block (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_state to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageState` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_state'; -}; - -export type IntContractStorageStateServiceListErrors = { + updated_date_time_lte?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: gt) */ - default: Status; -}; - -export type IntContractStorageStateServiceListError = IntContractStorageStateServiceListErrors[keyof IntContractStorageStateServiceListErrors]; - -export type IntContractStorageStateServiceListResponses = { + updated_date_time_gt?: number; /** - * OK + * Timestamp when the record was last updated (filter: gte) */ - 200: ListIntContractStorageStateResponse; -}; - -export type IntContractStorageStateServiceListResponse = IntContractStorageStateServiceListResponses[keyof IntContractStorageStateServiceListResponses]; - -export type IntContractStorageStateServiceGetData = { - body?: never; - path: { - /** - * The block number - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_state/{block_number}'; -}; - -export type IntContractStorageStateServiceGetErrors = { + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntContractStorageStateServiceGetError = IntContractStorageStateServiceGetErrors[keyof IntContractStorageStateServiceGetErrors]; - -export type IntContractStorageStateServiceGetResponses = { + updated_date_time_in_values?: string; /** - * OK + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - 200: GetIntContractStorageStateResponse; -}; - -export type IntContractStorageStateServiceGetResponse = IntContractStorageStateServiceGetResponses[keyof IntContractStorageStateServiceGetResponses]; - -export type IntContractStorageStateByAddressServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: eq) - */ - slots_delta_eq?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: ne) - */ - slots_delta_ne?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lt) - */ - slots_delta_lt?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lte) - */ - slots_delta_lte?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gt) - */ - slots_delta_gt?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gte) - */ - slots_delta_gte?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_min) - */ - slots_delta_between_min?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_max_value) - */ - slots_delta_between_max_value?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) - */ - slots_delta_in_values?: string; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) - */ - slots_delta_not_in_values?: string; - /** - * Change in effective bytes for this block (filter: eq) - */ - bytes_delta_eq?: number; - /** - * Change in effective bytes for this block (filter: ne) - */ - bytes_delta_ne?: number; - /** - * Change in effective bytes for this block (filter: lt) - */ - bytes_delta_lt?: number; - /** - * Change in effective bytes for this block (filter: lte) - */ - bytes_delta_lte?: number; - /** - * Change in effective bytes for this block (filter: gt) - */ - bytes_delta_gt?: number; - /** - * Change in effective bytes for this block (filter: gte) - */ - bytes_delta_gte?: number; - /** - * Change in effective bytes for this block (filter: between_min) - */ - bytes_delta_between_min?: number; - /** - * Change in effective bytes for this block (filter: between_max_value) - */ - bytes_delta_between_max_value?: number; - /** - * Change in effective bytes for this block (filter: in_values) (comma-separated list) - */ - bytes_delta_in_values?: string; - /** - * Change in effective bytes for this block (filter: not_in_values) (comma-separated list) - */ - bytes_delta_not_in_values?: string; - /** - * Cumulative count of active storage slots for this contract at this block (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots for this contract at this block (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots for this contract at this block (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes for this contract at this block (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_state_by_address to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageStateByAddress` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_state_by_address'; -}; - -export type IntContractStorageStateByAddressServiceListErrors = { + updated_date_time_not_in_values?: string; /** - * Default error response + * The index of the transaction within the block (filter: eq) */ - default: Status; -}; - -export type IntContractStorageStateByAddressServiceListError = IntContractStorageStateByAddressServiceListErrors[keyof IntContractStorageStateByAddressServiceListErrors]; - -export type IntContractStorageStateByAddressServiceListResponses = { + transaction_index_eq?: number; /** - * OK + * The index of the transaction within the block (filter: ne) */ - 200: ListIntContractStorageStateByAddressResponse; -}; - -export type IntContractStorageStateByAddressServiceListResponse = IntContractStorageStateByAddressServiceListResponses[keyof IntContractStorageStateByAddressServiceListResponses]; - -export type IntContractStorageStateByAddressServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/int_contract_storage_state_by_address/{address}'; -}; - -export type IntContractStorageStateByAddressServiceGetErrors = { + transaction_index_ne?: number; /** - * Default error response + * The index of the transaction within the block (filter: lt) */ - default: Status; -}; - -export type IntContractStorageStateByAddressServiceGetError = IntContractStorageStateByAddressServiceGetErrors[keyof IntContractStorageStateByAddressServiceGetErrors]; - -export type IntContractStorageStateByAddressServiceGetResponses = { + transaction_index_lt?: number; /** - * OK + * The index of the transaction within the block (filter: lte) */ - 200: GetIntContractStorageStateByAddressResponse; -}; - -export type IntContractStorageStateByAddressServiceGetResponse = IntContractStorageStateByAddressServiceGetResponses[keyof IntContractStorageStateByAddressServiceGetResponses]; - -export type IntContractStorageStateByBlockServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: eq) - */ - slots_delta_eq?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: ne) - */ - slots_delta_ne?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lt) - */ - slots_delta_lt?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lte) - */ - slots_delta_lte?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gt) - */ - slots_delta_gt?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gte) - */ - slots_delta_gte?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_min) - */ - slots_delta_between_min?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_max_value) - */ - slots_delta_between_max_value?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) - */ - slots_delta_in_values?: string; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) - */ - slots_delta_not_in_values?: string; - /** - * Change in effective bytes for this block (filter: eq) - */ - bytes_delta_eq?: number; - /** - * Change in effective bytes for this block (filter: ne) - */ - bytes_delta_ne?: number; - /** - * Change in effective bytes for this block (filter: lt) - */ - bytes_delta_lt?: number; - /** - * Change in effective bytes for this block (filter: lte) - */ - bytes_delta_lte?: number; - /** - * Change in effective bytes for this block (filter: gt) - */ - bytes_delta_gt?: number; - /** - * Change in effective bytes for this block (filter: gte) - */ - bytes_delta_gte?: number; - /** - * Change in effective bytes for this block (filter: between_min) - */ - bytes_delta_between_min?: number; - /** - * Change in effective bytes for this block (filter: between_max_value) - */ - bytes_delta_between_max_value?: number; - /** - * Change in effective bytes for this block (filter: in_values) (comma-separated list) - */ - bytes_delta_in_values?: string; - /** - * Change in effective bytes for this block (filter: not_in_values) (comma-separated list) - */ - bytes_delta_not_in_values?: string; - /** - * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: eq) - */ - contracts_delta_eq?: number; - /** - * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: ne) - */ - contracts_delta_ne?: number; - /** - * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: lt) - */ - contracts_delta_lt?: number; - /** - * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: lte) - */ - contracts_delta_lte?: number; - /** - * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: gt) - */ - contracts_delta_gt?: number; - /** - * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: gte) - */ - contracts_delta_gte?: number; - /** - * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: between_min) - */ - contracts_delta_between_min?: number; - /** - * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: between_max_value) - */ - contracts_delta_between_max_value?: number; - /** - * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) - */ - contracts_delta_in_values?: string; - /** - * Change in active contracts for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) - */ - contracts_delta_not_in_values?: string; - /** - * Cumulative count of active storage slots at this block (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at this block (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at this block (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at this block (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at this block (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at this block (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at this block (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at this block (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at this block (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at this block (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * Cumulative count of contracts with at least one active slot at this block (filter: eq) - */ - active_contracts_eq?: number; - /** - * Cumulative count of contracts with at least one active slot at this block (filter: ne) - */ - active_contracts_ne?: number; - /** - * Cumulative count of contracts with at least one active slot at this block (filter: lt) - */ - active_contracts_lt?: number; - /** - * Cumulative count of contracts with at least one active slot at this block (filter: lte) - */ - active_contracts_lte?: number; - /** - * Cumulative count of contracts with at least one active slot at this block (filter: gt) - */ - active_contracts_gt?: number; - /** - * Cumulative count of contracts with at least one active slot at this block (filter: gte) - */ - active_contracts_gte?: number; - /** - * Cumulative count of contracts with at least one active slot at this block (filter: between_min) - */ - active_contracts_between_min?: number; - /** - * Cumulative count of contracts with at least one active slot at this block (filter: between_max_value) - */ - active_contracts_between_max_value?: number; - /** - * Cumulative count of contracts with at least one active slot at this block (filter: in_values) (comma-separated list) - */ - active_contracts_in_values?: string; - /** - * Cumulative count of contracts with at least one active slot at this block (filter: not_in_values) (comma-separated list) - */ - active_contracts_not_in_values?: string; - /** - * The maximum number of int_contract_storage_state_by_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageStateByBlock` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_state_by_block'; -}; - -export type IntContractStorageStateByBlockServiceListErrors = { + transaction_index_lte?: number; /** - * Default error response + * The index of the transaction within the block (filter: gt) */ - default: Status; -}; - -export type IntContractStorageStateByBlockServiceListError = IntContractStorageStateByBlockServiceListErrors[keyof IntContractStorageStateByBlockServiceListErrors]; - -export type IntContractStorageStateByBlockServiceListResponses = { + transaction_index_gt?: number; /** - * OK + * The index of the transaction within the block (filter: gte) */ - 200: ListIntContractStorageStateByBlockResponse; -}; - -export type IntContractStorageStateByBlockServiceListResponse = IntContractStorageStateByBlockServiceListResponses[keyof IntContractStorageStateByBlockServiceListResponses]; - -export type IntContractStorageStateByBlockServiceGetData = { - body?: never; - path: { - /** - * The block number - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_contract_storage_state_by_block/{block_number}'; -}; - -export type IntContractStorageStateByBlockServiceGetErrors = { + transaction_index_gte?: number; /** - * Default error response + * The index of the transaction within the block (filter: between_min) */ - default: Status; -}; - -export type IntContractStorageStateByBlockServiceGetError = IntContractStorageStateByBlockServiceGetErrors[keyof IntContractStorageStateByBlockServiceGetErrors]; - -export type IntContractStorageStateByBlockServiceGetResponses = { + transaction_index_between_min?: number; /** - * OK + * The index of the transaction within the block (filter: between_max_value) */ - 200: GetIntContractStorageStateByBlockResponse; -}; - -export type IntContractStorageStateByBlockServiceGetResponse = IntContractStorageStateByBlockServiceGetResponses[keyof IntContractStorageStateByBlockServiceGetResponses]; - -export type IntContractStorageStateWithExpiryServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: eq) - */ - net_slots_delta_eq?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: ne) - */ - net_slots_delta_ne?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lt) - */ - net_slots_delta_lt?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lte) - */ - net_slots_delta_lte?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gt) - */ - net_slots_delta_gt?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gte) - */ - net_slots_delta_gte?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) - */ - net_slots_delta_between_min?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) - */ - net_slots_delta_between_max_value?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) - */ - net_slots_delta_in_values?: string; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) - */ - net_slots_delta_not_in_values?: string; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: eq) - */ - net_bytes_delta_eq?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: ne) - */ - net_bytes_delta_ne?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lt) - */ - net_bytes_delta_lt?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lte) - */ - net_bytes_delta_lte?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gt) - */ - net_bytes_delta_gt?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gte) - */ - net_bytes_delta_gte?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) - */ - net_bytes_delta_between_min?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) - */ - net_bytes_delta_between_max_value?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) - */ - net_bytes_delta_in_values?: string; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) - */ - net_bytes_delta_not_in_values?: string; - /** - * Cumulative net slot adjustment up to this block (filter: eq) - */ - cumulative_net_slots_eq?: number; - /** - * Cumulative net slot adjustment up to this block (filter: ne) - */ - cumulative_net_slots_ne?: number; - /** - * Cumulative net slot adjustment up to this block (filter: lt) - */ - cumulative_net_slots_lt?: number; - /** - * Cumulative net slot adjustment up to this block (filter: lte) - */ - cumulative_net_slots_lte?: number; - /** - * Cumulative net slot adjustment up to this block (filter: gt) - */ - cumulative_net_slots_gt?: number; - /** - * Cumulative net slot adjustment up to this block (filter: gte) - */ - cumulative_net_slots_gte?: number; - /** - * Cumulative net slot adjustment up to this block (filter: between_min) - */ - cumulative_net_slots_between_min?: number; - /** - * Cumulative net slot adjustment up to this block (filter: between_max_value) - */ - cumulative_net_slots_between_max_value?: number; - /** - * Cumulative net slot adjustment up to this block (filter: in_values) (comma-separated list) - */ - cumulative_net_slots_in_values?: string; - /** - * Cumulative net slot adjustment up to this block (filter: not_in_values) (comma-separated list) - */ - cumulative_net_slots_not_in_values?: string; - /** - * Cumulative net bytes adjustment up to this block (filter: eq) - */ - cumulative_net_bytes_eq?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: ne) - */ - cumulative_net_bytes_ne?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: lt) - */ - cumulative_net_bytes_lt?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: lte) - */ - cumulative_net_bytes_lte?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: gt) - */ - cumulative_net_bytes_gt?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: gte) - */ - cumulative_net_bytes_gte?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: between_min) - */ - cumulative_net_bytes_between_min?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: between_max_value) - */ - cumulative_net_bytes_between_max_value?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: in_values) (comma-separated list) - */ - cumulative_net_bytes_in_values?: string; - /** - * Cumulative net bytes adjustment up to this block (filter: not_in_values) (comma-separated list) - */ - cumulative_net_bytes_not_in_values?: string; - /** - * Number of active storage slots in this contract (with expiry applied) (filter: eq) - */ - active_slots_eq?: number; - /** - * Number of active storage slots in this contract (with expiry applied) (filter: ne) - */ - active_slots_ne?: number; - /** - * Number of active storage slots in this contract (with expiry applied) (filter: lt) - */ - active_slots_lt?: number; - /** - * Number of active storage slots in this contract (with expiry applied) (filter: lte) - */ - active_slots_lte?: number; - /** - * Number of active storage slots in this contract (with expiry applied) (filter: gt) - */ - active_slots_gt?: number; - /** - * Number of active storage slots in this contract (with expiry applied) (filter: gte) - */ - active_slots_gte?: number; - /** - * Number of active storage slots in this contract (with expiry applied) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Number of active storage slots in this contract (with expiry applied) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Number of active storage slots in this contract (with expiry applied) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Number of active storage slots in this contract (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Effective bytes for this contract (with expiry applied) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Effective bytes for this contract (with expiry applied) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Effective bytes for this contract (with expiry applied) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Effective bytes for this contract (with expiry applied) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Effective bytes for this contract (with expiry applied) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Effective bytes for this contract (with expiry applied) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Effective bytes for this contract (with expiry applied) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Effective bytes for this contract (with expiry applied) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Effective bytes for this contract (with expiry applied) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Effective bytes for this contract (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * Previous block active_slots for this address (for transition detection) (filter: eq) - */ - prev_active_slots_eq?: number; - /** - * Previous block active_slots for this address (for transition detection) (filter: ne) - */ - prev_active_slots_ne?: number; - /** - * Previous block active_slots for this address (for transition detection) (filter: lt) - */ - prev_active_slots_lt?: number; - /** - * Previous block active_slots for this address (for transition detection) (filter: lte) - */ - prev_active_slots_lte?: number; - /** - * Previous block active_slots for this address (for transition detection) (filter: gt) - */ - prev_active_slots_gt?: number; - /** - * Previous block active_slots for this address (for transition detection) (filter: gte) - */ - prev_active_slots_gte?: number; - /** - * Previous block active_slots for this address (for transition detection) (filter: between_min) - */ - prev_active_slots_between_min?: number; - /** - * Previous block active_slots for this address (for transition detection) (filter: between_max_value) - */ - prev_active_slots_between_max_value?: number; - /** - * Previous block active_slots for this address (for transition detection) (filter: in_values) (comma-separated list) - */ - prev_active_slots_in_values?: string; - /** - * Previous block active_slots for this address (for transition detection) (filter: not_in_values) (comma-separated list) - */ - prev_active_slots_not_in_values?: string; - /** - * Previous block effective_bytes for this address (for delta calculation) (filter: eq) - */ - prev_effective_bytes_eq?: number; - /** - * Previous block effective_bytes for this address (for delta calculation) (filter: ne) - */ - prev_effective_bytes_ne?: number; - /** - * Previous block effective_bytes for this address (for delta calculation) (filter: lt) - */ - prev_effective_bytes_lt?: number; - /** - * Previous block effective_bytes for this address (for delta calculation) (filter: lte) - */ - prev_effective_bytes_lte?: number; - /** - * Previous block effective_bytes for this address (for delta calculation) (filter: gt) - */ - prev_effective_bytes_gt?: number; - /** - * Previous block effective_bytes for this address (for delta calculation) (filter: gte) - */ - prev_effective_bytes_gte?: number; - /** - * Previous block effective_bytes for this address (for delta calculation) (filter: between_min) - */ - prev_effective_bytes_between_min?: number; - /** - * Previous block effective_bytes for this address (for delta calculation) (filter: between_max_value) - */ - prev_effective_bytes_between_max_value?: number; - /** - * Previous block effective_bytes for this address (for delta calculation) (filter: in_values) (comma-separated list) - */ - prev_effective_bytes_in_values?: string; - /** - * Previous block effective_bytes for this address (for delta calculation) (filter: not_in_values) (comma-separated list) - */ - prev_effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_state_with_expiry to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageStateWithExpiry` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_state_with_expiry'; -}; - -export type IntContractStorageStateWithExpiryServiceListErrors = { + transaction_index_between_max_value?: number; /** - * Default error response + * The index of the transaction within the block (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntContractStorageStateWithExpiryServiceListError = IntContractStorageStateWithExpiryServiceListErrors[keyof IntContractStorageStateWithExpiryServiceListErrors]; - -export type IntContractStorageStateWithExpiryServiceListResponses = { + transaction_index_in_values?: string; /** - * OK + * The index of the transaction within the block (filter: not_in_values) (comma-separated list) */ - 200: ListIntContractStorageStateWithExpiryResponse; -}; - -export type IntContractStorageStateWithExpiryServiceListResponse = IntContractStorageStateWithExpiryServiceListResponses[keyof IntContractStorageStateWithExpiryServiceListResponses]; - -export type IntContractStorageStateWithExpiryServiceGetData = { - body?: never; - path: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy: string; - }; - query?: never; - url: '/api/v1/int_contract_storage_state_with_expiry/{expiry_policy}'; -}; - -export type IntContractStorageStateWithExpiryServiceGetErrors = { + transaction_index_not_in_values?: string; /** - * Default error response + * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: eq) */ - default: Status; -}; - -export type IntContractStorageStateWithExpiryServiceGetError = IntContractStorageStateWithExpiryServiceGetErrors[keyof IntContractStorageStateWithExpiryServiceGetErrors]; - -export type IntContractStorageStateWithExpiryServiceGetResponses = { + receipt_bytes_eq?: number; /** - * OK + * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: ne) */ - 200: GetIntContractStorageStateWithExpiryResponse; -}; - -export type IntContractStorageStateWithExpiryServiceGetResponse = IntContractStorageStateWithExpiryServiceGetResponses[keyof IntContractStorageStateWithExpiryServiceGetResponses]; - -export type IntContractStorageStateWithExpiryByAddressServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of active storage slots in this contract (0 if expired) (filter: eq) - */ - active_slots_eq?: number; - /** - * Number of active storage slots in this contract (0 if expired) (filter: ne) - */ - active_slots_ne?: number; - /** - * Number of active storage slots in this contract (0 if expired) (filter: lt) - */ - active_slots_lt?: number; - /** - * Number of active storage slots in this contract (0 if expired) (filter: lte) - */ - active_slots_lte?: number; - /** - * Number of active storage slots in this contract (0 if expired) (filter: gt) - */ - active_slots_gt?: number; - /** - * Number of active storage slots in this contract (0 if expired) (filter: gte) - */ - active_slots_gte?: number; - /** - * Number of active storage slots in this contract (0 if expired) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Number of active storage slots in this contract (0 if expired) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Number of active storage slots in this contract (0 if expired) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Number of active storage slots in this contract (0 if expired) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Effective bytes for this contract (0 if expired) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Effective bytes for this contract (0 if expired) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Effective bytes for this contract (0 if expired) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Effective bytes for this contract (0 if expired) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Effective bytes for this contract (0 if expired) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Effective bytes for this contract (0 if expired) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Effective bytes for this contract (0 if expired) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Effective bytes for this contract (0 if expired) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Effective bytes for this contract (0 if expired) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Effective bytes for this contract (0 if expired) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_contract_storage_state_with_expiry_by_address to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageStateWithExpiryByAddress` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_state_with_expiry_by_address'; -}; - -export type IntContractStorageStateWithExpiryByAddressServiceListErrors = { + receipt_bytes_ne?: number; /** - * Default error response + * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: lt) */ - default: Status; -}; - -export type IntContractStorageStateWithExpiryByAddressServiceListError = IntContractStorageStateWithExpiryByAddressServiceListErrors[keyof IntContractStorageStateWithExpiryByAddressServiceListErrors]; - -export type IntContractStorageStateWithExpiryByAddressServiceListResponses = { + receipt_bytes_lt?: number; /** - * OK + * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: lte) */ - 200: ListIntContractStorageStateWithExpiryByAddressResponse; -}; - -export type IntContractStorageStateWithExpiryByAddressServiceListResponse = IntContractStorageStateWithExpiryByAddressServiceListResponses[keyof IntContractStorageStateWithExpiryByAddressServiceListResponses]; - -export type IntContractStorageStateWithExpiryByAddressServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/int_contract_storage_state_with_expiry_by_address/{address}'; -}; - -export type IntContractStorageStateWithExpiryByAddressServiceGetErrors = { + receipt_bytes_lte?: number; /** - * Default error response + * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: gt) */ - default: Status; -}; - -export type IntContractStorageStateWithExpiryByAddressServiceGetError = IntContractStorageStateWithExpiryByAddressServiceGetErrors[keyof IntContractStorageStateWithExpiryByAddressServiceGetErrors]; - -export type IntContractStorageStateWithExpiryByAddressServiceGetResponses = { + receipt_bytes_gt?: number; /** - * OK + * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: gte) */ - 200: GetIntContractStorageStateWithExpiryByAddressResponse; -}; - -export type IntContractStorageStateWithExpiryByAddressServiceGetResponse = IntContractStorageStateWithExpiryByAddressServiceGetResponses[keyof IntContractStorageStateWithExpiryByAddressServiceGetResponses]; - -export type IntContractStorageStateWithExpiryByBlockServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Total active storage slots network-wide (with expiry applied) (filter: eq) - */ - active_slots_eq?: number; - /** - * Total active storage slots network-wide (with expiry applied) (filter: ne) - */ - active_slots_ne?: number; - /** - * Total active storage slots network-wide (with expiry applied) (filter: lt) - */ - active_slots_lt?: number; - /** - * Total active storage slots network-wide (with expiry applied) (filter: lte) - */ - active_slots_lte?: number; - /** - * Total active storage slots network-wide (with expiry applied) (filter: gt) - */ - active_slots_gt?: number; - /** - * Total active storage slots network-wide (with expiry applied) (filter: gte) - */ - active_slots_gte?: number; - /** - * Total active storage slots network-wide (with expiry applied) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Total active storage slots network-wide (with expiry applied) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Total active storage slots network-wide (with expiry applied) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Total active storage slots network-wide (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Total effective bytes network-wide (with expiry applied) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Total effective bytes network-wide (with expiry applied) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Total effective bytes network-wide (with expiry applied) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Total effective bytes network-wide (with expiry applied) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Total effective bytes network-wide (with expiry applied) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Total effective bytes network-wide (with expiry applied) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Total effective bytes network-wide (with expiry applied) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Total effective bytes network-wide (with expiry applied) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Total effective bytes network-wide (with expiry applied) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Total effective bytes network-wide (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * Count of contracts with active_slots > 0 (with expiry applied) (filter: eq) - */ - active_contracts_eq?: number; - /** - * Count of contracts with active_slots > 0 (with expiry applied) (filter: ne) - */ - active_contracts_ne?: number; - /** - * Count of contracts with active_slots > 0 (with expiry applied) (filter: lt) - */ - active_contracts_lt?: number; - /** - * Count of contracts with active_slots > 0 (with expiry applied) (filter: lte) - */ - active_contracts_lte?: number; - /** - * Count of contracts with active_slots > 0 (with expiry applied) (filter: gt) - */ - active_contracts_gt?: number; - /** - * Count of contracts with active_slots > 0 (with expiry applied) (filter: gte) - */ - active_contracts_gte?: number; - /** - * Count of contracts with active_slots > 0 (with expiry applied) (filter: between_min) - */ - active_contracts_between_min?: number; - /** - * Count of contracts with active_slots > 0 (with expiry applied) (filter: between_max_value) - */ - active_contracts_between_max_value?: number; - /** - * Count of contracts with active_slots > 0 (with expiry applied) (filter: in_values) (comma-separated list) - */ - active_contracts_in_values?: string; - /** - * Count of contracts with active_slots > 0 (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - active_contracts_not_in_values?: string; - /** - * The maximum number of int_contract_storage_state_with_expiry_by_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntContractStorageStateWithExpiryByBlock` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_contract_storage_state_with_expiry_by_block'; -}; - -export type IntContractStorageStateWithExpiryByBlockServiceListErrors = { + receipt_bytes_gte?: number; /** - * Default error response + * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: between_min) */ - default: Status; -}; - -export type IntContractStorageStateWithExpiryByBlockServiceListError = IntContractStorageStateWithExpiryByBlockServiceListErrors[keyof IntContractStorageStateWithExpiryByBlockServiceListErrors]; - -export type IntContractStorageStateWithExpiryByBlockServiceListResponses = { + receipt_bytes_between_min?: number; /** - * OK + * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: between_max_value) */ - 200: ListIntContractStorageStateWithExpiryByBlockResponse; -}; - -export type IntContractStorageStateWithExpiryByBlockServiceListResponse = IntContractStorageStateWithExpiryByBlockServiceListResponses[keyof IntContractStorageStateWithExpiryByBlockServiceListResponses]; - -export type IntContractStorageStateWithExpiryByBlockServiceGetData = { - body?: never; - path: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy: string; - }; - query?: never; - url: '/api/v1/int_contract_storage_state_with_expiry_by_block/{expiry_policy}'; -}; - -export type IntContractStorageStateWithExpiryByBlockServiceGetErrors = { + receipt_bytes_between_max_value?: number; /** - * Default error response + * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntContractStorageStateWithExpiryByBlockServiceGetError = IntContractStorageStateWithExpiryByBlockServiceGetErrors[keyof IntContractStorageStateWithExpiryByBlockServiceGetErrors]; - -export type IntContractStorageStateWithExpiryByBlockServiceGetResponses = { + receipt_bytes_in_values?: string; /** - * OK + * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: not_in_values) (comma-separated list) */ - 200: GetIntContractStorageStateWithExpiryByBlockResponse; -}; - -export type IntContractStorageStateWithExpiryByBlockServiceGetResponse = IntContractStorageStateWithExpiryByBlockServiceGetResponses[keyof IntContractStorageStateWithExpiryByBlockServiceGetResponses]; - -export type IntCustodyProbeServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Earliest event time for this probe batch (filter: eq) - */ - probe_date_time_eq?: number; - /** - * Earliest event time for this probe batch (filter: ne) - */ - probe_date_time_ne?: number; - /** - * Earliest event time for this probe batch (filter: lt) - */ - probe_date_time_lt?: number; - /** - * Earliest event time for this probe batch (filter: lte) - */ - probe_date_time_lte?: number; - /** - * Earliest event time for this probe batch (filter: gt) - */ - probe_date_time_gt?: number; - /** - * Earliest event time for this probe batch (filter: gte) - */ - probe_date_time_gte?: number; - /** - * Earliest event time for this probe batch (filter: between_min) - */ - probe_date_time_between_min?: number; - /** - * Earliest event time for this probe batch (filter: between_max_value) - */ - probe_date_time_between_max_value?: number; - /** - * Earliest event time for this probe batch (filter: in_values) (comma-separated list) - */ - probe_date_time_in_values?: string; - /** - * Earliest event time for this probe batch (filter: not_in_values) (comma-separated list) - */ - probe_date_time_not_in_values?: string; - /** - * Slot number (filter: eq) - */ - slot_eq?: number; - /** - * Slot number (filter: ne) - */ - slot_ne?: number; - /** - * Slot number (filter: lt) - */ - slot_lt?: number; - /** - * Slot number (filter: lte) - */ - slot_lte?: number; - /** - * Slot number (filter: gt) - */ - slot_gt?: number; - /** - * Slot number (filter: gte) - */ - slot_gte?: number; - /** - * Slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Unique key associated with the identifier of the peer (filter: eq) - */ - peer_id_unique_key_eq?: number; - /** - * Unique key associated with the identifier of the peer (filter: ne) - */ - peer_id_unique_key_ne?: number; - /** - * Unique key associated with the identifier of the peer (filter: lt) - */ - peer_id_unique_key_lt?: number; - /** - * Unique key associated with the identifier of the peer (filter: lte) - */ - peer_id_unique_key_lte?: number; - /** - * Unique key associated with the identifier of the peer (filter: gt) - */ - peer_id_unique_key_gt?: number; - /** - * Unique key associated with the identifier of the peer (filter: gte) - */ - peer_id_unique_key_gte?: number; - /** - * Unique key associated with the identifier of the peer (filter: between_min) - */ - peer_id_unique_key_between_min?: number; - /** - * Unique key associated with the identifier of the peer (filter: between_max_value) - */ - peer_id_unique_key_between_max_value?: number; - /** - * Unique key associated with the identifier of the peer (filter: in_values) (comma-separated list) - */ - peer_id_unique_key_in_values?: string; - /** - * Unique key associated with the identifier of the peer (filter: not_in_values) (comma-separated list) - */ - peer_id_unique_key_not_in_values?: string; - /** - * Result of the probe (success, failure, missing) (filter: eq) - */ - result_eq?: string; - /** - * Result of the probe (success, failure, missing) (filter: ne) - */ - result_ne?: string; - /** - * Result of the probe (success, failure, missing) (filter: contains) - */ - result_contains?: string; - /** - * Result of the probe (success, failure, missing) (filter: starts_with) - */ - result_starts_with?: string; - /** - * Result of the probe (success, failure, missing) (filter: ends_with) - */ - result_ends_with?: string; - /** - * Result of the probe (success, failure, missing) (filter: like) - */ - result_like?: string; - /** - * Result of the probe (success, failure, missing) (filter: not_like) - */ - result_not_like?: string; - /** - * Result of the probe (success, failure, missing) (filter: in_values) (comma-separated list) - */ - result_in_values?: string; - /** - * Result of the probe (success, failure, missing) (filter: not_in_values) (comma-separated list) - */ - result_not_in_values?: string; - /** - * Error message if probe failed (filter: eq) - */ - error_eq?: string; - /** - * Error message if probe failed (filter: ne) - */ - error_ne?: string; - /** - * Error message if probe failed (filter: contains) - */ - error_contains?: string; - /** - * Error message if probe failed (filter: starts_with) - */ - error_starts_with?: string; - /** - * Error message if probe failed (filter: ends_with) - */ - error_ends_with?: string; - /** - * Error message if probe failed (filter: like) - */ - error_like?: string; - /** - * Error message if probe failed (filter: not_like) - */ - error_not_like?: string; - /** - * Error message if probe failed (filter: in_values) (comma-separated list) - */ - error_in_values?: string; - /** - * Error message if probe failed (filter: not_in_values) (comma-separated list) - */ - error_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Start date time of the slot (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * Start date time of the slot (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * Start date time of the slot (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * Start date time of the slot (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * Start date time of the slot (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * Start date time of the slot (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * Start date time of the slot (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * Start date time of the slot (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * Start date time of the slot (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * Start date time of the slot (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Array of column indices probed (filter: has) - */ - column_indices_has?: number; - /** - * Array of column indices probed (filter: has_all_values) - */ - column_indices_has_all_values?: Array; - /** - * Array of column indices probed (filter: has_any_values) - */ - column_indices_has_any_values?: Array; - /** - * Array of column indices probed (filter: length_eq) - */ - column_indices_length_eq?: number; - /** - * Array of column indices probed (filter: length_gt) - */ - column_indices_length_gt?: number; - /** - * Array of column indices probed (filter: length_gte) - */ - column_indices_length_gte?: number; - /** - * Array of column indices probed (filter: length_lt) - */ - column_indices_length_lt?: number; - /** - * Array of column indices probed (filter: length_lte) - */ - column_indices_length_lte?: number; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: has) - */ - blob_submitters_has?: string; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: has_all_values) - */ - blob_submitters_has_all_values?: Array; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: has_any_values) - */ - blob_submitters_has_any_values?: Array; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: length_eq) - */ - blob_submitters_length_eq?: number; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: length_gt) - */ - blob_submitters_length_gt?: number; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: length_gte) - */ - blob_submitters_length_gte?: number; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: length_lt) - */ - blob_submitters_length_lt?: number; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: length_lte) - */ - blob_submitters_length_lte?: number; - /** - * Response time in milliseconds (filter: eq) - */ - response_time_ms_eq?: number; - /** - * Response time in milliseconds (filter: ne) - */ - response_time_ms_ne?: number; - /** - * Response time in milliseconds (filter: lt) - */ - response_time_ms_lt?: number; - /** - * Response time in milliseconds (filter: lte) - */ - response_time_ms_lte?: number; - /** - * Response time in milliseconds (filter: gt) - */ - response_time_ms_gt?: number; - /** - * Response time in milliseconds (filter: gte) - */ - response_time_ms_gte?: number; - /** - * Response time in milliseconds (filter: between_min) - */ - response_time_ms_between_min?: number; - /** - * Response time in milliseconds (filter: between_max_value) - */ - response_time_ms_between_max_value?: number; - /** - * Response time in milliseconds (filter: in_values) (comma-separated list) - */ - response_time_ms_in_values?: string; - /** - * Response time in milliseconds (filter: not_in_values) (comma-separated list) - */ - response_time_ms_not_in_values?: string; - /** - * Username extracted from client name (filter: eq) - */ - username_eq?: string; - /** - * Username extracted from client name (filter: ne) - */ - username_ne?: string; - /** - * Username extracted from client name (filter: contains) - */ - username_contains?: string; - /** - * Username extracted from client name (filter: starts_with) - */ - username_starts_with?: string; - /** - * Username extracted from client name (filter: ends_with) - */ - username_ends_with?: string; - /** - * Username extracted from client name (filter: like) - */ - username_like?: string; - /** - * Username extracted from client name (filter: not_like) - */ - username_not_like?: string; - /** - * Username extracted from client name (filter: in_values) (comma-separated list) - */ - username_in_values?: string; - /** - * Username extracted from client name (filter: not_in_values) (comma-separated list) - */ - username_not_in_values?: string; - /** - * Node ID extracted from client name (filter: eq) - */ - node_id_eq?: string; - /** - * Node ID extracted from client name (filter: ne) - */ - node_id_ne?: string; - /** - * Node ID extracted from client name (filter: contains) - */ - node_id_contains?: string; - /** - * Node ID extracted from client name (filter: starts_with) - */ - node_id_starts_with?: string; - /** - * Node ID extracted from client name (filter: ends_with) - */ - node_id_ends_with?: string; - /** - * Node ID extracted from client name (filter: like) - */ - node_id_like?: string; - /** - * Node ID extracted from client name (filter: not_like) - */ - node_id_not_like?: string; - /** - * Node ID extracted from client name (filter: in_values) (comma-separated list) - */ - node_id_in_values?: string; - /** - * Node ID extracted from client name (filter: not_in_values) (comma-separated list) - */ - node_id_not_in_values?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: eq) - */ - classification_eq?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: ne) - */ - classification_ne?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: contains) - */ - classification_contains?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: starts_with) - */ - classification_starts_with?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: ends_with) - */ - classification_ends_with?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: like) - */ - classification_like?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: not_like) - */ - classification_not_like?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: in_values) (comma-separated list) - */ - classification_in_values?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: not_in_values) (comma-separated list) - */ - classification_not_in_values?: string; - /** - * Version of the client (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * Implementation of the client (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * Operating system of the client (filter: eq) - */ - meta_client_os_eq?: string; - /** - * Operating system of the client (filter: ne) - */ - meta_client_os_ne?: string; - /** - * Operating system of the client (filter: contains) - */ - meta_client_os_contains?: string; - /** - * Operating system of the client (filter: starts_with) - */ - meta_client_os_starts_with?: string; - /** - * Operating system of the client (filter: ends_with) - */ - meta_client_os_ends_with?: string; - /** - * Operating system of the client (filter: like) - */ - meta_client_os_like?: string; - /** - * Operating system of the client (filter: not_like) - */ - meta_client_os_not_like?: string; - /** - * Operating system of the client (filter: in_values) (comma-separated list) - */ - meta_client_os_in_values?: string; - /** - * Operating system of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_os_not_in_values?: string; - /** - * City of the client (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * Continent code of the client (filter: eq) - */ - meta_client_geo_continent_code_eq?: string; - /** - * Continent code of the client (filter: ne) - */ - meta_client_geo_continent_code_ne?: string; - /** - * Continent code of the client (filter: contains) - */ - meta_client_geo_continent_code_contains?: string; - /** - * Continent code of the client (filter: starts_with) - */ - meta_client_geo_continent_code_starts_with?: string; - /** - * Continent code of the client (filter: ends_with) - */ - meta_client_geo_continent_code_ends_with?: string; - /** - * Continent code of the client (filter: like) - */ - meta_client_geo_continent_code_like?: string; - /** - * Continent code of the client (filter: not_like) - */ - meta_client_geo_continent_code_not_like?: string; - /** - * Continent code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_continent_code_in_values?: string; - /** - * Continent code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_continent_code_not_in_values?: string; - /** - * Filter meta_client_geo_longitude using value - */ - meta_client_geo_longitude_value?: number; - /** - * Filter meta_client_geo_latitude using value - */ - meta_client_geo_latitude_value?: number; - /** - * Autonomous system number of the client (filter: eq) - */ - meta_client_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the client (filter: ne) - */ - meta_client_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the client (filter: lt) - */ - meta_client_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the client (filter: lte) - */ - meta_client_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the client (filter: gt) - */ - meta_client_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the client (filter: gte) - */ - meta_client_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the client (filter: between_min) - */ - meta_client_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the client (filter: between_max_value) - */ - meta_client_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the client (filter: eq) - */ - meta_client_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the client (filter: ne) - */ - meta_client_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the client (filter: contains) - */ - meta_client_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the client (filter: starts_with) - */ - meta_client_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the client (filter: ends_with) - */ - meta_client_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the client (filter: like) - */ - meta_client_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the client (filter: not_like) - */ - meta_client_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_not_in_values?: string; - /** - * Implementation of the probed peer (filter: eq) - */ - meta_peer_implementation_eq?: string; - /** - * Implementation of the probed peer (filter: ne) - */ - meta_peer_implementation_ne?: string; - /** - * Implementation of the probed peer (filter: contains) - */ - meta_peer_implementation_contains?: string; - /** - * Implementation of the probed peer (filter: starts_with) - */ - meta_peer_implementation_starts_with?: string; - /** - * Implementation of the probed peer (filter: ends_with) - */ - meta_peer_implementation_ends_with?: string; - /** - * Implementation of the probed peer (filter: like) - */ - meta_peer_implementation_like?: string; - /** - * Implementation of the probed peer (filter: not_like) - */ - meta_peer_implementation_not_like?: string; - /** - * Implementation of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_implementation_in_values?: string; - /** - * Implementation of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_implementation_not_in_values?: string; - /** - * Version of the probed peer (filter: eq) - */ - meta_peer_version_eq?: string; - /** - * Version of the probed peer (filter: ne) - */ - meta_peer_version_ne?: string; - /** - * Version of the probed peer (filter: contains) - */ - meta_peer_version_contains?: string; - /** - * Version of the probed peer (filter: starts_with) - */ - meta_peer_version_starts_with?: string; - /** - * Version of the probed peer (filter: ends_with) - */ - meta_peer_version_ends_with?: string; - /** - * Version of the probed peer (filter: like) - */ - meta_peer_version_like?: string; - /** - * Version of the probed peer (filter: not_like) - */ - meta_peer_version_not_like?: string; - /** - * Version of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_version_in_values?: string; - /** - * Version of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_version_not_in_values?: string; - /** - * Platform of the probed peer (filter: eq) - */ - meta_peer_platform_eq?: string; - /** - * Platform of the probed peer (filter: ne) - */ - meta_peer_platform_ne?: string; - /** - * Platform of the probed peer (filter: contains) - */ - meta_peer_platform_contains?: string; - /** - * Platform of the probed peer (filter: starts_with) - */ - meta_peer_platform_starts_with?: string; - /** - * Platform of the probed peer (filter: ends_with) - */ - meta_peer_platform_ends_with?: string; - /** - * Platform of the probed peer (filter: like) - */ - meta_peer_platform_like?: string; - /** - * Platform of the probed peer (filter: not_like) - */ - meta_peer_platform_not_like?: string; - /** - * Platform of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_platform_in_values?: string; - /** - * Platform of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_platform_not_in_values?: string; - /** - * City of the probed peer (filter: eq) - */ - meta_peer_geo_city_eq?: string; - /** - * City of the probed peer (filter: ne) - */ - meta_peer_geo_city_ne?: string; - /** - * City of the probed peer (filter: contains) - */ - meta_peer_geo_city_contains?: string; - /** - * City of the probed peer (filter: starts_with) - */ - meta_peer_geo_city_starts_with?: string; - /** - * City of the probed peer (filter: ends_with) - */ - meta_peer_geo_city_ends_with?: string; - /** - * City of the probed peer (filter: like) - */ - meta_peer_geo_city_like?: string; - /** - * City of the probed peer (filter: not_like) - */ - meta_peer_geo_city_not_like?: string; - /** - * City of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_geo_city_in_values?: string; - /** - * City of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_geo_city_not_in_values?: string; - /** - * Country of the probed peer (filter: eq) - */ - meta_peer_geo_country_eq?: string; - /** - * Country of the probed peer (filter: ne) - */ - meta_peer_geo_country_ne?: string; - /** - * Country of the probed peer (filter: contains) - */ - meta_peer_geo_country_contains?: string; - /** - * Country of the probed peer (filter: starts_with) - */ - meta_peer_geo_country_starts_with?: string; - /** - * Country of the probed peer (filter: ends_with) - */ - meta_peer_geo_country_ends_with?: string; - /** - * Country of the probed peer (filter: like) - */ - meta_peer_geo_country_like?: string; - /** - * Country of the probed peer (filter: not_like) - */ - meta_peer_geo_country_not_like?: string; - /** - * Country of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_geo_country_in_values?: string; - /** - * Country of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_geo_country_not_in_values?: string; - /** - * Country code of the probed peer (filter: eq) - */ - meta_peer_geo_country_code_eq?: string; - /** - * Country code of the probed peer (filter: ne) - */ - meta_peer_geo_country_code_ne?: string; - /** - * Country code of the probed peer (filter: contains) - */ - meta_peer_geo_country_code_contains?: string; - /** - * Country code of the probed peer (filter: starts_with) - */ - meta_peer_geo_country_code_starts_with?: string; - /** - * Country code of the probed peer (filter: ends_with) - */ - meta_peer_geo_country_code_ends_with?: string; - /** - * Country code of the probed peer (filter: like) - */ - meta_peer_geo_country_code_like?: string; - /** - * Country code of the probed peer (filter: not_like) - */ - meta_peer_geo_country_code_not_like?: string; - /** - * Country code of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_geo_country_code_in_values?: string; - /** - * Country code of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_geo_country_code_not_in_values?: string; - /** - * Continent code of the probed peer (filter: eq) - */ - meta_peer_geo_continent_code_eq?: string; - /** - * Continent code of the probed peer (filter: ne) - */ - meta_peer_geo_continent_code_ne?: string; - /** - * Continent code of the probed peer (filter: contains) - */ - meta_peer_geo_continent_code_contains?: string; - /** - * Continent code of the probed peer (filter: starts_with) - */ - meta_peer_geo_continent_code_starts_with?: string; - /** - * Continent code of the probed peer (filter: ends_with) - */ - meta_peer_geo_continent_code_ends_with?: string; - /** - * Continent code of the probed peer (filter: like) - */ - meta_peer_geo_continent_code_like?: string; - /** - * Continent code of the probed peer (filter: not_like) - */ - meta_peer_geo_continent_code_not_like?: string; - /** - * Continent code of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_geo_continent_code_in_values?: string; - /** - * Continent code of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_geo_continent_code_not_in_values?: string; - /** - * Filter meta_peer_geo_longitude using value - */ - meta_peer_geo_longitude_value?: number; - /** - * Filter meta_peer_geo_latitude using value - */ - meta_peer_geo_latitude_value?: number; - /** - * Autonomous system number of the probed peer (filter: eq) - */ - meta_peer_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the probed peer (filter: ne) - */ - meta_peer_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the probed peer (filter: lt) - */ - meta_peer_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the probed peer (filter: lte) - */ - meta_peer_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the probed peer (filter: gt) - */ - meta_peer_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the probed peer (filter: gte) - */ - meta_peer_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the probed peer (filter: between_min) - */ - meta_peer_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the probed peer (filter: between_max_value) - */ - meta_peer_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the probed peer (filter: eq) - */ - meta_peer_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the probed peer (filter: ne) - */ - meta_peer_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the probed peer (filter: contains) - */ - meta_peer_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the probed peer (filter: starts_with) - */ - meta_peer_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the probed peer (filter: ends_with) - */ - meta_peer_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the probed peer (filter: like) - */ - meta_peer_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the probed peer (filter: not_like) - */ - meta_peer_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_geo_autonomous_system_organization_not_in_values?: string; - /** - * The maximum number of int_custody_probe to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntCustodyProbe` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_custody_probe'; -}; - -export type IntCustodyProbeServiceListErrors = { + receipt_bytes_not_in_values?: string; /** - * Default error response + * Number of logs emitted by this transaction (filter: eq) */ - default: Status; -}; - -export type IntCustodyProbeServiceListError = IntCustodyProbeServiceListErrors[keyof IntCustodyProbeServiceListErrors]; - -export type IntCustodyProbeServiceListResponses = { + log_count_eq?: number; /** - * OK + * Number of logs emitted by this transaction (filter: ne) */ - 200: ListIntCustodyProbeResponse; -}; - -export type IntCustodyProbeServiceListResponse = IntCustodyProbeServiceListResponses[keyof IntCustodyProbeServiceListResponses]; - -export type IntCustodyProbeServiceGetData = { - body?: never; - path: { - /** - * Earliest event time for this probe batch - */ - probe_date_time: number; - }; - query?: never; - url: '/api/v1/int_custody_probe/{probe_date_time}'; -}; - -export type IntCustodyProbeServiceGetErrors = { + log_count_ne?: number; /** - * Default error response + * Number of logs emitted by this transaction (filter: lt) */ - default: Status; -}; - -export type IntCustodyProbeServiceGetError = IntCustodyProbeServiceGetErrors[keyof IntCustodyProbeServiceGetErrors]; - -export type IntCustodyProbeServiceGetResponses = { + log_count_lt?: number; /** - * OK + * Number of logs emitted by this transaction (filter: lte) */ - 200: GetIntCustodyProbeResponse; -}; - -export type IntCustodyProbeServiceGetResponse = IntCustodyProbeServiceGetResponses[keyof IntCustodyProbeServiceGetResponses]; - -export type IntCustodyProbeOrderBySlotServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Start date time of the slot (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * Start date time of the slot (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * Start date time of the slot (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * Start date time of the slot (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * Start date time of the slot (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * Start date time of the slot (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * Start date time of the slot (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * Start date time of the slot (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * Start date time of the slot (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * Start date time of the slot (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Slot number (filter: eq) - */ - slot_eq?: number; - /** - * Slot number (filter: ne) - */ - slot_ne?: number; - /** - * Slot number (filter: lt) - */ - slot_lt?: number; - /** - * Slot number (filter: lte) - */ - slot_lte?: number; - /** - * Slot number (filter: gt) - */ - slot_gt?: number; - /** - * Slot number (filter: gte) - */ - slot_gte?: number; - /** - * Slot number (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Unique key associated with the identifier of the peer (filter: eq) - */ - peer_id_unique_key_eq?: number; - /** - * Unique key associated with the identifier of the peer (filter: ne) - */ - peer_id_unique_key_ne?: number; - /** - * Unique key associated with the identifier of the peer (filter: lt) - */ - peer_id_unique_key_lt?: number; - /** - * Unique key associated with the identifier of the peer (filter: lte) - */ - peer_id_unique_key_lte?: number; - /** - * Unique key associated with the identifier of the peer (filter: gt) - */ - peer_id_unique_key_gt?: number; - /** - * Unique key associated with the identifier of the peer (filter: gte) - */ - peer_id_unique_key_gte?: number; - /** - * Unique key associated with the identifier of the peer (filter: between_min) - */ - peer_id_unique_key_between_min?: number; - /** - * Unique key associated with the identifier of the peer (filter: between_max_value) - */ - peer_id_unique_key_between_max_value?: number; - /** - * Unique key associated with the identifier of the peer (filter: in_values) (comma-separated list) - */ - peer_id_unique_key_in_values?: string; - /** - * Unique key associated with the identifier of the peer (filter: not_in_values) (comma-separated list) - */ - peer_id_unique_key_not_in_values?: string; - /** - * Result of the probe (success, failure, missing) (filter: eq) - */ - result_eq?: string; - /** - * Result of the probe (success, failure, missing) (filter: ne) - */ - result_ne?: string; - /** - * Result of the probe (success, failure, missing) (filter: contains) - */ - result_contains?: string; - /** - * Result of the probe (success, failure, missing) (filter: starts_with) - */ - result_starts_with?: string; - /** - * Result of the probe (success, failure, missing) (filter: ends_with) - */ - result_ends_with?: string; - /** - * Result of the probe (success, failure, missing) (filter: like) - */ - result_like?: string; - /** - * Result of the probe (success, failure, missing) (filter: not_like) - */ - result_not_like?: string; - /** - * Result of the probe (success, failure, missing) (filter: in_values) (comma-separated list) - */ - result_in_values?: string; - /** - * Result of the probe (success, failure, missing) (filter: not_in_values) (comma-separated list) - */ - result_not_in_values?: string; - /** - * Error message if probe failed (filter: eq) - */ - error_eq?: string; - /** - * Error message if probe failed (filter: ne) - */ - error_ne?: string; - /** - * Error message if probe failed (filter: contains) - */ - error_contains?: string; - /** - * Error message if probe failed (filter: starts_with) - */ - error_starts_with?: string; - /** - * Error message if probe failed (filter: ends_with) - */ - error_ends_with?: string; - /** - * Error message if probe failed (filter: like) - */ - error_like?: string; - /** - * Error message if probe failed (filter: not_like) - */ - error_not_like?: string; - /** - * Error message if probe failed (filter: in_values) (comma-separated list) - */ - error_in_values?: string; - /** - * Error message if probe failed (filter: not_in_values) (comma-separated list) - */ - error_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Earliest event time for this probe batch (filter: eq) - */ - probe_date_time_eq?: number; - /** - * Earliest event time for this probe batch (filter: ne) - */ - probe_date_time_ne?: number; - /** - * Earliest event time for this probe batch (filter: lt) - */ - probe_date_time_lt?: number; - /** - * Earliest event time for this probe batch (filter: lte) - */ - probe_date_time_lte?: number; - /** - * Earliest event time for this probe batch (filter: gt) - */ - probe_date_time_gt?: number; - /** - * Earliest event time for this probe batch (filter: gte) - */ - probe_date_time_gte?: number; - /** - * Earliest event time for this probe batch (filter: between_min) - */ - probe_date_time_between_min?: number; - /** - * Earliest event time for this probe batch (filter: between_max_value) - */ - probe_date_time_between_max_value?: number; - /** - * Earliest event time for this probe batch (filter: in_values) (comma-separated list) - */ - probe_date_time_in_values?: string; - /** - * Earliest event time for this probe batch (filter: not_in_values) (comma-separated list) - */ - probe_date_time_not_in_values?: string; - /** - * Array of column indices probed (filter: has) - */ - column_indices_has?: number; - /** - * Array of column indices probed (filter: has_all_values) - */ - column_indices_has_all_values?: Array; - /** - * Array of column indices probed (filter: has_any_values) - */ - column_indices_has_any_values?: Array; - /** - * Array of column indices probed (filter: length_eq) - */ - column_indices_length_eq?: number; - /** - * Array of column indices probed (filter: length_gt) - */ - column_indices_length_gt?: number; - /** - * Array of column indices probed (filter: length_gte) - */ - column_indices_length_gte?: number; - /** - * Array of column indices probed (filter: length_lt) - */ - column_indices_length_lt?: number; - /** - * Array of column indices probed (filter: length_lte) - */ - column_indices_length_lte?: number; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: has) - */ - blob_submitters_has?: string; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: has_all_values) - */ - blob_submitters_has_all_values?: Array; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: has_any_values) - */ - blob_submitters_has_any_values?: Array; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: length_eq) - */ - blob_submitters_length_eq?: number; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: length_gt) - */ - blob_submitters_length_gt?: number; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: length_gte) - */ - blob_submitters_length_gte?: number; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: length_lt) - */ - blob_submitters_length_lt?: number; - /** - * Array of blob submitter names for this slot (Unknown if not found) (filter: length_lte) - */ - blob_submitters_length_lte?: number; - /** - * Response time in milliseconds (filter: eq) - */ - response_time_ms_eq?: number; - /** - * Response time in milliseconds (filter: ne) - */ - response_time_ms_ne?: number; - /** - * Response time in milliseconds (filter: lt) - */ - response_time_ms_lt?: number; - /** - * Response time in milliseconds (filter: lte) - */ - response_time_ms_lte?: number; - /** - * Response time in milliseconds (filter: gt) - */ - response_time_ms_gt?: number; - /** - * Response time in milliseconds (filter: gte) - */ - response_time_ms_gte?: number; - /** - * Response time in milliseconds (filter: between_min) - */ - response_time_ms_between_min?: number; - /** - * Response time in milliseconds (filter: between_max_value) - */ - response_time_ms_between_max_value?: number; - /** - * Response time in milliseconds (filter: in_values) (comma-separated list) - */ - response_time_ms_in_values?: string; - /** - * Response time in milliseconds (filter: not_in_values) (comma-separated list) - */ - response_time_ms_not_in_values?: string; - /** - * Username extracted from client name (filter: eq) - */ - username_eq?: string; - /** - * Username extracted from client name (filter: ne) - */ - username_ne?: string; - /** - * Username extracted from client name (filter: contains) - */ - username_contains?: string; - /** - * Username extracted from client name (filter: starts_with) - */ - username_starts_with?: string; - /** - * Username extracted from client name (filter: ends_with) - */ - username_ends_with?: string; - /** - * Username extracted from client name (filter: like) - */ - username_like?: string; - /** - * Username extracted from client name (filter: not_like) - */ - username_not_like?: string; - /** - * Username extracted from client name (filter: in_values) (comma-separated list) - */ - username_in_values?: string; - /** - * Username extracted from client name (filter: not_in_values) (comma-separated list) - */ - username_not_in_values?: string; - /** - * Node ID extracted from client name (filter: eq) - */ - node_id_eq?: string; - /** - * Node ID extracted from client name (filter: ne) - */ - node_id_ne?: string; - /** - * Node ID extracted from client name (filter: contains) - */ - node_id_contains?: string; - /** - * Node ID extracted from client name (filter: starts_with) - */ - node_id_starts_with?: string; - /** - * Node ID extracted from client name (filter: ends_with) - */ - node_id_ends_with?: string; - /** - * Node ID extracted from client name (filter: like) - */ - node_id_like?: string; - /** - * Node ID extracted from client name (filter: not_like) - */ - node_id_not_like?: string; - /** - * Node ID extracted from client name (filter: in_values) (comma-separated list) - */ - node_id_in_values?: string; - /** - * Node ID extracted from client name (filter: not_in_values) (comma-separated list) - */ - node_id_not_in_values?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: eq) - */ - classification_eq?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: ne) - */ - classification_ne?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: contains) - */ - classification_contains?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: starts_with) - */ - classification_starts_with?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: ends_with) - */ - classification_ends_with?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: like) - */ - classification_like?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: not_like) - */ - classification_not_like?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: in_values) (comma-separated list) - */ - classification_in_values?: string; - /** - * Classification of client (individual, corporate, internal, unclassified) (filter: not_in_values) (comma-separated list) - */ - classification_not_in_values?: string; - /** - * Version of the client (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * Implementation of the client (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * Operating system of the client (filter: eq) - */ - meta_client_os_eq?: string; - /** - * Operating system of the client (filter: ne) - */ - meta_client_os_ne?: string; - /** - * Operating system of the client (filter: contains) - */ - meta_client_os_contains?: string; - /** - * Operating system of the client (filter: starts_with) - */ - meta_client_os_starts_with?: string; - /** - * Operating system of the client (filter: ends_with) - */ - meta_client_os_ends_with?: string; - /** - * Operating system of the client (filter: like) - */ - meta_client_os_like?: string; - /** - * Operating system of the client (filter: not_like) - */ - meta_client_os_not_like?: string; - /** - * Operating system of the client (filter: in_values) (comma-separated list) - */ - meta_client_os_in_values?: string; - /** - * Operating system of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_os_not_in_values?: string; - /** - * City of the client (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * Continent code of the client (filter: eq) - */ - meta_client_geo_continent_code_eq?: string; - /** - * Continent code of the client (filter: ne) - */ - meta_client_geo_continent_code_ne?: string; - /** - * Continent code of the client (filter: contains) - */ - meta_client_geo_continent_code_contains?: string; - /** - * Continent code of the client (filter: starts_with) - */ - meta_client_geo_continent_code_starts_with?: string; - /** - * Continent code of the client (filter: ends_with) - */ - meta_client_geo_continent_code_ends_with?: string; - /** - * Continent code of the client (filter: like) - */ - meta_client_geo_continent_code_like?: string; - /** - * Continent code of the client (filter: not_like) - */ - meta_client_geo_continent_code_not_like?: string; - /** - * Continent code of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_continent_code_in_values?: string; - /** - * Continent code of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_continent_code_not_in_values?: string; - /** - * Filter meta_client_geo_longitude using value - */ - meta_client_geo_longitude_value?: number; - /** - * Filter meta_client_geo_latitude using value - */ - meta_client_geo_latitude_value?: number; - /** - * Autonomous system number of the client (filter: eq) - */ - meta_client_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the client (filter: ne) - */ - meta_client_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the client (filter: lt) - */ - meta_client_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the client (filter: lte) - */ - meta_client_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the client (filter: gt) - */ - meta_client_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the client (filter: gte) - */ - meta_client_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the client (filter: between_min) - */ - meta_client_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the client (filter: between_max_value) - */ - meta_client_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the client (filter: eq) - */ - meta_client_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the client (filter: ne) - */ - meta_client_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the client (filter: contains) - */ - meta_client_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the client (filter: starts_with) - */ - meta_client_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the client (filter: ends_with) - */ - meta_client_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the client (filter: like) - */ - meta_client_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the client (filter: not_like) - */ - meta_client_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the client (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the client (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_not_in_values?: string; - /** - * Implementation of the probed peer (filter: eq) - */ - meta_peer_implementation_eq?: string; - /** - * Implementation of the probed peer (filter: ne) - */ - meta_peer_implementation_ne?: string; - /** - * Implementation of the probed peer (filter: contains) - */ - meta_peer_implementation_contains?: string; - /** - * Implementation of the probed peer (filter: starts_with) - */ - meta_peer_implementation_starts_with?: string; - /** - * Implementation of the probed peer (filter: ends_with) - */ - meta_peer_implementation_ends_with?: string; - /** - * Implementation of the probed peer (filter: like) - */ - meta_peer_implementation_like?: string; - /** - * Implementation of the probed peer (filter: not_like) - */ - meta_peer_implementation_not_like?: string; - /** - * Implementation of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_implementation_in_values?: string; - /** - * Implementation of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_implementation_not_in_values?: string; - /** - * Version of the probed peer (filter: eq) - */ - meta_peer_version_eq?: string; - /** - * Version of the probed peer (filter: ne) - */ - meta_peer_version_ne?: string; - /** - * Version of the probed peer (filter: contains) - */ - meta_peer_version_contains?: string; - /** - * Version of the probed peer (filter: starts_with) - */ - meta_peer_version_starts_with?: string; - /** - * Version of the probed peer (filter: ends_with) - */ - meta_peer_version_ends_with?: string; - /** - * Version of the probed peer (filter: like) - */ - meta_peer_version_like?: string; - /** - * Version of the probed peer (filter: not_like) - */ - meta_peer_version_not_like?: string; - /** - * Version of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_version_in_values?: string; - /** - * Version of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_version_not_in_values?: string; - /** - * Platform of the probed peer (filter: eq) - */ - meta_peer_platform_eq?: string; - /** - * Platform of the probed peer (filter: ne) - */ - meta_peer_platform_ne?: string; - /** - * Platform of the probed peer (filter: contains) - */ - meta_peer_platform_contains?: string; - /** - * Platform of the probed peer (filter: starts_with) - */ - meta_peer_platform_starts_with?: string; - /** - * Platform of the probed peer (filter: ends_with) - */ - meta_peer_platform_ends_with?: string; - /** - * Platform of the probed peer (filter: like) - */ - meta_peer_platform_like?: string; - /** - * Platform of the probed peer (filter: not_like) - */ - meta_peer_platform_not_like?: string; - /** - * Platform of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_platform_in_values?: string; - /** - * Platform of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_platform_not_in_values?: string; - /** - * City of the probed peer (filter: eq) - */ - meta_peer_geo_city_eq?: string; - /** - * City of the probed peer (filter: ne) - */ - meta_peer_geo_city_ne?: string; - /** - * City of the probed peer (filter: contains) - */ - meta_peer_geo_city_contains?: string; - /** - * City of the probed peer (filter: starts_with) - */ - meta_peer_geo_city_starts_with?: string; - /** - * City of the probed peer (filter: ends_with) - */ - meta_peer_geo_city_ends_with?: string; - /** - * City of the probed peer (filter: like) - */ - meta_peer_geo_city_like?: string; - /** - * City of the probed peer (filter: not_like) - */ - meta_peer_geo_city_not_like?: string; - /** - * City of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_geo_city_in_values?: string; - /** - * City of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_geo_city_not_in_values?: string; - /** - * Country of the probed peer (filter: eq) - */ - meta_peer_geo_country_eq?: string; - /** - * Country of the probed peer (filter: ne) - */ - meta_peer_geo_country_ne?: string; - /** - * Country of the probed peer (filter: contains) - */ - meta_peer_geo_country_contains?: string; - /** - * Country of the probed peer (filter: starts_with) - */ - meta_peer_geo_country_starts_with?: string; - /** - * Country of the probed peer (filter: ends_with) - */ - meta_peer_geo_country_ends_with?: string; - /** - * Country of the probed peer (filter: like) - */ - meta_peer_geo_country_like?: string; - /** - * Country of the probed peer (filter: not_like) - */ - meta_peer_geo_country_not_like?: string; - /** - * Country of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_geo_country_in_values?: string; - /** - * Country of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_geo_country_not_in_values?: string; - /** - * Country code of the probed peer (filter: eq) - */ - meta_peer_geo_country_code_eq?: string; - /** - * Country code of the probed peer (filter: ne) - */ - meta_peer_geo_country_code_ne?: string; - /** - * Country code of the probed peer (filter: contains) - */ - meta_peer_geo_country_code_contains?: string; - /** - * Country code of the probed peer (filter: starts_with) - */ - meta_peer_geo_country_code_starts_with?: string; - /** - * Country code of the probed peer (filter: ends_with) - */ - meta_peer_geo_country_code_ends_with?: string; - /** - * Country code of the probed peer (filter: like) - */ - meta_peer_geo_country_code_like?: string; - /** - * Country code of the probed peer (filter: not_like) - */ - meta_peer_geo_country_code_not_like?: string; - /** - * Country code of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_geo_country_code_in_values?: string; - /** - * Country code of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_geo_country_code_not_in_values?: string; - /** - * Continent code of the probed peer (filter: eq) - */ - meta_peer_geo_continent_code_eq?: string; - /** - * Continent code of the probed peer (filter: ne) - */ - meta_peer_geo_continent_code_ne?: string; - /** - * Continent code of the probed peer (filter: contains) - */ - meta_peer_geo_continent_code_contains?: string; - /** - * Continent code of the probed peer (filter: starts_with) - */ - meta_peer_geo_continent_code_starts_with?: string; - /** - * Continent code of the probed peer (filter: ends_with) - */ - meta_peer_geo_continent_code_ends_with?: string; - /** - * Continent code of the probed peer (filter: like) - */ - meta_peer_geo_continent_code_like?: string; - /** - * Continent code of the probed peer (filter: not_like) - */ - meta_peer_geo_continent_code_not_like?: string; - /** - * Continent code of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_geo_continent_code_in_values?: string; - /** - * Continent code of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_geo_continent_code_not_in_values?: string; - /** - * Filter meta_peer_geo_longitude using value - */ - meta_peer_geo_longitude_value?: number; - /** - * Filter meta_peer_geo_latitude using value - */ - meta_peer_geo_latitude_value?: number; - /** - * Autonomous system number of the probed peer (filter: eq) - */ - meta_peer_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the probed peer (filter: ne) - */ - meta_peer_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the probed peer (filter: lt) - */ - meta_peer_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the probed peer (filter: lte) - */ - meta_peer_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the probed peer (filter: gt) - */ - meta_peer_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the probed peer (filter: gte) - */ - meta_peer_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the probed peer (filter: between_min) - */ - meta_peer_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the probed peer (filter: between_max_value) - */ - meta_peer_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the probed peer (filter: eq) - */ - meta_peer_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the probed peer (filter: ne) - */ - meta_peer_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the probed peer (filter: contains) - */ - meta_peer_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the probed peer (filter: starts_with) - */ - meta_peer_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the probed peer (filter: ends_with) - */ - meta_peer_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the probed peer (filter: like) - */ - meta_peer_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the probed peer (filter: not_like) - */ - meta_peer_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the probed peer (filter: in_values) (comma-separated list) - */ - meta_peer_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the probed peer (filter: not_in_values) (comma-separated list) - */ - meta_peer_geo_autonomous_system_organization_not_in_values?: string; - /** - * The maximum number of int_custody_probe_order_by_slot to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntCustodyProbeOrderBySlot` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_custody_probe_order_by_slot'; -}; - -export type IntCustodyProbeOrderBySlotServiceListErrors = { + log_count_lte?: number; /** - * Default error response + * Number of logs emitted by this transaction (filter: gt) */ - default: Status; -}; - -export type IntCustodyProbeOrderBySlotServiceListError = IntCustodyProbeOrderBySlotServiceListErrors[keyof IntCustodyProbeOrderBySlotServiceListErrors]; - -export type IntCustodyProbeOrderBySlotServiceListResponses = { + log_count_gt?: number; /** - * OK + * Number of logs emitted by this transaction (filter: gte) */ - 200: ListIntCustodyProbeOrderBySlotResponse; -}; - -export type IntCustodyProbeOrderBySlotServiceListResponse = IntCustodyProbeOrderBySlotServiceListResponses[keyof IntCustodyProbeOrderBySlotServiceListResponses]; - -export type IntCustodyProbeOrderBySlotServiceGetData = { - body?: never; - path: { - /** - * Start date time of the slot - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_custody_probe_order_by_slot/{slot_start_date_time}'; -}; - -export type IntCustodyProbeOrderBySlotServiceGetErrors = { + log_count_gte?: number; /** - * Default error response + * Number of logs emitted by this transaction (filter: between_min) */ - default: Status; -}; - -export type IntCustodyProbeOrderBySlotServiceGetError = IntCustodyProbeOrderBySlotServiceGetErrors[keyof IntCustodyProbeOrderBySlotServiceGetErrors]; - -export type IntCustodyProbeOrderBySlotServiceGetResponses = { + log_count_between_min?: number; /** - * OK + * Number of logs emitted by this transaction (filter: between_max_value) */ - 200: GetIntCustodyProbeOrderBySlotResponse; -}; - -export type IntCustodyProbeOrderBySlotServiceGetResponse = IntCustodyProbeOrderBySlotServiceGetResponses[keyof IntCustodyProbeOrderBySlotServiceGetResponses]; - -export type IntEngineGetBlobsServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) - */ - block_root_eq?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) - */ - block_root_ne?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) - */ - block_root_contains?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: like) - */ - block_root_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) - */ - block_root_not_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Name of the client that generated the event (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the client that generated the event (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the client that generated the event (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the client that generated the event (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the client that generated the event (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the client that generated the event (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the client that generated the event (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * When the sentry received the event (filter: eq) - */ - event_date_time_eq?: number; - /** - * When the sentry received the event (filter: ne) - */ - event_date_time_ne?: number; - /** - * When the sentry received the event (filter: lt) - */ - event_date_time_lt?: number; - /** - * When the sentry received the event (filter: lte) - */ - event_date_time_lte?: number; - /** - * When the sentry received the event (filter: gt) - */ - event_date_time_gt?: number; - /** - * When the sentry received the event (filter: gte) - */ - event_date_time_gte?: number; - /** - * When the sentry received the event (filter: between_min) - */ - event_date_time_between_min?: number; - /** - * When the sentry received the event (filter: between_max_value) - */ - event_date_time_between_max_value?: number; - /** - * When the sentry received the event (filter: in_values) (comma-separated list) - */ - event_date_time_in_values?: string; - /** - * When the sentry received the event (filter: not_in_values) (comma-separated list) - */ - event_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * When the engine_getBlobs call was initiated (filter: eq) - */ - requested_date_time_eq?: number; - /** - * When the engine_getBlobs call was initiated (filter: ne) - */ - requested_date_time_ne?: number; - /** - * When the engine_getBlobs call was initiated (filter: lt) - */ - requested_date_time_lt?: number; - /** - * When the engine_getBlobs call was initiated (filter: lte) - */ - requested_date_time_lte?: number; - /** - * When the engine_getBlobs call was initiated (filter: gt) - */ - requested_date_time_gt?: number; - /** - * When the engine_getBlobs call was initiated (filter: gte) - */ - requested_date_time_gte?: number; - /** - * When the engine_getBlobs call was initiated (filter: between_min) - */ - requested_date_time_between_min?: number; - /** - * When the engine_getBlobs call was initiated (filter: between_max_value) - */ - requested_date_time_between_max_value?: number; - /** - * When the engine_getBlobs call was initiated (filter: in_values) (comma-separated list) - */ - requested_date_time_in_values?: string; - /** - * When the engine_getBlobs call was initiated (filter: not_in_values) (comma-separated list) - */ - requested_date_time_not_in_values?: string; - /** - * How long the engine_getBlobs call took in milliseconds (filter: eq) - */ - duration_ms_eq?: number; - /** - * How long the engine_getBlobs call took in milliseconds (filter: ne) - */ - duration_ms_ne?: number; - /** - * How long the engine_getBlobs call took in milliseconds (filter: lt) - */ - duration_ms_lt?: number; - /** - * How long the engine_getBlobs call took in milliseconds (filter: lte) - */ - duration_ms_lte?: number; - /** - * How long the engine_getBlobs call took in milliseconds (filter: gt) - */ - duration_ms_gt?: number; - /** - * How long the engine_getBlobs call took in milliseconds (filter: gte) - */ - duration_ms_gte?: number; - /** - * How long the engine_getBlobs call took in milliseconds (filter: between_min) - */ - duration_ms_between_min?: number; - /** - * How long the engine_getBlobs call took in milliseconds (filter: between_max_value) - */ - duration_ms_between_max_value?: number; - /** - * How long the engine_getBlobs call took in milliseconds (filter: in_values) (comma-separated list) - */ - duration_ms_in_values?: string; - /** - * How long the engine_getBlobs call took in milliseconds (filter: not_in_values) (comma-separated list) - */ - duration_ms_not_in_values?: string; - /** - * Slot number of the beacon block containing the blobs (filter: eq) - */ - slot_eq?: number; - /** - * Slot number of the beacon block containing the blobs (filter: ne) - */ - slot_ne?: number; - /** - * Slot number of the beacon block containing the blobs (filter: lt) - */ - slot_lt?: number; - /** - * Slot number of the beacon block containing the blobs (filter: lte) - */ - slot_lte?: number; - /** - * Slot number of the beacon block containing the blobs (filter: gt) - */ - slot_gt?: number; - /** - * Slot number of the beacon block containing the blobs (filter: gte) - */ - slot_gte?: number; - /** - * Slot number of the beacon block containing the blobs (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number of the beacon block containing the blobs (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number of the beacon block containing the blobs (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number of the beacon block containing the blobs (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: eq) - */ - block_parent_root_eq?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: ne) - */ - block_parent_root_ne?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: contains) - */ - block_parent_root_contains?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: starts_with) - */ - block_parent_root_starts_with?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: ends_with) - */ - block_parent_root_ends_with?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: like) - */ - block_parent_root_like?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: not_like) - */ - block_parent_root_not_like?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_parent_root_in_values?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_parent_root_not_in_values?: string; - /** - * Validator index of the block proposer (filter: eq) - */ - proposer_index_eq?: number; - /** - * Validator index of the block proposer (filter: ne) - */ - proposer_index_ne?: number; - /** - * Validator index of the block proposer (filter: lt) - */ - proposer_index_lt?: number; - /** - * Validator index of the block proposer (filter: lte) - */ - proposer_index_lte?: number; - /** - * Validator index of the block proposer (filter: gt) - */ - proposer_index_gt?: number; - /** - * Validator index of the block proposer (filter: gte) - */ - proposer_index_gte?: number; - /** - * Validator index of the block proposer (filter: between_min) - */ - proposer_index_between_min?: number; - /** - * Validator index of the block proposer (filter: between_max_value) - */ - proposer_index_between_max_value?: number; - /** - * Validator index of the block proposer (filter: in_values) (comma-separated list) - */ - proposer_index_in_values?: string; - /** - * Validator index of the block proposer (filter: not_in_values) (comma-separated list) - */ - proposer_index_not_in_values?: string; - /** - * Number of blobs requested (length of versioned_hashes array) (filter: eq) - */ - requested_count_eq?: number; - /** - * Number of blobs requested (length of versioned_hashes array) (filter: ne) - */ - requested_count_ne?: number; - /** - * Number of blobs requested (length of versioned_hashes array) (filter: lt) - */ - requested_count_lt?: number; - /** - * Number of blobs requested (length of versioned_hashes array) (filter: lte) - */ - requested_count_lte?: number; - /** - * Number of blobs requested (length of versioned_hashes array) (filter: gt) - */ - requested_count_gt?: number; - /** - * Number of blobs requested (length of versioned_hashes array) (filter: gte) - */ - requested_count_gte?: number; - /** - * Number of blobs requested (length of versioned_hashes array) (filter: between_min) - */ - requested_count_between_min?: number; - /** - * Number of blobs requested (length of versioned_hashes array) (filter: between_max_value) - */ - requested_count_between_max_value?: number; - /** - * Number of blobs requested (length of versioned_hashes array) (filter: in_values) (comma-separated list) - */ - requested_count_in_values?: string; - /** - * Number of blobs requested (length of versioned_hashes array) (filter: not_in_values) (comma-separated list) - */ - requested_count_not_in_values?: string; - /** - * Versioned hashes of the requested blobs (filter: has) - */ - versioned_hashes_has?: string; - /** - * Versioned hashes of the requested blobs (filter: has_all_values) - */ - versioned_hashes_has_all_values?: Array; - /** - * Versioned hashes of the requested blobs (filter: has_any_values) - */ - versioned_hashes_has_any_values?: Array; - /** - * Versioned hashes of the requested blobs (filter: length_eq) - */ - versioned_hashes_length_eq?: number; - /** - * Versioned hashes of the requested blobs (filter: length_gt) - */ - versioned_hashes_length_gt?: number; - /** - * Versioned hashes of the requested blobs (filter: length_gte) - */ - versioned_hashes_length_gte?: number; - /** - * Versioned hashes of the requested blobs (filter: length_lt) - */ - versioned_hashes_length_lt?: number; - /** - * Versioned hashes of the requested blobs (filter: length_lte) - */ - versioned_hashes_length_lte?: number; - /** - * Number of blobs actually returned (filter: eq) - */ - returned_count_eq?: number; - /** - * Number of blobs actually returned (filter: ne) - */ - returned_count_ne?: number; - /** - * Number of blobs actually returned (filter: lt) - */ - returned_count_lt?: number; - /** - * Number of blobs actually returned (filter: lte) - */ - returned_count_lte?: number; - /** - * Number of blobs actually returned (filter: gt) - */ - returned_count_gt?: number; - /** - * Number of blobs actually returned (filter: gte) - */ - returned_count_gte?: number; - /** - * Number of blobs actually returned (filter: between_min) - */ - returned_count_between_min?: number; - /** - * Number of blobs actually returned (filter: between_max_value) - */ - returned_count_between_max_value?: number; - /** - * Number of blobs actually returned (filter: in_values) (comma-separated list) - */ - returned_count_in_values?: string; - /** - * Number of blobs actually returned (filter: not_in_values) (comma-separated list) - */ - returned_count_not_in_values?: string; - /** - * Indexes of the returned blobs (filter: has) - */ - returned_blob_indexes_has?: number; - /** - * Indexes of the returned blobs (filter: has_all_values) - */ - returned_blob_indexes_has_all_values?: Array; - /** - * Indexes of the returned blobs (filter: has_any_values) - */ - returned_blob_indexes_has_any_values?: Array; - /** - * Indexes of the returned blobs (filter: length_eq) - */ - returned_blob_indexes_length_eq?: number; - /** - * Indexes of the returned blobs (filter: length_gt) - */ - returned_blob_indexes_length_gt?: number; - /** - * Indexes of the returned blobs (filter: length_gte) - */ - returned_blob_indexes_length_gte?: number; - /** - * Indexes of the returned blobs (filter: length_lt) - */ - returned_blob_indexes_length_lt?: number; - /** - * Indexes of the returned blobs (filter: length_lte) - */ - returned_blob_indexes_length_lte?: number; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: eq) - */ - status_eq?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: ne) - */ - status_ne?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: contains) - */ - status_contains?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: starts_with) - */ - status_starts_with?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: ends_with) - */ - status_ends_with?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: like) - */ - status_like?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: not_like) - */ - status_not_like?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Engine API response status (SUCCESS, PARTIAL, EMPTY, UNSUPPORTED, ERROR) (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Error message when the call fails (filter: eq) - */ - error_message_eq?: string; - /** - * Error message when the call fails (filter: ne) - */ - error_message_ne?: string; - /** - * Error message when the call fails (filter: contains) - */ - error_message_contains?: string; - /** - * Error message when the call fails (filter: starts_with) - */ - error_message_starts_with?: string; - /** - * Error message when the call fails (filter: ends_with) - */ - error_message_ends_with?: string; - /** - * Error message when the call fails (filter: like) - */ - error_message_like?: string; - /** - * Error message when the call fails (filter: not_like) - */ - error_message_not_like?: string; - /** - * Error message when the call fails (filter: in_values) (comma-separated list) - */ - error_message_in_values?: string; - /** - * Error message when the call fails (filter: not_in_values) (comma-separated list) - */ - error_message_not_in_values?: string; - /** - * Version of the engine_getBlobs method (filter: eq) - */ - method_version_eq?: string; - /** - * Version of the engine_getBlobs method (filter: ne) - */ - method_version_ne?: string; - /** - * Version of the engine_getBlobs method (filter: contains) - */ - method_version_contains?: string; - /** - * Version of the engine_getBlobs method (filter: starts_with) - */ - method_version_starts_with?: string; - /** - * Version of the engine_getBlobs method (filter: ends_with) - */ - method_version_ends_with?: string; - /** - * Version of the engine_getBlobs method (filter: like) - */ - method_version_like?: string; - /** - * Version of the engine_getBlobs method (filter: not_like) - */ - method_version_not_like?: string; - /** - * Version of the engine_getBlobs method (filter: in_values) (comma-separated list) - */ - method_version_in_values?: string; - /** - * Version of the engine_getBlobs method (filter: not_in_values) (comma-separated list) - */ - method_version_not_in_values?: string; - /** - * Source of the engine event (filter: eq) - */ - source_eq?: string; - /** - * Source of the engine event (filter: ne) - */ - source_ne?: string; - /** - * Source of the engine event (filter: contains) - */ - source_contains?: string; - /** - * Source of the engine event (filter: starts_with) - */ - source_starts_with?: string; - /** - * Source of the engine event (filter: ends_with) - */ - source_ends_with?: string; - /** - * Source of the engine event (filter: like) - */ - source_like?: string; - /** - * Source of the engine event (filter: not_like) - */ - source_not_like?: string; - /** - * Source of the engine event (filter: in_values) (comma-separated list) - */ - source_in_values?: string; - /** - * Source of the engine event (filter: not_in_values) (comma-separated list) - */ - source_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: eq) - */ - meta_execution_version_eq?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: ne) - */ - meta_execution_version_ne?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: contains) - */ - meta_execution_version_contains?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: starts_with) - */ - meta_execution_version_starts_with?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: ends_with) - */ - meta_execution_version_ends_with?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: like) - */ - meta_execution_version_like?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: not_like) - */ - meta_execution_version_not_like?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: in_values) (comma-separated list) - */ - meta_execution_version_in_values?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: not_in_values) (comma-separated list) - */ - meta_execution_version_not_in_values?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) - */ - meta_execution_implementation_eq?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) - */ - meta_execution_implementation_ne?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) - */ - meta_execution_implementation_contains?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) - */ - meta_execution_implementation_starts_with?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) - */ - meta_execution_implementation_ends_with?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: like) - */ - meta_execution_implementation_like?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) - */ - meta_execution_implementation_not_like?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) - */ - meta_execution_implementation_in_values?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) - */ - meta_execution_implementation_not_in_values?: string; - /** - * Implementation of the client that generated the event (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client that generated the event (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client that generated the event (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client that generated the event (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client that generated the event (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client that generated the event (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client that generated the event (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * Version of the client that generated the event (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client that generated the event (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client that generated the event (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client that generated the event (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client that generated the event (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client that generated the event (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client that generated the event (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * City of the client that generated the event (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client that generated the event (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client that generated the event (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client that generated the event (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client that generated the event (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client that generated the event (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client that generated the event (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client that generated the event (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client that generated the event (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client that generated the event (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client that generated the event (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client that generated the event (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client that generated the event (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client that generated the event (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client that generated the event (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client that generated the event (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client that generated the event (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client that generated the event (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client that generated the event (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client that generated the event (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client that generated the event (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * Continent code of the client that generated the event (filter: eq) - */ - meta_client_geo_continent_code_eq?: string; - /** - * Continent code of the client that generated the event (filter: ne) - */ - meta_client_geo_continent_code_ne?: string; - /** - * Continent code of the client that generated the event (filter: contains) - */ - meta_client_geo_continent_code_contains?: string; - /** - * Continent code of the client that generated the event (filter: starts_with) - */ - meta_client_geo_continent_code_starts_with?: string; - /** - * Continent code of the client that generated the event (filter: ends_with) - */ - meta_client_geo_continent_code_ends_with?: string; - /** - * Continent code of the client that generated the event (filter: like) - */ - meta_client_geo_continent_code_like?: string; - /** - * Continent code of the client that generated the event (filter: not_like) - */ - meta_client_geo_continent_code_not_like?: string; - /** - * Continent code of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_continent_code_in_values?: string; - /** - * Continent code of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_continent_code_not_in_values?: string; - /** - * Filter meta_client_geo_latitude using value - */ - meta_client_geo_latitude_value?: number; - /** - * Filter meta_client_geo_longitude using value - */ - meta_client_geo_longitude_value?: number; - /** - * Autonomous system number of the client that generated the event (filter: eq) - */ - meta_client_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the client that generated the event (filter: ne) - */ - meta_client_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the client that generated the event (filter: lt) - */ - meta_client_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the client that generated the event (filter: lte) - */ - meta_client_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the client that generated the event (filter: gt) - */ - meta_client_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the client that generated the event (filter: gte) - */ - meta_client_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the client that generated the event (filter: between_min) - */ - meta_client_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the client that generated the event (filter: between_max_value) - */ - meta_client_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the client that generated the event (filter: eq) - */ - meta_client_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the client that generated the event (filter: ne) - */ - meta_client_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the client that generated the event (filter: contains) - */ - meta_client_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the client that generated the event (filter: starts_with) - */ - meta_client_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the client that generated the event (filter: ends_with) - */ - meta_client_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the client that generated the event (filter: like) - */ - meta_client_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the client that generated the event (filter: not_like) - */ - meta_client_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_not_in_values?: string; - /** - * The maximum number of int_engine_get_blobs to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntEngineGetBlobs` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_engine_get_blobs'; -}; - -export type IntEngineGetBlobsServiceListErrors = { + log_count_between_max_value?: number; /** - * Default error response + * Number of logs emitted by this transaction (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntEngineGetBlobsServiceListError = IntEngineGetBlobsServiceListErrors[keyof IntEngineGetBlobsServiceListErrors]; - -export type IntEngineGetBlobsServiceListResponses = { + log_count_in_values?: string; /** - * OK + * Number of logs emitted by this transaction (filter: not_in_values) (comma-separated list) */ - 200: ListIntEngineGetBlobsResponse; -}; - -export type IntEngineGetBlobsServiceListResponse = IntEngineGetBlobsServiceListResponses[keyof IntEngineGetBlobsServiceListResponses]; - -export type IntEngineGetBlobsServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_engine_get_blobs/{slot_start_date_time}'; -}; - -export type IntEngineGetBlobsServiceGetErrors = { + log_count_not_in_values?: string; /** - * Default error response + * Total raw bytes of log data fields (before RLP encoding) (filter: eq) */ - default: Status; -}; - -export type IntEngineGetBlobsServiceGetError = IntEngineGetBlobsServiceGetErrors[keyof IntEngineGetBlobsServiceGetErrors]; - -export type IntEngineGetBlobsServiceGetResponses = { + log_data_bytes_eq?: number; /** - * OK + * Total raw bytes of log data fields (before RLP encoding) (filter: ne) */ - 200: GetIntEngineGetBlobsResponse; -}; - -export type IntEngineGetBlobsServiceGetResponse = IntEngineGetBlobsServiceGetResponses[keyof IntEngineGetBlobsServiceGetResponses]; - -export type IntEngineNewPayloadServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: eq) - */ - block_hash_eq?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: ne) - */ - block_hash_ne?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: contains) - */ - block_hash_contains?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: starts_with) - */ - block_hash_starts_with?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: ends_with) - */ - block_hash_ends_with?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: like) - */ - block_hash_like?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: not_like) - */ - block_hash_not_like?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_hash_in_values?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_hash_not_in_values?: string; - /** - * Name of the client that generated the event (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the client that generated the event (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the client that generated the event (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the client that generated the event (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the client that generated the event (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the client that generated the event (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the client that generated the event (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * When the sentry received the event (filter: eq) - */ - event_date_time_eq?: number; - /** - * When the sentry received the event (filter: ne) - */ - event_date_time_ne?: number; - /** - * When the sentry received the event (filter: lt) - */ - event_date_time_lt?: number; - /** - * When the sentry received the event (filter: lte) - */ - event_date_time_lte?: number; - /** - * When the sentry received the event (filter: gt) - */ - event_date_time_gt?: number; - /** - * When the sentry received the event (filter: gte) - */ - event_date_time_gte?: number; - /** - * When the sentry received the event (filter: between_min) - */ - event_date_time_between_min?: number; - /** - * When the sentry received the event (filter: between_max_value) - */ - event_date_time_between_max_value?: number; - /** - * When the sentry received the event (filter: in_values) (comma-separated list) - */ - event_date_time_in_values?: string; - /** - * When the sentry received the event (filter: not_in_values) (comma-separated list) - */ - event_date_time_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * When the engine_newPayload call was initiated (filter: eq) - */ - requested_date_time_eq?: number; - /** - * When the engine_newPayload call was initiated (filter: ne) - */ - requested_date_time_ne?: number; - /** - * When the engine_newPayload call was initiated (filter: lt) - */ - requested_date_time_lt?: number; - /** - * When the engine_newPayload call was initiated (filter: lte) - */ - requested_date_time_lte?: number; - /** - * When the engine_newPayload call was initiated (filter: gt) - */ - requested_date_time_gt?: number; - /** - * When the engine_newPayload call was initiated (filter: gte) - */ - requested_date_time_gte?: number; - /** - * When the engine_newPayload call was initiated (filter: between_min) - */ - requested_date_time_between_min?: number; - /** - * When the engine_newPayload call was initiated (filter: between_max_value) - */ - requested_date_time_between_max_value?: number; - /** - * When the engine_newPayload call was initiated (filter: in_values) (comma-separated list) - */ - requested_date_time_in_values?: string; - /** - * When the engine_newPayload call was initiated (filter: not_in_values) (comma-separated list) - */ - requested_date_time_not_in_values?: string; - /** - * How long the engine_newPayload call took in milliseconds (filter: eq) - */ - duration_ms_eq?: number; - /** - * How long the engine_newPayload call took in milliseconds (filter: ne) - */ - duration_ms_ne?: number; - /** - * How long the engine_newPayload call took in milliseconds (filter: lt) - */ - duration_ms_lt?: number; - /** - * How long the engine_newPayload call took in milliseconds (filter: lte) - */ - duration_ms_lte?: number; - /** - * How long the engine_newPayload call took in milliseconds (filter: gt) - */ - duration_ms_gt?: number; - /** - * How long the engine_newPayload call took in milliseconds (filter: gte) - */ - duration_ms_gte?: number; - /** - * How long the engine_newPayload call took in milliseconds (filter: between_min) - */ - duration_ms_between_min?: number; - /** - * How long the engine_newPayload call took in milliseconds (filter: between_max_value) - */ - duration_ms_between_max_value?: number; - /** - * How long the engine_newPayload call took in milliseconds (filter: in_values) (comma-separated list) - */ - duration_ms_in_values?: string; - /** - * How long the engine_newPayload call took in milliseconds (filter: not_in_values) (comma-separated list) - */ - duration_ms_not_in_values?: string; - /** - * Slot number of the beacon block containing the payload (filter: eq) - */ - slot_eq?: number; - /** - * Slot number of the beacon block containing the payload (filter: ne) - */ - slot_ne?: number; - /** - * Slot number of the beacon block containing the payload (filter: lt) - */ - slot_lt?: number; - /** - * Slot number of the beacon block containing the payload (filter: lte) - */ - slot_lte?: number; - /** - * Slot number of the beacon block containing the payload (filter: gt) - */ - slot_gt?: number; - /** - * Slot number of the beacon block containing the payload (filter: gte) - */ - slot_gte?: number; - /** - * Slot number of the beacon block containing the payload (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number of the beacon block containing the payload (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number of the beacon block containing the payload (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number of the beacon block containing the payload (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Epoch number derived from the slot (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: eq) - */ - block_root_eq?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ne) - */ - block_root_ne?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: contains) - */ - block_root_contains?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: starts_with) - */ - block_root_starts_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: ends_with) - */ - block_root_ends_with?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: like) - */ - block_root_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_like) - */ - block_root_not_like?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_root_in_values?: string; - /** - * Root of the beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_root_not_in_values?: string; - /** - * Execution block number (filter: eq) - */ - block_number_eq?: number; - /** - * Execution block number (filter: ne) - */ - block_number_ne?: number; - /** - * Execution block number (filter: lt) - */ - block_number_lt?: number; - /** - * Execution block number (filter: lte) - */ - block_number_lte?: number; - /** - * Execution block number (filter: gt) - */ - block_number_gt?: number; - /** - * Execution block number (filter: gte) - */ - block_number_gte?: number; - /** - * Execution block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * Execution block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * Execution block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * Execution block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: eq) - */ - parent_block_root_eq?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: ne) - */ - parent_block_root_ne?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: contains) - */ - parent_block_root_contains?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: starts_with) - */ - parent_block_root_starts_with?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: ends_with) - */ - parent_block_root_ends_with?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: like) - */ - parent_block_root_like?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: not_like) - */ - parent_block_root_not_like?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - parent_block_root_in_values?: string; - /** - * Root of the parent beacon block (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - parent_block_root_not_in_values?: string; - /** - * Parent execution block hash (hex encoded with 0x prefix) (filter: eq) - */ - parent_hash_eq?: string; - /** - * Parent execution block hash (hex encoded with 0x prefix) (filter: ne) - */ - parent_hash_ne?: string; - /** - * Parent execution block hash (hex encoded with 0x prefix) (filter: contains) - */ - parent_hash_contains?: string; - /** - * Parent execution block hash (hex encoded with 0x prefix) (filter: starts_with) - */ - parent_hash_starts_with?: string; - /** - * Parent execution block hash (hex encoded with 0x prefix) (filter: ends_with) - */ - parent_hash_ends_with?: string; - /** - * Parent execution block hash (hex encoded with 0x prefix) (filter: like) - */ - parent_hash_like?: string; - /** - * Parent execution block hash (hex encoded with 0x prefix) (filter: not_like) - */ - parent_hash_not_like?: string; - /** - * Parent execution block hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - parent_hash_in_values?: string; - /** - * Parent execution block hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - parent_hash_not_in_values?: string; - /** - * Validator index of the block proposer (filter: eq) - */ - proposer_index_eq?: number; - /** - * Validator index of the block proposer (filter: ne) - */ - proposer_index_ne?: number; - /** - * Validator index of the block proposer (filter: lt) - */ - proposer_index_lt?: number; - /** - * Validator index of the block proposer (filter: lte) - */ - proposer_index_lte?: number; - /** - * Validator index of the block proposer (filter: gt) - */ - proposer_index_gt?: number; - /** - * Validator index of the block proposer (filter: gte) - */ - proposer_index_gte?: number; - /** - * Validator index of the block proposer (filter: between_min) - */ - proposer_index_between_min?: number; - /** - * Validator index of the block proposer (filter: between_max_value) - */ - proposer_index_between_max_value?: number; - /** - * Validator index of the block proposer (filter: in_values) (comma-separated list) - */ - proposer_index_in_values?: string; - /** - * Validator index of the block proposer (filter: not_in_values) (comma-separated list) - */ - proposer_index_not_in_values?: string; - /** - * Total gas used by all transactions in the block (filter: eq) - */ - gas_used_eq?: number; - /** - * Total gas used by all transactions in the block (filter: ne) - */ - gas_used_ne?: number; - /** - * Total gas used by all transactions in the block (filter: lt) - */ - gas_used_lt?: number; - /** - * Total gas used by all transactions in the block (filter: lte) - */ - gas_used_lte?: number; - /** - * Total gas used by all transactions in the block (filter: gt) - */ - gas_used_gt?: number; - /** - * Total gas used by all transactions in the block (filter: gte) - */ - gas_used_gte?: number; - /** - * Total gas used by all transactions in the block (filter: between_min) - */ - gas_used_between_min?: number; - /** - * Total gas used by all transactions in the block (filter: between_max_value) - */ - gas_used_between_max_value?: number; - /** - * Total gas used by all transactions in the block (filter: in_values) (comma-separated list) - */ - gas_used_in_values?: string; - /** - * Total gas used by all transactions in the block (filter: not_in_values) (comma-separated list) - */ - gas_used_not_in_values?: string; - /** - * Gas limit of the block (filter: eq) - */ - gas_limit_eq?: number; - /** - * Gas limit of the block (filter: ne) - */ - gas_limit_ne?: number; - /** - * Gas limit of the block (filter: lt) - */ - gas_limit_lt?: number; - /** - * Gas limit of the block (filter: lte) - */ - gas_limit_lte?: number; - /** - * Gas limit of the block (filter: gt) - */ - gas_limit_gt?: number; - /** - * Gas limit of the block (filter: gte) - */ - gas_limit_gte?: number; - /** - * Gas limit of the block (filter: between_min) - */ - gas_limit_between_min?: number; - /** - * Gas limit of the block (filter: between_max_value) - */ - gas_limit_between_max_value?: number; - /** - * Gas limit of the block (filter: in_values) (comma-separated list) - */ - gas_limit_in_values?: string; - /** - * Gas limit of the block (filter: not_in_values) (comma-separated list) - */ - gas_limit_not_in_values?: string; - /** - * Number of transactions in the block (filter: eq) - */ - tx_count_eq?: number; - /** - * Number of transactions in the block (filter: ne) - */ - tx_count_ne?: number; - /** - * Number of transactions in the block (filter: lt) - */ - tx_count_lt?: number; - /** - * Number of transactions in the block (filter: lte) - */ - tx_count_lte?: number; - /** - * Number of transactions in the block (filter: gt) - */ - tx_count_gt?: number; - /** - * Number of transactions in the block (filter: gte) - */ - tx_count_gte?: number; - /** - * Number of transactions in the block (filter: between_min) - */ - tx_count_between_min?: number; - /** - * Number of transactions in the block (filter: between_max_value) - */ - tx_count_between_max_value?: number; - /** - * Number of transactions in the block (filter: in_values) (comma-separated list) - */ - tx_count_in_values?: string; - /** - * Number of transactions in the block (filter: not_in_values) (comma-separated list) - */ - tx_count_not_in_values?: string; - /** - * Number of blobs in the block (filter: eq) - */ - blob_count_eq?: number; - /** - * Number of blobs in the block (filter: ne) - */ - blob_count_ne?: number; - /** - * Number of blobs in the block (filter: lt) - */ - blob_count_lt?: number; - /** - * Number of blobs in the block (filter: lte) - */ - blob_count_lte?: number; - /** - * Number of blobs in the block (filter: gt) - */ - blob_count_gt?: number; - /** - * Number of blobs in the block (filter: gte) - */ - blob_count_gte?: number; - /** - * Number of blobs in the block (filter: between_min) - */ - blob_count_between_min?: number; - /** - * Number of blobs in the block (filter: between_max_value) - */ - blob_count_between_max_value?: number; - /** - * Number of blobs in the block (filter: in_values) (comma-separated list) - */ - blob_count_in_values?: string; - /** - * Number of blobs in the block (filter: not_in_values) (comma-separated list) - */ - blob_count_not_in_values?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: eq) - */ - status_eq?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: ne) - */ - status_ne?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: contains) - */ - status_contains?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: starts_with) - */ - status_starts_with?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: ends_with) - */ - status_ends_with?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: like) - */ - status_like?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: not_like) - */ - status_not_like?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: in_values) (comma-separated list) - */ - status_in_values?: string; - /** - * Engine API response status (VALID, INVALID, SYNCING, ACCEPTED, INVALID_BLOCK_HASH, ERROR) (filter: not_in_values) (comma-separated list) - */ - status_not_in_values?: string; - /** - * Error message when validation fails (filter: eq) - */ - validation_error_eq?: string; - /** - * Error message when validation fails (filter: ne) - */ - validation_error_ne?: string; - /** - * Error message when validation fails (filter: contains) - */ - validation_error_contains?: string; - /** - * Error message when validation fails (filter: starts_with) - */ - validation_error_starts_with?: string; - /** - * Error message when validation fails (filter: ends_with) - */ - validation_error_ends_with?: string; - /** - * Error message when validation fails (filter: like) - */ - validation_error_like?: string; - /** - * Error message when validation fails (filter: not_like) - */ - validation_error_not_like?: string; - /** - * Error message when validation fails (filter: in_values) (comma-separated list) - */ - validation_error_in_values?: string; - /** - * Error message when validation fails (filter: not_in_values) (comma-separated list) - */ - validation_error_not_in_values?: string; - /** - * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: eq) - */ - latest_valid_hash_eq?: string; - /** - * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: ne) - */ - latest_valid_hash_ne?: string; - /** - * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: contains) - */ - latest_valid_hash_contains?: string; - /** - * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: starts_with) - */ - latest_valid_hash_starts_with?: string; - /** - * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: ends_with) - */ - latest_valid_hash_ends_with?: string; - /** - * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: like) - */ - latest_valid_hash_like?: string; - /** - * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: not_like) - */ - latest_valid_hash_not_like?: string; - /** - * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - latest_valid_hash_in_values?: string; - /** - * Latest valid hash when status is INVALID (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - latest_valid_hash_not_in_values?: string; - /** - * Version of the engine_newPayload method (e.g., V3, V4) (filter: eq) - */ - method_version_eq?: string; - /** - * Version of the engine_newPayload method (e.g., V3, V4) (filter: ne) - */ - method_version_ne?: string; - /** - * Version of the engine_newPayload method (e.g., V3, V4) (filter: contains) - */ - method_version_contains?: string; - /** - * Version of the engine_newPayload method (e.g., V3, V4) (filter: starts_with) - */ - method_version_starts_with?: string; - /** - * Version of the engine_newPayload method (e.g., V3, V4) (filter: ends_with) - */ - method_version_ends_with?: string; - /** - * Version of the engine_newPayload method (e.g., V3, V4) (filter: like) - */ - method_version_like?: string; - /** - * Version of the engine_newPayload method (e.g., V3, V4) (filter: not_like) - */ - method_version_not_like?: string; - /** - * Version of the engine_newPayload method (e.g., V3, V4) (filter: in_values) (comma-separated list) - */ - method_version_in_values?: string; - /** - * Version of the engine_newPayload method (e.g., V3, V4) (filter: not_in_values) (comma-separated list) - */ - method_version_not_in_values?: string; - /** - * The total bytes of the beacon block payload (filter: eq) - */ - block_total_bytes_eq?: number; - /** - * The total bytes of the beacon block payload (filter: ne) - */ - block_total_bytes_ne?: number; - /** - * The total bytes of the beacon block payload (filter: lt) - */ - block_total_bytes_lt?: number; - /** - * The total bytes of the beacon block payload (filter: lte) - */ - block_total_bytes_lte?: number; - /** - * The total bytes of the beacon block payload (filter: gt) - */ - block_total_bytes_gt?: number; - /** - * The total bytes of the beacon block payload (filter: gte) - */ - block_total_bytes_gte?: number; - /** - * The total bytes of the beacon block payload (filter: between_min) - */ - block_total_bytes_between_min?: number; - /** - * The total bytes of the beacon block payload (filter: between_max_value) - */ - block_total_bytes_between_max_value?: number; - /** - * The total bytes of the beacon block payload (filter: in_values) (comma-separated list) - */ - block_total_bytes_in_values?: string; - /** - * The total bytes of the beacon block payload (filter: not_in_values) (comma-separated list) - */ - block_total_bytes_not_in_values?: string; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: eq) - */ - block_total_bytes_compressed_eq?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: ne) - */ - block_total_bytes_compressed_ne?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: lt) - */ - block_total_bytes_compressed_lt?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: lte) - */ - block_total_bytes_compressed_lte?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: gt) - */ - block_total_bytes_compressed_gt?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: gte) - */ - block_total_bytes_compressed_gte?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: between_min) - */ - block_total_bytes_compressed_between_min?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: between_max_value) - */ - block_total_bytes_compressed_between_max_value?: number; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: in_values) (comma-separated list) - */ - block_total_bytes_compressed_in_values?: string; - /** - * The total bytes of the beacon block payload when compressed using snappy (filter: not_in_values) (comma-separated list) - */ - block_total_bytes_compressed_not_in_values?: string; - /** - * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: eq) - */ - block_version_eq?: string; - /** - * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: ne) - */ - block_version_ne?: string; - /** - * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: contains) - */ - block_version_contains?: string; - /** - * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: starts_with) - */ - block_version_starts_with?: string; - /** - * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: ends_with) - */ - block_version_ends_with?: string; - /** - * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: like) - */ - block_version_like?: string; - /** - * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: not_like) - */ - block_version_not_like?: string; - /** - * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: in_values) (comma-separated list) - */ - block_version_in_values?: string; - /** - * The version of the beacon block (phase0, altair, bellatrix, capella, deneb) (filter: not_in_values) (comma-separated list) - */ - block_version_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: eq) - */ - meta_execution_version_eq?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: ne) - */ - meta_execution_version_ne?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: contains) - */ - meta_execution_version_contains?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: starts_with) - */ - meta_execution_version_starts_with?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: ends_with) - */ - meta_execution_version_ends_with?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: like) - */ - meta_execution_version_like?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: not_like) - */ - meta_execution_version_not_like?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: in_values) (comma-separated list) - */ - meta_execution_version_in_values?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: not_in_values) (comma-separated list) - */ - meta_execution_version_not_in_values?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) - */ - meta_execution_implementation_eq?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) - */ - meta_execution_implementation_ne?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) - */ - meta_execution_implementation_contains?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) - */ - meta_execution_implementation_starts_with?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) - */ - meta_execution_implementation_ends_with?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: like) - */ - meta_execution_implementation_like?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) - */ - meta_execution_implementation_not_like?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) - */ - meta_execution_implementation_in_values?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) - */ - meta_execution_implementation_not_in_values?: string; - /** - * Implementation of the client that generated the event (filter: eq) - */ - meta_client_implementation_eq?: string; - /** - * Implementation of the client that generated the event (filter: ne) - */ - meta_client_implementation_ne?: string; - /** - * Implementation of the client that generated the event (filter: contains) - */ - meta_client_implementation_contains?: string; - /** - * Implementation of the client that generated the event (filter: starts_with) - */ - meta_client_implementation_starts_with?: string; - /** - * Implementation of the client that generated the event (filter: ends_with) - */ - meta_client_implementation_ends_with?: string; - /** - * Implementation of the client that generated the event (filter: like) - */ - meta_client_implementation_like?: string; - /** - * Implementation of the client that generated the event (filter: not_like) - */ - meta_client_implementation_not_like?: string; - /** - * Implementation of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_implementation_in_values?: string; - /** - * Implementation of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_implementation_not_in_values?: string; - /** - * Version of the client that generated the event (filter: eq) - */ - meta_client_version_eq?: string; - /** - * Version of the client that generated the event (filter: ne) - */ - meta_client_version_ne?: string; - /** - * Version of the client that generated the event (filter: contains) - */ - meta_client_version_contains?: string; - /** - * Version of the client that generated the event (filter: starts_with) - */ - meta_client_version_starts_with?: string; - /** - * Version of the client that generated the event (filter: ends_with) - */ - meta_client_version_ends_with?: string; - /** - * Version of the client that generated the event (filter: like) - */ - meta_client_version_like?: string; - /** - * Version of the client that generated the event (filter: not_like) - */ - meta_client_version_not_like?: string; - /** - * Version of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_version_in_values?: string; - /** - * Version of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_version_not_in_values?: string; - /** - * City of the client that generated the event (filter: eq) - */ - meta_client_geo_city_eq?: string; - /** - * City of the client that generated the event (filter: ne) - */ - meta_client_geo_city_ne?: string; - /** - * City of the client that generated the event (filter: contains) - */ - meta_client_geo_city_contains?: string; - /** - * City of the client that generated the event (filter: starts_with) - */ - meta_client_geo_city_starts_with?: string; - /** - * City of the client that generated the event (filter: ends_with) - */ - meta_client_geo_city_ends_with?: string; - /** - * City of the client that generated the event (filter: like) - */ - meta_client_geo_city_like?: string; - /** - * City of the client that generated the event (filter: not_like) - */ - meta_client_geo_city_not_like?: string; - /** - * City of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_city_in_values?: string; - /** - * City of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_city_not_in_values?: string; - /** - * Country of the client that generated the event (filter: eq) - */ - meta_client_geo_country_eq?: string; - /** - * Country of the client that generated the event (filter: ne) - */ - meta_client_geo_country_ne?: string; - /** - * Country of the client that generated the event (filter: contains) - */ - meta_client_geo_country_contains?: string; - /** - * Country of the client that generated the event (filter: starts_with) - */ - meta_client_geo_country_starts_with?: string; - /** - * Country of the client that generated the event (filter: ends_with) - */ - meta_client_geo_country_ends_with?: string; - /** - * Country of the client that generated the event (filter: like) - */ - meta_client_geo_country_like?: string; - /** - * Country of the client that generated the event (filter: not_like) - */ - meta_client_geo_country_not_like?: string; - /** - * Country of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_in_values?: string; - /** - * Country of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_not_in_values?: string; - /** - * Country code of the client that generated the event (filter: eq) - */ - meta_client_geo_country_code_eq?: string; - /** - * Country code of the client that generated the event (filter: ne) - */ - meta_client_geo_country_code_ne?: string; - /** - * Country code of the client that generated the event (filter: contains) - */ - meta_client_geo_country_code_contains?: string; - /** - * Country code of the client that generated the event (filter: starts_with) - */ - meta_client_geo_country_code_starts_with?: string; - /** - * Country code of the client that generated the event (filter: ends_with) - */ - meta_client_geo_country_code_ends_with?: string; - /** - * Country code of the client that generated the event (filter: like) - */ - meta_client_geo_country_code_like?: string; - /** - * Country code of the client that generated the event (filter: not_like) - */ - meta_client_geo_country_code_not_like?: string; - /** - * Country code of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_country_code_in_values?: string; - /** - * Country code of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_country_code_not_in_values?: string; - /** - * Continent code of the client that generated the event (filter: eq) - */ - meta_client_geo_continent_code_eq?: string; - /** - * Continent code of the client that generated the event (filter: ne) - */ - meta_client_geo_continent_code_ne?: string; - /** - * Continent code of the client that generated the event (filter: contains) - */ - meta_client_geo_continent_code_contains?: string; - /** - * Continent code of the client that generated the event (filter: starts_with) - */ - meta_client_geo_continent_code_starts_with?: string; - /** - * Continent code of the client that generated the event (filter: ends_with) - */ - meta_client_geo_continent_code_ends_with?: string; - /** - * Continent code of the client that generated the event (filter: like) - */ - meta_client_geo_continent_code_like?: string; - /** - * Continent code of the client that generated the event (filter: not_like) - */ - meta_client_geo_continent_code_not_like?: string; - /** - * Continent code of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_continent_code_in_values?: string; - /** - * Continent code of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_continent_code_not_in_values?: string; - /** - * Filter meta_client_geo_latitude using value - */ - meta_client_geo_latitude_value?: number; - /** - * Filter meta_client_geo_longitude using value - */ - meta_client_geo_longitude_value?: number; - /** - * Autonomous system number of the client that generated the event (filter: eq) - */ - meta_client_geo_autonomous_system_number_eq?: number; - /** - * Autonomous system number of the client that generated the event (filter: ne) - */ - meta_client_geo_autonomous_system_number_ne?: number; - /** - * Autonomous system number of the client that generated the event (filter: lt) - */ - meta_client_geo_autonomous_system_number_lt?: number; - /** - * Autonomous system number of the client that generated the event (filter: lte) - */ - meta_client_geo_autonomous_system_number_lte?: number; - /** - * Autonomous system number of the client that generated the event (filter: gt) - */ - meta_client_geo_autonomous_system_number_gt?: number; - /** - * Autonomous system number of the client that generated the event (filter: gte) - */ - meta_client_geo_autonomous_system_number_gte?: number; - /** - * Autonomous system number of the client that generated the event (filter: between_min) - */ - meta_client_geo_autonomous_system_number_between_min?: number; - /** - * Autonomous system number of the client that generated the event (filter: between_max_value) - */ - meta_client_geo_autonomous_system_number_between_max_value?: number; - /** - * Autonomous system number of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_in_values?: string; - /** - * Autonomous system number of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_number_not_in_values?: string; - /** - * Autonomous system organization of the client that generated the event (filter: eq) - */ - meta_client_geo_autonomous_system_organization_eq?: string; - /** - * Autonomous system organization of the client that generated the event (filter: ne) - */ - meta_client_geo_autonomous_system_organization_ne?: string; - /** - * Autonomous system organization of the client that generated the event (filter: contains) - */ - meta_client_geo_autonomous_system_organization_contains?: string; - /** - * Autonomous system organization of the client that generated the event (filter: starts_with) - */ - meta_client_geo_autonomous_system_organization_starts_with?: string; - /** - * Autonomous system organization of the client that generated the event (filter: ends_with) - */ - meta_client_geo_autonomous_system_organization_ends_with?: string; - /** - * Autonomous system organization of the client that generated the event (filter: like) - */ - meta_client_geo_autonomous_system_organization_like?: string; - /** - * Autonomous system organization of the client that generated the event (filter: not_like) - */ - meta_client_geo_autonomous_system_organization_not_like?: string; - /** - * Autonomous system organization of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_in_values?: string; - /** - * Autonomous system organization of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_geo_autonomous_system_organization_not_in_values?: string; - /** - * The maximum number of int_engine_new_payload to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntEngineNewPayload` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_engine_new_payload'; -}; - -export type IntEngineNewPayloadServiceListErrors = { + log_data_bytes_ne?: number; /** - * Default error response + * Total raw bytes of log data fields (before RLP encoding) (filter: lt) */ - default: Status; -}; - -export type IntEngineNewPayloadServiceListError = IntEngineNewPayloadServiceListErrors[keyof IntEngineNewPayloadServiceListErrors]; - -export type IntEngineNewPayloadServiceListResponses = { + log_data_bytes_lt?: number; /** - * OK + * Total raw bytes of log data fields (before RLP encoding) (filter: lte) */ - 200: ListIntEngineNewPayloadResponse; -}; - -export type IntEngineNewPayloadServiceListResponse = IntEngineNewPayloadServiceListResponses[keyof IntEngineNewPayloadServiceListResponses]; - -export type IntEngineNewPayloadServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_engine_new_payload/{slot_start_date_time}'; -}; - -export type IntEngineNewPayloadServiceGetErrors = { + log_data_bytes_lte?: number; /** - * Default error response + * Total raw bytes of log data fields (before RLP encoding) (filter: gt) */ - default: Status; -}; - -export type IntEngineNewPayloadServiceGetError = IntEngineNewPayloadServiceGetErrors[keyof IntEngineNewPayloadServiceGetErrors]; - -export type IntEngineNewPayloadServiceGetResponses = { + log_data_bytes_gt?: number; /** - * OK + * Total raw bytes of log data fields (before RLP encoding) (filter: gte) */ - 200: GetIntEngineNewPayloadResponse; -}; - -export type IntEngineNewPayloadServiceGetResponse = IntEngineNewPayloadServiceGetResponses[keyof IntEngineNewPayloadServiceGetResponses]; - -export type IntEngineNewPayloadFastestExecutionByNodeClassServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The wall clock time when the slot started (filter: eq) - */ - slot_start_date_time_eq?: number; - /** - * The wall clock time when the slot started (filter: ne) - */ - slot_start_date_time_ne?: number; - /** - * The wall clock time when the slot started (filter: lt) - */ - slot_start_date_time_lt?: number; - /** - * The wall clock time when the slot started (filter: lte) - */ - slot_start_date_time_lte?: number; - /** - * The wall clock time when the slot started (filter: gt) - */ - slot_start_date_time_gt?: number; - /** - * The wall clock time when the slot started (filter: gte) - */ - slot_start_date_time_gte?: number; - /** - * The wall clock time when the slot started (filter: between_min) - */ - slot_start_date_time_between_min?: number; - /** - * The wall clock time when the slot started (filter: between_max_value) - */ - slot_start_date_time_between_max_value?: number; - /** - * The wall clock time when the slot started (filter: in_values) (comma-separated list) - */ - slot_start_date_time_in_values?: string; - /** - * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) - */ - slot_start_date_time_not_in_values?: string; - /** - * Slot number of the beacon block containing the payload (filter: eq) - */ - slot_eq?: number; - /** - * Slot number of the beacon block containing the payload (filter: ne) - */ - slot_ne?: number; - /** - * Slot number of the beacon block containing the payload (filter: lt) - */ - slot_lt?: number; - /** - * Slot number of the beacon block containing the payload (filter: lte) - */ - slot_lte?: number; - /** - * Slot number of the beacon block containing the payload (filter: gt) - */ - slot_gt?: number; - /** - * Slot number of the beacon block containing the payload (filter: gte) - */ - slot_gte?: number; - /** - * Slot number of the beacon block containing the payload (filter: between_min) - */ - slot_between_min?: number; - /** - * Slot number of the beacon block containing the payload (filter: between_max_value) - */ - slot_between_max_value?: number; - /** - * Slot number of the beacon block containing the payload (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Slot number of the beacon block containing the payload (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: eq) - */ - node_class_eq?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ne) - */ - node_class_ne?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: contains) - */ - node_class_contains?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: starts_with) - */ - node_class_starts_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: ends_with) - */ - node_class_ends_with?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: like) - */ - node_class_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_like) - */ - node_class_not_like?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: in_values) (comma-separated list) - */ - node_class_in_values?: string; - /** - * Node classification for grouping observations (e.g., eip7870-block-builder, or empty for general nodes) (filter: not_in_values) (comma-separated list) - */ - node_class_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Epoch number derived from the slot (filter: eq) - */ - epoch_eq?: number; - /** - * Epoch number derived from the slot (filter: ne) - */ - epoch_ne?: number; - /** - * Epoch number derived from the slot (filter: lt) - */ - epoch_lt?: number; - /** - * Epoch number derived from the slot (filter: lte) - */ - epoch_lte?: number; - /** - * Epoch number derived from the slot (filter: gt) - */ - epoch_gt?: number; - /** - * Epoch number derived from the slot (filter: gte) - */ - epoch_gte?: number; - /** - * Epoch number derived from the slot (filter: between_min) - */ - epoch_between_min?: number; - /** - * Epoch number derived from the slot (filter: between_max_value) - */ - epoch_between_max_value?: number; - /** - * Epoch number derived from the slot (filter: in_values) (comma-separated list) - */ - epoch_in_values?: string; - /** - * Epoch number derived from the slot (filter: not_in_values) (comma-separated list) - */ - epoch_not_in_values?: string; - /** - * The wall clock time when the epoch started (filter: eq) - */ - epoch_start_date_time_eq?: number; - /** - * The wall clock time when the epoch started (filter: ne) - */ - epoch_start_date_time_ne?: number; - /** - * The wall clock time when the epoch started (filter: lt) - */ - epoch_start_date_time_lt?: number; - /** - * The wall clock time when the epoch started (filter: lte) - */ - epoch_start_date_time_lte?: number; - /** - * The wall clock time when the epoch started (filter: gt) - */ - epoch_start_date_time_gt?: number; - /** - * The wall clock time when the epoch started (filter: gte) - */ - epoch_start_date_time_gte?: number; - /** - * The wall clock time when the epoch started (filter: between_min) - */ - epoch_start_date_time_between_min?: number; - /** - * The wall clock time when the epoch started (filter: between_max_value) - */ - epoch_start_date_time_between_max_value?: number; - /** - * The wall clock time when the epoch started (filter: in_values) (comma-separated list) - */ - epoch_start_date_time_in_values?: string; - /** - * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) - */ - epoch_start_date_time_not_in_values?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: eq) - */ - block_hash_eq?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: ne) - */ - block_hash_ne?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: contains) - */ - block_hash_contains?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: starts_with) - */ - block_hash_starts_with?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: ends_with) - */ - block_hash_ends_with?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: like) - */ - block_hash_like?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: not_like) - */ - block_hash_not_like?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - block_hash_in_values?: string; - /** - * Execution block hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - block_hash_not_in_values?: string; - /** - * Duration of the fastest engine_newPayload call in milliseconds (filter: eq) - */ - duration_ms_eq?: number; - /** - * Duration of the fastest engine_newPayload call in milliseconds (filter: ne) - */ - duration_ms_ne?: number; - /** - * Duration of the fastest engine_newPayload call in milliseconds (filter: lt) - */ - duration_ms_lt?: number; - /** - * Duration of the fastest engine_newPayload call in milliseconds (filter: lte) - */ - duration_ms_lte?: number; - /** - * Duration of the fastest engine_newPayload call in milliseconds (filter: gt) - */ - duration_ms_gt?: number; - /** - * Duration of the fastest engine_newPayload call in milliseconds (filter: gte) - */ - duration_ms_gte?: number; - /** - * Duration of the fastest engine_newPayload call in milliseconds (filter: between_min) - */ - duration_ms_between_min?: number; - /** - * Duration of the fastest engine_newPayload call in milliseconds (filter: between_max_value) - */ - duration_ms_between_max_value?: number; - /** - * Duration of the fastest engine_newPayload call in milliseconds (filter: in_values) (comma-separated list) - */ - duration_ms_in_values?: string; - /** - * Duration of the fastest engine_newPayload call in milliseconds (filter: not_in_values) (comma-separated list) - */ - duration_ms_not_in_values?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: eq) - */ - meta_execution_implementation_eq?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: ne) - */ - meta_execution_implementation_ne?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: contains) - */ - meta_execution_implementation_contains?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: starts_with) - */ - meta_execution_implementation_starts_with?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: ends_with) - */ - meta_execution_implementation_ends_with?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: like) - */ - meta_execution_implementation_like?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: not_like) - */ - meta_execution_implementation_not_like?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: in_values) (comma-separated list) - */ - meta_execution_implementation_in_values?: string; - /** - * Execution client implementation name (e.g., Geth, Nethermind, Besu, Reth) (filter: not_in_values) (comma-separated list) - */ - meta_execution_implementation_not_in_values?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: eq) - */ - meta_execution_version_eq?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: ne) - */ - meta_execution_version_ne?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: contains) - */ - meta_execution_version_contains?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: starts_with) - */ - meta_execution_version_starts_with?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: ends_with) - */ - meta_execution_version_ends_with?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: like) - */ - meta_execution_version_like?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: not_like) - */ - meta_execution_version_not_like?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: in_values) (comma-separated list) - */ - meta_execution_version_in_values?: string; - /** - * Full execution client version string from web3_clientVersion RPC (filter: not_in_values) (comma-separated list) - */ - meta_execution_version_not_in_values?: string; - /** - * Name of the client that generated the event (filter: eq) - */ - meta_client_name_eq?: string; - /** - * Name of the client that generated the event (filter: ne) - */ - meta_client_name_ne?: string; - /** - * Name of the client that generated the event (filter: contains) - */ - meta_client_name_contains?: string; - /** - * Name of the client that generated the event (filter: starts_with) - */ - meta_client_name_starts_with?: string; - /** - * Name of the client that generated the event (filter: ends_with) - */ - meta_client_name_ends_with?: string; - /** - * Name of the client that generated the event (filter: like) - */ - meta_client_name_like?: string; - /** - * Name of the client that generated the event (filter: not_like) - */ - meta_client_name_not_like?: string; - /** - * Name of the client that generated the event (filter: in_values) (comma-separated list) - */ - meta_client_name_in_values?: string; - /** - * Name of the client that generated the event (filter: not_in_values) (comma-separated list) - */ - meta_client_name_not_in_values?: string; - /** - * The maximum number of int_engine_new_payload_fastest_execution_by_node_class to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntEngineNewPayloadFastestExecutionByNodeClass` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_engine_new_payload_fastest_execution_by_node_class'; -}; - -export type IntEngineNewPayloadFastestExecutionByNodeClassServiceListErrors = { + log_data_bytes_gte?: number; /** - * Default error response + * Total raw bytes of log data fields (before RLP encoding) (filter: between_min) */ - default: Status; -}; - -export type IntEngineNewPayloadFastestExecutionByNodeClassServiceListError = IntEngineNewPayloadFastestExecutionByNodeClassServiceListErrors[keyof IntEngineNewPayloadFastestExecutionByNodeClassServiceListErrors]; - -export type IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponses = { + log_data_bytes_between_min?: number; /** - * OK + * Total raw bytes of log data fields (before RLP encoding) (filter: between_max_value) */ - 200: ListIntEngineNewPayloadFastestExecutionByNodeClassResponse; -}; - -export type IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse = IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponses[keyof IntEngineNewPayloadFastestExecutionByNodeClassServiceListResponses]; - -export type IntEngineNewPayloadFastestExecutionByNodeClassServiceGetData = { - body?: never; - path: { - /** - * The wall clock time when the slot started - */ - slot_start_date_time: number; - }; - query?: never; - url: '/api/v1/int_engine_new_payload_fastest_execution_by_node_class/{slot_start_date_time}'; -}; - -export type IntEngineNewPayloadFastestExecutionByNodeClassServiceGetErrors = { + log_data_bytes_between_max_value?: number; /** - * Default error response + * Total raw bytes of log data fields (before RLP encoding) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntEngineNewPayloadFastestExecutionByNodeClassServiceGetError = IntEngineNewPayloadFastestExecutionByNodeClassServiceGetErrors[keyof IntEngineNewPayloadFastestExecutionByNodeClassServiceGetErrors]; - -export type IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponses = { + log_data_bytes_in_values?: string; /** - * OK + * Total raw bytes of log data fields (before RLP encoding) (filter: not_in_values) (comma-separated list) */ - 200: GetIntEngineNewPayloadFastestExecutionByNodeClassResponse; -}; - -export type IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse = IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponses[keyof IntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponses]; - -export type IntExecutionBlockByDateServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block timestamp (filter: eq) - */ - block_date_time_eq?: number; - /** - * The block timestamp (filter: ne) - */ - block_date_time_ne?: number; - /** - * The block timestamp (filter: lt) - */ - block_date_time_lt?: number; - /** - * The block timestamp (filter: lte) - */ - block_date_time_lte?: number; - /** - * The block timestamp (filter: gt) - */ - block_date_time_gt?: number; - /** - * The block timestamp (filter: gte) - */ - block_date_time_gte?: number; - /** - * The block timestamp (filter: between_min) - */ - block_date_time_between_min?: number; - /** - * The block timestamp (filter: between_max_value) - */ - block_date_time_between_max_value?: number; - /** - * The block timestamp (filter: in_values) (comma-separated list) - */ - block_date_time_in_values?: string; - /** - * The block timestamp (filter: not_in_values) (comma-separated list) - */ - block_date_time_not_in_values?: string; - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The maximum number of int_execution_block_by_date to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntExecutionBlockByDate` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_execution_block_by_date'; -}; - -export type IntExecutionBlockByDateServiceListErrors = { + log_data_bytes_not_in_values?: string; /** - * Default error response + * Total number of topics across all logs (filter: eq) */ - default: Status; -}; - -export type IntExecutionBlockByDateServiceListError = IntExecutionBlockByDateServiceListErrors[keyof IntExecutionBlockByDateServiceListErrors]; - -export type IntExecutionBlockByDateServiceListResponses = { + log_topic_count_eq?: number; /** - * OK + * Total number of topics across all logs (filter: ne) */ - 200: ListIntExecutionBlockByDateResponse; -}; - -export type IntExecutionBlockByDateServiceListResponse = IntExecutionBlockByDateServiceListResponses[keyof IntExecutionBlockByDateServiceListResponses]; - -export type IntExecutionBlockByDateServiceGetData = { - body?: never; - path: { - /** - * The block timestamp - */ - block_date_time: number; - }; - query?: never; - url: '/api/v1/int_execution_block_by_date/{block_date_time}'; -}; - -export type IntExecutionBlockByDateServiceGetErrors = { + log_topic_count_ne?: number; /** - * Default error response + * Total number of topics across all logs (filter: lt) */ - default: Status; -}; - -export type IntExecutionBlockByDateServiceGetError = IntExecutionBlockByDateServiceGetErrors[keyof IntExecutionBlockByDateServiceGetErrors]; - -export type IntExecutionBlockByDateServiceGetResponses = { + log_topic_count_lt?: number; /** - * OK + * Total number of topics across all logs (filter: lte) */ - 200: GetIntExecutionBlockByDateResponse; -}; - -export type IntExecutionBlockByDateServiceGetResponse = IntExecutionBlockByDateServiceGetResponses[keyof IntExecutionBlockByDateServiceGetResponses]; - -export type IntExecutionStateSizeByBlockServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Block number at which the cumulative state size is measured (filter: eq) - */ - block_number_eq?: number; - /** - * Block number at which the cumulative state size is measured (filter: ne) - */ - block_number_ne?: number; - /** - * Block number at which the cumulative state size is measured (filter: lt) - */ - block_number_lt?: number; - /** - * Block number at which the cumulative state size is measured (filter: lte) - */ - block_number_lte?: number; - /** - * Block number at which the cumulative state size is measured (filter: gt) - */ - block_number_gt?: number; - /** - * Block number at which the cumulative state size is measured (filter: gte) - */ - block_number_gte?: number; - /** - * Block number at which the cumulative state size is measured (filter: between_min) - */ - block_number_between_min?: number; - /** - * Block number at which the cumulative state size is measured (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * Block number at which the cumulative state size is measured (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * Block number at which the cumulative state size is measured (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Cumulative total number of accounts in the state (filter: eq) - */ - accounts_eq?: number; - /** - * Cumulative total number of accounts in the state (filter: ne) - */ - accounts_ne?: number; - /** - * Cumulative total number of accounts in the state (filter: lt) - */ - accounts_lt?: number; - /** - * Cumulative total number of accounts in the state (filter: lte) - */ - accounts_lte?: number; - /** - * Cumulative total number of accounts in the state (filter: gt) - */ - accounts_gt?: number; - /** - * Cumulative total number of accounts in the state (filter: gte) - */ - accounts_gte?: number; - /** - * Cumulative total number of accounts in the state (filter: between_min) - */ - accounts_between_min?: number; - /** - * Cumulative total number of accounts in the state (filter: between_max_value) - */ - accounts_between_max_value?: number; - /** - * Cumulative total number of accounts in the state (filter: in_values) (comma-separated list) - */ - accounts_in_values?: string; - /** - * Cumulative total number of accounts in the state (filter: not_in_values) (comma-separated list) - */ - accounts_not_in_values?: string; - /** - * Cumulative total bytes used by account data (filter: eq) - */ - account_bytes_eq?: number; - /** - * Cumulative total bytes used by account data (filter: ne) - */ - account_bytes_ne?: number; - /** - * Cumulative total bytes used by account data (filter: lt) - */ - account_bytes_lt?: number; - /** - * Cumulative total bytes used by account data (filter: lte) - */ - account_bytes_lte?: number; - /** - * Cumulative total bytes used by account data (filter: gt) - */ - account_bytes_gt?: number; - /** - * Cumulative total bytes used by account data (filter: gte) - */ - account_bytes_gte?: number; - /** - * Cumulative total bytes used by account data (filter: between_min) - */ - account_bytes_between_min?: number; - /** - * Cumulative total bytes used by account data (filter: between_max_value) - */ - account_bytes_between_max_value?: number; - /** - * Cumulative total bytes used by account data (filter: in_values) (comma-separated list) - */ - account_bytes_in_values?: string; - /** - * Cumulative total bytes used by account data (filter: not_in_values) (comma-separated list) - */ - account_bytes_not_in_values?: string; - /** - * Cumulative number of trie nodes in the account trie (filter: eq) - */ - account_trienodes_eq?: number; - /** - * Cumulative number of trie nodes in the account trie (filter: ne) - */ - account_trienodes_ne?: number; - /** - * Cumulative number of trie nodes in the account trie (filter: lt) - */ - account_trienodes_lt?: number; - /** - * Cumulative number of trie nodes in the account trie (filter: lte) - */ - account_trienodes_lte?: number; - /** - * Cumulative number of trie nodes in the account trie (filter: gt) - */ - account_trienodes_gt?: number; - /** - * Cumulative number of trie nodes in the account trie (filter: gte) - */ - account_trienodes_gte?: number; - /** - * Cumulative number of trie nodes in the account trie (filter: between_min) - */ - account_trienodes_between_min?: number; - /** - * Cumulative number of trie nodes in the account trie (filter: between_max_value) - */ - account_trienodes_between_max_value?: number; - /** - * Cumulative number of trie nodes in the account trie (filter: in_values) (comma-separated list) - */ - account_trienodes_in_values?: string; - /** - * Cumulative number of trie nodes in the account trie (filter: not_in_values) (comma-separated list) - */ - account_trienodes_not_in_values?: string; - /** - * Cumulative total bytes used by account trie nodes (filter: eq) - */ - account_trienode_bytes_eq?: number; - /** - * Cumulative total bytes used by account trie nodes (filter: ne) - */ - account_trienode_bytes_ne?: number; - /** - * Cumulative total bytes used by account trie nodes (filter: lt) - */ - account_trienode_bytes_lt?: number; - /** - * Cumulative total bytes used by account trie nodes (filter: lte) - */ - account_trienode_bytes_lte?: number; - /** - * Cumulative total bytes used by account trie nodes (filter: gt) - */ - account_trienode_bytes_gt?: number; - /** - * Cumulative total bytes used by account trie nodes (filter: gte) - */ - account_trienode_bytes_gte?: number; - /** - * Cumulative total bytes used by account trie nodes (filter: between_min) - */ - account_trienode_bytes_between_min?: number; - /** - * Cumulative total bytes used by account trie nodes (filter: between_max_value) - */ - account_trienode_bytes_between_max_value?: number; - /** - * Cumulative total bytes used by account trie nodes (filter: in_values) (comma-separated list) - */ - account_trienode_bytes_in_values?: string; - /** - * Cumulative total bytes used by account trie nodes (filter: not_in_values) (comma-separated list) - */ - account_trienode_bytes_not_in_values?: string; - /** - * Cumulative total number of contract codes stored (filter: eq) - */ - contract_codes_eq?: number; - /** - * Cumulative total number of contract codes stored (filter: ne) - */ - contract_codes_ne?: number; - /** - * Cumulative total number of contract codes stored (filter: lt) - */ - contract_codes_lt?: number; - /** - * Cumulative total number of contract codes stored (filter: lte) - */ - contract_codes_lte?: number; - /** - * Cumulative total number of contract codes stored (filter: gt) - */ - contract_codes_gt?: number; - /** - * Cumulative total number of contract codes stored (filter: gte) - */ - contract_codes_gte?: number; - /** - * Cumulative total number of contract codes stored (filter: between_min) - */ - contract_codes_between_min?: number; - /** - * Cumulative total number of contract codes stored (filter: between_max_value) - */ - contract_codes_between_max_value?: number; - /** - * Cumulative total number of contract codes stored (filter: in_values) (comma-separated list) - */ - contract_codes_in_values?: string; - /** - * Cumulative total number of contract codes stored (filter: not_in_values) (comma-separated list) - */ - contract_codes_not_in_values?: string; - /** - * Cumulative total bytes used by contract code (filter: eq) - */ - contract_code_bytes_eq?: number; - /** - * Cumulative total bytes used by contract code (filter: ne) - */ - contract_code_bytes_ne?: number; - /** - * Cumulative total bytes used by contract code (filter: lt) - */ - contract_code_bytes_lt?: number; - /** - * Cumulative total bytes used by contract code (filter: lte) - */ - contract_code_bytes_lte?: number; - /** - * Cumulative total bytes used by contract code (filter: gt) - */ - contract_code_bytes_gt?: number; - /** - * Cumulative total bytes used by contract code (filter: gte) - */ - contract_code_bytes_gte?: number; - /** - * Cumulative total bytes used by contract code (filter: between_min) - */ - contract_code_bytes_between_min?: number; - /** - * Cumulative total bytes used by contract code (filter: between_max_value) - */ - contract_code_bytes_between_max_value?: number; - /** - * Cumulative total bytes used by contract code (filter: in_values) (comma-separated list) - */ - contract_code_bytes_in_values?: string; - /** - * Cumulative total bytes used by contract code (filter: not_in_values) (comma-separated list) - */ - contract_code_bytes_not_in_values?: string; - /** - * Cumulative total number of storage slots in the state (filter: eq) - */ - storages_eq?: number; - /** - * Cumulative total number of storage slots in the state (filter: ne) - */ - storages_ne?: number; - /** - * Cumulative total number of storage slots in the state (filter: lt) - */ - storages_lt?: number; - /** - * Cumulative total number of storage slots in the state (filter: lte) - */ - storages_lte?: number; - /** - * Cumulative total number of storage slots in the state (filter: gt) - */ - storages_gt?: number; - /** - * Cumulative total number of storage slots in the state (filter: gte) - */ - storages_gte?: number; - /** - * Cumulative total number of storage slots in the state (filter: between_min) - */ - storages_between_min?: number; - /** - * Cumulative total number of storage slots in the state (filter: between_max_value) - */ - storages_between_max_value?: number; - /** - * Cumulative total number of storage slots in the state (filter: in_values) (comma-separated list) - */ - storages_in_values?: string; - /** - * Cumulative total number of storage slots in the state (filter: not_in_values) (comma-separated list) - */ - storages_not_in_values?: string; - /** - * Cumulative total bytes used by storage data (filter: eq) - */ - storage_bytes_eq?: number; - /** - * Cumulative total bytes used by storage data (filter: ne) - */ - storage_bytes_ne?: number; - /** - * Cumulative total bytes used by storage data (filter: lt) - */ - storage_bytes_lt?: number; - /** - * Cumulative total bytes used by storage data (filter: lte) - */ - storage_bytes_lte?: number; - /** - * Cumulative total bytes used by storage data (filter: gt) - */ - storage_bytes_gt?: number; - /** - * Cumulative total bytes used by storage data (filter: gte) - */ - storage_bytes_gte?: number; - /** - * Cumulative total bytes used by storage data (filter: between_min) - */ - storage_bytes_between_min?: number; - /** - * Cumulative total bytes used by storage data (filter: between_max_value) - */ - storage_bytes_between_max_value?: number; - /** - * Cumulative total bytes used by storage data (filter: in_values) (comma-separated list) - */ - storage_bytes_in_values?: string; - /** - * Cumulative total bytes used by storage data (filter: not_in_values) (comma-separated list) - */ - storage_bytes_not_in_values?: string; - /** - * Cumulative number of trie nodes in the storage trie (filter: eq) - */ - storage_trienodes_eq?: number; - /** - * Cumulative number of trie nodes in the storage trie (filter: ne) - */ - storage_trienodes_ne?: number; - /** - * Cumulative number of trie nodes in the storage trie (filter: lt) - */ - storage_trienodes_lt?: number; - /** - * Cumulative number of trie nodes in the storage trie (filter: lte) - */ - storage_trienodes_lte?: number; - /** - * Cumulative number of trie nodes in the storage trie (filter: gt) - */ - storage_trienodes_gt?: number; - /** - * Cumulative number of trie nodes in the storage trie (filter: gte) - */ - storage_trienodes_gte?: number; - /** - * Cumulative number of trie nodes in the storage trie (filter: between_min) - */ - storage_trienodes_between_min?: number; - /** - * Cumulative number of trie nodes in the storage trie (filter: between_max_value) - */ - storage_trienodes_between_max_value?: number; - /** - * Cumulative number of trie nodes in the storage trie (filter: in_values) (comma-separated list) - */ - storage_trienodes_in_values?: string; - /** - * Cumulative number of trie nodes in the storage trie (filter: not_in_values) (comma-separated list) - */ - storage_trienodes_not_in_values?: string; - /** - * Cumulative total bytes used by storage trie nodes (filter: eq) - */ - storage_trienode_bytes_eq?: number; - /** - * Cumulative total bytes used by storage trie nodes (filter: ne) - */ - storage_trienode_bytes_ne?: number; - /** - * Cumulative total bytes used by storage trie nodes (filter: lt) - */ - storage_trienode_bytes_lt?: number; - /** - * Cumulative total bytes used by storage trie nodes (filter: lte) - */ - storage_trienode_bytes_lte?: number; - /** - * Cumulative total bytes used by storage trie nodes (filter: gt) - */ - storage_trienode_bytes_gt?: number; - /** - * Cumulative total bytes used by storage trie nodes (filter: gte) - */ - storage_trienode_bytes_gte?: number; - /** - * Cumulative total bytes used by storage trie nodes (filter: between_min) - */ - storage_trienode_bytes_between_min?: number; - /** - * Cumulative total bytes used by storage trie nodes (filter: between_max_value) - */ - storage_trienode_bytes_between_max_value?: number; - /** - * Cumulative total bytes used by storage trie nodes (filter: in_values) (comma-separated list) - */ - storage_trienode_bytes_in_values?: string; - /** - * Cumulative total bytes used by storage trie nodes (filter: not_in_values) (comma-separated list) - */ - storage_trienode_bytes_not_in_values?: string; - /** - * The maximum number of int_execution_state_size_by_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntExecutionStateSizeByBlock` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_execution_state_size_by_block'; -}; - -export type IntExecutionStateSizeByBlockServiceListErrors = { + log_topic_count_lte?: number; + /** + * Total number of topics across all logs (filter: gt) + */ + log_topic_count_gt?: number; /** - * Default error response + * Total number of topics across all logs (filter: gte) */ - default: Status; -}; - -export type IntExecutionStateSizeByBlockServiceListError = IntExecutionStateSizeByBlockServiceListErrors[keyof IntExecutionStateSizeByBlockServiceListErrors]; - -export type IntExecutionStateSizeByBlockServiceListResponses = { + log_topic_count_gte?: number; /** - * OK + * Total number of topics across all logs (filter: between_min) */ - 200: ListIntExecutionStateSizeByBlockResponse; -}; - -export type IntExecutionStateSizeByBlockServiceListResponse = IntExecutionStateSizeByBlockServiceListResponses[keyof IntExecutionStateSizeByBlockServiceListResponses]; - -export type IntExecutionStateSizeByBlockServiceGetData = { - body?: never; - path: { - /** - * Block number at which the cumulative state size is measured - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_execution_state_size_by_block/{block_number}'; -}; - -export type IntExecutionStateSizeByBlockServiceGetErrors = { + log_topic_count_between_min?: number; /** - * Default error response + * Total number of topics across all logs (filter: between_max_value) */ - default: Status; -}; - -export type IntExecutionStateSizeByBlockServiceGetError = IntExecutionStateSizeByBlockServiceGetErrors[keyof IntExecutionStateSizeByBlockServiceGetErrors]; - -export type IntExecutionStateSizeByBlockServiceGetResponses = { + log_topic_count_between_max_value?: number; /** - * OK + * Total number of topics across all logs (filter: in_values) (comma-separated list) */ - 200: GetIntExecutionStateSizeByBlockResponse; -}; - -export type IntExecutionStateSizeByBlockServiceGetResponse = IntExecutionStateSizeByBlockServiceGetResponses[keyof IntExecutionStateSizeByBlockServiceGetResponses]; - -export type IntRocketpoolMegapoolServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: eq) - */ - megapool_address_eq?: string; - /** - * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: ne) - */ - megapool_address_ne?: string; - /** - * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: contains) - */ - megapool_address_contains?: string; - /** - * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: starts_with) - */ - megapool_address_starts_with?: string; - /** - * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: ends_with) - */ - megapool_address_ends_with?: string; - /** - * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: like) - */ - megapool_address_like?: string; - /** - * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: not_like) - */ - megapool_address_not_like?: string; - /** - * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: in_values) (comma-separated list) - */ - megapool_address_in_values?: string; - /** - * The Rocket Pool megapool contract address, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) - */ - megapool_address_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: eq) - */ - node_operator_eq?: string; - /** - * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: ne) - */ - node_operator_ne?: string; - /** - * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: contains) - */ - node_operator_contains?: string; - /** - * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: starts_with) - */ - node_operator_starts_with?: string; - /** - * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: ends_with) - */ - node_operator_ends_with?: string; - /** - * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: like) - */ - node_operator_like?: string; - /** - * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: not_like) - */ - node_operator_not_like?: string; - /** - * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: in_values) (comma-separated list) - */ - node_operator_in_values?: string; - /** - * The Rocket Pool node operator that owns the megapool, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) - */ - node_operator_not_in_values?: string; - /** - * Execution block number the megapool was deployed in (filter: eq) - */ - created_block_number_eq?: number; - /** - * Execution block number the megapool was deployed in (filter: ne) - */ - created_block_number_ne?: number; - /** - * Execution block number the megapool was deployed in (filter: lt) - */ - created_block_number_lt?: number; - /** - * Execution block number the megapool was deployed in (filter: lte) - */ - created_block_number_lte?: number; - /** - * Execution block number the megapool was deployed in (filter: gt) - */ - created_block_number_gt?: number; - /** - * Execution block number the megapool was deployed in (filter: gte) - */ - created_block_number_gte?: number; - /** - * Execution block number the megapool was deployed in (filter: between_min) - */ - created_block_number_between_min?: number; - /** - * Execution block number the megapool was deployed in (filter: between_max_value) - */ - created_block_number_between_max_value?: number; - /** - * Execution block number the megapool was deployed in (filter: in_values) (comma-separated list) - */ - created_block_number_in_values?: string; - /** - * Execution block number the megapool was deployed in (filter: not_in_values) (comma-separated list) - */ - created_block_number_not_in_values?: string; - /** - * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: eq) - */ - created_date_time_eq?: number; - /** - * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: ne) - */ - created_date_time_ne?: number; - /** - * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: lt) - */ - created_date_time_lt?: number; - /** - * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: lte) - */ - created_date_time_lte?: number; - /** - * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: gt) - */ - created_date_time_gt?: number; - /** - * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: gte) - */ - created_date_time_gte?: number; - /** - * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: between_min) - */ - created_date_time_between_min?: number; - /** - * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: between_max_value) - */ - created_date_time_between_max_value?: number; - /** - * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: in_values) (comma-separated list) - */ - created_date_time_in_values?: string; - /** - * Wall clock time the megapool was deployed (decoded from the deposit event) (filter: not_in_values) (comma-separated list) - */ - created_date_time_not_in_values?: string; - /** - * Execution transaction hash that deployed the megapool (filter: eq) - */ - transaction_hash_eq?: string; - /** - * Execution transaction hash that deployed the megapool (filter: ne) - */ - transaction_hash_ne?: string; - /** - * Execution transaction hash that deployed the megapool (filter: contains) - */ - transaction_hash_contains?: string; - /** - * Execution transaction hash that deployed the megapool (filter: starts_with) - */ - transaction_hash_starts_with?: string; - /** - * Execution transaction hash that deployed the megapool (filter: ends_with) - */ - transaction_hash_ends_with?: string; - /** - * Execution transaction hash that deployed the megapool (filter: like) - */ - transaction_hash_like?: string; - /** - * Execution transaction hash that deployed the megapool (filter: not_like) - */ - transaction_hash_not_like?: string; - /** - * Execution transaction hash that deployed the megapool (filter: in_values) (comma-separated list) - */ - transaction_hash_in_values?: string; - /** - * Execution transaction hash that deployed the megapool (filter: not_in_values) (comma-separated list) - */ - transaction_hash_not_in_values?: string; - /** - * The maximum number of int_rocketpool_megapool to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntRocketpoolMegapool` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_rocketpool_megapool'; -}; - -export type IntRocketpoolMegapoolServiceListErrors = { + log_topic_count_in_values?: string; /** - * Default error response + * Total number of topics across all logs (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntRocketpoolMegapoolServiceListError = IntRocketpoolMegapoolServiceListErrors[keyof IntRocketpoolMegapoolServiceListErrors]; - -export type IntRocketpoolMegapoolServiceListResponses = { + log_topic_count_not_in_values?: string; /** - * OK + * The maximum number of int_transaction_receipt_size to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. */ - 200: ListIntRocketpoolMegapoolResponse; -}; - -export type IntRocketpoolMegapoolServiceListResponse = IntRocketpoolMegapoolServiceListResponses[keyof IntRocketpoolMegapoolServiceListResponses]; - -export type IntRocketpoolMegapoolServiceGetData = { - body?: never; - path: { - /** - * The Rocket Pool megapool contract address, lowercase 0x-prefixed - */ - megapool_address: string; - }; - query?: never; - url: '/api/v1/int_rocketpool_megapool/{megapool_address}'; -}; - -export type IntRocketpoolMegapoolServiceGetErrors = { + page_size?: number; /** - * Default error response + * A page token, received from a previous `ListIntTransactionReceiptSize` call. Provide this to retrieve the subsequent page. */ - default: Status; -}; - -export type IntRocketpoolMegapoolServiceGetError = IntRocketpoolMegapoolServiceGetErrors[keyof IntRocketpoolMegapoolServiceGetErrors]; - -export type IntRocketpoolMegapoolServiceGetResponses = { + page_token?: string; /** - * OK + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. */ - 200: GetIntRocketpoolMegapoolResponse; + order_by?: string; + }; + url: '/api/v1/int_transaction_receipt_size'; }; -export type IntRocketpoolMegapoolServiceGetResponse = IntRocketpoolMegapoolServiceGetResponses[keyof IntRocketpoolMegapoolServiceGetResponses]; - -export type IntRocketpoolMinipoolServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Minipool lifecycle event name (created or destroyed) (filter: eq) - */ - event_name_eq?: string; - /** - * Minipool lifecycle event name (created or destroyed) (filter: ne) - */ - event_name_ne?: string; - /** - * Minipool lifecycle event name (created or destroyed) (filter: contains) - */ - event_name_contains?: string; - /** - * Minipool lifecycle event name (created or destroyed) (filter: starts_with) - */ - event_name_starts_with?: string; - /** - * Minipool lifecycle event name (created or destroyed) (filter: ends_with) - */ - event_name_ends_with?: string; - /** - * Minipool lifecycle event name (created or destroyed) (filter: like) - */ - event_name_like?: string; - /** - * Minipool lifecycle event name (created or destroyed) (filter: not_like) - */ - event_name_not_like?: string; - /** - * Minipool lifecycle event name (created or destroyed) (filter: in_values) (comma-separated list) - */ - event_name_in_values?: string; - /** - * Minipool lifecycle event name (created or destroyed) (filter: not_in_values) (comma-separated list) - */ - event_name_not_in_values?: string; - /** - * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: eq) - */ - minipool_address_eq?: string; - /** - * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: ne) - */ - minipool_address_ne?: string; - /** - * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: contains) - */ - minipool_address_contains?: string; - /** - * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: starts_with) - */ - minipool_address_starts_with?: string; - /** - * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: ends_with) - */ - minipool_address_ends_with?: string; - /** - * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: like) - */ - minipool_address_like?: string; - /** - * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: not_like) - */ - minipool_address_not_like?: string; - /** - * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: in_values) (comma-separated list) - */ - minipool_address_in_values?: string; - /** - * The Rocket Pool minipool contract address, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) - */ - minipool_address_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: eq) - */ - node_operator_eq?: string; - /** - * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: ne) - */ - node_operator_ne?: string; - /** - * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: contains) - */ - node_operator_contains?: string; - /** - * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: starts_with) - */ - node_operator_starts_with?: string; - /** - * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: ends_with) - */ - node_operator_ends_with?: string; - /** - * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: like) - */ - node_operator_like?: string; - /** - * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: not_like) - */ - node_operator_not_like?: string; - /** - * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: in_values) (comma-separated list) - */ - node_operator_in_values?: string; - /** - * The Rocket Pool node operator address that owns the minipool, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) - */ - node_operator_not_in_values?: string; - /** - * Execution block number the event was emitted in (filter: eq) - */ - event_block_number_eq?: number; - /** - * Execution block number the event was emitted in (filter: ne) - */ - event_block_number_ne?: number; - /** - * Execution block number the event was emitted in (filter: lt) - */ - event_block_number_lt?: number; - /** - * Execution block number the event was emitted in (filter: lte) - */ - event_block_number_lte?: number; - /** - * Execution block number the event was emitted in (filter: gt) - */ - event_block_number_gt?: number; - /** - * Execution block number the event was emitted in (filter: gte) - */ - event_block_number_gte?: number; - /** - * Execution block number the event was emitted in (filter: between_min) - */ - event_block_number_between_min?: number; - /** - * Execution block number the event was emitted in (filter: between_max_value) - */ - event_block_number_between_max_value?: number; - /** - * Execution block number the event was emitted in (filter: in_values) (comma-separated list) - */ - event_block_number_in_values?: string; - /** - * Execution block number the event was emitted in (filter: not_in_values) (comma-separated list) - */ - event_block_number_not_in_values?: string; - /** - * Wall clock time the event occurred, decoded from the event payload (filter: eq) - */ - event_date_time_eq?: number; - /** - * Wall clock time the event occurred, decoded from the event payload (filter: ne) - */ - event_date_time_ne?: number; - /** - * Wall clock time the event occurred, decoded from the event payload (filter: lt) - */ - event_date_time_lt?: number; - /** - * Wall clock time the event occurred, decoded from the event payload (filter: lte) - */ - event_date_time_lte?: number; - /** - * Wall clock time the event occurred, decoded from the event payload (filter: gt) - */ - event_date_time_gt?: number; - /** - * Wall clock time the event occurred, decoded from the event payload (filter: gte) - */ - event_date_time_gte?: number; - /** - * Wall clock time the event occurred, decoded from the event payload (filter: between_min) - */ - event_date_time_between_min?: number; - /** - * Wall clock time the event occurred, decoded from the event payload (filter: between_max_value) - */ - event_date_time_between_max_value?: number; - /** - * Wall clock time the event occurred, decoded from the event payload (filter: in_values) (comma-separated list) - */ - event_date_time_in_values?: string; - /** - * Wall clock time the event occurred, decoded from the event payload (filter: not_in_values) (comma-separated list) - */ - event_date_time_not_in_values?: string; - /** - * Execution transaction hash that emitted the event (filter: eq) - */ - transaction_hash_eq?: string; - /** - * Execution transaction hash that emitted the event (filter: ne) - */ - transaction_hash_ne?: string; - /** - * Execution transaction hash that emitted the event (filter: contains) - */ - transaction_hash_contains?: string; - /** - * Execution transaction hash that emitted the event (filter: starts_with) - */ - transaction_hash_starts_with?: string; - /** - * Execution transaction hash that emitted the event (filter: ends_with) - */ - transaction_hash_ends_with?: string; - /** - * Execution transaction hash that emitted the event (filter: like) - */ - transaction_hash_like?: string; - /** - * Execution transaction hash that emitted the event (filter: not_like) - */ - transaction_hash_not_like?: string; - /** - * Execution transaction hash that emitted the event (filter: in_values) (comma-separated list) - */ - transaction_hash_in_values?: string; - /** - * Execution transaction hash that emitted the event (filter: not_in_values) (comma-separated list) - */ - transaction_hash_not_in_values?: string; - /** - * Log index of the event within the block (filter: eq) - */ - log_index_eq?: number; - /** - * Log index of the event within the block (filter: ne) - */ - log_index_ne?: number; - /** - * Log index of the event within the block (filter: lt) - */ - log_index_lt?: number; - /** - * Log index of the event within the block (filter: lte) - */ - log_index_lte?: number; - /** - * Log index of the event within the block (filter: gt) - */ - log_index_gt?: number; - /** - * Log index of the event within the block (filter: gte) - */ - log_index_gte?: number; - /** - * Log index of the event within the block (filter: between_min) - */ - log_index_between_min?: number; - /** - * Log index of the event within the block (filter: between_max_value) - */ - log_index_between_max_value?: number; - /** - * Log index of the event within the block (filter: in_values) (comma-separated list) - */ - log_index_in_values?: string; - /** - * Log index of the event within the block (filter: not_in_values) (comma-separated list) - */ - log_index_not_in_values?: string; - /** - * The maximum number of int_rocketpool_minipool to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntRocketpoolMinipool` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_rocketpool_minipool'; +export type IntTransactionReceiptSizeServiceListErrors = { + /** + * Default error response + */ + default: Status; }; -export type IntRocketpoolMinipoolServiceListErrors = { - /** - * Default error response - */ - default: Status; +export type IntTransactionReceiptSizeServiceListError = + IntTransactionReceiptSizeServiceListErrors[keyof IntTransactionReceiptSizeServiceListErrors]; + +export type IntTransactionReceiptSizeServiceListResponses = { + /** + * OK + */ + 200: ListIntTransactionReceiptSizeResponse; }; -export type IntRocketpoolMinipoolServiceListError = IntRocketpoolMinipoolServiceListErrors[keyof IntRocketpoolMinipoolServiceListErrors]; +export type IntTransactionReceiptSizeServiceListResponse = + IntTransactionReceiptSizeServiceListResponses[keyof IntTransactionReceiptSizeServiceListResponses]; -export type IntRocketpoolMinipoolServiceListResponses = { +export type IntTransactionReceiptSizeServiceGetData = { + body?: never; + path: { /** - * OK + * The block number containing the transaction */ - 200: ListIntRocketpoolMinipoolResponse; + block_number: number; + }; + query?: never; + url: '/api/v1/int_transaction_receipt_size/{block_number}'; }; -export type IntRocketpoolMinipoolServiceListResponse = IntRocketpoolMinipoolServiceListResponses[keyof IntRocketpoolMinipoolServiceListResponses]; - -export type IntRocketpoolMinipoolServiceGetData = { - body?: never; - path: { - /** - * Minipool lifecycle event name (created or destroyed) - */ - event_name: string; - }; - query?: never; - url: '/api/v1/int_rocketpool_minipool/{event_name}'; +export type IntTransactionReceiptSizeServiceGetErrors = { + /** + * Default error response + */ + default: Status; }; -export type IntRocketpoolMinipoolServiceGetErrors = { - /** - * Default error response - */ - default: Status; +export type IntTransactionReceiptSizeServiceGetError = + IntTransactionReceiptSizeServiceGetErrors[keyof IntTransactionReceiptSizeServiceGetErrors]; + +export type IntTransactionReceiptSizeServiceGetResponses = { + /** + * OK + */ + 200: GetIntTransactionReceiptSizeResponse; }; -export type IntRocketpoolMinipoolServiceGetError = IntRocketpoolMinipoolServiceGetErrors[keyof IntRocketpoolMinipoolServiceGetErrors]; +export type IntTransactionReceiptSizeServiceGetResponse = + IntTransactionReceiptSizeServiceGetResponses[keyof IntTransactionReceiptSizeServiceGetResponses]; -export type IntRocketpoolMinipoolServiceGetResponses = { +export type IntTransactionResourceGasServiceListData = { + body?: never; + path?: never; + query?: { /** - * OK + * The block number containing the transaction (filter: eq) */ - 200: GetIntRocketpoolMinipoolResponse; -}; - -export type IntRocketpoolMinipoolServiceGetResponse = IntRocketpoolMinipoolServiceGetResponses[keyof IntRocketpoolMinipoolServiceGetResponses]; - -export type IntRocketpoolNodeEventServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: eq) - */ - event_name_eq?: string; - /** - * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: ne) - */ - event_name_ne?: string; - /** - * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: contains) - */ - event_name_contains?: string; - /** - * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: starts_with) - */ - event_name_starts_with?: string; - /** - * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: ends_with) - */ - event_name_ends_with?: string; - /** - * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: like) - */ - event_name_like?: string; - /** - * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: not_like) - */ - event_name_not_like?: string; - /** - * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: in_values) (comma-separated list) - */ - event_name_in_values?: string; - /** - * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed (filter: not_in_values) (comma-separated list) - */ - event_name_not_in_values?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: eq) - */ - node_address_eq?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ne) - */ - node_address_ne?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: contains) - */ - node_address_contains?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: starts_with) - */ - node_address_starts_with?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ends_with) - */ - node_address_ends_with?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: like) - */ - node_address_like?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_like) - */ - node_address_not_like?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: in_values) (comma-separated list) - */ - node_address_in_values?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) - */ - node_address_not_in_values?: string; - /** - * Execution block number the event was emitted in (filter: eq) - */ - event_block_number_eq?: number; - /** - * Execution block number the event was emitted in (filter: ne) - */ - event_block_number_ne?: number; - /** - * Execution block number the event was emitted in (filter: lt) - */ - event_block_number_lt?: number; - /** - * Execution block number the event was emitted in (filter: lte) - */ - event_block_number_lte?: number; - /** - * Execution block number the event was emitted in (filter: gt) - */ - event_block_number_gt?: number; - /** - * Execution block number the event was emitted in (filter: gte) - */ - event_block_number_gte?: number; - /** - * Execution block number the event was emitted in (filter: between_min) - */ - event_block_number_between_min?: number; - /** - * Execution block number the event was emitted in (filter: between_max_value) - */ - event_block_number_between_max_value?: number; - /** - * Execution block number the event was emitted in (filter: in_values) (comma-separated list) - */ - event_block_number_in_values?: string; - /** - * Execution block number the event was emitted in (filter: not_in_values) (comma-separated list) - */ - event_block_number_not_in_values?: string; - /** - * Log index of the event within the block (filter: eq) - */ - log_index_eq?: number; - /** - * Log index of the event within the block (filter: ne) - */ - log_index_ne?: number; - /** - * Log index of the event within the block (filter: lt) - */ - log_index_lt?: number; - /** - * Log index of the event within the block (filter: lte) - */ - log_index_lte?: number; - /** - * Log index of the event within the block (filter: gt) - */ - log_index_gt?: number; - /** - * Log index of the event within the block (filter: gte) - */ - log_index_gte?: number; - /** - * Log index of the event within the block (filter: between_min) - */ - log_index_between_min?: number; - /** - * Log index of the event within the block (filter: between_max_value) - */ - log_index_between_max_value?: number; - /** - * Log index of the event within the block (filter: in_values) (comma-separated list) - */ - log_index_in_values?: string; - /** - * Log index of the event within the block (filter: not_in_values) (comma-separated list) - */ - log_index_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: eq) - */ - rpl_amount_wei_eq?: string; - /** - * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: ne) - */ - rpl_amount_wei_ne?: string; - /** - * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: contains) - */ - rpl_amount_wei_contains?: string; - /** - * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: starts_with) - */ - rpl_amount_wei_starts_with?: string; - /** - * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: ends_with) - */ - rpl_amount_wei_ends_with?: string; - /** - * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: like) - */ - rpl_amount_wei_like?: string; - /** - * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: not_like) - */ - rpl_amount_wei_not_like?: string; - /** - * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: in_values) (comma-separated list) - */ - rpl_amount_wei_in_values?: string; - /** - * RPL amount in wei for rpl_staked/rpl_withdrawn events, otherwise 0 (filter: not_in_values) (comma-separated list) - */ - rpl_amount_wei_not_in_values?: string; - /** - * Smoothing pool membership state for smoothing_pool_state_changed events, otherwise false (filter: eq) - */ - smoothing_state_eq?: boolean; - /** - * Smoothing pool membership state for smoothing_pool_state_changed events, otherwise false (filter: ne) - */ - smoothing_state_ne?: boolean; - /** - * Wall clock time of the block the event was emitted in (filter: eq) - */ - event_date_time_eq?: number; - /** - * Wall clock time of the block the event was emitted in (filter: ne) - */ - event_date_time_ne?: number; - /** - * Wall clock time of the block the event was emitted in (filter: lt) - */ - event_date_time_lt?: number; - /** - * Wall clock time of the block the event was emitted in (filter: lte) - */ - event_date_time_lte?: number; - /** - * Wall clock time of the block the event was emitted in (filter: gt) - */ - event_date_time_gt?: number; - /** - * Wall clock time of the block the event was emitted in (filter: gte) - */ - event_date_time_gte?: number; - /** - * Wall clock time of the block the event was emitted in (filter: between_min) - */ - event_date_time_between_min?: number; - /** - * Wall clock time of the block the event was emitted in (filter: between_max_value) - */ - event_date_time_between_max_value?: number; - /** - * Wall clock time of the block the event was emitted in (filter: in_values) (comma-separated list) - */ - event_date_time_in_values?: string; - /** - * Wall clock time of the block the event was emitted in (filter: not_in_values) (comma-separated list) - */ - event_date_time_not_in_values?: string; - /** - * The maximum number of int_rocketpool_node_event to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntRocketpoolNodeEvent` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_rocketpool_node_event'; -}; - -export type IntRocketpoolNodeEventServiceListErrors = { + block_number_eq?: number; /** - * Default error response + * The block number containing the transaction (filter: ne) */ - default: Status; -}; - -export type IntRocketpoolNodeEventServiceListError = IntRocketpoolNodeEventServiceListErrors[keyof IntRocketpoolNodeEventServiceListErrors]; - -export type IntRocketpoolNodeEventServiceListResponses = { + block_number_ne?: number; /** - * OK + * The block number containing the transaction (filter: lt) */ - 200: ListIntRocketpoolNodeEventResponse; -}; - -export type IntRocketpoolNodeEventServiceListResponse = IntRocketpoolNodeEventServiceListResponses[keyof IntRocketpoolNodeEventServiceListResponses]; - -export type IntRocketpoolNodeEventServiceGetData = { - body?: never; - path: { - /** - * Node event name: node_registered, rpl_staked, rpl_withdrawn or smoothing_pool_state_changed - */ - event_name: string; - }; - query?: never; - url: '/api/v1/int_rocketpool_node_event/{event_name}'; -}; - -export type IntRocketpoolNodeEventServiceGetErrors = { + block_number_lt?: number; /** - * Default error response + * The block number containing the transaction (filter: lte) */ - default: Status; -}; - -export type IntRocketpoolNodeEventServiceGetError = IntRocketpoolNodeEventServiceGetErrors[keyof IntRocketpoolNodeEventServiceGetErrors]; - -export type IntRocketpoolNodeEventServiceGetResponses = { + block_number_lte?: number; /** - * OK + * The block number containing the transaction (filter: gt) */ - 200: GetIntRocketpoolNodeEventResponse; -}; - -export type IntRocketpoolNodeEventServiceGetResponse = IntRocketpoolNodeEventServiceGetResponses[keyof IntRocketpoolNodeEventServiceGetResponses]; - -export type IntRocketpoolNodeTimezoneServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: eq) - */ - node_address_eq?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ne) - */ - node_address_ne?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: contains) - */ - node_address_contains?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: starts_with) - */ - node_address_starts_with?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: ends_with) - */ - node_address_ends_with?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: like) - */ - node_address_like?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_like) - */ - node_address_not_like?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: in_values) (comma-separated list) - */ - node_address_in_values?: string; - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed (filter: not_in_values) (comma-separated list) - */ - node_address_not_in_values?: string; - /** - * Execution block number the timezone was set in (filter: eq) - */ - set_block_number_eq?: number; - /** - * Execution block number the timezone was set in (filter: ne) - */ - set_block_number_ne?: number; - /** - * Execution block number the timezone was set in (filter: lt) - */ - set_block_number_lt?: number; - /** - * Execution block number the timezone was set in (filter: lte) - */ - set_block_number_lte?: number; - /** - * Execution block number the timezone was set in (filter: gt) - */ - set_block_number_gt?: number; - /** - * Execution block number the timezone was set in (filter: gte) - */ - set_block_number_gte?: number; - /** - * Execution block number the timezone was set in (filter: between_min) - */ - set_block_number_between_min?: number; - /** - * Execution block number the timezone was set in (filter: between_max_value) - */ - set_block_number_between_max_value?: number; - /** - * Execution block number the timezone was set in (filter: in_values) (comma-separated list) - */ - set_block_number_in_values?: string; - /** - * Execution block number the timezone was set in (filter: not_in_values) (comma-separated list) - */ - set_block_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The self-reported timezone location string (e.g. Europe/London) (filter: eq) - */ - timezone_eq?: string; - /** - * The self-reported timezone location string (e.g. Europe/London) (filter: ne) - */ - timezone_ne?: string; - /** - * The self-reported timezone location string (e.g. Europe/London) (filter: contains) - */ - timezone_contains?: string; - /** - * The self-reported timezone location string (e.g. Europe/London) (filter: starts_with) - */ - timezone_starts_with?: string; - /** - * The self-reported timezone location string (e.g. Europe/London) (filter: ends_with) - */ - timezone_ends_with?: string; - /** - * The self-reported timezone location string (e.g. Europe/London) (filter: like) - */ - timezone_like?: string; - /** - * The self-reported timezone location string (e.g. Europe/London) (filter: not_like) - */ - timezone_not_like?: string; - /** - * The self-reported timezone location string (e.g. Europe/London) (filter: in_values) (comma-separated list) - */ - timezone_in_values?: string; - /** - * The self-reported timezone location string (e.g. Europe/London) (filter: not_in_values) (comma-separated list) - */ - timezone_not_in_values?: string; - /** - * Wall clock time of the block the timezone was set in (filter: eq) - */ - set_date_time_eq?: number; - /** - * Wall clock time of the block the timezone was set in (filter: ne) - */ - set_date_time_ne?: number; - /** - * Wall clock time of the block the timezone was set in (filter: lt) - */ - set_date_time_lt?: number; - /** - * Wall clock time of the block the timezone was set in (filter: lte) - */ - set_date_time_lte?: number; - /** - * Wall clock time of the block the timezone was set in (filter: gt) - */ - set_date_time_gt?: number; - /** - * Wall clock time of the block the timezone was set in (filter: gte) - */ - set_date_time_gte?: number; - /** - * Wall clock time of the block the timezone was set in (filter: between_min) - */ - set_date_time_between_min?: number; - /** - * Wall clock time of the block the timezone was set in (filter: between_max_value) - */ - set_date_time_between_max_value?: number; - /** - * Wall clock time of the block the timezone was set in (filter: in_values) (comma-separated list) - */ - set_date_time_in_values?: string; - /** - * Wall clock time of the block the timezone was set in (filter: not_in_values) (comma-separated list) - */ - set_date_time_not_in_values?: string; - /** - * The maximum number of int_rocketpool_node_timezone to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntRocketpoolNodeTimezone` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_rocketpool_node_timezone'; -}; - -export type IntRocketpoolNodeTimezoneServiceListErrors = { + block_number_gt?: number; /** - * Default error response + * The block number containing the transaction (filter: gte) */ - default: Status; -}; - -export type IntRocketpoolNodeTimezoneServiceListError = IntRocketpoolNodeTimezoneServiceListErrors[keyof IntRocketpoolNodeTimezoneServiceListErrors]; - -export type IntRocketpoolNodeTimezoneServiceListResponses = { + block_number_gte?: number; /** - * OK + * The block number containing the transaction (filter: between_min) */ - 200: ListIntRocketpoolNodeTimezoneResponse; -}; - -export type IntRocketpoolNodeTimezoneServiceListResponse = IntRocketpoolNodeTimezoneServiceListResponses[keyof IntRocketpoolNodeTimezoneServiceListResponses]; - -export type IntRocketpoolNodeTimezoneServiceGetData = { - body?: never; - path: { - /** - * The Rocket Pool node operator address, lowercase 0x-prefixed - */ - node_address: string; - }; - query?: never; - url: '/api/v1/int_rocketpool_node_timezone/{node_address}'; -}; - -export type IntRocketpoolNodeTimezoneServiceGetErrors = { + block_number_between_min?: number; /** - * Default error response + * The block number containing the transaction (filter: between_max_value) */ - default: Status; -}; - -export type IntRocketpoolNodeTimezoneServiceGetError = IntRocketpoolNodeTimezoneServiceGetErrors[keyof IntRocketpoolNodeTimezoneServiceGetErrors]; - -export type IntRocketpoolNodeTimezoneServiceGetResponses = { + block_number_between_max_value?: number; /** - * OK + * The block number containing the transaction (filter: in_values) (comma-separated list) */ - 200: GetIntRocketpoolNodeTimezoneResponse; -}; - -export type IntRocketpoolNodeTimezoneServiceGetResponse = IntRocketpoolNodeTimezoneServiceGetResponses[keyof IntRocketpoolNodeTimezoneServiceGetResponses]; - -export type IntStorageSelfdestructDiffsServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Block where SELFDESTRUCT occurred (filter: eq) - */ - block_number_eq?: number; - /** - * Block where SELFDESTRUCT occurred (filter: ne) - */ - block_number_ne?: number; - /** - * Block where SELFDESTRUCT occurred (filter: lt) - */ - block_number_lt?: number; - /** - * Block where SELFDESTRUCT occurred (filter: lte) - */ - block_number_lte?: number; - /** - * Block where SELFDESTRUCT occurred (filter: gt) - */ - block_number_gt?: number; - /** - * Block where SELFDESTRUCT occurred (filter: gte) - */ - block_number_gte?: number; - /** - * Block where SELFDESTRUCT occurred (filter: between_min) - */ - block_number_between_min?: number; - /** - * Block where SELFDESTRUCT occurred (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * Block where SELFDESTRUCT occurred (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * Block where SELFDESTRUCT occurred (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Transaction hash of the SELFDESTRUCT (filter: eq) - */ - transaction_hash_eq?: string; - /** - * Transaction hash of the SELFDESTRUCT (filter: ne) - */ - transaction_hash_ne?: string; - /** - * Transaction hash of the SELFDESTRUCT (filter: contains) - */ - transaction_hash_contains?: string; - /** - * Transaction hash of the SELFDESTRUCT (filter: starts_with) - */ - transaction_hash_starts_with?: string; - /** - * Transaction hash of the SELFDESTRUCT (filter: ends_with) - */ - transaction_hash_ends_with?: string; - /** - * Transaction hash of the SELFDESTRUCT (filter: like) - */ - transaction_hash_like?: string; - /** - * Transaction hash of the SELFDESTRUCT (filter: not_like) - */ - transaction_hash_not_like?: string; - /** - * Transaction hash of the SELFDESTRUCT (filter: in_values) (comma-separated list) - */ - transaction_hash_in_values?: string; - /** - * Transaction hash of the SELFDESTRUCT (filter: not_in_values) (comma-separated list) - */ - transaction_hash_not_in_values?: string; - /** - * Internal index of the SELFDESTRUCT trace (filter: eq) - */ - internal_index_eq?: number; - /** - * Internal index of the SELFDESTRUCT trace (filter: ne) - */ - internal_index_ne?: number; - /** - * Internal index of the SELFDESTRUCT trace (filter: lt) - */ - internal_index_lt?: number; - /** - * Internal index of the SELFDESTRUCT trace (filter: lte) - */ - internal_index_lte?: number; - /** - * Internal index of the SELFDESTRUCT trace (filter: gt) - */ - internal_index_gt?: number; - /** - * Internal index of the SELFDESTRUCT trace (filter: gte) - */ - internal_index_gte?: number; - /** - * Internal index of the SELFDESTRUCT trace (filter: between_min) - */ - internal_index_between_min?: number; - /** - * Internal index of the SELFDESTRUCT trace (filter: between_max_value) - */ - internal_index_between_max_value?: number; - /** - * Internal index of the SELFDESTRUCT trace (filter: in_values) (comma-separated list) - */ - internal_index_in_values?: string; - /** - * Internal index of the SELFDESTRUCT trace (filter: not_in_values) (comma-separated list) - */ - internal_index_not_in_values?: string; - /** - * Storage slot key being cleared (filter: eq) - */ - slot_eq?: string; - /** - * Storage slot key being cleared (filter: ne) - */ - slot_ne?: string; - /** - * Storage slot key being cleared (filter: contains) - */ - slot_contains?: string; - /** - * Storage slot key being cleared (filter: starts_with) - */ - slot_starts_with?: string; - /** - * Storage slot key being cleared (filter: ends_with) - */ - slot_ends_with?: string; - /** - * Storage slot key being cleared (filter: like) - */ - slot_like?: string; - /** - * Storage slot key being cleared (filter: not_like) - */ - slot_not_like?: string; - /** - * Storage slot key being cleared (filter: in_values) (comma-separated list) - */ - slot_in_values?: string; - /** - * Storage slot key being cleared (filter: not_in_values) (comma-separated list) - */ - slot_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Transaction index within the block (filter: eq) - */ - transaction_index_eq?: number; - /** - * Transaction index within the block (filter: ne) - */ - transaction_index_ne?: number; - /** - * Transaction index within the block (filter: lt) - */ - transaction_index_lt?: number; - /** - * Transaction index within the block (filter: lte) - */ - transaction_index_lte?: number; - /** - * Transaction index within the block (filter: gt) - */ - transaction_index_gt?: number; - /** - * Transaction index within the block (filter: gte) - */ - transaction_index_gte?: number; - /** - * Transaction index within the block (filter: between_min) - */ - transaction_index_between_min?: number; - /** - * Transaction index within the block (filter: between_max_value) - */ - transaction_index_between_max_value?: number; - /** - * Transaction index within the block (filter: in_values) (comma-separated list) - */ - transaction_index_in_values?: string; - /** - * Transaction index within the block (filter: not_in_values) (comma-separated list) - */ - transaction_index_not_in_values?: string; - /** - * Contract address that was selfdestructed (filter: eq) - */ - address_eq?: string; - /** - * Contract address that was selfdestructed (filter: ne) - */ - address_ne?: string; - /** - * Contract address that was selfdestructed (filter: contains) - */ - address_contains?: string; - /** - * Contract address that was selfdestructed (filter: starts_with) - */ - address_starts_with?: string; - /** - * Contract address that was selfdestructed (filter: ends_with) - */ - address_ends_with?: string; - /** - * Contract address that was selfdestructed (filter: like) - */ - address_like?: string; - /** - * Contract address that was selfdestructed (filter: not_like) - */ - address_not_like?: string; - /** - * Contract address that was selfdestructed (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * Contract address that was selfdestructed (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Value before clearing (last known value) (filter: eq) - */ - from_value_eq?: string; - /** - * Value before clearing (last known value) (filter: ne) - */ - from_value_ne?: string; - /** - * Value before clearing (last known value) (filter: contains) - */ - from_value_contains?: string; - /** - * Value before clearing (last known value) (filter: starts_with) - */ - from_value_starts_with?: string; - /** - * Value before clearing (last known value) (filter: ends_with) - */ - from_value_ends_with?: string; - /** - * Value before clearing (last known value) (filter: like) - */ - from_value_like?: string; - /** - * Value before clearing (last known value) (filter: not_like) - */ - from_value_not_like?: string; - /** - * Value before clearing (last known value) (filter: in_values) (comma-separated list) - */ - from_value_in_values?: string; - /** - * Value before clearing (last known value) (filter: not_in_values) (comma-separated list) - */ - from_value_not_in_values?: string; - /** - * Value after clearing (always 0x00...00) (filter: eq) - */ - to_value_eq?: string; - /** - * Value after clearing (always 0x00...00) (filter: ne) - */ - to_value_ne?: string; - /** - * Value after clearing (always 0x00...00) (filter: contains) - */ - to_value_contains?: string; - /** - * Value after clearing (always 0x00...00) (filter: starts_with) - */ - to_value_starts_with?: string; - /** - * Value after clearing (always 0x00...00) (filter: ends_with) - */ - to_value_ends_with?: string; - /** - * Value after clearing (always 0x00...00) (filter: like) - */ - to_value_like?: string; - /** - * Value after clearing (always 0x00...00) (filter: not_like) - */ - to_value_not_like?: string; - /** - * Value after clearing (always 0x00...00) (filter: in_values) (comma-separated list) - */ - to_value_in_values?: string; - /** - * Value after clearing (always 0x00...00) (filter: not_in_values) (comma-separated list) - */ - to_value_not_in_values?: string; - /** - * The maximum number of int_storage_selfdestruct_diffs to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSelfdestructDiffs` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_selfdestruct_diffs'; -}; - -export type IntStorageSelfdestructDiffsServiceListErrors = { + block_number_in_values?: string; /** - * Default error response + * The block number containing the transaction (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntStorageSelfdestructDiffsServiceListError = IntStorageSelfdestructDiffsServiceListErrors[keyof IntStorageSelfdestructDiffsServiceListErrors]; - -export type IntStorageSelfdestructDiffsServiceListResponses = { + block_number_not_in_values?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: eq) */ - 200: ListIntStorageSelfdestructDiffsResponse; -}; - -export type IntStorageSelfdestructDiffsServiceListResponse = IntStorageSelfdestructDiffsServiceListResponses[keyof IntStorageSelfdestructDiffsServiceListResponses]; - -export type IntStorageSelfdestructDiffsServiceGetData = { - body?: never; - path: { - /** - * Block where SELFDESTRUCT occurred - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_selfdestruct_diffs/{block_number}'; -}; - -export type IntStorageSelfdestructDiffsServiceGetErrors = { + transaction_hash_eq?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: ne) */ - default: Status; -}; - -export type IntStorageSelfdestructDiffsServiceGetError = IntStorageSelfdestructDiffsServiceGetErrors[keyof IntStorageSelfdestructDiffsServiceGetErrors]; - -export type IntStorageSelfdestructDiffsServiceGetResponses = { + transaction_hash_ne?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: contains) */ - 200: GetIntStorageSelfdestructDiffsResponse; -}; - -export type IntStorageSelfdestructDiffsServiceGetResponse = IntStorageSelfdestructDiffsServiceGetResponses[keyof IntStorageSelfdestructDiffsServiceGetResponses]; - -export type IntStorageSlotDiffServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: eq) - */ - effective_bytes_from_eq?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: ne) - */ - effective_bytes_from_ne?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: lt) - */ - effective_bytes_from_lt?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: lte) - */ - effective_bytes_from_lte?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: gt) - */ - effective_bytes_from_gt?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: gte) - */ - effective_bytes_from_gte?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: between_min) - */ - effective_bytes_from_between_min?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: between_max_value) - */ - effective_bytes_from_between_max_value?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_from_in_values?: string; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_from_not_in_values?: string; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: eq) - */ - effective_bytes_to_eq?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: ne) - */ - effective_bytes_to_ne?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: lt) - */ - effective_bytes_to_lt?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: lte) - */ - effective_bytes_to_lte?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: gt) - */ - effective_bytes_to_gt?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: gte) - */ - effective_bytes_to_gte?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: between_min) - */ - effective_bytes_to_between_min?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: between_max_value) - */ - effective_bytes_to_between_max_value?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_to_in_values?: string; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_to_not_in_values?: string; - /** - * The maximum number of int_storage_slot_diff to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotDiff` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_diff'; -}; - -export type IntStorageSlotDiffServiceListErrors = { + transaction_hash_contains?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: starts_with) */ - default: Status; -}; - -export type IntStorageSlotDiffServiceListError = IntStorageSlotDiffServiceListErrors[keyof IntStorageSlotDiffServiceListErrors]; - -export type IntStorageSlotDiffServiceListResponses = { + transaction_hash_starts_with?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: ends_with) */ - 200: ListIntStorageSlotDiffResponse; -}; - -export type IntStorageSlotDiffServiceListResponse = IntStorageSlotDiffServiceListResponses[keyof IntStorageSlotDiffServiceListResponses]; - -export type IntStorageSlotDiffServiceGetData = { - body?: never; - path: { - /** - * The block number - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_diff/{block_number}'; -}; - -export type IntStorageSlotDiffServiceGetErrors = { + transaction_hash_ends_with?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: like) */ - default: Status; -}; - -export type IntStorageSlotDiffServiceGetError = IntStorageSlotDiffServiceGetErrors[keyof IntStorageSlotDiffServiceGetErrors]; - -export type IntStorageSlotDiffServiceGetResponses = { + transaction_hash_like?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: not_like) */ - 200: GetIntStorageSlotDiffResponse; -}; - -export type IntStorageSlotDiffServiceGetResponse = IntStorageSlotDiffServiceGetResponses[keyof IntStorageSlotDiffServiceGetResponses]; - -export type IntStorageSlotDiffByAddressSlotServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: eq) - */ - effective_bytes_from_eq?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: ne) - */ - effective_bytes_from_ne?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: lt) - */ - effective_bytes_from_lt?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: lte) - */ - effective_bytes_from_lte?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: gt) - */ - effective_bytes_from_gt?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: gte) - */ - effective_bytes_from_gte?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: between_min) - */ - effective_bytes_from_between_min?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: between_max_value) - */ - effective_bytes_from_between_max_value?: number; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_from_in_values?: string; - /** - * Number of effective bytes in the first from_value of the block (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_from_not_in_values?: string; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: eq) - */ - effective_bytes_to_eq?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: ne) - */ - effective_bytes_to_ne?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: lt) - */ - effective_bytes_to_lt?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: lte) - */ - effective_bytes_to_lte?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: gt) - */ - effective_bytes_to_gt?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: gte) - */ - effective_bytes_to_gte?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: between_min) - */ - effective_bytes_to_between_min?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: between_max_value) - */ - effective_bytes_to_between_max_value?: number; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_to_in_values?: string; - /** - * Number of effective bytes in the last to_value of the block (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_to_not_in_values?: string; - /** - * The maximum number of int_storage_slot_diff_by_address_slot to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotDiffByAddressSlot` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_diff_by_address_slot'; -}; - -export type IntStorageSlotDiffByAddressSlotServiceListErrors = { + transaction_hash_not_like?: string; /** - * Default error response + * The transaction hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntStorageSlotDiffByAddressSlotServiceListError = IntStorageSlotDiffByAddressSlotServiceListErrors[keyof IntStorageSlotDiffByAddressSlotServiceListErrors]; - -export type IntStorageSlotDiffByAddressSlotServiceListResponses = { + transaction_hash_in_values?: string; /** - * OK + * The transaction hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) */ - 200: ListIntStorageSlotDiffByAddressSlotResponse; -}; - -export type IntStorageSlotDiffByAddressSlotServiceListResponse = IntStorageSlotDiffByAddressSlotServiceListResponses[keyof IntStorageSlotDiffByAddressSlotServiceListResponses]; - -export type IntStorageSlotDiffByAddressSlotServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/int_storage_slot_diff_by_address_slot/{address}'; -}; - -export type IntStorageSlotDiffByAddressSlotServiceGetErrors = { + transaction_hash_not_in_values?: string; /** - * Default error response + * The name of the network (filter: eq) */ - default: Status; -}; - -export type IntStorageSlotDiffByAddressSlotServiceGetError = IntStorageSlotDiffByAddressSlotServiceGetErrors[keyof IntStorageSlotDiffByAddressSlotServiceGetErrors]; - -export type IntStorageSlotDiffByAddressSlotServiceGetResponses = { + meta_network_name_eq?: string; /** - * OK + * The name of the network (filter: ne) */ - 200: GetIntStorageSlotDiffByAddressSlotResponse; -}; - -export type IntStorageSlotDiffByAddressSlotServiceGetResponse = IntStorageSlotDiffByAddressSlotServiceGetResponses[keyof IntStorageSlotDiffByAddressSlotServiceGetResponses]; - -export type IntStorageSlotExpiry1mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this slot expiry is recorded (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this slot expiry is recorded (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this slot expiry is recorded (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this slot expiry is recorded (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this slot expiry is recorded (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this slot expiry is recorded (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this slot expiry is recorded (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this slot expiry is recorded (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this slot expiry is recorded (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this slot expiry is recorded (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of effective bytes that were set (0-32) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Number of effective bytes that were set (0-32) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Number of effective bytes that were set (0-32) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Number of effective bytes that were set (0-32) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Number of effective bytes that were set (0-32) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Number of effective bytes that were set (0-32) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Number of effective bytes that were set (0-32) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Number of effective bytes that were set (0-32) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Number of effective bytes that were set (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Number of effective bytes that were set (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_expiry_1m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotExpiry1m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_expiry_1m'; -}; - -export type IntStorageSlotExpiry1mServiceListErrors = { + meta_network_name_ne?: string; /** - * Default error response + * The name of the network (filter: contains) */ - default: Status; -}; - -export type IntStorageSlotExpiry1mServiceListError = IntStorageSlotExpiry1mServiceListErrors[keyof IntStorageSlotExpiry1mServiceListErrors]; - -export type IntStorageSlotExpiry1mServiceListResponses = { + meta_network_name_contains?: string; /** - * OK + * The name of the network (filter: starts_with) */ - 200: ListIntStorageSlotExpiry1mResponse; -}; - -export type IntStorageSlotExpiry1mServiceListResponse = IntStorageSlotExpiry1mServiceListResponses[keyof IntStorageSlotExpiry1mServiceListResponses]; - -export type IntStorageSlotExpiry1mServiceGetData = { - body?: never; - path: { - /** - * The block number where this slot expiry is recorded - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_expiry_1m/{block_number}'; -}; - -export type IntStorageSlotExpiry1mServiceGetErrors = { + meta_network_name_starts_with?: string; /** - * Default error response + * The name of the network (filter: ends_with) */ - default: Status; -}; - -export type IntStorageSlotExpiry1mServiceGetError = IntStorageSlotExpiry1mServiceGetErrors[keyof IntStorageSlotExpiry1mServiceGetErrors]; - -export type IntStorageSlotExpiry1mServiceGetResponses = { + meta_network_name_ends_with?: string; /** - * OK + * The name of the network (filter: like) */ - 200: GetIntStorageSlotExpiry1mResponse; -}; - -export type IntStorageSlotExpiry1mServiceGetResponse = IntStorageSlotExpiry1mServiceGetResponses[keyof IntStorageSlotExpiry1mServiceGetResponses]; - -export type IntStorageSlotExpiry6mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this slot expiry is recorded (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this slot expiry is recorded (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this slot expiry is recorded (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this slot expiry is recorded (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this slot expiry is recorded (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this slot expiry is recorded (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this slot expiry is recorded (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this slot expiry is recorded (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this slot expiry is recorded (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this slot expiry is recorded (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of effective bytes that were set (0-32) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Number of effective bytes that were set (0-32) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Number of effective bytes that were set (0-32) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Number of effective bytes that were set (0-32) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Number of effective bytes that were set (0-32) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Number of effective bytes that were set (0-32) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Number of effective bytes that were set (0-32) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Number of effective bytes that were set (0-32) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Number of effective bytes that were set (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Number of effective bytes that were set (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_expiry_6m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotExpiry6m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_expiry_6m'; -}; - -export type IntStorageSlotExpiry6mServiceListErrors = { + meta_network_name_like?: string; /** - * Default error response + * The name of the network (filter: not_like) */ - default: Status; -}; - -export type IntStorageSlotExpiry6mServiceListError = IntStorageSlotExpiry6mServiceListErrors[keyof IntStorageSlotExpiry6mServiceListErrors]; - -export type IntStorageSlotExpiry6mServiceListResponses = { + meta_network_name_not_like?: string; /** - * OK + * The name of the network (filter: in_values) (comma-separated list) */ - 200: ListIntStorageSlotExpiry6mResponse; -}; - -export type IntStorageSlotExpiry6mServiceListResponse = IntStorageSlotExpiry6mServiceListResponses[keyof IntStorageSlotExpiry6mServiceListResponses]; - -export type IntStorageSlotExpiry6mServiceGetData = { - body?: never; - path: { - /** - * The block number where this slot expiry is recorded - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_expiry_6m/{block_number}'; -}; - -export type IntStorageSlotExpiry6mServiceGetErrors = { + meta_network_name_in_values?: string; /** - * Default error response + * The name of the network (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntStorageSlotExpiry6mServiceGetError = IntStorageSlotExpiry6mServiceGetErrors[keyof IntStorageSlotExpiry6mServiceGetErrors]; - -export type IntStorageSlotExpiry6mServiceGetResponses = { + meta_network_name_not_in_values?: string; /** - * OK + * Timestamp when the record was last updated (filter: eq) */ - 200: GetIntStorageSlotExpiry6mResponse; -}; - -export type IntStorageSlotExpiry6mServiceGetResponse = IntStorageSlotExpiry6mServiceGetResponses[keyof IntStorageSlotExpiry6mServiceGetResponses]; - -export type IntStorageSlotExpiry12mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this slot expiry is recorded (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this slot expiry is recorded (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this slot expiry is recorded (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this slot expiry is recorded (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this slot expiry is recorded (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this slot expiry is recorded (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this slot expiry is recorded (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this slot expiry is recorded (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this slot expiry is recorded (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this slot expiry is recorded (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of effective bytes that were set (0-32) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Number of effective bytes that were set (0-32) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Number of effective bytes that were set (0-32) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Number of effective bytes that were set (0-32) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Number of effective bytes that were set (0-32) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Number of effective bytes that were set (0-32) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Number of effective bytes that were set (0-32) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Number of effective bytes that were set (0-32) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Number of effective bytes that were set (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Number of effective bytes that were set (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_expiry_12m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotExpiry12m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_expiry_12m'; -}; - -export type IntStorageSlotExpiry12mServiceListErrors = { + updated_date_time_eq?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: ne) */ - default: Status; -}; - -export type IntStorageSlotExpiry12mServiceListError = IntStorageSlotExpiry12mServiceListErrors[keyof IntStorageSlotExpiry12mServiceListErrors]; - -export type IntStorageSlotExpiry12mServiceListResponses = { + updated_date_time_ne?: number; /** - * OK + * Timestamp when the record was last updated (filter: lt) */ - 200: ListIntStorageSlotExpiry12mResponse; -}; - -export type IntStorageSlotExpiry12mServiceListResponse = IntStorageSlotExpiry12mServiceListResponses[keyof IntStorageSlotExpiry12mServiceListResponses]; - -export type IntStorageSlotExpiry12mServiceGetData = { - body?: never; - path: { - /** - * The block number where this slot expiry is recorded - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_expiry_12m/{block_number}'; -}; - -export type IntStorageSlotExpiry12mServiceGetErrors = { + updated_date_time_lt?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: lte) */ - default: Status; -}; - -export type IntStorageSlotExpiry12mServiceGetError = IntStorageSlotExpiry12mServiceGetErrors[keyof IntStorageSlotExpiry12mServiceGetErrors]; - -export type IntStorageSlotExpiry12mServiceGetResponses = { + updated_date_time_lte?: number; /** - * OK + * Timestamp when the record was last updated (filter: gt) */ - 200: GetIntStorageSlotExpiry12mResponse; -}; - -export type IntStorageSlotExpiry12mServiceGetResponse = IntStorageSlotExpiry12mServiceGetResponses[keyof IntStorageSlotExpiry12mServiceGetResponses]; - -export type IntStorageSlotExpiry18mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this slot expiry is recorded (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this slot expiry is recorded (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this slot expiry is recorded (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this slot expiry is recorded (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this slot expiry is recorded (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this slot expiry is recorded (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this slot expiry is recorded (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this slot expiry is recorded (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this slot expiry is recorded (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this slot expiry is recorded (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of effective bytes that were set (0-32) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Number of effective bytes that were set (0-32) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Number of effective bytes that were set (0-32) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Number of effective bytes that were set (0-32) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Number of effective bytes that were set (0-32) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Number of effective bytes that were set (0-32) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Number of effective bytes that were set (0-32) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Number of effective bytes that were set (0-32) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Number of effective bytes that were set (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Number of effective bytes that were set (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_expiry_18m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotExpiry18m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_expiry_18m'; -}; - -export type IntStorageSlotExpiry18mServiceListErrors = { + updated_date_time_gt?: number; /** - * Default error response + * Timestamp when the record was last updated (filter: gte) */ - default: Status; -}; - -export type IntStorageSlotExpiry18mServiceListError = IntStorageSlotExpiry18mServiceListErrors[keyof IntStorageSlotExpiry18mServiceListErrors]; - -export type IntStorageSlotExpiry18mServiceListResponses = { + updated_date_time_gte?: number; /** - * OK + * Timestamp when the record was last updated (filter: between_min) */ - 200: ListIntStorageSlotExpiry18mResponse; -}; - -export type IntStorageSlotExpiry18mServiceListResponse = IntStorageSlotExpiry18mServiceListResponses[keyof IntStorageSlotExpiry18mServiceListResponses]; - -export type IntStorageSlotExpiry18mServiceGetData = { - body?: never; - path: { - /** - * The block number where this slot expiry is recorded - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_expiry_18m/{block_number}'; -}; - -export type IntStorageSlotExpiry18mServiceGetErrors = { + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; /** - * Default error response + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntStorageSlotExpiry18mServiceGetError = IntStorageSlotExpiry18mServiceGetErrors[keyof IntStorageSlotExpiry18mServiceGetErrors]; - -export type IntStorageSlotExpiry18mServiceGetResponses = { + updated_date_time_not_in_values?: string; /** - * OK + * The index of the transaction within the block (filter: eq) */ - 200: GetIntStorageSlotExpiry18mResponse; -}; - -export type IntStorageSlotExpiry18mServiceGetResponse = IntStorageSlotExpiry18mServiceGetResponses[keyof IntStorageSlotExpiry18mServiceGetResponses]; - -export type IntStorageSlotExpiry24mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this slot expiry is recorded (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this slot expiry is recorded (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this slot expiry is recorded (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this slot expiry is recorded (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this slot expiry is recorded (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this slot expiry is recorded (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this slot expiry is recorded (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this slot expiry is recorded (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this slot expiry is recorded (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this slot expiry is recorded (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that led to this expiry (propagates through waterfall chain) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of effective bytes that were set (0-32) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Number of effective bytes that were set (0-32) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Number of effective bytes that were set (0-32) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Number of effective bytes that were set (0-32) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Number of effective bytes that were set (0-32) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Number of effective bytes that were set (0-32) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Number of effective bytes that were set (0-32) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Number of effective bytes that were set (0-32) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Number of effective bytes that were set (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Number of effective bytes that were set (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_expiry_24m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotExpiry24m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_expiry_24m'; -}; - -export type IntStorageSlotExpiry24mServiceListErrors = { + transaction_index_eq?: number; /** - * Default error response + * The index of the transaction within the block (filter: ne) */ - default: Status; -}; - -export type IntStorageSlotExpiry24mServiceListError = IntStorageSlotExpiry24mServiceListErrors[keyof IntStorageSlotExpiry24mServiceListErrors]; - -export type IntStorageSlotExpiry24mServiceListResponses = { + transaction_index_ne?: number; /** - * OK + * The index of the transaction within the block (filter: lt) */ - 200: ListIntStorageSlotExpiry24mResponse; -}; - -export type IntStorageSlotExpiry24mServiceListResponse = IntStorageSlotExpiry24mServiceListResponses[keyof IntStorageSlotExpiry24mServiceListResponses]; - -export type IntStorageSlotExpiry24mServiceGetData = { - body?: never; - path: { - /** - * The block number where this slot expiry is recorded - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_expiry_24m/{block_number}'; -}; - -export type IntStorageSlotExpiry24mServiceGetErrors = { + transaction_index_lt?: number; /** - * Default error response + * The index of the transaction within the block (filter: lte) */ - default: Status; -}; - -export type IntStorageSlotExpiry24mServiceGetError = IntStorageSlotExpiry24mServiceGetErrors[keyof IntStorageSlotExpiry24mServiceGetErrors]; - -export type IntStorageSlotExpiry24mServiceGetResponses = { + transaction_index_lte?: number; /** - * OK + * The index of the transaction within the block (filter: gt) */ - 200: GetIntStorageSlotExpiry24mResponse; -}; - -export type IntStorageSlotExpiry24mServiceGetResponse = IntStorageSlotExpiry24mServiceGetResponses[keyof IntStorageSlotExpiry24mServiceGetResponses]; - -export type IntStorageSlotLifecycleServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: eq) - */ - lifecycle_number_eq?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: ne) - */ - lifecycle_number_ne?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: lt) - */ - lifecycle_number_lt?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: lte) - */ - lifecycle_number_lte?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: gt) - */ - lifecycle_number_gt?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: gte) - */ - lifecycle_number_gte?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: between_min) - */ - lifecycle_number_between_min?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: between_max_value) - */ - lifecycle_number_between_max_value?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: in_values) (comma-separated list) - */ - lifecycle_number_in_values?: string; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: not_in_values) (comma-separated list) - */ - lifecycle_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: eq) - */ - birth_block_eq?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: ne) - */ - birth_block_ne?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: lt) - */ - birth_block_lt?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: lte) - */ - birth_block_lte?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: gt) - */ - birth_block_gt?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: gte) - */ - birth_block_gte?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: between_min) - */ - birth_block_between_min?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: between_max_value) - */ - birth_block_between_max_value?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: in_values) (comma-separated list) - */ - birth_block_in_values?: string; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: not_in_values) (comma-separated list) - */ - birth_block_not_in_values?: string; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: eq) - */ - death_block_eq?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: ne) - */ - death_block_ne?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: lt) - */ - death_block_lt?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: lte) - */ - death_block_lte?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: gt) - */ - death_block_gt?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: gte) - */ - death_block_gte?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: between_min) - */ - death_block_between_min?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: between_max_value) - */ - death_block_between_max_value?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: in_values) (comma-separated list) - */ - death_block_in_values?: string; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: not_in_values) (comma-separated list) - */ - death_block_not_in_values?: string; - /** - * Number of blocks between birth and death (NULL if still alive) (filter: eq) - */ - lifespan_blocks_eq?: number; - /** - * Number of blocks between birth and death (NULL if still alive) (filter: ne) - */ - lifespan_blocks_ne?: number; - /** - * Number of blocks between birth and death (NULL if still alive) (filter: lt) - */ - lifespan_blocks_lt?: number; - /** - * Number of blocks between birth and death (NULL if still alive) (filter: lte) - */ - lifespan_blocks_lte?: number; - /** - * Number of blocks between birth and death (NULL if still alive) (filter: gt) - */ - lifespan_blocks_gt?: number; - /** - * Number of blocks between birth and death (NULL if still alive) (filter: gte) - */ - lifespan_blocks_gte?: number; - /** - * Number of blocks between birth and death (NULL if still alive) (filter: between_min) - */ - lifespan_blocks_between_min?: number; - /** - * Number of blocks between birth and death (NULL if still alive) (filter: between_max_value) - */ - lifespan_blocks_between_max_value?: number; - /** - * Number of blocks between birth and death (NULL if still alive) (filter: in_values) (comma-separated list) - */ - lifespan_blocks_in_values?: string; - /** - * Number of blocks between birth and death (NULL if still alive) (filter: not_in_values) (comma-separated list) - */ - lifespan_blocks_not_in_values?: string; - /** - * Total number of times this slot was touched during this lifecycle (filter: eq) - */ - touch_count_eq?: number; - /** - * Total number of times this slot was touched during this lifecycle (filter: ne) - */ - touch_count_ne?: number; - /** - * Total number of times this slot was touched during this lifecycle (filter: lt) - */ - touch_count_lt?: number; - /** - * Total number of times this slot was touched during this lifecycle (filter: lte) - */ - touch_count_lte?: number; - /** - * Total number of times this slot was touched during this lifecycle (filter: gt) - */ - touch_count_gt?: number; - /** - * Total number of times this slot was touched during this lifecycle (filter: gte) - */ - touch_count_gte?: number; - /** - * Total number of times this slot was touched during this lifecycle (filter: between_min) - */ - touch_count_between_min?: number; - /** - * Total number of times this slot was touched during this lifecycle (filter: between_max_value) - */ - touch_count_between_max_value?: number; - /** - * Total number of times this slot was touched during this lifecycle (filter: in_values) (comma-separated list) - */ - touch_count_in_values?: string; - /** - * Total number of times this slot was touched during this lifecycle (filter: not_in_values) (comma-separated list) - */ - touch_count_not_in_values?: string; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: eq) - */ - effective_bytes_birth_eq?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: ne) - */ - effective_bytes_birth_ne?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: lt) - */ - effective_bytes_birth_lt?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: lte) - */ - effective_bytes_birth_lte?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: gt) - */ - effective_bytes_birth_gt?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: gte) - */ - effective_bytes_birth_gte?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: between_min) - */ - effective_bytes_birth_between_min?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: between_max_value) - */ - effective_bytes_birth_between_max_value?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: in_values) (comma-separated list) - */ - effective_bytes_birth_in_values?: string; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_birth_not_in_values?: string; - /** - * Maximum effective bytes observed during this lifecycle (filter: eq) - */ - effective_bytes_peak_eq?: number; - /** - * Maximum effective bytes observed during this lifecycle (filter: ne) - */ - effective_bytes_peak_ne?: number; - /** - * Maximum effective bytes observed during this lifecycle (filter: lt) - */ - effective_bytes_peak_lt?: number; - /** - * Maximum effective bytes observed during this lifecycle (filter: lte) - */ - effective_bytes_peak_lte?: number; - /** - * Maximum effective bytes observed during this lifecycle (filter: gt) - */ - effective_bytes_peak_gt?: number; - /** - * Maximum effective bytes observed during this lifecycle (filter: gte) - */ - effective_bytes_peak_gte?: number; - /** - * Maximum effective bytes observed during this lifecycle (filter: between_min) - */ - effective_bytes_peak_between_min?: number; - /** - * Maximum effective bytes observed during this lifecycle (filter: between_max_value) - */ - effective_bytes_peak_between_max_value?: number; - /** - * Maximum effective bytes observed during this lifecycle (filter: in_values) (comma-separated list) - */ - effective_bytes_peak_in_values?: string; - /** - * Maximum effective bytes observed during this lifecycle (filter: not_in_values) (comma-separated list) - */ - effective_bytes_peak_not_in_values?: string; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: eq) - */ - effective_bytes_death_eq?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: ne) - */ - effective_bytes_death_ne?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: lt) - */ - effective_bytes_death_lt?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: lte) - */ - effective_bytes_death_lte?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: gt) - */ - effective_bytes_death_gt?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: gte) - */ - effective_bytes_death_gte?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: between_min) - */ - effective_bytes_death_between_min?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: between_max_value) - */ - effective_bytes_death_between_max_value?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: in_values) (comma-separated list) - */ - effective_bytes_death_in_values?: string; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_death_not_in_values?: string; - /** - * Most recent block where this slot was touched in this lifecycle (filter: eq) - */ - last_touch_block_eq?: number; - /** - * Most recent block where this slot was touched in this lifecycle (filter: ne) - */ - last_touch_block_ne?: number; - /** - * Most recent block where this slot was touched in this lifecycle (filter: lt) - */ - last_touch_block_lt?: number; - /** - * Most recent block where this slot was touched in this lifecycle (filter: lte) - */ - last_touch_block_lte?: number; - /** - * Most recent block where this slot was touched in this lifecycle (filter: gt) - */ - last_touch_block_gt?: number; - /** - * Most recent block where this slot was touched in this lifecycle (filter: gte) - */ - last_touch_block_gte?: number; - /** - * Most recent block where this slot was touched in this lifecycle (filter: between_min) - */ - last_touch_block_between_min?: number; - /** - * Most recent block where this slot was touched in this lifecycle (filter: between_max_value) - */ - last_touch_block_between_max_value?: number; - /** - * Most recent block where this slot was touched in this lifecycle (filter: in_values) (comma-separated list) - */ - last_touch_block_in_values?: string; - /** - * Most recent block where this slot was touched in this lifecycle (filter: not_in_values) (comma-separated list) - */ - last_touch_block_not_in_values?: string; - /** - * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: eq) - */ - interval_count_eq?: number; - /** - * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: ne) - */ - interval_count_ne?: number; - /** - * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: lt) - */ - interval_count_lt?: number; - /** - * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: lte) - */ - interval_count_lte?: number; - /** - * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: gt) - */ - interval_count_gt?: number; - /** - * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: gte) - */ - interval_count_gte?: number; - /** - * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: between_min) - */ - interval_count_between_min?: number; - /** - * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: between_max_value) - */ - interval_count_between_max_value?: number; - /** - * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: in_values) (comma-separated list) - */ - interval_count_in_values?: string; - /** - * Number of touch-to-touch intervals observed (touch_count - 1 when > 1) (filter: not_in_values) (comma-separated list) - */ - interval_count_not_in_values?: string; - /** - * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: eq) - */ - interval_sum_eq?: number; - /** - * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: ne) - */ - interval_sum_ne?: number; - /** - * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: lt) - */ - interval_sum_lt?: number; - /** - * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: lte) - */ - interval_sum_lte?: number; - /** - * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: gt) - */ - interval_sum_gt?: number; - /** - * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: gte) - */ - interval_sum_gte?: number; - /** - * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: between_min) - */ - interval_sum_between_min?: number; - /** - * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: between_max_value) - */ - interval_sum_between_max_value?: number; - /** - * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: in_values) (comma-separated list) - */ - interval_sum_in_values?: string; - /** - * Sum of all touch-to-touch intervals in blocks (for computing mean) (filter: not_in_values) (comma-separated list) - */ - interval_sum_not_in_values?: string; - /** - * Maximum touch-to-touch interval in blocks (filter: eq) - */ - interval_max_eq?: number; - /** - * Maximum touch-to-touch interval in blocks (filter: ne) - */ - interval_max_ne?: number; - /** - * Maximum touch-to-touch interval in blocks (filter: lt) - */ - interval_max_lt?: number; - /** - * Maximum touch-to-touch interval in blocks (filter: lte) - */ - interval_max_lte?: number; - /** - * Maximum touch-to-touch interval in blocks (filter: gt) - */ - interval_max_gt?: number; - /** - * Maximum touch-to-touch interval in blocks (filter: gte) - */ - interval_max_gte?: number; - /** - * Maximum touch-to-touch interval in blocks (filter: between_min) - */ - interval_max_between_min?: number; - /** - * Maximum touch-to-touch interval in blocks (filter: between_max_value) - */ - interval_max_between_max_value?: number; - /** - * Maximum touch-to-touch interval in blocks (filter: in_values) (comma-separated list) - */ - interval_max_in_values?: string; - /** - * Maximum touch-to-touch interval in blocks (filter: not_in_values) (comma-separated list) - */ - interval_max_not_in_values?: string; - /** - * The maximum number of int_storage_slot_lifecycle to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotLifecycle` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_lifecycle'; -}; - -export type IntStorageSlotLifecycleServiceListErrors = { + transaction_index_gt?: number; /** - * Default error response + * The index of the transaction within the block (filter: gte) */ - default: Status; -}; - -export type IntStorageSlotLifecycleServiceListError = IntStorageSlotLifecycleServiceListErrors[keyof IntStorageSlotLifecycleServiceListErrors]; - -export type IntStorageSlotLifecycleServiceListResponses = { + transaction_index_gte?: number; /** - * OK + * The index of the transaction within the block (filter: between_min) */ - 200: ListIntStorageSlotLifecycleResponse; -}; - -export type IntStorageSlotLifecycleServiceListResponse = IntStorageSlotLifecycleServiceListResponses[keyof IntStorageSlotLifecycleServiceListResponses]; - -export type IntStorageSlotLifecycleServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/int_storage_slot_lifecycle/{address}'; -}; - -export type IntStorageSlotLifecycleServiceGetErrors = { + transaction_index_between_min?: number; /** - * Default error response + * The index of the transaction within the block (filter: between_max_value) */ - default: Status; -}; - -export type IntStorageSlotLifecycleServiceGetError = IntStorageSlotLifecycleServiceGetErrors[keyof IntStorageSlotLifecycleServiceGetErrors]; - -export type IntStorageSlotLifecycleServiceGetResponses = { + transaction_index_between_max_value?: number; /** - * OK + * The index of the transaction within the block (filter: in_values) (comma-separated list) */ - 200: GetIntStorageSlotLifecycleResponse; -}; - -export type IntStorageSlotLifecycleServiceGetResponse = IntStorageSlotLifecycleServiceGetResponses[keyof IntStorageSlotLifecycleServiceGetResponses]; - -export type IntStorageSlotLifecycleBoundaryServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: eq) - */ - lifecycle_number_eq?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: ne) - */ - lifecycle_number_ne?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: lt) - */ - lifecycle_number_lt?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: lte) - */ - lifecycle_number_lte?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: gt) - */ - lifecycle_number_gt?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: gte) - */ - lifecycle_number_gte?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: between_min) - */ - lifecycle_number_between_min?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: between_max_value) - */ - lifecycle_number_between_max_value?: number; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: in_values) (comma-separated list) - */ - lifecycle_number_in_values?: string; - /** - * Reincarnation counter for this slot (1 = first lifecycle, 2 = second, etc.) (filter: not_in_values) (comma-separated list) - */ - lifecycle_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: eq) - */ - birth_block_eq?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: ne) - */ - birth_block_ne?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: lt) - */ - birth_block_lt?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: lte) - */ - birth_block_lte?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: gt) - */ - birth_block_gt?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: gte) - */ - birth_block_gte?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: between_min) - */ - birth_block_between_min?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: between_max_value) - */ - birth_block_between_max_value?: number; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: in_values) (comma-separated list) - */ - birth_block_in_values?: string; - /** - * Block where the slot transitioned from 0 to non-zero effective bytes (filter: not_in_values) (comma-separated list) - */ - birth_block_not_in_values?: string; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: eq) - */ - death_block_eq?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: ne) - */ - death_block_ne?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: lt) - */ - death_block_lt?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: lte) - */ - death_block_lte?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: gt) - */ - death_block_gt?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: gte) - */ - death_block_gte?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: between_min) - */ - death_block_between_min?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: between_max_value) - */ - death_block_between_max_value?: number; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: in_values) (comma-separated list) - */ - death_block_in_values?: string; - /** - * Block where the slot transitioned from non-zero to 0 effective bytes (NULL if still alive) (filter: not_in_values) (comma-separated list) - */ - death_block_not_in_values?: string; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: eq) - */ - effective_bytes_birth_eq?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: ne) - */ - effective_bytes_birth_ne?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: lt) - */ - effective_bytes_birth_lt?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: lte) - */ - effective_bytes_birth_lte?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: gt) - */ - effective_bytes_birth_gt?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: gte) - */ - effective_bytes_birth_gte?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: between_min) - */ - effective_bytes_birth_between_min?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: between_max_value) - */ - effective_bytes_birth_between_max_value?: number; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: in_values) (comma-separated list) - */ - effective_bytes_birth_in_values?: string; - /** - * Number of effective bytes at birth (the to_value of the 0->non-zero transition) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_birth_not_in_values?: string; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: eq) - */ - effective_bytes_death_eq?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: ne) - */ - effective_bytes_death_ne?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: lt) - */ - effective_bytes_death_lt?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: lte) - */ - effective_bytes_death_lte?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: gt) - */ - effective_bytes_death_gt?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: gte) - */ - effective_bytes_death_gte?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: between_min) - */ - effective_bytes_death_between_min?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: between_max_value) - */ - effective_bytes_death_between_max_value?: number; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: in_values) (comma-separated list) - */ - effective_bytes_death_in_values?: string; - /** - * Number of effective bytes before death (the from_value of the non-zero->0 transition, NULL if still alive) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_death_not_in_values?: string; - /** - * The maximum number of int_storage_slot_lifecycle_boundary to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotLifecycleBoundary` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_lifecycle_boundary'; -}; - -export type IntStorageSlotLifecycleBoundaryServiceListErrors = { + transaction_index_in_values?: string; /** - * Default error response + * The index of the transaction within the block (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntStorageSlotLifecycleBoundaryServiceListError = IntStorageSlotLifecycleBoundaryServiceListErrors[keyof IntStorageSlotLifecycleBoundaryServiceListErrors]; - -export type IntStorageSlotLifecycleBoundaryServiceListResponses = { + transaction_index_not_in_values?: string; /** - * OK + * Total compute gas (EVM execution + intrinsic compute) (filter: eq) */ - 200: ListIntStorageSlotLifecycleBoundaryResponse; -}; - -export type IntStorageSlotLifecycleBoundaryServiceListResponse = IntStorageSlotLifecycleBoundaryServiceListResponses[keyof IntStorageSlotLifecycleBoundaryServiceListResponses]; - -export type IntStorageSlotLifecycleBoundaryServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/int_storage_slot_lifecycle_boundary/{address}'; -}; - -export type IntStorageSlotLifecycleBoundaryServiceGetErrors = { + gas_compute_eq?: number; /** - * Default error response + * Total compute gas (EVM execution + intrinsic compute) (filter: ne) */ - default: Status; -}; - -export type IntStorageSlotLifecycleBoundaryServiceGetError = IntStorageSlotLifecycleBoundaryServiceGetErrors[keyof IntStorageSlotLifecycleBoundaryServiceGetErrors]; - -export type IntStorageSlotLifecycleBoundaryServiceGetResponses = { + gas_compute_ne?: number; /** - * OK + * Total compute gas (EVM execution + intrinsic compute) (filter: lt) */ - 200: GetIntStorageSlotLifecycleBoundaryResponse; -}; - -export type IntStorageSlotLifecycleBoundaryServiceGetResponse = IntStorageSlotLifecycleBoundaryServiceGetResponses[keyof IntStorageSlotLifecycleBoundaryServiceGetResponses]; - -export type IntStorageSlotNextTouchServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this slot was touched (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this slot was touched (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this slot was touched (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this slot was touched (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this slot was touched (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this slot was touched (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this slot was touched (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this slot was touched (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this slot was touched (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this slot was touched (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The next block number where this slot was touched (NULL if no subsequent touch) (filter: eq) - */ - next_touch_block_eq?: number; - /** - * The next block number where this slot was touched (NULL if no subsequent touch) (filter: ne) - */ - next_touch_block_ne?: number; - /** - * The next block number where this slot was touched (NULL if no subsequent touch) (filter: lt) - */ - next_touch_block_lt?: number; - /** - * The next block number where this slot was touched (NULL if no subsequent touch) (filter: lte) - */ - next_touch_block_lte?: number; - /** - * The next block number where this slot was touched (NULL if no subsequent touch) (filter: gt) - */ - next_touch_block_gt?: number; - /** - * The next block number where this slot was touched (NULL if no subsequent touch) (filter: gte) - */ - next_touch_block_gte?: number; - /** - * The next block number where this slot was touched (NULL if no subsequent touch) (filter: between_min) - */ - next_touch_block_between_min?: number; - /** - * The next block number where this slot was touched (NULL if no subsequent touch) (filter: between_max_value) - */ - next_touch_block_between_max_value?: number; - /** - * The next block number where this slot was touched (NULL if no subsequent touch) (filter: in_values) (comma-separated list) - */ - next_touch_block_in_values?: string; - /** - * The next block number where this slot was touched (NULL if no subsequent touch) (filter: not_in_values) (comma-separated list) - */ - next_touch_block_not_in_values?: string; - /** - * The maximum number of int_storage_slot_next_touch to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotNextTouch` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_next_touch'; -}; - -export type IntStorageSlotNextTouchServiceListErrors = { + gas_compute_lt?: number; /** - * Default error response + * Total compute gas (EVM execution + intrinsic compute) (filter: lte) */ - default: Status; -}; - -export type IntStorageSlotNextTouchServiceListError = IntStorageSlotNextTouchServiceListErrors[keyof IntStorageSlotNextTouchServiceListErrors]; - -export type IntStorageSlotNextTouchServiceListResponses = { + gas_compute_lte?: number; /** - * OK + * Total compute gas (EVM execution + intrinsic compute) (filter: gt) */ - 200: ListIntStorageSlotNextTouchResponse; -}; - -export type IntStorageSlotNextTouchServiceListResponse = IntStorageSlotNextTouchServiceListResponses[keyof IntStorageSlotNextTouchServiceListResponses]; - -export type IntStorageSlotNextTouchServiceGetData = { - body?: never; - path: { - /** - * The block number where this slot was touched - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_next_touch/{block_number}'; -}; - -export type IntStorageSlotNextTouchServiceGetErrors = { + gas_compute_gt?: number; /** - * Default error response + * Total compute gas (EVM execution + intrinsic compute) (filter: gte) */ - default: Status; -}; - -export type IntStorageSlotNextTouchServiceGetError = IntStorageSlotNextTouchServiceGetErrors[keyof IntStorageSlotNextTouchServiceGetErrors]; - -export type IntStorageSlotNextTouchServiceGetResponses = { + gas_compute_gte?: number; /** - * OK + * Total compute gas (EVM execution + intrinsic compute) (filter: between_min) */ - 200: GetIntStorageSlotNextTouchResponse; -}; - -export type IntStorageSlotNextTouchServiceGetResponse = IntStorageSlotNextTouchServiceGetResponses[keyof IntStorageSlotNextTouchServiceGetResponses]; - -export type IntStorageSlotReactivation1mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this slot was reactivated (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this slot was reactivated (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this slot was reactivated (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this slot was reactivated (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this slot was reactivated (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this slot was reactivated (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this slot was reactivated (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this slot was reactivated (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this slot was reactivated (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this slot was reactivated (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of effective bytes being reactivated (0-32) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Number of effective bytes being reactivated (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_reactivation_1m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotReactivation1m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_reactivation_1m'; -}; - -export type IntStorageSlotReactivation1mServiceListErrors = { + gas_compute_between_min?: number; /** - * Default error response + * Total compute gas (EVM execution + intrinsic compute) (filter: between_max_value) */ - default: Status; -}; - -export type IntStorageSlotReactivation1mServiceListError = IntStorageSlotReactivation1mServiceListErrors[keyof IntStorageSlotReactivation1mServiceListErrors]; - -export type IntStorageSlotReactivation1mServiceListResponses = { + gas_compute_between_max_value?: number; /** - * OK + * Total compute gas (EVM execution + intrinsic compute) (filter: in_values) (comma-separated list) */ - 200: ListIntStorageSlotReactivation1mResponse; -}; - -export type IntStorageSlotReactivation1mServiceListResponse = IntStorageSlotReactivation1mServiceListResponses[keyof IntStorageSlotReactivation1mServiceListResponses]; - -export type IntStorageSlotReactivation1mServiceGetData = { - body?: never; - path: { - /** - * The block number where this slot was reactivated - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_reactivation_1m/{block_number}'; -}; - -export type IntStorageSlotReactivation1mServiceGetErrors = { + gas_compute_in_values?: string; /** - * Default error response + * Total compute gas (EVM execution + intrinsic compute) (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntStorageSlotReactivation1mServiceGetError = IntStorageSlotReactivation1mServiceGetErrors[keyof IntStorageSlotReactivation1mServiceGetErrors]; - -export type IntStorageSlotReactivation1mServiceGetResponses = { + gas_compute_not_in_values?: string; /** - * OK + * Total memory expansion gas (filter: eq) */ - 200: GetIntStorageSlotReactivation1mResponse; -}; - -export type IntStorageSlotReactivation1mServiceGetResponse = IntStorageSlotReactivation1mServiceGetResponses[keyof IntStorageSlotReactivation1mServiceGetResponses]; - -export type IntStorageSlotReactivation6mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this slot was reactivated (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this slot was reactivated (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this slot was reactivated (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this slot was reactivated (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this slot was reactivated (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this slot was reactivated (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this slot was reactivated (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this slot was reactivated (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this slot was reactivated (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this slot was reactivated (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of effective bytes being reactivated (0-32) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Number of effective bytes being reactivated (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_reactivation_6m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotReactivation6m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_reactivation_6m'; -}; - -export type IntStorageSlotReactivation6mServiceListErrors = { + gas_memory_eq?: number; /** - * Default error response + * Total memory expansion gas (filter: ne) */ - default: Status; -}; - -export type IntStorageSlotReactivation6mServiceListError = IntStorageSlotReactivation6mServiceListErrors[keyof IntStorageSlotReactivation6mServiceListErrors]; - -export type IntStorageSlotReactivation6mServiceListResponses = { + gas_memory_ne?: number; /** - * OK + * Total memory expansion gas (filter: lt) */ - 200: ListIntStorageSlotReactivation6mResponse; -}; - -export type IntStorageSlotReactivation6mServiceListResponse = IntStorageSlotReactivation6mServiceListResponses[keyof IntStorageSlotReactivation6mServiceListResponses]; - -export type IntStorageSlotReactivation6mServiceGetData = { - body?: never; - path: { - /** - * The block number where this slot was reactivated - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_reactivation_6m/{block_number}'; -}; - -export type IntStorageSlotReactivation6mServiceGetErrors = { + gas_memory_lt?: number; /** - * Default error response + * Total memory expansion gas (filter: lte) */ - default: Status; -}; - -export type IntStorageSlotReactivation6mServiceGetError = IntStorageSlotReactivation6mServiceGetErrors[keyof IntStorageSlotReactivation6mServiceGetErrors]; - -export type IntStorageSlotReactivation6mServiceGetResponses = { + gas_memory_lte?: number; /** - * OK + * Total memory expansion gas (filter: gt) */ - 200: GetIntStorageSlotReactivation6mResponse; -}; - -export type IntStorageSlotReactivation6mServiceGetResponse = IntStorageSlotReactivation6mServiceGetResponses[keyof IntStorageSlotReactivation6mServiceGetResponses]; - -export type IntStorageSlotReactivation12mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this slot was reactivated (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this slot was reactivated (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this slot was reactivated (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this slot was reactivated (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this slot was reactivated (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this slot was reactivated (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this slot was reactivated (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this slot was reactivated (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this slot was reactivated (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this slot was reactivated (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of effective bytes being reactivated (0-32) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Number of effective bytes being reactivated (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_reactivation_12m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotReactivation12m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_reactivation_12m'; -}; - -export type IntStorageSlotReactivation12mServiceListErrors = { + gas_memory_gt?: number; /** - * Default error response + * Total memory expansion gas (filter: gte) */ - default: Status; -}; - -export type IntStorageSlotReactivation12mServiceListError = IntStorageSlotReactivation12mServiceListErrors[keyof IntStorageSlotReactivation12mServiceListErrors]; - -export type IntStorageSlotReactivation12mServiceListResponses = { + gas_memory_gte?: number; /** - * OK + * Total memory expansion gas (filter: between_min) */ - 200: ListIntStorageSlotReactivation12mResponse; -}; - -export type IntStorageSlotReactivation12mServiceListResponse = IntStorageSlotReactivation12mServiceListResponses[keyof IntStorageSlotReactivation12mServiceListResponses]; - -export type IntStorageSlotReactivation12mServiceGetData = { - body?: never; - path: { - /** - * The block number where this slot was reactivated - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_reactivation_12m/{block_number}'; -}; - -export type IntStorageSlotReactivation12mServiceGetErrors = { + gas_memory_between_min?: number; /** - * Default error response + * Total memory expansion gas (filter: between_max_value) */ - default: Status; -}; - -export type IntStorageSlotReactivation12mServiceGetError = IntStorageSlotReactivation12mServiceGetErrors[keyof IntStorageSlotReactivation12mServiceGetErrors]; - -export type IntStorageSlotReactivation12mServiceGetResponses = { + gas_memory_between_max_value?: number; /** - * OK + * Total memory expansion gas (filter: in_values) (comma-separated list) */ - 200: GetIntStorageSlotReactivation12mResponse; -}; - -export type IntStorageSlotReactivation12mServiceGetResponse = IntStorageSlotReactivation12mServiceGetResponses[keyof IntStorageSlotReactivation12mServiceGetResponses]; - -export type IntStorageSlotReactivation18mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this slot was reactivated (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this slot was reactivated (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this slot was reactivated (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this slot was reactivated (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this slot was reactivated (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this slot was reactivated (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this slot was reactivated (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this slot was reactivated (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this slot was reactivated (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this slot was reactivated (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of effective bytes being reactivated (0-32) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Number of effective bytes being reactivated (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_reactivation_18m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotReactivation18m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_reactivation_18m'; -}; - -export type IntStorageSlotReactivation18mServiceListErrors = { + gas_memory_in_values?: string; /** - * Default error response + * Total memory expansion gas (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntStorageSlotReactivation18mServiceListError = IntStorageSlotReactivation18mServiceListErrors[keyof IntStorageSlotReactivation18mServiceListErrors]; - -export type IntStorageSlotReactivation18mServiceListResponses = { + gas_memory_not_in_values?: string; /** - * OK + * Total cold address/storage access gas (filter: eq) */ - 200: ListIntStorageSlotReactivation18mResponse; -}; - -export type IntStorageSlotReactivation18mServiceListResponse = IntStorageSlotReactivation18mServiceListResponses[keyof IntStorageSlotReactivation18mServiceListResponses]; - -export type IntStorageSlotReactivation18mServiceGetData = { - body?: never; - path: { - /** - * The block number where this slot was reactivated - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_reactivation_18m/{block_number}'; -}; - -export type IntStorageSlotReactivation18mServiceGetErrors = { + gas_address_access_eq?: number; /** - * Default error response + * Total cold address/storage access gas (filter: ne) */ - default: Status; -}; - -export type IntStorageSlotReactivation18mServiceGetError = IntStorageSlotReactivation18mServiceGetErrors[keyof IntStorageSlotReactivation18mServiceGetErrors]; - -export type IntStorageSlotReactivation18mServiceGetResponses = { + gas_address_access_ne?: number; /** - * OK + * Total cold address/storage access gas (filter: lt) */ - 200: GetIntStorageSlotReactivation18mResponse; -}; - -export type IntStorageSlotReactivation18mServiceGetResponse = IntStorageSlotReactivation18mServiceGetResponses[keyof IntStorageSlotReactivation18mServiceGetResponses]; - -export type IntStorageSlotReactivation24mServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number where this slot was reactivated (filter: eq) - */ - block_number_eq?: number; - /** - * The block number where this slot was reactivated (filter: ne) - */ - block_number_ne?: number; - /** - * The block number where this slot was reactivated (filter: lt) - */ - block_number_lt?: number; - /** - * The block number where this slot was reactivated (filter: lte) - */ - block_number_lte?: number; - /** - * The block number where this slot was reactivated (filter: gt) - */ - block_number_gt?: number; - /** - * The block number where this slot was reactivated (filter: gte) - */ - block_number_gte?: number; - /** - * The block number where this slot was reactivated (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number where this slot was reactivated (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number where this slot was reactivated (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number where this slot was reactivated (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: eq) - */ - touch_block_eq?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: ne) - */ - touch_block_ne?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lt) - */ - touch_block_lt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: lte) - */ - touch_block_lte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gt) - */ - touch_block_gt?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: gte) - */ - touch_block_gte?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_min) - */ - touch_block_between_min?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: between_max_value) - */ - touch_block_between_max_value?: number; - /** - * The original touch block that expired (for matching with expiry records) (filter: in_values) (comma-separated list) - */ - touch_block_in_values?: string; - /** - * The original touch block that expired (for matching with expiry records) (filter: not_in_values) (comma-separated list) - */ - touch_block_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Number of effective bytes being reactivated (0-32) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Number of effective bytes being reactivated (0-32) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Number of effective bytes being reactivated (0-32) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_reactivation_24m to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotReactivation24m` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_reactivation_24m'; -}; - -export type IntStorageSlotReactivation24mServiceListErrors = { + gas_address_access_lt?: number; /** - * Default error response + * Total cold address/storage access gas (filter: lte) */ - default: Status; -}; - -export type IntStorageSlotReactivation24mServiceListError = IntStorageSlotReactivation24mServiceListErrors[keyof IntStorageSlotReactivation24mServiceListErrors]; - -export type IntStorageSlotReactivation24mServiceListResponses = { + gas_address_access_lte?: number; /** - * OK + * Total cold address/storage access gas (filter: gt) */ - 200: ListIntStorageSlotReactivation24mResponse; -}; - -export type IntStorageSlotReactivation24mServiceListResponse = IntStorageSlotReactivation24mServiceListResponses[keyof IntStorageSlotReactivation24mServiceListResponses]; - -export type IntStorageSlotReactivation24mServiceGetData = { - body?: never; - path: { - /** - * The block number where this slot was reactivated - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_reactivation_24m/{block_number}'; -}; - -export type IntStorageSlotReactivation24mServiceGetErrors = { + gas_address_access_gt?: number; /** - * Default error response + * Total cold address/storage access gas (filter: gte) */ - default: Status; -}; - -export type IntStorageSlotReactivation24mServiceGetError = IntStorageSlotReactivation24mServiceGetErrors[keyof IntStorageSlotReactivation24mServiceGetErrors]; - -export type IntStorageSlotReactivation24mServiceGetResponses = { + gas_address_access_gte?: number; /** - * OK + * Total cold address/storage access gas (filter: between_min) */ - 200: GetIntStorageSlotReactivation24mResponse; -}; - -export type IntStorageSlotReactivation24mServiceGetResponse = IntStorageSlotReactivation24mServiceGetResponses[keyof IntStorageSlotReactivation24mServiceGetResponses]; - -export type IntStorageSlotReadServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The storage slot key (filter: eq) - */ - slot_key_eq?: string; - /** - * The storage slot key (filter: ne) - */ - slot_key_ne?: string; - /** - * The storage slot key (filter: contains) - */ - slot_key_contains?: string; - /** - * The storage slot key (filter: starts_with) - */ - slot_key_starts_with?: string; - /** - * The storage slot key (filter: ends_with) - */ - slot_key_ends_with?: string; - /** - * The storage slot key (filter: like) - */ - slot_key_like?: string; - /** - * The storage slot key (filter: not_like) - */ - slot_key_not_like?: string; - /** - * The storage slot key (filter: in_values) (comma-separated list) - */ - slot_key_in_values?: string; - /** - * The storage slot key (filter: not_in_values) (comma-separated list) - */ - slot_key_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The maximum number of int_storage_slot_read to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotRead` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_read'; -}; - -export type IntStorageSlotReadServiceListErrors = { + gas_address_access_between_min?: number; /** - * Default error response + * Total cold address/storage access gas (filter: between_max_value) */ - default: Status; -}; - -export type IntStorageSlotReadServiceListError = IntStorageSlotReadServiceListErrors[keyof IntStorageSlotReadServiceListErrors]; - -export type IntStorageSlotReadServiceListResponses = { + gas_address_access_between_max_value?: number; /** - * OK + * Total cold address/storage access gas (filter: in_values) (comma-separated list) */ - 200: ListIntStorageSlotReadResponse; -}; - -export type IntStorageSlotReadServiceListResponse = IntStorageSlotReadServiceListResponses[keyof IntStorageSlotReadServiceListResponses]; - -export type IntStorageSlotReadServiceGetData = { - body?: never; - path: { - /** - * The block number - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_read/{block_number}'; -}; - -export type IntStorageSlotReadServiceGetErrors = { + gas_address_access_in_values?: string; /** - * Default error response + * Total cold address/storage access gas (filter: not_in_values) (comma-separated list) */ - default: Status; -}; - -export type IntStorageSlotReadServiceGetError = IntStorageSlotReadServiceGetErrors[keyof IntStorageSlotReadServiceGetErrors]; - -export type IntStorageSlotReadServiceGetResponses = { + gas_address_access_not_in_values?: string; /** - * OK + * Total state growth gas (filter: eq) */ - 200: GetIntStorageSlotReadResponse; -}; - -export type IntStorageSlotReadServiceGetResponse = IntStorageSlotReadServiceGetResponses[keyof IntStorageSlotReadServiceGetResponses]; - -export type IntStorageSlotStateServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: eq) - */ - slots_delta_eq?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: ne) - */ - slots_delta_ne?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lt) - */ - slots_delta_lt?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lte) - */ - slots_delta_lte?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gt) - */ - slots_delta_gt?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gte) - */ - slots_delta_gte?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_min) - */ - slots_delta_between_min?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_max_value) - */ - slots_delta_between_max_value?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) - */ - slots_delta_in_values?: string; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) - */ - slots_delta_not_in_values?: string; - /** - * Change in effective bytes for this block (filter: eq) - */ - bytes_delta_eq?: number; - /** - * Change in effective bytes for this block (filter: ne) - */ - bytes_delta_ne?: number; - /** - * Change in effective bytes for this block (filter: lt) - */ - bytes_delta_lt?: number; - /** - * Change in effective bytes for this block (filter: lte) - */ - bytes_delta_lte?: number; - /** - * Change in effective bytes for this block (filter: gt) - */ - bytes_delta_gt?: number; - /** - * Change in effective bytes for this block (filter: gte) - */ - bytes_delta_gte?: number; - /** - * Change in effective bytes for this block (filter: between_min) - */ - bytes_delta_between_min?: number; - /** - * Change in effective bytes for this block (filter: between_max_value) - */ - bytes_delta_between_max_value?: number; - /** - * Change in effective bytes for this block (filter: in_values) (comma-separated list) - */ - bytes_delta_in_values?: string; - /** - * Change in effective bytes for this block (filter: not_in_values) (comma-separated list) - */ - bytes_delta_not_in_values?: string; - /** - * Cumulative count of active storage slots for this address at this block (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots for this address at this block (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes for this address at this block (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes for this address at this block (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_state to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotState` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_state'; -}; - -export type IntStorageSlotStateServiceListErrors = { + gas_state_growth_eq?: number; /** - * Default error response + * Total state growth gas (filter: ne) */ - default: Status; -}; - -export type IntStorageSlotStateServiceListError = IntStorageSlotStateServiceListErrors[keyof IntStorageSlotStateServiceListErrors]; - -export type IntStorageSlotStateServiceListResponses = { + gas_state_growth_ne?: number; /** - * OK + * Total state growth gas (filter: lt) */ - 200: ListIntStorageSlotStateResponse; -}; - -export type IntStorageSlotStateServiceListResponse = IntStorageSlotStateServiceListResponses[keyof IntStorageSlotStateServiceListResponses]; - -export type IntStorageSlotStateServiceGetData = { - body?: never; - path: { - /** - * The block number - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_state/{block_number}'; -}; - -export type IntStorageSlotStateServiceGetErrors = { + gas_state_growth_lt?: number; /** - * Default error response + * Total state growth gas (filter: lte) */ - default: Status; -}; - -export type IntStorageSlotStateServiceGetError = IntStorageSlotStateServiceGetErrors[keyof IntStorageSlotStateServiceGetErrors]; - -export type IntStorageSlotStateServiceGetResponses = { + gas_state_growth_lte?: number; /** - * OK + * Total state growth gas (filter: gt) */ - 200: GetIntStorageSlotStateResponse; -}; - -export type IntStorageSlotStateServiceGetResponse = IntStorageSlotStateServiceGetResponses[keyof IntStorageSlotStateServiceGetResponses]; - -export type IntStorageSlotStateByAddressServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: eq) - */ - slots_delta_eq?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: ne) - */ - slots_delta_ne?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lt) - */ - slots_delta_lt?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lte) - */ - slots_delta_lte?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gt) - */ - slots_delta_gt?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gte) - */ - slots_delta_gte?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_min) - */ - slots_delta_between_min?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_max_value) - */ - slots_delta_between_max_value?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) - */ - slots_delta_in_values?: string; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) - */ - slots_delta_not_in_values?: string; - /** - * Change in effective bytes for this block (filter: eq) - */ - bytes_delta_eq?: number; - /** - * Change in effective bytes for this block (filter: ne) - */ - bytes_delta_ne?: number; - /** - * Change in effective bytes for this block (filter: lt) - */ - bytes_delta_lt?: number; - /** - * Change in effective bytes for this block (filter: lte) - */ - bytes_delta_lte?: number; - /** - * Change in effective bytes for this block (filter: gt) - */ - bytes_delta_gt?: number; - /** - * Change in effective bytes for this block (filter: gte) - */ - bytes_delta_gte?: number; - /** - * Change in effective bytes for this block (filter: between_min) - */ - bytes_delta_between_min?: number; - /** - * Change in effective bytes for this block (filter: between_max_value) - */ - bytes_delta_between_max_value?: number; - /** - * Change in effective bytes for this block (filter: in_values) (comma-separated list) - */ - bytes_delta_in_values?: string; - /** - * Change in effective bytes for this block (filter: not_in_values) (comma-separated list) - */ - bytes_delta_not_in_values?: string; - /** - * Cumulative count of active storage slots for this address at this block (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots for this address at this block (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots for this address at this block (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes for this address at this block (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes for this address at this block (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes for this address at this block (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_state_by_address to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotStateByAddress` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_state_by_address'; -}; - -export type IntStorageSlotStateByAddressServiceListErrors = { + gas_state_growth_gt?: number; + /** + * Total state growth gas (filter: gte) + */ + gas_state_growth_gte?: number; /** - * Default error response + * Total state growth gas (filter: between_min) */ - default: Status; -}; - -export type IntStorageSlotStateByAddressServiceListError = IntStorageSlotStateByAddressServiceListErrors[keyof IntStorageSlotStateByAddressServiceListErrors]; - -export type IntStorageSlotStateByAddressServiceListResponses = { + gas_state_growth_between_min?: number; /** - * OK + * Total state growth gas (filter: between_max_value) */ - 200: ListIntStorageSlotStateByAddressResponse; -}; - -export type IntStorageSlotStateByAddressServiceListResponse = IntStorageSlotStateByAddressServiceListResponses[keyof IntStorageSlotStateByAddressServiceListResponses]; - -export type IntStorageSlotStateByAddressServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/int_storage_slot_state_by_address/{address}'; -}; - -export type IntStorageSlotStateByAddressServiceGetErrors = { + gas_state_growth_between_max_value?: number; /** - * Default error response + * Total state growth gas (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntStorageSlotStateByAddressServiceGetError = IntStorageSlotStateByAddressServiceGetErrors[keyof IntStorageSlotStateByAddressServiceGetErrors]; - -export type IntStorageSlotStateByAddressServiceGetResponses = { + gas_state_growth_in_values?: string; /** - * OK + * Total state growth gas (filter: not_in_values) (comma-separated list) */ - 200: GetIntStorageSlotStateByAddressResponse; -}; - -export type IntStorageSlotStateByAddressServiceGetResponse = IntStorageSlotStateByAddressServiceGetResponses[keyof IntStorageSlotStateByAddressServiceGetResponses]; - -export type IntStorageSlotStateByBlockServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: eq) - */ - slots_delta_eq?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: ne) - */ - slots_delta_ne?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lt) - */ - slots_delta_lt?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: lte) - */ - slots_delta_lte?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gt) - */ - slots_delta_gt?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: gte) - */ - slots_delta_gte?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_min) - */ - slots_delta_between_min?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: between_max_value) - */ - slots_delta_between_max_value?: number; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: in_values) (comma-separated list) - */ - slots_delta_in_values?: string; - /** - * Change in active slots for this block (positive=activated, negative=deactivated) (filter: not_in_values) (comma-separated list) - */ - slots_delta_not_in_values?: string; - /** - * Change in effective bytes for this block (filter: eq) - */ - bytes_delta_eq?: number; - /** - * Change in effective bytes for this block (filter: ne) - */ - bytes_delta_ne?: number; - /** - * Change in effective bytes for this block (filter: lt) - */ - bytes_delta_lt?: number; - /** - * Change in effective bytes for this block (filter: lte) - */ - bytes_delta_lte?: number; - /** - * Change in effective bytes for this block (filter: gt) - */ - bytes_delta_gt?: number; - /** - * Change in effective bytes for this block (filter: gte) - */ - bytes_delta_gte?: number; - /** - * Change in effective bytes for this block (filter: between_min) - */ - bytes_delta_between_min?: number; - /** - * Change in effective bytes for this block (filter: between_max_value) - */ - bytes_delta_between_max_value?: number; - /** - * Change in effective bytes for this block (filter: in_values) (comma-separated list) - */ - bytes_delta_in_values?: string; - /** - * Change in effective bytes for this block (filter: not_in_values) (comma-separated list) - */ - bytes_delta_not_in_values?: string; - /** - * Cumulative count of active storage slots at this block (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at this block (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at this block (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at this block (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at this block (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at this block (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at this block (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at this block (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at this block (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at this block (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes across all active slots at this block (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_state_by_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotStateByBlock` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_state_by_block'; -}; - -export type IntStorageSlotStateByBlockServiceListErrors = { + gas_state_growth_not_in_values?: string; /** - * Default error response + * Total history/log data gas (filter: eq) */ - default: Status; -}; - -export type IntStorageSlotStateByBlockServiceListError = IntStorageSlotStateByBlockServiceListErrors[keyof IntStorageSlotStateByBlockServiceListErrors]; - -export type IntStorageSlotStateByBlockServiceListResponses = { + gas_history_eq?: number; /** - * OK + * Total history/log data gas (filter: ne) */ - 200: ListIntStorageSlotStateByBlockResponse; -}; - -export type IntStorageSlotStateByBlockServiceListResponse = IntStorageSlotStateByBlockServiceListResponses[keyof IntStorageSlotStateByBlockServiceListResponses]; - -export type IntStorageSlotStateByBlockServiceGetData = { - body?: never; - path: { - /** - * The block number - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_storage_slot_state_by_block/{block_number}'; -}; - -export type IntStorageSlotStateByBlockServiceGetErrors = { + gas_history_ne?: number; /** - * Default error response + * Total history/log data gas (filter: lt) */ - default: Status; -}; - -export type IntStorageSlotStateByBlockServiceGetError = IntStorageSlotStateByBlockServiceGetErrors[keyof IntStorageSlotStateByBlockServiceGetErrors]; - -export type IntStorageSlotStateByBlockServiceGetResponses = { + gas_history_lt?: number; /** - * OK + * Total history/log data gas (filter: lte) */ - 200: GetIntStorageSlotStateByBlockResponse; -}; - -export type IntStorageSlotStateByBlockServiceGetResponse = IntStorageSlotStateByBlockServiceGetResponses[keyof IntStorageSlotStateByBlockServiceGetResponses]; - -export type IntStorageSlotStateWithExpiryServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: eq) - */ - net_slots_delta_eq?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: ne) - */ - net_slots_delta_ne?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lt) - */ - net_slots_delta_lt?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lte) - */ - net_slots_delta_lte?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gt) - */ - net_slots_delta_gt?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gte) - */ - net_slots_delta_gte?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) - */ - net_slots_delta_between_min?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) - */ - net_slots_delta_between_max_value?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) - */ - net_slots_delta_in_values?: string; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) - */ - net_slots_delta_not_in_values?: string; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: eq) - */ - net_bytes_delta_eq?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: ne) - */ - net_bytes_delta_ne?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lt) - */ - net_bytes_delta_lt?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lte) - */ - net_bytes_delta_lte?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gt) - */ - net_bytes_delta_gt?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gte) - */ - net_bytes_delta_gte?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) - */ - net_bytes_delta_between_min?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) - */ - net_bytes_delta_between_max_value?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) - */ - net_bytes_delta_in_values?: string; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) - */ - net_bytes_delta_not_in_values?: string; - /** - * Cumulative net slot adjustment up to this block (filter: eq) - */ - cumulative_net_slots_eq?: number; - /** - * Cumulative net slot adjustment up to this block (filter: ne) - */ - cumulative_net_slots_ne?: number; - /** - * Cumulative net slot adjustment up to this block (filter: lt) - */ - cumulative_net_slots_lt?: number; - /** - * Cumulative net slot adjustment up to this block (filter: lte) - */ - cumulative_net_slots_lte?: number; - /** - * Cumulative net slot adjustment up to this block (filter: gt) - */ - cumulative_net_slots_gt?: number; - /** - * Cumulative net slot adjustment up to this block (filter: gte) - */ - cumulative_net_slots_gte?: number; - /** - * Cumulative net slot adjustment up to this block (filter: between_min) - */ - cumulative_net_slots_between_min?: number; - /** - * Cumulative net slot adjustment up to this block (filter: between_max_value) - */ - cumulative_net_slots_between_max_value?: number; - /** - * Cumulative net slot adjustment up to this block (filter: in_values) (comma-separated list) - */ - cumulative_net_slots_in_values?: string; - /** - * Cumulative net slot adjustment up to this block (filter: not_in_values) (comma-separated list) - */ - cumulative_net_slots_not_in_values?: string; - /** - * Cumulative net bytes adjustment up to this block (filter: eq) - */ - cumulative_net_bytes_eq?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: ne) - */ - cumulative_net_bytes_ne?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: lt) - */ - cumulative_net_bytes_lt?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: lte) - */ - cumulative_net_bytes_lte?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: gt) - */ - cumulative_net_bytes_gt?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: gte) - */ - cumulative_net_bytes_gte?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: between_min) - */ - cumulative_net_bytes_between_min?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: between_max_value) - */ - cumulative_net_bytes_between_max_value?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: in_values) (comma-separated list) - */ - cumulative_net_bytes_in_values?: string; - /** - * Cumulative net bytes adjustment up to this block (filter: not_in_values) (comma-separated list) - */ - cumulative_net_bytes_not_in_values?: string; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_state_with_expiry to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotStateWithExpiry` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_state_with_expiry'; -}; - -export type IntStorageSlotStateWithExpiryServiceListErrors = { + gas_history_lte?: number; /** - * Default error response + * Total history/log data gas (filter: gt) */ - default: Status; -}; - -export type IntStorageSlotStateWithExpiryServiceListError = IntStorageSlotStateWithExpiryServiceListErrors[keyof IntStorageSlotStateWithExpiryServiceListErrors]; - -export type IntStorageSlotStateWithExpiryServiceListResponses = { + gas_history_gt?: number; /** - * OK + * Total history/log data gas (filter: gte) */ - 200: ListIntStorageSlotStateWithExpiryResponse; -}; - -export type IntStorageSlotStateWithExpiryServiceListResponse = IntStorageSlotStateWithExpiryServiceListResponses[keyof IntStorageSlotStateWithExpiryServiceListResponses]; - -export type IntStorageSlotStateWithExpiryServiceGetData = { - body?: never; - path: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy: string; - }; - query?: never; - url: '/api/v1/int_storage_slot_state_with_expiry/{expiry_policy}'; -}; - -export type IntStorageSlotStateWithExpiryServiceGetErrors = { + gas_history_gte?: number; /** - * Default error response + * Total history/log data gas (filter: between_min) */ - default: Status; -}; - -export type IntStorageSlotStateWithExpiryServiceGetError = IntStorageSlotStateWithExpiryServiceGetErrors[keyof IntStorageSlotStateWithExpiryServiceGetErrors]; - -export type IntStorageSlotStateWithExpiryServiceGetResponses = { + gas_history_between_min?: number; /** - * OK + * Total history/log data gas (filter: between_max_value) */ - 200: GetIntStorageSlotStateWithExpiryResponse; -}; - -export type IntStorageSlotStateWithExpiryServiceGetResponse = IntStorageSlotStateWithExpiryServiceGetResponses[keyof IntStorageSlotStateWithExpiryServiceGetResponses]; - -export type IntStorageSlotStateWithExpiryByAddressServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The contract address (filter: eq) - */ - address_eq?: string; - /** - * The contract address (filter: ne) - */ - address_ne?: string; - /** - * The contract address (filter: contains) - */ - address_contains?: string; - /** - * The contract address (filter: starts_with) - */ - address_starts_with?: string; - /** - * The contract address (filter: ends_with) - */ - address_ends_with?: string; - /** - * The contract address (filter: like) - */ - address_like?: string; - /** - * The contract address (filter: not_like) - */ - address_not_like?: string; - /** - * The contract address (filter: in_values) (comma-separated list) - */ - address_in_values?: string; - /** - * The contract address (filter: not_in_values) (comma-separated list) - */ - address_not_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: eq) - */ - net_slots_delta_eq?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: ne) - */ - net_slots_delta_ne?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lt) - */ - net_slots_delta_lt?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lte) - */ - net_slots_delta_lte?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gt) - */ - net_slots_delta_gt?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gte) - */ - net_slots_delta_gte?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) - */ - net_slots_delta_between_min?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) - */ - net_slots_delta_between_max_value?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) - */ - net_slots_delta_in_values?: string; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) - */ - net_slots_delta_not_in_values?: string; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: eq) - */ - net_bytes_delta_eq?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: ne) - */ - net_bytes_delta_ne?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lt) - */ - net_bytes_delta_lt?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lte) - */ - net_bytes_delta_lte?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gt) - */ - net_bytes_delta_gt?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gte) - */ - net_bytes_delta_gte?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) - */ - net_bytes_delta_between_min?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) - */ - net_bytes_delta_between_max_value?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) - */ - net_bytes_delta_in_values?: string; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) - */ - net_bytes_delta_not_in_values?: string; - /** - * Cumulative net slot adjustment up to this block (filter: eq) - */ - cumulative_net_slots_eq?: number; - /** - * Cumulative net slot adjustment up to this block (filter: ne) - */ - cumulative_net_slots_ne?: number; - /** - * Cumulative net slot adjustment up to this block (filter: lt) - */ - cumulative_net_slots_lt?: number; - /** - * Cumulative net slot adjustment up to this block (filter: lte) - */ - cumulative_net_slots_lte?: number; - /** - * Cumulative net slot adjustment up to this block (filter: gt) - */ - cumulative_net_slots_gt?: number; - /** - * Cumulative net slot adjustment up to this block (filter: gte) - */ - cumulative_net_slots_gte?: number; - /** - * Cumulative net slot adjustment up to this block (filter: between_min) - */ - cumulative_net_slots_between_min?: number; - /** - * Cumulative net slot adjustment up to this block (filter: between_max_value) - */ - cumulative_net_slots_between_max_value?: number; - /** - * Cumulative net slot adjustment up to this block (filter: in_values) (comma-separated list) - */ - cumulative_net_slots_in_values?: string; - /** - * Cumulative net slot adjustment up to this block (filter: not_in_values) (comma-separated list) - */ - cumulative_net_slots_not_in_values?: string; - /** - * Cumulative net bytes adjustment up to this block (filter: eq) - */ - cumulative_net_bytes_eq?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: ne) - */ - cumulative_net_bytes_ne?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: lt) - */ - cumulative_net_bytes_lt?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: lte) - */ - cumulative_net_bytes_lte?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: gt) - */ - cumulative_net_bytes_gt?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: gte) - */ - cumulative_net_bytes_gte?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: between_min) - */ - cumulative_net_bytes_between_min?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: between_max_value) - */ - cumulative_net_bytes_between_max_value?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: in_values) (comma-separated list) - */ - cumulative_net_bytes_in_values?: string; - /** - * Cumulative net bytes adjustment up to this block (filter: not_in_values) (comma-separated list) - */ - cumulative_net_bytes_not_in_values?: string; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots for this address at this block (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes for this address at this block (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_state_with_expiry_by_address to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotStateWithExpiryByAddress` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_state_with_expiry_by_address'; -}; - -export type IntStorageSlotStateWithExpiryByAddressServiceListErrors = { + gas_history_between_max_value?: number; /** - * Default error response + * Total history/log data gas (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntStorageSlotStateWithExpiryByAddressServiceListError = IntStorageSlotStateWithExpiryByAddressServiceListErrors[keyof IntStorageSlotStateWithExpiryByAddressServiceListErrors]; - -export type IntStorageSlotStateWithExpiryByAddressServiceListResponses = { + gas_history_in_values?: string; /** - * OK + * Total history/log data gas (filter: not_in_values) (comma-separated list) */ - 200: ListIntStorageSlotStateWithExpiryByAddressResponse; -}; - -export type IntStorageSlotStateWithExpiryByAddressServiceListResponse = IntStorageSlotStateWithExpiryByAddressServiceListResponses[keyof IntStorageSlotStateWithExpiryByAddressServiceListResponses]; - -export type IntStorageSlotStateWithExpiryByAddressServiceGetData = { - body?: never; - path: { - /** - * The contract address - */ - address: string; - }; - query?: never; - url: '/api/v1/int_storage_slot_state_with_expiry_by_address/{address}'; -}; - -export type IntStorageSlotStateWithExpiryByAddressServiceGetErrors = { + gas_history_not_in_values?: string; /** - * Default error response + * Total bloom filter topic gas (filter: eq) */ - default: Status; -}; - -export type IntStorageSlotStateWithExpiryByAddressServiceGetError = IntStorageSlotStateWithExpiryByAddressServiceGetErrors[keyof IntStorageSlotStateWithExpiryByAddressServiceGetErrors]; - -export type IntStorageSlotStateWithExpiryByAddressServiceGetResponses = { + gas_bloom_topics_eq?: number; /** - * OK + * Total bloom filter topic gas (filter: ne) */ - 200: GetIntStorageSlotStateWithExpiryByAddressResponse; -}; - -export type IntStorageSlotStateWithExpiryByAddressServiceGetResponse = IntStorageSlotStateWithExpiryByAddressServiceGetResponses[keyof IntStorageSlotStateWithExpiryByAddressServiceGetResponses]; - -export type IntStorageSlotStateWithExpiryByBlockServiceListData = { - body?: never; - path?: never; - query?: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: eq) - */ - expiry_policy_eq?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ne) - */ - expiry_policy_ne?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: contains) - */ - expiry_policy_contains?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: starts_with) - */ - expiry_policy_starts_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: ends_with) - */ - expiry_policy_ends_with?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: like) - */ - expiry_policy_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_like) - */ - expiry_policy_not_like?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: in_values) (comma-separated list) - */ - expiry_policy_in_values?: string; - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m (filter: not_in_values) (comma-separated list) - */ - expiry_policy_not_in_values?: string; - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: eq) - */ - net_slots_delta_eq?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: ne) - */ - net_slots_delta_ne?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lt) - */ - net_slots_delta_lt?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: lte) - */ - net_slots_delta_lte?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gt) - */ - net_slots_delta_gt?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: gte) - */ - net_slots_delta_gte?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) - */ - net_slots_delta_between_min?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) - */ - net_slots_delta_between_max_value?: number; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) - */ - net_slots_delta_in_values?: string; - /** - * Net slot adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) - */ - net_slots_delta_not_in_values?: string; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: eq) - */ - net_bytes_delta_eq?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: ne) - */ - net_bytes_delta_ne?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lt) - */ - net_bytes_delta_lt?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: lte) - */ - net_bytes_delta_lte?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gt) - */ - net_bytes_delta_gt?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: gte) - */ - net_bytes_delta_gte?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_min) - */ - net_bytes_delta_between_min?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: between_max_value) - */ - net_bytes_delta_between_max_value?: number; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: in_values) (comma-separated list) - */ - net_bytes_delta_in_values?: string; - /** - * Net bytes adjustment this block (negative=expiry, positive=reactivation) (filter: not_in_values) (comma-separated list) - */ - net_bytes_delta_not_in_values?: string; - /** - * Cumulative net slot adjustment up to this block (filter: eq) - */ - cumulative_net_slots_eq?: number; - /** - * Cumulative net slot adjustment up to this block (filter: ne) - */ - cumulative_net_slots_ne?: number; - /** - * Cumulative net slot adjustment up to this block (filter: lt) - */ - cumulative_net_slots_lt?: number; - /** - * Cumulative net slot adjustment up to this block (filter: lte) - */ - cumulative_net_slots_lte?: number; - /** - * Cumulative net slot adjustment up to this block (filter: gt) - */ - cumulative_net_slots_gt?: number; - /** - * Cumulative net slot adjustment up to this block (filter: gte) - */ - cumulative_net_slots_gte?: number; - /** - * Cumulative net slot adjustment up to this block (filter: between_min) - */ - cumulative_net_slots_between_min?: number; - /** - * Cumulative net slot adjustment up to this block (filter: between_max_value) - */ - cumulative_net_slots_between_max_value?: number; - /** - * Cumulative net slot adjustment up to this block (filter: in_values) (comma-separated list) - */ - cumulative_net_slots_in_values?: string; - /** - * Cumulative net slot adjustment up to this block (filter: not_in_values) (comma-separated list) - */ - cumulative_net_slots_not_in_values?: string; - /** - * Cumulative net bytes adjustment up to this block (filter: eq) - */ - cumulative_net_bytes_eq?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: ne) - */ - cumulative_net_bytes_ne?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: lt) - */ - cumulative_net_bytes_lt?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: lte) - */ - cumulative_net_bytes_lte?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: gt) - */ - cumulative_net_bytes_gt?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: gte) - */ - cumulative_net_bytes_gte?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: between_min) - */ - cumulative_net_bytes_between_min?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: between_max_value) - */ - cumulative_net_bytes_between_max_value?: number; - /** - * Cumulative net bytes adjustment up to this block (filter: in_values) (comma-separated list) - */ - cumulative_net_bytes_in_values?: string; - /** - * Cumulative net bytes adjustment up to this block (filter: not_in_values) (comma-separated list) - */ - cumulative_net_bytes_not_in_values?: string; - /** - * Cumulative count of active storage slots at this block (with expiry applied) (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative count of active storage slots at this block (with expiry applied) (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative count of active storage slots at this block (with expiry applied) (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative count of active storage slots at this block (with expiry applied) (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative count of active storage slots at this block (with expiry applied) (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative count of active storage slots at this block (with expiry applied) (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative count of active storage slots at this block (with expiry applied) (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative count of active storage slots at this block (with expiry applied) (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative count of active storage slots at this block (with expiry applied) (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative count of active storage slots at this block (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * Cumulative sum of effective bytes at this block (with expiry applied) (filter: eq) - */ - effective_bytes_eq?: number; - /** - * Cumulative sum of effective bytes at this block (with expiry applied) (filter: ne) - */ - effective_bytes_ne?: number; - /** - * Cumulative sum of effective bytes at this block (with expiry applied) (filter: lt) - */ - effective_bytes_lt?: number; - /** - * Cumulative sum of effective bytes at this block (with expiry applied) (filter: lte) - */ - effective_bytes_lte?: number; - /** - * Cumulative sum of effective bytes at this block (with expiry applied) (filter: gt) - */ - effective_bytes_gt?: number; - /** - * Cumulative sum of effective bytes at this block (with expiry applied) (filter: gte) - */ - effective_bytes_gte?: number; - /** - * Cumulative sum of effective bytes at this block (with expiry applied) (filter: between_min) - */ - effective_bytes_between_min?: number; - /** - * Cumulative sum of effective bytes at this block (with expiry applied) (filter: between_max_value) - */ - effective_bytes_between_max_value?: number; - /** - * Cumulative sum of effective bytes at this block (with expiry applied) (filter: in_values) (comma-separated list) - */ - effective_bytes_in_values?: string; - /** - * Cumulative sum of effective bytes at this block (with expiry applied) (filter: not_in_values) (comma-separated list) - */ - effective_bytes_not_in_values?: string; - /** - * The maximum number of int_storage_slot_state_with_expiry_by_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntStorageSlotStateWithExpiryByBlock` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_storage_slot_state_with_expiry_by_block'; -}; - -export type IntStorageSlotStateWithExpiryByBlockServiceListErrors = { + gas_bloom_topics_ne?: number; /** - * Default error response + * Total bloom filter topic gas (filter: lt) */ - default: Status; -}; - -export type IntStorageSlotStateWithExpiryByBlockServiceListError = IntStorageSlotStateWithExpiryByBlockServiceListErrors[keyof IntStorageSlotStateWithExpiryByBlockServiceListErrors]; - -export type IntStorageSlotStateWithExpiryByBlockServiceListResponses = { + gas_bloom_topics_lt?: number; /** - * OK + * Total bloom filter topic gas (filter: lte) */ - 200: ListIntStorageSlotStateWithExpiryByBlockResponse; -}; - -export type IntStorageSlotStateWithExpiryByBlockServiceListResponse = IntStorageSlotStateWithExpiryByBlockServiceListResponses[keyof IntStorageSlotStateWithExpiryByBlockServiceListResponses]; - -export type IntStorageSlotStateWithExpiryByBlockServiceGetData = { - body?: never; - path: { - /** - * Expiry policy identifier: 1m, 6m, 12m, 18m, 24m - */ - expiry_policy: string; - }; - query?: never; - url: '/api/v1/int_storage_slot_state_with_expiry_by_block/{expiry_policy}'; -}; - -export type IntStorageSlotStateWithExpiryByBlockServiceGetErrors = { + gas_bloom_topics_lte?: number; /** - * Default error response + * Total bloom filter topic gas (filter: gt) */ - default: Status; -}; - -export type IntStorageSlotStateWithExpiryByBlockServiceGetError = IntStorageSlotStateWithExpiryByBlockServiceGetErrors[keyof IntStorageSlotStateWithExpiryByBlockServiceGetErrors]; - -export type IntStorageSlotStateWithExpiryByBlockServiceGetResponses = { + gas_bloom_topics_gt?: number; /** - * OK + * Total bloom filter topic gas (filter: gte) */ - 200: GetIntStorageSlotStateWithExpiryByBlockResponse; -}; - -export type IntStorageSlotStateWithExpiryByBlockServiceGetResponse = IntStorageSlotStateWithExpiryByBlockServiceGetResponses[keyof IntStorageSlotStateWithExpiryByBlockServiceGetResponses]; - -export type IntTokenContractStorageStateByBlockServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number (filter: eq) - */ - block_number_eq?: number; - /** - * The block number (filter: ne) - */ - block_number_ne?: number; - /** - * The block number (filter: lt) - */ - block_number_lt?: number; - /** - * The block number (filter: lte) - */ - block_number_lte?: number; - /** - * The block number (filter: gt) - */ - block_number_gt?: number; - /** - * The block number (filter: gte) - */ - block_number_gte?: number; - /** - * The block number (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * Token standard: erc20 or erc721 (filter: eq) - */ - token_standard_eq?: string; - /** - * Token standard: erc20 or erc721 (filter: ne) - */ - token_standard_ne?: string; - /** - * Token standard: erc20 or erc721 (filter: contains) - */ - token_standard_contains?: string; - /** - * Token standard: erc20 or erc721 (filter: starts_with) - */ - token_standard_starts_with?: string; - /** - * Token standard: erc20 or erc721 (filter: ends_with) - */ - token_standard_ends_with?: string; - /** - * Token standard: erc20 or erc721 (filter: like) - */ - token_standard_like?: string; - /** - * Token standard: erc20 or erc721 (filter: not_like) - */ - token_standard_not_like?: string; - /** - * Token standard: erc20 or erc721 (filter: in_values) (comma-separated list) - */ - token_standard_in_values?: string; - /** - * Token standard: erc20 or erc721 (filter: not_in_values) (comma-separated list) - */ - token_standard_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Change in active slots owned by contracts of this standard at this block (filter: eq) - */ - slots_delta_eq?: number; - /** - * Change in active slots owned by contracts of this standard at this block (filter: ne) - */ - slots_delta_ne?: number; - /** - * Change in active slots owned by contracts of this standard at this block (filter: lt) - */ - slots_delta_lt?: number; - /** - * Change in active slots owned by contracts of this standard at this block (filter: lte) - */ - slots_delta_lte?: number; - /** - * Change in active slots owned by contracts of this standard at this block (filter: gt) - */ - slots_delta_gt?: number; - /** - * Change in active slots owned by contracts of this standard at this block (filter: gte) - */ - slots_delta_gte?: number; - /** - * Change in active slots owned by contracts of this standard at this block (filter: between_min) - */ - slots_delta_between_min?: number; - /** - * Change in active slots owned by contracts of this standard at this block (filter: between_max_value) - */ - slots_delta_between_max_value?: number; - /** - * Change in active slots owned by contracts of this standard at this block (filter: in_values) (comma-separated list) - */ - slots_delta_in_values?: string; - /** - * Change in active slots owned by contracts of this standard at this block (filter: not_in_values) (comma-separated list) - */ - slots_delta_not_in_values?: string; - /** - * Cumulative active storage slots owned by contracts of this standard at this block (filter: eq) - */ - active_slots_eq?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at this block (filter: ne) - */ - active_slots_ne?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at this block (filter: lt) - */ - active_slots_lt?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at this block (filter: lte) - */ - active_slots_lte?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at this block (filter: gt) - */ - active_slots_gt?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at this block (filter: gte) - */ - active_slots_gte?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at this block (filter: between_min) - */ - active_slots_between_min?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at this block (filter: between_max_value) - */ - active_slots_between_max_value?: number; - /** - * Cumulative active storage slots owned by contracts of this standard at this block (filter: in_values) (comma-separated list) - */ - active_slots_in_values?: string; - /** - * Cumulative active storage slots owned by contracts of this standard at this block (filter: not_in_values) (comma-separated list) - */ - active_slots_not_in_values?: string; - /** - * The maximum number of int_token_contract_storage_state_by_block to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntTokenContractStorageStateByBlock` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_token_contract_storage_state_by_block'; -}; - -export type IntTokenContractStorageStateByBlockServiceListErrors = { + gas_bloom_topics_gte?: number; /** - * Default error response + * Total bloom filter topic gas (filter: between_min) */ - default: Status; -}; - -export type IntTokenContractStorageStateByBlockServiceListError = IntTokenContractStorageStateByBlockServiceListErrors[keyof IntTokenContractStorageStateByBlockServiceListErrors]; - -export type IntTokenContractStorageStateByBlockServiceListResponses = { + gas_bloom_topics_between_min?: number; /** - * OK + * Total bloom filter topic gas (filter: between_max_value) */ - 200: ListIntTokenContractStorageStateByBlockResponse; -}; - -export type IntTokenContractStorageStateByBlockServiceListResponse = IntTokenContractStorageStateByBlockServiceListResponses[keyof IntTokenContractStorageStateByBlockServiceListResponses]; - -export type IntTokenContractStorageStateByBlockServiceGetData = { - body?: never; - path: { - /** - * The block number - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_token_contract_storage_state_by_block/{block_number}'; -}; - -export type IntTokenContractStorageStateByBlockServiceGetErrors = { + gas_bloom_topics_between_max_value?: number; /** - * Default error response + * Total bloom filter topic gas (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntTokenContractStorageStateByBlockServiceGetError = IntTokenContractStorageStateByBlockServiceGetErrors[keyof IntTokenContractStorageStateByBlockServiceGetErrors]; - -export type IntTokenContractStorageStateByBlockServiceGetResponses = { + gas_bloom_topics_in_values?: string; /** - * OK + * Total bloom filter topic gas (filter: not_in_values) (comma-separated list) */ - 200: GetIntTokenContractStorageStateByBlockResponse; -}; - -export type IntTokenContractStorageStateByBlockServiceGetResponse = IntTokenContractStorageStateByBlockServiceGetResponses[keyof IntTokenContractStorageStateByBlockServiceGetResponses]; - -export type IntTransactionCallFrameServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number containing this transaction (filter: eq) - */ - block_number_eq?: number; - /** - * The block number containing this transaction (filter: ne) - */ - block_number_ne?: number; - /** - * The block number containing this transaction (filter: lt) - */ - block_number_lt?: number; - /** - * The block number containing this transaction (filter: lte) - */ - block_number_lte?: number; - /** - * The block number containing this transaction (filter: gt) - */ - block_number_gt?: number; - /** - * The block number containing this transaction (filter: gte) - */ - block_number_gte?: number; - /** - * The block number containing this transaction (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number containing this transaction (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number containing this transaction (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number containing this transaction (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: eq) - */ - transaction_hash_eq?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: ne) - */ - transaction_hash_ne?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: contains) - */ - transaction_hash_contains?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: starts_with) - */ - transaction_hash_starts_with?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: ends_with) - */ - transaction_hash_ends_with?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: like) - */ - transaction_hash_like?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: not_like) - */ - transaction_hash_not_like?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - transaction_hash_in_values?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - transaction_hash_not_in_values?: string; - /** - * Sequential frame ID within the transaction (0 = root) (filter: eq) - */ - call_frame_id_eq?: number; - /** - * Sequential frame ID within the transaction (0 = root) (filter: ne) - */ - call_frame_id_ne?: number; - /** - * Sequential frame ID within the transaction (0 = root) (filter: lt) - */ - call_frame_id_lt?: number; - /** - * Sequential frame ID within the transaction (0 = root) (filter: lte) - */ - call_frame_id_lte?: number; - /** - * Sequential frame ID within the transaction (0 = root) (filter: gt) - */ - call_frame_id_gt?: number; - /** - * Sequential frame ID within the transaction (0 = root) (filter: gte) - */ - call_frame_id_gte?: number; - /** - * Sequential frame ID within the transaction (0 = root) (filter: between_min) - */ - call_frame_id_between_min?: number; - /** - * Sequential frame ID within the transaction (0 = root) (filter: between_max_value) - */ - call_frame_id_between_max_value?: number; - /** - * Sequential frame ID within the transaction (0 = root) (filter: in_values) (comma-separated list) - */ - call_frame_id_in_values?: string; - /** - * Sequential frame ID within the transaction (0 = root) (filter: not_in_values) (comma-separated list) - */ - call_frame_id_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * Position of the transaction within the block (filter: eq) - */ - transaction_index_eq?: number; - /** - * Position of the transaction within the block (filter: ne) - */ - transaction_index_ne?: number; - /** - * Position of the transaction within the block (filter: lt) - */ - transaction_index_lt?: number; - /** - * Position of the transaction within the block (filter: lte) - */ - transaction_index_lte?: number; - /** - * Position of the transaction within the block (filter: gt) - */ - transaction_index_gt?: number; - /** - * Position of the transaction within the block (filter: gte) - */ - transaction_index_gte?: number; - /** - * Position of the transaction within the block (filter: between_min) - */ - transaction_index_between_min?: number; - /** - * Position of the transaction within the block (filter: between_max_value) - */ - transaction_index_between_max_value?: number; - /** - * Position of the transaction within the block (filter: in_values) (comma-separated list) - */ - transaction_index_in_values?: string; - /** - * Position of the transaction within the block (filter: not_in_values) (comma-separated list) - */ - transaction_index_not_in_values?: string; - /** - * Parent frame ID (NULL for root frame) (filter: eq) - */ - parent_call_frame_id_eq?: number; - /** - * Parent frame ID (NULL for root frame) (filter: ne) - */ - parent_call_frame_id_ne?: number; - /** - * Parent frame ID (NULL for root frame) (filter: lt) - */ - parent_call_frame_id_lt?: number; - /** - * Parent frame ID (NULL for root frame) (filter: lte) - */ - parent_call_frame_id_lte?: number; - /** - * Parent frame ID (NULL for root frame) (filter: gt) - */ - parent_call_frame_id_gt?: number; - /** - * Parent frame ID (NULL for root frame) (filter: gte) - */ - parent_call_frame_id_gte?: number; - /** - * Parent frame ID (NULL for root frame) (filter: between_min) - */ - parent_call_frame_id_between_min?: number; - /** - * Parent frame ID (NULL for root frame) (filter: between_max_value) - */ - parent_call_frame_id_between_max_value?: number; - /** - * Parent frame ID (NULL for root frame) (filter: in_values) (comma-separated list) - */ - parent_call_frame_id_in_values?: string; - /** - * Parent frame ID (NULL for root frame) (filter: not_in_values) (comma-separated list) - */ - parent_call_frame_id_not_in_values?: string; - /** - * Call depth (0 = root transaction execution) (filter: eq) - */ - depth_eq?: number; - /** - * Call depth (0 = root transaction execution) (filter: ne) - */ - depth_ne?: number; - /** - * Call depth (0 = root transaction execution) (filter: lt) - */ - depth_lt?: number; - /** - * Call depth (0 = root transaction execution) (filter: lte) - */ - depth_lte?: number; - /** - * Call depth (0 = root transaction execution) (filter: gt) - */ - depth_gt?: number; - /** - * Call depth (0 = root transaction execution) (filter: gte) - */ - depth_gte?: number; - /** - * Call depth (0 = root transaction execution) (filter: between_min) - */ - depth_between_min?: number; - /** - * Call depth (0 = root transaction execution) (filter: between_max_value) - */ - depth_between_max_value?: number; - /** - * Call depth (0 = root transaction execution) (filter: in_values) (comma-separated list) - */ - depth_in_values?: string; - /** - * Call depth (0 = root transaction execution) (filter: not_in_values) (comma-separated list) - */ - depth_not_in_values?: string; - /** - * Contract address being called (hex encoded with 0x prefix) (filter: eq) - */ - target_address_eq?: string; - /** - * Contract address being called (hex encoded with 0x prefix) (filter: ne) - */ - target_address_ne?: string; - /** - * Contract address being called (hex encoded with 0x prefix) (filter: contains) - */ - target_address_contains?: string; - /** - * Contract address being called (hex encoded with 0x prefix) (filter: starts_with) - */ - target_address_starts_with?: string; - /** - * Contract address being called (hex encoded with 0x prefix) (filter: ends_with) - */ - target_address_ends_with?: string; - /** - * Contract address being called (hex encoded with 0x prefix) (filter: like) - */ - target_address_like?: string; - /** - * Contract address being called (hex encoded with 0x prefix) (filter: not_like) - */ - target_address_not_like?: string; - /** - * Contract address being called (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - target_address_in_values?: string; - /** - * Contract address being called (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - target_address_not_in_values?: string; - /** - * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: eq) - */ - call_type_eq?: string; - /** - * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: ne) - */ - call_type_ne?: string; - /** - * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: contains) - */ - call_type_contains?: string; - /** - * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: starts_with) - */ - call_type_starts_with?: string; - /** - * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: ends_with) - */ - call_type_ends_with?: string; - /** - * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: like) - */ - call_type_like?: string; - /** - * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: not_like) - */ - call_type_not_like?: string; - /** - * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: in_values) (comma-separated list) - */ - call_type_in_values?: string; - /** - * Type of call opcode (CALL, DELEGATECALL, STATICCALL, CALLCODE, CREATE, CREATE2) (filter: not_in_values) (comma-separated list) - */ - call_type_not_in_values?: string; - /** - * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: eq) - */ - function_selector_eq?: string; - /** - * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: ne) - */ - function_selector_ne?: string; - /** - * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: contains) - */ - function_selector_contains?: string; - /** - * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: starts_with) - */ - function_selector_starts_with?: string; - /** - * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: ends_with) - */ - function_selector_ends_with?: string; - /** - * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: like) - */ - function_selector_like?: string; - /** - * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: not_like) - */ - function_selector_not_like?: string; - /** - * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: in_values) (comma-separated list) - */ - function_selector_in_values?: string; - /** - * Function selector (first 4 bytes of call input, hex encoded with 0x prefix). Populated for all frames from traces. (filter: not_in_values) (comma-separated list) - */ - function_selector_not_in_values?: string; - /** - * Number of opcodes executed in this frame (filter: eq) - */ - opcode_count_eq?: number; - /** - * Number of opcodes executed in this frame (filter: ne) - */ - opcode_count_ne?: number; - /** - * Number of opcodes executed in this frame (filter: lt) - */ - opcode_count_lt?: number; - /** - * Number of opcodes executed in this frame (filter: lte) - */ - opcode_count_lte?: number; - /** - * Number of opcodes executed in this frame (filter: gt) - */ - opcode_count_gt?: number; - /** - * Number of opcodes executed in this frame (filter: gte) - */ - opcode_count_gte?: number; - /** - * Number of opcodes executed in this frame (filter: between_min) - */ - opcode_count_between_min?: number; - /** - * Number of opcodes executed in this frame (filter: between_max_value) - */ - opcode_count_between_max_value?: number; - /** - * Number of opcodes executed in this frame (filter: in_values) (comma-separated list) - */ - opcode_count_in_values?: string; - /** - * Number of opcodes executed in this frame (filter: not_in_values) (comma-separated list) - */ - opcode_count_not_in_values?: string; - /** - * Number of opcodes that resulted in errors (filter: eq) - */ - error_count_eq?: number; - /** - * Number of opcodes that resulted in errors (filter: ne) - */ - error_count_ne?: number; - /** - * Number of opcodes that resulted in errors (filter: lt) - */ - error_count_lt?: number; - /** - * Number of opcodes that resulted in errors (filter: lte) - */ - error_count_lte?: number; - /** - * Number of opcodes that resulted in errors (filter: gt) - */ - error_count_gt?: number; - /** - * Number of opcodes that resulted in errors (filter: gte) - */ - error_count_gte?: number; - /** - * Number of opcodes that resulted in errors (filter: between_min) - */ - error_count_between_min?: number; - /** - * Number of opcodes that resulted in errors (filter: between_max_value) - */ - error_count_between_max_value?: number; - /** - * Number of opcodes that resulted in errors (filter: in_values) (comma-separated list) - */ - error_count_in_values?: string; - /** - * Number of opcodes that resulted in errors (filter: not_in_values) (comma-separated list) - */ - error_count_not_in_values?: string; - /** - * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: eq) - */ - gas_eq?: number; - /** - * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: ne) - */ - gas_ne?: number; - /** - * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: lt) - */ - gas_lt?: number; - /** - * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: lte) - */ - gas_lte?: number; - /** - * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: gt) - */ - gas_gt?: number; - /** - * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: gte) - */ - gas_gte?: number; - /** - * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: between_min) - */ - gas_between_min?: number; - /** - * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: between_max_value) - */ - gas_between_max_value?: number; - /** - * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: in_values) (comma-separated list) - */ - gas_in_values?: string; - /** - * Gas consumed by this frame only, excludes child frames. sum(gas) = EVM execution gas. This is "self" gas in flame graphs. (filter: not_in_values) (comma-separated list) - */ - gas_not_in_values?: string; - /** - * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: eq) - */ - gas_cumulative_eq?: number; - /** - * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: ne) - */ - gas_cumulative_ne?: number; - /** - * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: lt) - */ - gas_cumulative_lt?: number; - /** - * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: lte) - */ - gas_cumulative_lte?: number; - /** - * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: gt) - */ - gas_cumulative_gt?: number; - /** - * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: gte) - */ - gas_cumulative_gte?: number; - /** - * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: between_min) - */ - gas_cumulative_between_min?: number; - /** - * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: between_max_value) - */ - gas_cumulative_between_max_value?: number; - /** - * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: in_values) (comma-separated list) - */ - gas_cumulative_in_values?: string; - /** - * Gas consumed by this frame + all descendants. Root frame value = total EVM execution gas. (filter: not_in_values) (comma-separated list) - */ - gas_cumulative_not_in_values?: string; - /** - * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: eq) - */ - gas_refund_eq?: number; - /** - * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: ne) - */ - gas_refund_ne?: number; - /** - * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: lt) - */ - gas_refund_lt?: number; - /** - * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: lte) - */ - gas_refund_lte?: number; - /** - * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: gt) - */ - gas_refund_gt?: number; - /** - * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: gte) - */ - gas_refund_gte?: number; - /** - * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: between_min) - */ - gas_refund_between_min?: number; - /** - * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: between_max_value) - */ - gas_refund_between_max_value?: number; - /** - * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: in_values) (comma-separated list) - */ - gas_refund_in_values?: string; - /** - * Total accumulated refund. Only populated for root frame, only for successful txs (refund not applied on failure). (filter: not_in_values) (comma-separated list) - */ - gas_refund_not_in_values?: string; - /** - * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: eq) - */ - intrinsic_gas_eq?: number; - /** - * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: ne) - */ - intrinsic_gas_ne?: number; - /** - * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: lt) - */ - intrinsic_gas_lt?: number; - /** - * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: lte) - */ - intrinsic_gas_lte?: number; - /** - * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: gt) - */ - intrinsic_gas_gt?: number; - /** - * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: gte) - */ - intrinsic_gas_gte?: number; - /** - * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: between_min) - */ - intrinsic_gas_between_min?: number; - /** - * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: between_max_value) - */ - intrinsic_gas_between_max_value?: number; - /** - * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: in_values) (comma-separated list) - */ - intrinsic_gas_in_values?: string; - /** - * Intrinsic tx cost (21000 + calldata). Only populated for root frame of successful txs. (filter: not_in_values) (comma-separated list) - */ - intrinsic_gas_not_in_values?: string; - /** - * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: eq) - */ - receipt_gas_used_eq?: number; - /** - * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: ne) - */ - receipt_gas_used_ne?: number; - /** - * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: lt) - */ - receipt_gas_used_lt?: number; - /** - * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: lte) - */ - receipt_gas_used_lte?: number; - /** - * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: gt) - */ - receipt_gas_used_gt?: number; - /** - * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: gte) - */ - receipt_gas_used_gte?: number; - /** - * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: between_min) - */ - receipt_gas_used_between_min?: number; - /** - * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: between_max_value) - */ - receipt_gas_used_between_max_value?: number; - /** - * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: in_values) (comma-separated list) - */ - receipt_gas_used_in_values?: string; - /** - * Actual gas used from transaction receipt. Only populated for root frame (call_frame_id=0). Source of truth for total gas display. (filter: not_in_values) (comma-separated list) - */ - receipt_gas_used_not_in_values?: string; - /** - * The maximum number of int_transaction_call_frame to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntTransactionCallFrame` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_transaction_call_frame'; -}; - -export type IntTransactionCallFrameServiceListErrors = { + gas_bloom_topics_not_in_values?: string; /** - * Default error response + * Total block size gas (from intrinsic calldata) (filter: eq) */ - default: Status; -}; - -export type IntTransactionCallFrameServiceListError = IntTransactionCallFrameServiceListErrors[keyof IntTransactionCallFrameServiceListErrors]; - -export type IntTransactionCallFrameServiceListResponses = { + gas_block_size_eq?: number; /** - * OK + * Total block size gas (from intrinsic calldata) (filter: ne) */ - 200: ListIntTransactionCallFrameResponse; -}; - -export type IntTransactionCallFrameServiceListResponse = IntTransactionCallFrameServiceListResponses[keyof IntTransactionCallFrameServiceListResponses]; - -export type IntTransactionCallFrameServiceGetData = { - body?: never; - path: { - /** - * The block number containing this transaction - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_transaction_call_frame/{block_number}'; -}; - -export type IntTransactionCallFrameServiceGetErrors = { + gas_block_size_ne?: number; /** - * Default error response + * Total block size gas (from intrinsic calldata) (filter: lt) */ - default: Status; -}; - -export type IntTransactionCallFrameServiceGetError = IntTransactionCallFrameServiceGetErrors[keyof IntTransactionCallFrameServiceGetErrors]; - -export type IntTransactionCallFrameServiceGetResponses = { + gas_block_size_lt?: number; /** - * OK + * Total block size gas (from intrinsic calldata) (filter: lte) */ - 200: GetIntTransactionCallFrameResponse; -}; - -export type IntTransactionCallFrameServiceGetResponse = IntTransactionCallFrameServiceGetResponses[keyof IntTransactionCallFrameServiceGetResponses]; - -export type IntTransactionCallFrameOpcodeGasServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number containing the transaction (filter: eq) - */ - block_number_eq?: number; - /** - * The block number containing the transaction (filter: ne) - */ - block_number_ne?: number; - /** - * The block number containing the transaction (filter: lt) - */ - block_number_lt?: number; - /** - * The block number containing the transaction (filter: lte) - */ - block_number_lte?: number; - /** - * The block number containing the transaction (filter: gt) - */ - block_number_gt?: number; - /** - * The block number containing the transaction (filter: gte) - */ - block_number_gte?: number; - /** - * The block number containing the transaction (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number containing the transaction (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number containing the transaction (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number containing the transaction (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: eq) - */ - transaction_hash_eq?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: ne) - */ - transaction_hash_ne?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: contains) - */ - transaction_hash_contains?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: starts_with) - */ - transaction_hash_starts_with?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: ends_with) - */ - transaction_hash_ends_with?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: like) - */ - transaction_hash_like?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: not_like) - */ - transaction_hash_not_like?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - transaction_hash_in_values?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - transaction_hash_not_in_values?: string; - /** - * Sequential frame ID within transaction (0 = root) (filter: eq) - */ - call_frame_id_eq?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: ne) - */ - call_frame_id_ne?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: lt) - */ - call_frame_id_lt?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: lte) - */ - call_frame_id_lte?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: gt) - */ - call_frame_id_gt?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: gte) - */ - call_frame_id_gte?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: between_min) - */ - call_frame_id_between_min?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: between_max_value) - */ - call_frame_id_between_max_value?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: in_values) (comma-separated list) - */ - call_frame_id_in_values?: string; - /** - * Sequential frame ID within transaction (0 = root) (filter: not_in_values) (comma-separated list) - */ - call_frame_id_not_in_values?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: eq) - */ - opcode_eq?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ne) - */ - opcode_ne?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: contains) - */ - opcode_contains?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: starts_with) - */ - opcode_starts_with?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ends_with) - */ - opcode_ends_with?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: like) - */ - opcode_like?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_like) - */ - opcode_not_like?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: in_values) (comma-separated list) - */ - opcode_in_values?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_in_values) (comma-separated list) - */ - opcode_not_in_values?: string; - /** - * The name of the network (filter: eq) - */ - meta_network_name_eq?: string; - /** - * The name of the network (filter: ne) - */ - meta_network_name_ne?: string; - /** - * The name of the network (filter: contains) - */ - meta_network_name_contains?: string; - /** - * The name of the network (filter: starts_with) - */ - meta_network_name_starts_with?: string; - /** - * The name of the network (filter: ends_with) - */ - meta_network_name_ends_with?: string; - /** - * The name of the network (filter: like) - */ - meta_network_name_like?: string; - /** - * The name of the network (filter: not_like) - */ - meta_network_name_not_like?: string; - /** - * The name of the network (filter: in_values) (comma-separated list) - */ - meta_network_name_in_values?: string; - /** - * The name of the network (filter: not_in_values) (comma-separated list) - */ - meta_network_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The index of the transaction within the block (filter: eq) - */ - transaction_index_eq?: number; - /** - * The index of the transaction within the block (filter: ne) - */ - transaction_index_ne?: number; - /** - * The index of the transaction within the block (filter: lt) - */ - transaction_index_lt?: number; - /** - * The index of the transaction within the block (filter: lte) - */ - transaction_index_lte?: number; - /** - * The index of the transaction within the block (filter: gt) - */ - transaction_index_gt?: number; - /** - * The index of the transaction within the block (filter: gte) - */ - transaction_index_gte?: number; - /** - * The index of the transaction within the block (filter: between_min) - */ - transaction_index_between_min?: number; - /** - * The index of the transaction within the block (filter: between_max_value) - */ - transaction_index_between_max_value?: number; - /** - * The index of the transaction within the block (filter: in_values) (comma-separated list) - */ - transaction_index_in_values?: string; - /** - * The index of the transaction within the block (filter: not_in_values) (comma-separated list) - */ - transaction_index_not_in_values?: string; - /** - * Number of times this opcode was executed in this frame (filter: eq) - */ - count_eq?: number; - /** - * Number of times this opcode was executed in this frame (filter: ne) - */ - count_ne?: number; - /** - * Number of times this opcode was executed in this frame (filter: lt) - */ - count_lt?: number; - /** - * Number of times this opcode was executed in this frame (filter: lte) - */ - count_lte?: number; - /** - * Number of times this opcode was executed in this frame (filter: gt) - */ - count_gt?: number; - /** - * Number of times this opcode was executed in this frame (filter: gte) - */ - count_gte?: number; - /** - * Number of times this opcode was executed in this frame (filter: between_min) - */ - count_between_min?: number; - /** - * Number of times this opcode was executed in this frame (filter: between_max_value) - */ - count_between_max_value?: number; - /** - * Number of times this opcode was executed in this frame (filter: in_values) (comma-separated list) - */ - count_in_values?: string; - /** - * Number of times this opcode was executed in this frame (filter: not_in_values) (comma-separated list) - */ - count_not_in_values?: string; - /** - * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: eq) - */ - gas_eq?: number; - /** - * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: ne) - */ - gas_ne?: number; - /** - * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: lt) - */ - gas_lt?: number; - /** - * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: lte) - */ - gas_lte?: number; - /** - * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: gt) - */ - gas_gt?: number; - /** - * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: gte) - */ - gas_gte?: number; - /** - * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: between_min) - */ - gas_between_min?: number; - /** - * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: between_max_value) - */ - gas_between_max_value?: number; - /** - * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: in_values) (comma-separated list) - */ - gas_in_values?: string; - /** - * Gas consumed by this opcode in this frame. sum(gas) = frame gas (filter: not_in_values) (comma-separated list) - */ - gas_not_in_values?: string; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: eq) - */ - gas_cumulative_eq?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: ne) - */ - gas_cumulative_ne?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: lt) - */ - gas_cumulative_lt?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: lte) - */ - gas_cumulative_lte?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: gt) - */ - gas_cumulative_gt?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: gte) - */ - gas_cumulative_gte?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: between_min) - */ - gas_cumulative_between_min?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: between_max_value) - */ - gas_cumulative_between_max_value?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: in_values) (comma-separated list) - */ - gas_cumulative_in_values?: string; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: not_in_values) (comma-separated list) - */ - gas_cumulative_not_in_values?: string; - /** - * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: eq) - */ - memory_words_sum_before_eq?: number; - /** - * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: ne) - */ - memory_words_sum_before_ne?: number; - /** - * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: lt) - */ - memory_words_sum_before_lt?: number; - /** - * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: lte) - */ - memory_words_sum_before_lte?: number; - /** - * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: gt) - */ - memory_words_sum_before_gt?: number; - /** - * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: gte) - */ - memory_words_sum_before_gte?: number; - /** - * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: between_min) - */ - memory_words_sum_before_between_min?: number; - /** - * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: between_max_value) - */ - memory_words_sum_before_between_max_value?: number; - /** - * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: in_values) (comma-separated list) - */ - memory_words_sum_before_in_values?: string; - /** - * SUM(ceil(memory_bytes/32)) before each opcode executes. (filter: not_in_values) (comma-separated list) - */ - memory_words_sum_before_not_in_values?: string; - /** - * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: eq) - */ - memory_words_sum_after_eq?: number; - /** - * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: ne) - */ - memory_words_sum_after_ne?: number; - /** - * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: lt) - */ - memory_words_sum_after_lt?: number; - /** - * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: lte) - */ - memory_words_sum_after_lte?: number; - /** - * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: gt) - */ - memory_words_sum_after_gt?: number; - /** - * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: gte) - */ - memory_words_sum_after_gte?: number; - /** - * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: between_min) - */ - memory_words_sum_after_between_min?: number; - /** - * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: between_max_value) - */ - memory_words_sum_after_between_max_value?: number; - /** - * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: in_values) (comma-separated list) - */ - memory_words_sum_after_in_values?: string; - /** - * SUM(ceil(memory_bytes/32)) after each opcode executes. (filter: not_in_values) (comma-separated list) - */ - memory_words_sum_after_not_in_values?: string; - /** - * SUM(words_before²). (filter: eq) - */ - memory_words_sq_sum_before_eq?: number; - /** - * SUM(words_before²). (filter: ne) - */ - memory_words_sq_sum_before_ne?: number; - /** - * SUM(words_before²). (filter: lt) - */ - memory_words_sq_sum_before_lt?: number; - /** - * SUM(words_before²). (filter: lte) - */ - memory_words_sq_sum_before_lte?: number; - /** - * SUM(words_before²). (filter: gt) - */ - memory_words_sq_sum_before_gt?: number; - /** - * SUM(words_before²). (filter: gte) - */ - memory_words_sq_sum_before_gte?: number; - /** - * SUM(words_before²). (filter: between_min) - */ - memory_words_sq_sum_before_between_min?: number; - /** - * SUM(words_before²). (filter: between_max_value) - */ - memory_words_sq_sum_before_between_max_value?: number; - /** - * SUM(words_before²). (filter: in_values) (comma-separated list) - */ - memory_words_sq_sum_before_in_values?: string; - /** - * SUM(words_before²). (filter: not_in_values) (comma-separated list) - */ - memory_words_sq_sum_before_not_in_values?: string; - /** - * SUM(words_after²). (filter: eq) - */ - memory_words_sq_sum_after_eq?: number; - /** - * SUM(words_after²). (filter: ne) - */ - memory_words_sq_sum_after_ne?: number; - /** - * SUM(words_after²). (filter: lt) - */ - memory_words_sq_sum_after_lt?: number; - /** - * SUM(words_after²). (filter: lte) - */ - memory_words_sq_sum_after_lte?: number; - /** - * SUM(words_after²). (filter: gt) - */ - memory_words_sq_sum_after_gt?: number; - /** - * SUM(words_after²). (filter: gte) - */ - memory_words_sq_sum_after_gte?: number; - /** - * SUM(words_after²). (filter: between_min) - */ - memory_words_sq_sum_after_between_min?: number; - /** - * SUM(words_after²). (filter: between_max_value) - */ - memory_words_sq_sum_after_between_max_value?: number; - /** - * SUM(words_after²). (filter: in_values) (comma-separated list) - */ - memory_words_sq_sum_after_in_values?: string; - /** - * SUM(words_after²). (filter: not_in_values) (comma-separated list) - */ - memory_words_sq_sum_after_not_in_values?: string; - /** - * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: eq) - */ - memory_expansion_gas_eq?: number; - /** - * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: ne) - */ - memory_expansion_gas_ne?: number; - /** - * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: lt) - */ - memory_expansion_gas_lt?: number; - /** - * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: lte) - */ - memory_expansion_gas_lte?: number; - /** - * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: gt) - */ - memory_expansion_gas_gt?: number; - /** - * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: gte) - */ - memory_expansion_gas_gte?: number; - /** - * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: between_min) - */ - memory_expansion_gas_between_min?: number; - /** - * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: between_max_value) - */ - memory_expansion_gas_between_max_value?: number; - /** - * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: in_values) (comma-separated list) - */ - memory_expansion_gas_in_values?: string; - /** - * SUM(memory_expansion_gas). Exact per-opcode memory expansion cost. (filter: not_in_values) (comma-separated list) - */ - memory_expansion_gas_not_in_values?: string; - /** - * Number of cold storage/account accesses (EIP-2929). (filter: eq) - */ - cold_access_count_eq?: number; - /** - * Number of cold storage/account accesses (EIP-2929). (filter: ne) - */ - cold_access_count_ne?: number; - /** - * Number of cold storage/account accesses (EIP-2929). (filter: lt) - */ - cold_access_count_lt?: number; - /** - * Number of cold storage/account accesses (EIP-2929). (filter: lte) - */ - cold_access_count_lte?: number; - /** - * Number of cold storage/account accesses (EIP-2929). (filter: gt) - */ - cold_access_count_gt?: number; - /** - * Number of cold storage/account accesses (EIP-2929). (filter: gte) - */ - cold_access_count_gte?: number; - /** - * Number of cold storage/account accesses (EIP-2929). (filter: between_min) - */ - cold_access_count_between_min?: number; - /** - * Number of cold storage/account accesses (EIP-2929). (filter: between_max_value) - */ - cold_access_count_between_max_value?: number; - /** - * Number of cold storage/account accesses (EIP-2929). (filter: in_values) (comma-separated list) - */ - cold_access_count_in_values?: string; - /** - * Number of cold storage/account accesses (EIP-2929). (filter: not_in_values) (comma-separated list) - */ - cold_access_count_not_in_values?: string; - /** - * Number of times this opcode resulted in an error in this frame (filter: eq) - */ - error_count_eq?: number; - /** - * Number of times this opcode resulted in an error in this frame (filter: ne) - */ - error_count_ne?: number; - /** - * Number of times this opcode resulted in an error in this frame (filter: lt) - */ - error_count_lt?: number; - /** - * Number of times this opcode resulted in an error in this frame (filter: lte) - */ - error_count_lte?: number; - /** - * Number of times this opcode resulted in an error in this frame (filter: gt) - */ - error_count_gt?: number; - /** - * Number of times this opcode resulted in an error in this frame (filter: gte) - */ - error_count_gte?: number; - /** - * Number of times this opcode resulted in an error in this frame (filter: between_min) - */ - error_count_between_min?: number; - /** - * Number of times this opcode resulted in an error in this frame (filter: between_max_value) - */ - error_count_between_max_value?: number; - /** - * Number of times this opcode resulted in an error in this frame (filter: in_values) (comma-separated list) - */ - error_count_in_values?: string; - /** - * Number of times this opcode resulted in an error in this frame (filter: not_in_values) (comma-separated list) - */ - error_count_not_in_values?: string; - /** - * The maximum number of int_transaction_call_frame_opcode_gas to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntTransactionCallFrameOpcodeGas` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_transaction_call_frame_opcode_gas'; -}; - -export type IntTransactionCallFrameOpcodeGasServiceListErrors = { + gas_block_size_lte?: number; /** - * Default error response + * Total block size gas (from intrinsic calldata) (filter: gt) */ - default: Status; -}; - -export type IntTransactionCallFrameOpcodeGasServiceListError = IntTransactionCallFrameOpcodeGasServiceListErrors[keyof IntTransactionCallFrameOpcodeGasServiceListErrors]; - -export type IntTransactionCallFrameOpcodeGasServiceListResponses = { + gas_block_size_gt?: number; /** - * OK + * Total block size gas (from intrinsic calldata) (filter: gte) */ - 200: ListIntTransactionCallFrameOpcodeGasResponse; -}; - -export type IntTransactionCallFrameOpcodeGasServiceListResponse = IntTransactionCallFrameOpcodeGasServiceListResponses[keyof IntTransactionCallFrameOpcodeGasServiceListResponses]; - -export type IntTransactionCallFrameOpcodeGasServiceGetData = { - body?: never; - path: { - /** - * The block number containing the transaction - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_transaction_call_frame_opcode_gas/{block_number}'; -}; - -export type IntTransactionCallFrameOpcodeGasServiceGetErrors = { + gas_block_size_gte?: number; /** - * Default error response + * Total block size gas (from intrinsic calldata) (filter: between_min) */ - default: Status; -}; - -export type IntTransactionCallFrameOpcodeGasServiceGetError = IntTransactionCallFrameOpcodeGasServiceGetErrors[keyof IntTransactionCallFrameOpcodeGasServiceGetErrors]; - -export type IntTransactionCallFrameOpcodeGasServiceGetResponses = { + gas_block_size_between_min?: number; /** - * OK + * Total block size gas (from intrinsic calldata) (filter: between_max_value) */ - 200: GetIntTransactionCallFrameOpcodeGasResponse; -}; - -export type IntTransactionCallFrameOpcodeGasServiceGetResponse = IntTransactionCallFrameOpcodeGasServiceGetResponses[keyof IntTransactionCallFrameOpcodeGasServiceGetResponses]; - -export type IntTransactionCallFrameOpcodeResourceGasServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number containing the transaction (filter: eq) - */ - block_number_eq?: number; - /** - * The block number containing the transaction (filter: ne) - */ - block_number_ne?: number; - /** - * The block number containing the transaction (filter: lt) - */ - block_number_lt?: number; - /** - * The block number containing the transaction (filter: lte) - */ - block_number_lte?: number; - /** - * The block number containing the transaction (filter: gt) - */ - block_number_gt?: number; - /** - * The block number containing the transaction (filter: gte) - */ - block_number_gte?: number; - /** - * The block number containing the transaction (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number containing the transaction (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number containing the transaction (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number containing the transaction (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: eq) - */ - transaction_hash_eq?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: ne) - */ - transaction_hash_ne?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: contains) - */ - transaction_hash_contains?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: starts_with) - */ - transaction_hash_starts_with?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: ends_with) - */ - transaction_hash_ends_with?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: like) - */ - transaction_hash_like?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: not_like) - */ - transaction_hash_not_like?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - transaction_hash_in_values?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - transaction_hash_not_in_values?: string; - /** - * Sequential frame ID within transaction (0 = root) (filter: eq) - */ - call_frame_id_eq?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: ne) - */ - call_frame_id_ne?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: lt) - */ - call_frame_id_lt?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: lte) - */ - call_frame_id_lte?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: gt) - */ - call_frame_id_gt?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: gte) - */ - call_frame_id_gte?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: between_min) - */ - call_frame_id_between_min?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: between_max_value) - */ - call_frame_id_between_max_value?: number; - /** - * Sequential frame ID within transaction (0 = root) (filter: in_values) (comma-separated list) - */ - call_frame_id_in_values?: string; - /** - * Sequential frame ID within transaction (0 = root) (filter: not_in_values) (comma-separated list) - */ - call_frame_id_not_in_values?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: eq) - */ - opcode_eq?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ne) - */ - opcode_ne?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: contains) - */ - opcode_contains?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: starts_with) - */ - opcode_starts_with?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ends_with) - */ - opcode_ends_with?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: like) - */ - opcode_like?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_like) - */ - opcode_not_like?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: in_values) (comma-separated list) - */ - opcode_in_values?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_in_values) (comma-separated list) - */ - opcode_not_in_values?: string; - /** - * The name of the network (filter: eq) - */ - meta_network_name_eq?: string; - /** - * The name of the network (filter: ne) - */ - meta_network_name_ne?: string; - /** - * The name of the network (filter: contains) - */ - meta_network_name_contains?: string; - /** - * The name of the network (filter: starts_with) - */ - meta_network_name_starts_with?: string; - /** - * The name of the network (filter: ends_with) - */ - meta_network_name_ends_with?: string; - /** - * The name of the network (filter: like) - */ - meta_network_name_like?: string; - /** - * The name of the network (filter: not_like) - */ - meta_network_name_not_like?: string; - /** - * The name of the network (filter: in_values) (comma-separated list) - */ - meta_network_name_in_values?: string; - /** - * The name of the network (filter: not_in_values) (comma-separated list) - */ - meta_network_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The index of the transaction within the block (filter: eq) - */ - transaction_index_eq?: number; - /** - * The index of the transaction within the block (filter: ne) - */ - transaction_index_ne?: number; - /** - * The index of the transaction within the block (filter: lt) - */ - transaction_index_lt?: number; - /** - * The index of the transaction within the block (filter: lte) - */ - transaction_index_lte?: number; - /** - * The index of the transaction within the block (filter: gt) - */ - transaction_index_gt?: number; - /** - * The index of the transaction within the block (filter: gte) - */ - transaction_index_gte?: number; - /** - * The index of the transaction within the block (filter: between_min) - */ - transaction_index_between_min?: number; - /** - * The index of the transaction within the block (filter: between_max_value) - */ - transaction_index_between_max_value?: number; - /** - * The index of the transaction within the block (filter: in_values) (comma-separated list) - */ - transaction_index_in_values?: string; - /** - * The index of the transaction within the block (filter: not_in_values) (comma-separated list) - */ - transaction_index_not_in_values?: string; - /** - * Number of times this opcode was executed in this frame (filter: eq) - */ - count_eq?: number; - /** - * Number of times this opcode was executed in this frame (filter: ne) - */ - count_ne?: number; - /** - * Number of times this opcode was executed in this frame (filter: lt) - */ - count_lt?: number; - /** - * Number of times this opcode was executed in this frame (filter: lte) - */ - count_lte?: number; - /** - * Number of times this opcode was executed in this frame (filter: gt) - */ - count_gt?: number; - /** - * Number of times this opcode was executed in this frame (filter: gte) - */ - count_gte?: number; - /** - * Number of times this opcode was executed in this frame (filter: between_min) - */ - count_between_min?: number; - /** - * Number of times this opcode was executed in this frame (filter: between_max_value) - */ - count_between_max_value?: number; - /** - * Number of times this opcode was executed in this frame (filter: in_values) (comma-separated list) - */ - count_in_values?: string; - /** - * Number of times this opcode was executed in this frame (filter: not_in_values) (comma-separated list) - */ - count_not_in_values?: string; - /** - * Total gas consumed by this opcode in this frame (filter: eq) - */ - gas_eq?: number; - /** - * Total gas consumed by this opcode in this frame (filter: ne) - */ - gas_ne?: number; - /** - * Total gas consumed by this opcode in this frame (filter: lt) - */ - gas_lt?: number; - /** - * Total gas consumed by this opcode in this frame (filter: lte) - */ - gas_lte?: number; - /** - * Total gas consumed by this opcode in this frame (filter: gt) - */ - gas_gt?: number; - /** - * Total gas consumed by this opcode in this frame (filter: gte) - */ - gas_gte?: number; - /** - * Total gas consumed by this opcode in this frame (filter: between_min) - */ - gas_between_min?: number; - /** - * Total gas consumed by this opcode in this frame (filter: between_max_value) - */ - gas_between_max_value?: number; - /** - * Total gas consumed by this opcode in this frame (filter: in_values) (comma-separated list) - */ - gas_in_values?: string; - /** - * Total gas consumed by this opcode in this frame (filter: not_in_values) (comma-separated list) - */ - gas_not_in_values?: string; - /** - * Gas attributed to pure computation (filter: eq) - */ - gas_compute_eq?: number; - /** - * Gas attributed to pure computation (filter: ne) - */ - gas_compute_ne?: number; - /** - * Gas attributed to pure computation (filter: lt) - */ - gas_compute_lt?: number; - /** - * Gas attributed to pure computation (filter: lte) - */ - gas_compute_lte?: number; - /** - * Gas attributed to pure computation (filter: gt) - */ - gas_compute_gt?: number; - /** - * Gas attributed to pure computation (filter: gte) - */ - gas_compute_gte?: number; - /** - * Gas attributed to pure computation (filter: between_min) - */ - gas_compute_between_min?: number; - /** - * Gas attributed to pure computation (filter: between_max_value) - */ - gas_compute_between_max_value?: number; - /** - * Gas attributed to pure computation (filter: in_values) (comma-separated list) - */ - gas_compute_in_values?: string; - /** - * Gas attributed to pure computation (filter: not_in_values) (comma-separated list) - */ - gas_compute_not_in_values?: string; - /** - * Gas attributed to memory expansion (filter: eq) - */ - gas_memory_eq?: number; - /** - * Gas attributed to memory expansion (filter: ne) - */ - gas_memory_ne?: number; - /** - * Gas attributed to memory expansion (filter: lt) - */ - gas_memory_lt?: number; - /** - * Gas attributed to memory expansion (filter: lte) - */ - gas_memory_lte?: number; - /** - * Gas attributed to memory expansion (filter: gt) - */ - gas_memory_gt?: number; - /** - * Gas attributed to memory expansion (filter: gte) - */ - gas_memory_gte?: number; - /** - * Gas attributed to memory expansion (filter: between_min) - */ - gas_memory_between_min?: number; - /** - * Gas attributed to memory expansion (filter: between_max_value) - */ - gas_memory_between_max_value?: number; - /** - * Gas attributed to memory expansion (filter: in_values) (comma-separated list) - */ - gas_memory_in_values?: string; - /** - * Gas attributed to memory expansion (filter: not_in_values) (comma-separated list) - */ - gas_memory_not_in_values?: string; - /** - * Gas attributed to cold address/storage access (EIP-2929) (filter: eq) - */ - gas_address_access_eq?: number; - /** - * Gas attributed to cold address/storage access (EIP-2929) (filter: ne) - */ - gas_address_access_ne?: number; - /** - * Gas attributed to cold address/storage access (EIP-2929) (filter: lt) - */ - gas_address_access_lt?: number; - /** - * Gas attributed to cold address/storage access (EIP-2929) (filter: lte) - */ - gas_address_access_lte?: number; - /** - * Gas attributed to cold address/storage access (EIP-2929) (filter: gt) - */ - gas_address_access_gt?: number; - /** - * Gas attributed to cold address/storage access (EIP-2929) (filter: gte) - */ - gas_address_access_gte?: number; - /** - * Gas attributed to cold address/storage access (EIP-2929) (filter: between_min) - */ - gas_address_access_between_min?: number; - /** - * Gas attributed to cold address/storage access (EIP-2929) (filter: between_max_value) - */ - gas_address_access_between_max_value?: number; - /** - * Gas attributed to cold address/storage access (EIP-2929) (filter: in_values) (comma-separated list) - */ - gas_address_access_in_values?: string; - /** - * Gas attributed to cold address/storage access (EIP-2929) (filter: not_in_values) (comma-separated list) - */ - gas_address_access_not_in_values?: string; - /** - * Gas attributed to state growth (new storage slots, contract creation) (filter: eq) - */ - gas_state_growth_eq?: number; - /** - * Gas attributed to state growth (new storage slots, contract creation) (filter: ne) - */ - gas_state_growth_ne?: number; - /** - * Gas attributed to state growth (new storage slots, contract creation) (filter: lt) - */ - gas_state_growth_lt?: number; - /** - * Gas attributed to state growth (new storage slots, contract creation) (filter: lte) - */ - gas_state_growth_lte?: number; - /** - * Gas attributed to state growth (new storage slots, contract creation) (filter: gt) - */ - gas_state_growth_gt?: number; - /** - * Gas attributed to state growth (new storage slots, contract creation) (filter: gte) - */ - gas_state_growth_gte?: number; - /** - * Gas attributed to state growth (new storage slots, contract creation) (filter: between_min) - */ - gas_state_growth_between_min?: number; - /** - * Gas attributed to state growth (new storage slots, contract creation) (filter: between_max_value) - */ - gas_state_growth_between_max_value?: number; - /** - * Gas attributed to state growth (new storage slots, contract creation) (filter: in_values) (comma-separated list) - */ - gas_state_growth_in_values?: string; - /** - * Gas attributed to state growth (new storage slots, contract creation) (filter: not_in_values) (comma-separated list) - */ - gas_state_growth_not_in_values?: string; - /** - * Gas attributed to history/log data storage (filter: eq) - */ - gas_history_eq?: number; - /** - * Gas attributed to history/log data storage (filter: ne) - */ - gas_history_ne?: number; - /** - * Gas attributed to history/log data storage (filter: lt) - */ - gas_history_lt?: number; - /** - * Gas attributed to history/log data storage (filter: lte) - */ - gas_history_lte?: number; - /** - * Gas attributed to history/log data storage (filter: gt) - */ - gas_history_gt?: number; - /** - * Gas attributed to history/log data storage (filter: gte) - */ - gas_history_gte?: number; - /** - * Gas attributed to history/log data storage (filter: between_min) - */ - gas_history_between_min?: number; - /** - * Gas attributed to history/log data storage (filter: between_max_value) - */ - gas_history_between_max_value?: number; - /** - * Gas attributed to history/log data storage (filter: in_values) (comma-separated list) - */ - gas_history_in_values?: string; - /** - * Gas attributed to history/log data storage (filter: not_in_values) (comma-separated list) - */ - gas_history_not_in_values?: string; - /** - * Gas attributed to bloom filter topic indexing (filter: eq) - */ - gas_bloom_topics_eq?: number; - /** - * Gas attributed to bloom filter topic indexing (filter: ne) - */ - gas_bloom_topics_ne?: number; - /** - * Gas attributed to bloom filter topic indexing (filter: lt) - */ - gas_bloom_topics_lt?: number; - /** - * Gas attributed to bloom filter topic indexing (filter: lte) - */ - gas_bloom_topics_lte?: number; - /** - * Gas attributed to bloom filter topic indexing (filter: gt) - */ - gas_bloom_topics_gt?: number; - /** - * Gas attributed to bloom filter topic indexing (filter: gte) - */ - gas_bloom_topics_gte?: number; - /** - * Gas attributed to bloom filter topic indexing (filter: between_min) - */ - gas_bloom_topics_between_min?: number; - /** - * Gas attributed to bloom filter topic indexing (filter: between_max_value) - */ - gas_bloom_topics_between_max_value?: number; - /** - * Gas attributed to bloom filter topic indexing (filter: in_values) (comma-separated list) - */ - gas_bloom_topics_in_values?: string; - /** - * Gas attributed to bloom filter topic indexing (filter: not_in_values) (comma-separated list) - */ - gas_bloom_topics_not_in_values?: string; - /** - * Gas attributed to block size (always 0 at opcode level) (filter: eq) - */ - gas_block_size_eq?: number; - /** - * Gas attributed to block size (always 0 at opcode level) (filter: ne) - */ - gas_block_size_ne?: number; - /** - * Gas attributed to block size (always 0 at opcode level) (filter: lt) - */ - gas_block_size_lt?: number; - /** - * Gas attributed to block size (always 0 at opcode level) (filter: lte) - */ - gas_block_size_lte?: number; - /** - * Gas attributed to block size (always 0 at opcode level) (filter: gt) - */ - gas_block_size_gt?: number; - /** - * Gas attributed to block size (always 0 at opcode level) (filter: gte) - */ - gas_block_size_gte?: number; - /** - * Gas attributed to block size (always 0 at opcode level) (filter: between_min) - */ - gas_block_size_between_min?: number; - /** - * Gas attributed to block size (always 0 at opcode level) (filter: between_max_value) - */ - gas_block_size_between_max_value?: number; - /** - * Gas attributed to block size (always 0 at opcode level) (filter: in_values) (comma-separated list) - */ - gas_block_size_in_values?: string; - /** - * Gas attributed to block size (always 0 at opcode level) (filter: not_in_values) (comma-separated list) - */ - gas_block_size_not_in_values?: string; - /** - * The maximum number of int_transaction_call_frame_opcode_resource_gas to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntTransactionCallFrameOpcodeResourceGas` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_transaction_call_frame_opcode_resource_gas'; -}; - -export type IntTransactionCallFrameOpcodeResourceGasServiceListErrors = { + gas_block_size_between_max_value?: number; /** - * Default error response + * Total block size gas (from intrinsic calldata) (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntTransactionCallFrameOpcodeResourceGasServiceListError = IntTransactionCallFrameOpcodeResourceGasServiceListErrors[keyof IntTransactionCallFrameOpcodeResourceGasServiceListErrors]; - -export type IntTransactionCallFrameOpcodeResourceGasServiceListResponses = { + gas_block_size_in_values?: string; /** - * OK + * Total block size gas (from intrinsic calldata) (filter: not_in_values) (comma-separated list) */ - 200: ListIntTransactionCallFrameOpcodeResourceGasResponse; -}; - -export type IntTransactionCallFrameOpcodeResourceGasServiceListResponse = IntTransactionCallFrameOpcodeResourceGasServiceListResponses[keyof IntTransactionCallFrameOpcodeResourceGasServiceListResponses]; - -export type IntTransactionCallFrameOpcodeResourceGasServiceGetData = { - body?: never; - path: { - /** - * The block number containing the transaction - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_transaction_call_frame_opcode_resource_gas/{block_number}'; -}; - -export type IntTransactionCallFrameOpcodeResourceGasServiceGetErrors = { + gas_block_size_not_in_values?: string; /** - * Default error response + * Gas refund from SSTORE operations (filter: eq) */ - default: Status; -}; - -export type IntTransactionCallFrameOpcodeResourceGasServiceGetError = IntTransactionCallFrameOpcodeResourceGasServiceGetErrors[keyof IntTransactionCallFrameOpcodeResourceGasServiceGetErrors]; - -export type IntTransactionCallFrameOpcodeResourceGasServiceGetResponses = { + gas_refund_eq?: number; /** - * OK + * Gas refund from SSTORE operations (filter: ne) */ - 200: GetIntTransactionCallFrameOpcodeResourceGasResponse; -}; - -export type IntTransactionCallFrameOpcodeResourceGasServiceGetResponse = IntTransactionCallFrameOpcodeResourceGasServiceGetResponses[keyof IntTransactionCallFrameOpcodeResourceGasServiceGetResponses]; - -export type IntTransactionOpcodeGasServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number containing the transaction (filter: eq) - */ - block_number_eq?: number; - /** - * The block number containing the transaction (filter: ne) - */ - block_number_ne?: number; - /** - * The block number containing the transaction (filter: lt) - */ - block_number_lt?: number; - /** - * The block number containing the transaction (filter: lte) - */ - block_number_lte?: number; - /** - * The block number containing the transaction (filter: gt) - */ - block_number_gt?: number; - /** - * The block number containing the transaction (filter: gte) - */ - block_number_gte?: number; - /** - * The block number containing the transaction (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number containing the transaction (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number containing the transaction (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number containing the transaction (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: eq) - */ - transaction_hash_eq?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: ne) - */ - transaction_hash_ne?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: contains) - */ - transaction_hash_contains?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: starts_with) - */ - transaction_hash_starts_with?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: ends_with) - */ - transaction_hash_ends_with?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: like) - */ - transaction_hash_like?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: not_like) - */ - transaction_hash_not_like?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - transaction_hash_in_values?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - transaction_hash_not_in_values?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: eq) - */ - opcode_eq?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ne) - */ - opcode_ne?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: contains) - */ - opcode_contains?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: starts_with) - */ - opcode_starts_with?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: ends_with) - */ - opcode_ends_with?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: like) - */ - opcode_like?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_like) - */ - opcode_not_like?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: in_values) (comma-separated list) - */ - opcode_in_values?: string; - /** - * The EVM opcode name (e.g., SLOAD, ADD, CALL) (filter: not_in_values) (comma-separated list) - */ - opcode_not_in_values?: string; - /** - * The name of the network (filter: eq) - */ - meta_network_name_eq?: string; - /** - * The name of the network (filter: ne) - */ - meta_network_name_ne?: string; - /** - * The name of the network (filter: contains) - */ - meta_network_name_contains?: string; - /** - * The name of the network (filter: starts_with) - */ - meta_network_name_starts_with?: string; - /** - * The name of the network (filter: ends_with) - */ - meta_network_name_ends_with?: string; - /** - * The name of the network (filter: like) - */ - meta_network_name_like?: string; - /** - * The name of the network (filter: not_like) - */ - meta_network_name_not_like?: string; - /** - * The name of the network (filter: in_values) (comma-separated list) - */ - meta_network_name_in_values?: string; - /** - * The name of the network (filter: not_in_values) (comma-separated list) - */ - meta_network_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The index of the transaction within the block (filter: eq) - */ - transaction_index_eq?: number; - /** - * The index of the transaction within the block (filter: ne) - */ - transaction_index_ne?: number; - /** - * The index of the transaction within the block (filter: lt) - */ - transaction_index_lt?: number; - /** - * The index of the transaction within the block (filter: lte) - */ - transaction_index_lte?: number; - /** - * The index of the transaction within the block (filter: gt) - */ - transaction_index_gt?: number; - /** - * The index of the transaction within the block (filter: gte) - */ - transaction_index_gte?: number; - /** - * The index of the transaction within the block (filter: between_min) - */ - transaction_index_between_min?: number; - /** - * The index of the transaction within the block (filter: between_max_value) - */ - transaction_index_between_max_value?: number; - /** - * The index of the transaction within the block (filter: in_values) (comma-separated list) - */ - transaction_index_in_values?: string; - /** - * The index of the transaction within the block (filter: not_in_values) (comma-separated list) - */ - transaction_index_not_in_values?: string; - /** - * Number of times this opcode was executed in the transaction (filter: eq) - */ - count_eq?: number; - /** - * Number of times this opcode was executed in the transaction (filter: ne) - */ - count_ne?: number; - /** - * Number of times this opcode was executed in the transaction (filter: lt) - */ - count_lt?: number; - /** - * Number of times this opcode was executed in the transaction (filter: lte) - */ - count_lte?: number; - /** - * Number of times this opcode was executed in the transaction (filter: gt) - */ - count_gt?: number; - /** - * Number of times this opcode was executed in the transaction (filter: gte) - */ - count_gte?: number; - /** - * Number of times this opcode was executed in the transaction (filter: between_min) - */ - count_between_min?: number; - /** - * Number of times this opcode was executed in the transaction (filter: between_max_value) - */ - count_between_max_value?: number; - /** - * Number of times this opcode was executed in the transaction (filter: in_values) (comma-separated list) - */ - count_in_values?: string; - /** - * Number of times this opcode was executed in the transaction (filter: not_in_values) (comma-separated list) - */ - count_not_in_values?: string; - /** - * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: eq) - */ - gas_eq?: number; - /** - * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: ne) - */ - gas_ne?: number; - /** - * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: lt) - */ - gas_lt?: number; - /** - * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: lte) - */ - gas_lte?: number; - /** - * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: gt) - */ - gas_gt?: number; - /** - * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: gte) - */ - gas_gte?: number; - /** - * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: between_min) - */ - gas_between_min?: number; - /** - * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: between_max_value) - */ - gas_between_max_value?: number; - /** - * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: in_values) (comma-separated list) - */ - gas_in_values?: string; - /** - * Gas consumed by this opcode. sum(gas) = transaction executed gas (filter: not_in_values) (comma-separated list) - */ - gas_not_in_values?: string; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: eq) - */ - gas_cumulative_eq?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: ne) - */ - gas_cumulative_ne?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: lt) - */ - gas_cumulative_lt?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: lte) - */ - gas_cumulative_lte?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: gt) - */ - gas_cumulative_gt?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: gte) - */ - gas_cumulative_gte?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: between_min) - */ - gas_cumulative_between_min?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: between_max_value) - */ - gas_cumulative_between_max_value?: number; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: in_values) (comma-separated list) - */ - gas_cumulative_in_values?: string; - /** - * For CALL opcodes: includes all descendant frame gas. For others: same as gas (filter: not_in_values) (comma-separated list) - */ - gas_cumulative_not_in_values?: string; - /** - * Number of times this opcode resulted in an error (filter: eq) - */ - error_count_eq?: number; - /** - * Number of times this opcode resulted in an error (filter: ne) - */ - error_count_ne?: number; - /** - * Number of times this opcode resulted in an error (filter: lt) - */ - error_count_lt?: number; - /** - * Number of times this opcode resulted in an error (filter: lte) - */ - error_count_lte?: number; - /** - * Number of times this opcode resulted in an error (filter: gt) - */ - error_count_gt?: number; - /** - * Number of times this opcode resulted in an error (filter: gte) - */ - error_count_gte?: number; - /** - * Number of times this opcode resulted in an error (filter: between_min) - */ - error_count_between_min?: number; - /** - * Number of times this opcode resulted in an error (filter: between_max_value) - */ - error_count_between_max_value?: number; - /** - * Number of times this opcode resulted in an error (filter: in_values) (comma-separated list) - */ - error_count_in_values?: string; - /** - * Number of times this opcode resulted in an error (filter: not_in_values) (comma-separated list) - */ - error_count_not_in_values?: string; - /** - * The maximum number of int_transaction_opcode_gas to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntTransactionOpcodeGas` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_transaction_opcode_gas'; -}; - -export type IntTransactionOpcodeGasServiceListErrors = { + gas_refund_ne?: number; /** - * Default error response + * Gas refund from SSTORE operations (filter: lt) */ - default: Status; -}; - -export type IntTransactionOpcodeGasServiceListError = IntTransactionOpcodeGasServiceListErrors[keyof IntTransactionOpcodeGasServiceListErrors]; - -export type IntTransactionOpcodeGasServiceListResponses = { + gas_refund_lt?: number; /** - * OK + * Gas refund from SSTORE operations (filter: lte) */ - 200: ListIntTransactionOpcodeGasResponse; -}; - -export type IntTransactionOpcodeGasServiceListResponse = IntTransactionOpcodeGasServiceListResponses[keyof IntTransactionOpcodeGasServiceListResponses]; - -export type IntTransactionOpcodeGasServiceGetData = { - body?: never; - path: { - /** - * The block number containing the transaction - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_transaction_opcode_gas/{block_number}'; -}; - -export type IntTransactionOpcodeGasServiceGetErrors = { + gas_refund_lte?: number; /** - * Default error response + * Gas refund from SSTORE operations (filter: gt) */ - default: Status; -}; - -export type IntTransactionOpcodeGasServiceGetError = IntTransactionOpcodeGasServiceGetErrors[keyof IntTransactionOpcodeGasServiceGetErrors]; - -export type IntTransactionOpcodeGasServiceGetResponses = { + gas_refund_gt?: number; /** - * OK + * Gas refund from SSTORE operations (filter: gte) */ - 200: GetIntTransactionOpcodeGasResponse; -}; - -export type IntTransactionOpcodeGasServiceGetResponse = IntTransactionOpcodeGasServiceGetResponses[keyof IntTransactionOpcodeGasServiceGetResponses]; - -export type IntTransactionReceiptSizeServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number containing the transaction (filter: eq) - */ - block_number_eq?: number; - /** - * The block number containing the transaction (filter: ne) - */ - block_number_ne?: number; - /** - * The block number containing the transaction (filter: lt) - */ - block_number_lt?: number; - /** - * The block number containing the transaction (filter: lte) - */ - block_number_lte?: number; - /** - * The block number containing the transaction (filter: gt) - */ - block_number_gt?: number; - /** - * The block number containing the transaction (filter: gte) - */ - block_number_gte?: number; - /** - * The block number containing the transaction (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number containing the transaction (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number containing the transaction (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number containing the transaction (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: eq) - */ - transaction_hash_eq?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: ne) - */ - transaction_hash_ne?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: contains) - */ - transaction_hash_contains?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: starts_with) - */ - transaction_hash_starts_with?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: ends_with) - */ - transaction_hash_ends_with?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: like) - */ - transaction_hash_like?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: not_like) - */ - transaction_hash_not_like?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - transaction_hash_in_values?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - transaction_hash_not_in_values?: string; - /** - * The name of the network (filter: eq) - */ - meta_network_name_eq?: string; - /** - * The name of the network (filter: ne) - */ - meta_network_name_ne?: string; - /** - * The name of the network (filter: contains) - */ - meta_network_name_contains?: string; - /** - * The name of the network (filter: starts_with) - */ - meta_network_name_starts_with?: string; - /** - * The name of the network (filter: ends_with) - */ - meta_network_name_ends_with?: string; - /** - * The name of the network (filter: like) - */ - meta_network_name_like?: string; - /** - * The name of the network (filter: not_like) - */ - meta_network_name_not_like?: string; - /** - * The name of the network (filter: in_values) (comma-separated list) - */ - meta_network_name_in_values?: string; - /** - * The name of the network (filter: not_in_values) (comma-separated list) - */ - meta_network_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The index of the transaction within the block (filter: eq) - */ - transaction_index_eq?: number; - /** - * The index of the transaction within the block (filter: ne) - */ - transaction_index_ne?: number; - /** - * The index of the transaction within the block (filter: lt) - */ - transaction_index_lt?: number; - /** - * The index of the transaction within the block (filter: lte) - */ - transaction_index_lte?: number; - /** - * The index of the transaction within the block (filter: gt) - */ - transaction_index_gt?: number; - /** - * The index of the transaction within the block (filter: gte) - */ - transaction_index_gte?: number; - /** - * The index of the transaction within the block (filter: between_min) - */ - transaction_index_between_min?: number; - /** - * The index of the transaction within the block (filter: between_max_value) - */ - transaction_index_between_max_value?: number; - /** - * The index of the transaction within the block (filter: in_values) (comma-separated list) - */ - transaction_index_in_values?: string; - /** - * The index of the transaction within the block (filter: not_in_values) (comma-separated list) - */ - transaction_index_not_in_values?: string; - /** - * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: eq) - */ - receipt_bytes_eq?: number; - /** - * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: ne) - */ - receipt_bytes_ne?: number; - /** - * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: lt) - */ - receipt_bytes_lt?: number; - /** - * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: lte) - */ - receipt_bytes_lte?: number; - /** - * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: gt) - */ - receipt_bytes_gt?: number; - /** - * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: gte) - */ - receipt_bytes_gte?: number; - /** - * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: between_min) - */ - receipt_bytes_between_min?: number; - /** - * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: between_max_value) - */ - receipt_bytes_between_max_value?: number; - /** - * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: in_values) (comma-separated list) - */ - receipt_bytes_in_values?: string; - /** - * Exact RLP-encoded receipt size in bytes (matches eth_getTransactionReceipt) (filter: not_in_values) (comma-separated list) - */ - receipt_bytes_not_in_values?: string; - /** - * Number of logs emitted by this transaction (filter: eq) - */ - log_count_eq?: number; - /** - * Number of logs emitted by this transaction (filter: ne) - */ - log_count_ne?: number; - /** - * Number of logs emitted by this transaction (filter: lt) - */ - log_count_lt?: number; - /** - * Number of logs emitted by this transaction (filter: lte) - */ - log_count_lte?: number; - /** - * Number of logs emitted by this transaction (filter: gt) - */ - log_count_gt?: number; - /** - * Number of logs emitted by this transaction (filter: gte) - */ - log_count_gte?: number; - /** - * Number of logs emitted by this transaction (filter: between_min) - */ - log_count_between_min?: number; - /** - * Number of logs emitted by this transaction (filter: between_max_value) - */ - log_count_between_max_value?: number; - /** - * Number of logs emitted by this transaction (filter: in_values) (comma-separated list) - */ - log_count_in_values?: string; - /** - * Number of logs emitted by this transaction (filter: not_in_values) (comma-separated list) - */ - log_count_not_in_values?: string; - /** - * Total raw bytes of log data fields (before RLP encoding) (filter: eq) - */ - log_data_bytes_eq?: number; - /** - * Total raw bytes of log data fields (before RLP encoding) (filter: ne) - */ - log_data_bytes_ne?: number; - /** - * Total raw bytes of log data fields (before RLP encoding) (filter: lt) - */ - log_data_bytes_lt?: number; - /** - * Total raw bytes of log data fields (before RLP encoding) (filter: lte) - */ - log_data_bytes_lte?: number; - /** - * Total raw bytes of log data fields (before RLP encoding) (filter: gt) - */ - log_data_bytes_gt?: number; - /** - * Total raw bytes of log data fields (before RLP encoding) (filter: gte) - */ - log_data_bytes_gte?: number; - /** - * Total raw bytes of log data fields (before RLP encoding) (filter: between_min) - */ - log_data_bytes_between_min?: number; - /** - * Total raw bytes of log data fields (before RLP encoding) (filter: between_max_value) - */ - log_data_bytes_between_max_value?: number; - /** - * Total raw bytes of log data fields (before RLP encoding) (filter: in_values) (comma-separated list) - */ - log_data_bytes_in_values?: string; - /** - * Total raw bytes of log data fields (before RLP encoding) (filter: not_in_values) (comma-separated list) - */ - log_data_bytes_not_in_values?: string; - /** - * Total number of topics across all logs (filter: eq) - */ - log_topic_count_eq?: number; - /** - * Total number of topics across all logs (filter: ne) - */ - log_topic_count_ne?: number; - /** - * Total number of topics across all logs (filter: lt) - */ - log_topic_count_lt?: number; - /** - * Total number of topics across all logs (filter: lte) - */ - log_topic_count_lte?: number; - /** - * Total number of topics across all logs (filter: gt) - */ - log_topic_count_gt?: number; - /** - * Total number of topics across all logs (filter: gte) - */ - log_topic_count_gte?: number; - /** - * Total number of topics across all logs (filter: between_min) - */ - log_topic_count_between_min?: number; - /** - * Total number of topics across all logs (filter: between_max_value) - */ - log_topic_count_between_max_value?: number; - /** - * Total number of topics across all logs (filter: in_values) (comma-separated list) - */ - log_topic_count_in_values?: string; - /** - * Total number of topics across all logs (filter: not_in_values) (comma-separated list) - */ - log_topic_count_not_in_values?: string; - /** - * The maximum number of int_transaction_receipt_size to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntTransactionReceiptSize` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_transaction_receipt_size'; -}; - -export type IntTransactionReceiptSizeServiceListErrors = { + gas_refund_gte?: number; /** - * Default error response + * Gas refund from SSTORE operations (filter: between_min) */ - default: Status; -}; - -export type IntTransactionReceiptSizeServiceListError = IntTransactionReceiptSizeServiceListErrors[keyof IntTransactionReceiptSizeServiceListErrors]; - -export type IntTransactionReceiptSizeServiceListResponses = { + gas_refund_between_min?: number; /** - * OK + * Gas refund from SSTORE operations (filter: between_max_value) */ - 200: ListIntTransactionReceiptSizeResponse; -}; - -export type IntTransactionReceiptSizeServiceListResponse = IntTransactionReceiptSizeServiceListResponses[keyof IntTransactionReceiptSizeServiceListResponses]; - -export type IntTransactionReceiptSizeServiceGetData = { - body?: never; - path: { - /** - * The block number containing the transaction - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_transaction_receipt_size/{block_number}'; -}; - -export type IntTransactionReceiptSizeServiceGetErrors = { + gas_refund_between_max_value?: number; /** - * Default error response + * Gas refund from SSTORE operations (filter: in_values) (comma-separated list) */ - default: Status; -}; - -export type IntTransactionReceiptSizeServiceGetError = IntTransactionReceiptSizeServiceGetErrors[keyof IntTransactionReceiptSizeServiceGetErrors]; - -export type IntTransactionReceiptSizeServiceGetResponses = { + gas_refund_in_values?: string; /** - * OK + * Gas refund from SSTORE operations (filter: not_in_values) (comma-separated list) */ - 200: GetIntTransactionReceiptSizeResponse; -}; - -export type IntTransactionReceiptSizeServiceGetResponse = IntTransactionReceiptSizeServiceGetResponses[keyof IntTransactionReceiptSizeServiceGetResponses]; - -export type IntTransactionResourceGasServiceListData = { - body?: never; - path?: never; - query?: { - /** - * The block number containing the transaction (filter: eq) - */ - block_number_eq?: number; - /** - * The block number containing the transaction (filter: ne) - */ - block_number_ne?: number; - /** - * The block number containing the transaction (filter: lt) - */ - block_number_lt?: number; - /** - * The block number containing the transaction (filter: lte) - */ - block_number_lte?: number; - /** - * The block number containing the transaction (filter: gt) - */ - block_number_gt?: number; - /** - * The block number containing the transaction (filter: gte) - */ - block_number_gte?: number; - /** - * The block number containing the transaction (filter: between_min) - */ - block_number_between_min?: number; - /** - * The block number containing the transaction (filter: between_max_value) - */ - block_number_between_max_value?: number; - /** - * The block number containing the transaction (filter: in_values) (comma-separated list) - */ - block_number_in_values?: string; - /** - * The block number containing the transaction (filter: not_in_values) (comma-separated list) - */ - block_number_not_in_values?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: eq) - */ - transaction_hash_eq?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: ne) - */ - transaction_hash_ne?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: contains) - */ - transaction_hash_contains?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: starts_with) - */ - transaction_hash_starts_with?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: ends_with) - */ - transaction_hash_ends_with?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: like) - */ - transaction_hash_like?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: not_like) - */ - transaction_hash_not_like?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: in_values) (comma-separated list) - */ - transaction_hash_in_values?: string; - /** - * The transaction hash (hex encoded with 0x prefix) (filter: not_in_values) (comma-separated list) - */ - transaction_hash_not_in_values?: string; - /** - * The name of the network (filter: eq) - */ - meta_network_name_eq?: string; - /** - * The name of the network (filter: ne) - */ - meta_network_name_ne?: string; - /** - * The name of the network (filter: contains) - */ - meta_network_name_contains?: string; - /** - * The name of the network (filter: starts_with) - */ - meta_network_name_starts_with?: string; - /** - * The name of the network (filter: ends_with) - */ - meta_network_name_ends_with?: string; - /** - * The name of the network (filter: like) - */ - meta_network_name_like?: string; - /** - * The name of the network (filter: not_like) - */ - meta_network_name_not_like?: string; - /** - * The name of the network (filter: in_values) (comma-separated list) - */ - meta_network_name_in_values?: string; - /** - * The name of the network (filter: not_in_values) (comma-separated list) - */ - meta_network_name_not_in_values?: string; - /** - * Timestamp when the record was last updated (filter: eq) - */ - updated_date_time_eq?: number; - /** - * Timestamp when the record was last updated (filter: ne) - */ - updated_date_time_ne?: number; - /** - * Timestamp when the record was last updated (filter: lt) - */ - updated_date_time_lt?: number; - /** - * Timestamp when the record was last updated (filter: lte) - */ - updated_date_time_lte?: number; - /** - * Timestamp when the record was last updated (filter: gt) - */ - updated_date_time_gt?: number; - /** - * Timestamp when the record was last updated (filter: gte) - */ - updated_date_time_gte?: number; - /** - * Timestamp when the record was last updated (filter: between_min) - */ - updated_date_time_between_min?: number; - /** - * Timestamp when the record was last updated (filter: between_max_value) - */ - updated_date_time_between_max_value?: number; - /** - * Timestamp when the record was last updated (filter: in_values) (comma-separated list) - */ - updated_date_time_in_values?: string; - /** - * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) - */ - updated_date_time_not_in_values?: string; - /** - * The index of the transaction within the block (filter: eq) - */ - transaction_index_eq?: number; - /** - * The index of the transaction within the block (filter: ne) - */ - transaction_index_ne?: number; - /** - * The index of the transaction within the block (filter: lt) - */ - transaction_index_lt?: number; - /** - * The index of the transaction within the block (filter: lte) - */ - transaction_index_lte?: number; - /** - * The index of the transaction within the block (filter: gt) - */ - transaction_index_gt?: number; - /** - * The index of the transaction within the block (filter: gte) - */ - transaction_index_gte?: number; - /** - * The index of the transaction within the block (filter: between_min) - */ - transaction_index_between_min?: number; - /** - * The index of the transaction within the block (filter: between_max_value) - */ - transaction_index_between_max_value?: number; - /** - * The index of the transaction within the block (filter: in_values) (comma-separated list) - */ - transaction_index_in_values?: string; - /** - * The index of the transaction within the block (filter: not_in_values) (comma-separated list) - */ - transaction_index_not_in_values?: string; - /** - * Total compute gas (EVM execution + intrinsic compute) (filter: eq) - */ - gas_compute_eq?: number; - /** - * Total compute gas (EVM execution + intrinsic compute) (filter: ne) - */ - gas_compute_ne?: number; - /** - * Total compute gas (EVM execution + intrinsic compute) (filter: lt) - */ - gas_compute_lt?: number; - /** - * Total compute gas (EVM execution + intrinsic compute) (filter: lte) - */ - gas_compute_lte?: number; - /** - * Total compute gas (EVM execution + intrinsic compute) (filter: gt) - */ - gas_compute_gt?: number; - /** - * Total compute gas (EVM execution + intrinsic compute) (filter: gte) - */ - gas_compute_gte?: number; - /** - * Total compute gas (EVM execution + intrinsic compute) (filter: between_min) - */ - gas_compute_between_min?: number; - /** - * Total compute gas (EVM execution + intrinsic compute) (filter: between_max_value) - */ - gas_compute_between_max_value?: number; - /** - * Total compute gas (EVM execution + intrinsic compute) (filter: in_values) (comma-separated list) - */ - gas_compute_in_values?: string; - /** - * Total compute gas (EVM execution + intrinsic compute) (filter: not_in_values) (comma-separated list) - */ - gas_compute_not_in_values?: string; - /** - * Total memory expansion gas (filter: eq) - */ - gas_memory_eq?: number; - /** - * Total memory expansion gas (filter: ne) - */ - gas_memory_ne?: number; - /** - * Total memory expansion gas (filter: lt) - */ - gas_memory_lt?: number; - /** - * Total memory expansion gas (filter: lte) - */ - gas_memory_lte?: number; - /** - * Total memory expansion gas (filter: gt) - */ - gas_memory_gt?: number; - /** - * Total memory expansion gas (filter: gte) - */ - gas_memory_gte?: number; - /** - * Total memory expansion gas (filter: between_min) - */ - gas_memory_between_min?: number; - /** - * Total memory expansion gas (filter: between_max_value) - */ - gas_memory_between_max_value?: number; - /** - * Total memory expansion gas (filter: in_values) (comma-separated list) - */ - gas_memory_in_values?: string; - /** - * Total memory expansion gas (filter: not_in_values) (comma-separated list) - */ - gas_memory_not_in_values?: string; - /** - * Total cold address/storage access gas (filter: eq) - */ - gas_address_access_eq?: number; - /** - * Total cold address/storage access gas (filter: ne) - */ - gas_address_access_ne?: number; - /** - * Total cold address/storage access gas (filter: lt) - */ - gas_address_access_lt?: number; - /** - * Total cold address/storage access gas (filter: lte) - */ - gas_address_access_lte?: number; - /** - * Total cold address/storage access gas (filter: gt) - */ - gas_address_access_gt?: number; - /** - * Total cold address/storage access gas (filter: gte) - */ - gas_address_access_gte?: number; - /** - * Total cold address/storage access gas (filter: between_min) - */ - gas_address_access_between_min?: number; - /** - * Total cold address/storage access gas (filter: between_max_value) - */ - gas_address_access_between_max_value?: number; - /** - * Total cold address/storage access gas (filter: in_values) (comma-separated list) - */ - gas_address_access_in_values?: string; - /** - * Total cold address/storage access gas (filter: not_in_values) (comma-separated list) - */ - gas_address_access_not_in_values?: string; - /** - * Total state growth gas (filter: eq) - */ - gas_state_growth_eq?: number; - /** - * Total state growth gas (filter: ne) - */ - gas_state_growth_ne?: number; - /** - * Total state growth gas (filter: lt) - */ - gas_state_growth_lt?: number; - /** - * Total state growth gas (filter: lte) - */ - gas_state_growth_lte?: number; - /** - * Total state growth gas (filter: gt) - */ - gas_state_growth_gt?: number; - /** - * Total state growth gas (filter: gte) - */ - gas_state_growth_gte?: number; - /** - * Total state growth gas (filter: between_min) - */ - gas_state_growth_between_min?: number; - /** - * Total state growth gas (filter: between_max_value) - */ - gas_state_growth_between_max_value?: number; - /** - * Total state growth gas (filter: in_values) (comma-separated list) - */ - gas_state_growth_in_values?: string; - /** - * Total state growth gas (filter: not_in_values) (comma-separated list) - */ - gas_state_growth_not_in_values?: string; - /** - * Total history/log data gas (filter: eq) - */ - gas_history_eq?: number; - /** - * Total history/log data gas (filter: ne) - */ - gas_history_ne?: number; - /** - * Total history/log data gas (filter: lt) - */ - gas_history_lt?: number; - /** - * Total history/log data gas (filter: lte) - */ - gas_history_lte?: number; - /** - * Total history/log data gas (filter: gt) - */ - gas_history_gt?: number; - /** - * Total history/log data gas (filter: gte) - */ - gas_history_gte?: number; - /** - * Total history/log data gas (filter: between_min) - */ - gas_history_between_min?: number; - /** - * Total history/log data gas (filter: between_max_value) - */ - gas_history_between_max_value?: number; - /** - * Total history/log data gas (filter: in_values) (comma-separated list) - */ - gas_history_in_values?: string; - /** - * Total history/log data gas (filter: not_in_values) (comma-separated list) - */ - gas_history_not_in_values?: string; - /** - * Total bloom filter topic gas (filter: eq) - */ - gas_bloom_topics_eq?: number; - /** - * Total bloom filter topic gas (filter: ne) - */ - gas_bloom_topics_ne?: number; - /** - * Total bloom filter topic gas (filter: lt) - */ - gas_bloom_topics_lt?: number; - /** - * Total bloom filter topic gas (filter: lte) - */ - gas_bloom_topics_lte?: number; - /** - * Total bloom filter topic gas (filter: gt) - */ - gas_bloom_topics_gt?: number; - /** - * Total bloom filter topic gas (filter: gte) - */ - gas_bloom_topics_gte?: number; - /** - * Total bloom filter topic gas (filter: between_min) - */ - gas_bloom_topics_between_min?: number; - /** - * Total bloom filter topic gas (filter: between_max_value) - */ - gas_bloom_topics_between_max_value?: number; - /** - * Total bloom filter topic gas (filter: in_values) (comma-separated list) - */ - gas_bloom_topics_in_values?: string; - /** - * Total bloom filter topic gas (filter: not_in_values) (comma-separated list) - */ - gas_bloom_topics_not_in_values?: string; - /** - * Total block size gas (from intrinsic calldata) (filter: eq) - */ - gas_block_size_eq?: number; - /** - * Total block size gas (from intrinsic calldata) (filter: ne) - */ - gas_block_size_ne?: number; - /** - * Total block size gas (from intrinsic calldata) (filter: lt) - */ - gas_block_size_lt?: number; - /** - * Total block size gas (from intrinsic calldata) (filter: lte) - */ - gas_block_size_lte?: number; - /** - * Total block size gas (from intrinsic calldata) (filter: gt) - */ - gas_block_size_gt?: number; - /** - * Total block size gas (from intrinsic calldata) (filter: gte) - */ - gas_block_size_gte?: number; - /** - * Total block size gas (from intrinsic calldata) (filter: between_min) - */ - gas_block_size_between_min?: number; - /** - * Total block size gas (from intrinsic calldata) (filter: between_max_value) - */ - gas_block_size_between_max_value?: number; - /** - * Total block size gas (from intrinsic calldata) (filter: in_values) (comma-separated list) - */ - gas_block_size_in_values?: string; - /** - * Total block size gas (from intrinsic calldata) (filter: not_in_values) (comma-separated list) - */ - gas_block_size_not_in_values?: string; - /** - * Gas refund from SSTORE operations (filter: eq) - */ - gas_refund_eq?: number; - /** - * Gas refund from SSTORE operations (filter: ne) - */ - gas_refund_ne?: number; - /** - * Gas refund from SSTORE operations (filter: lt) - */ - gas_refund_lt?: number; - /** - * Gas refund from SSTORE operations (filter: lte) - */ - gas_refund_lte?: number; - /** - * Gas refund from SSTORE operations (filter: gt) - */ - gas_refund_gt?: number; - /** - * Gas refund from SSTORE operations (filter: gte) - */ - gas_refund_gte?: number; - /** - * Gas refund from SSTORE operations (filter: between_min) - */ - gas_refund_between_min?: number; - /** - * Gas refund from SSTORE operations (filter: between_max_value) - */ - gas_refund_between_max_value?: number; - /** - * Gas refund from SSTORE operations (filter: in_values) (comma-separated list) - */ - gas_refund_in_values?: string; - /** - * Gas refund from SSTORE operations (filter: not_in_values) (comma-separated list) - */ - gas_refund_not_in_values?: string; - /** - * The maximum number of int_transaction_resource_gas to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. - */ - page_size?: number; - /** - * A page token, received from a previous `ListIntTransactionResourceGas` call. Provide this to retrieve the subsequent page. - */ - page_token?: string; - /** - * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. - */ - order_by?: string; - }; - url: '/api/v1/int_transaction_resource_gas'; + gas_refund_not_in_values?: string; + /** + * The maximum number of int_transaction_resource_gas to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListIntTransactionResourceGas` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/int_transaction_resource_gas'; }; export type IntTransactionResourceGasServiceListErrors = { - /** - * Default error response - */ - default: Status; + /** + * Default error response + */ + default: Status; }; -export type IntTransactionResourceGasServiceListError = IntTransactionResourceGasServiceListErrors[keyof IntTransactionResourceGasServiceListErrors]; +export type IntTransactionResourceGasServiceListError = + IntTransactionResourceGasServiceListErrors[keyof IntTransactionResourceGasServiceListErrors]; export type IntTransactionResourceGasServiceListResponses = { - /** - * OK - */ - 200: ListIntTransactionResourceGasResponse; + /** + * OK + */ + 200: ListIntTransactionResourceGasResponse; }; -export type IntTransactionResourceGasServiceListResponse = IntTransactionResourceGasServiceListResponses[keyof IntTransactionResourceGasServiceListResponses]; +export type IntTransactionResourceGasServiceListResponse = + IntTransactionResourceGasServiceListResponses[keyof IntTransactionResourceGasServiceListResponses]; export type IntTransactionResourceGasServiceGetData = { - body?: never; - path: { - /** - * The block number containing the transaction - */ - block_number: number; - }; - query?: never; - url: '/api/v1/int_transaction_resource_gas/{block_number}'; + body?: never; + path: { + /** + * The block number containing the transaction + */ + block_number: number; + }; + query?: never; + url: '/api/v1/int_transaction_resource_gas/{block_number}'; }; export type IntTransactionResourceGasServiceGetErrors = { - /** - * Default error response - */ - default: Status; + /** + * Default error response + */ + default: Status; }; -export type IntTransactionResourceGasServiceGetError = IntTransactionResourceGasServiceGetErrors[keyof IntTransactionResourceGasServiceGetErrors]; +export type IntTransactionResourceGasServiceGetError = + IntTransactionResourceGasServiceGetErrors[keyof IntTransactionResourceGasServiceGetErrors]; export type IntTransactionResourceGasServiceGetResponses = { - /** - * OK - */ - 200: GetIntTransactionResourceGasResponse; + /** + * OK + */ + 200: GetIntTransactionResourceGasResponse; }; -export type IntTransactionResourceGasServiceGetResponse = IntTransactionResourceGasServiceGetResponses[keyof IntTransactionResourceGasServiceGetResponses]; +export type IntTransactionResourceGasServiceGetResponse = + IntTransactionResourceGasServiceGetResponses[keyof IntTransactionResourceGasServiceGetResponses]; diff --git a/src/api/zod.gen.ts b/src/api/zod.gen.ts index 1f4a57e1d..2a4f9f451 100644 --- a/src/api/zod.gen.ts +++ b/src/api/zod.gen.ts @@ -3,6244 +3,17893 @@ import * as z from 'zod/mini'; export const zAdminCbtIncremental = z.object({ - database: z.optional(z.string()), - interval: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - position: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - table: z.optional(z.string()), - updated_date_time: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))) + database: z.optional(z.string()), + interval: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + position: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + table: z.optional(z.string()), + updated_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), +}); + +export const zAdminCbtScheduled = z.object({ + database: z.optional(z.string()), + start_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + table: z.optional(z.string()), + updated_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), }); export const zDimBlockBlobSubmitter = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - name: z.optional(z.union([ - z.string(), - z.null() - ])), - transaction_hash: z.optional(z.string()), - transaction_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - versioned_hashes: z.optional(z.array(z.string())) + address: z.optional(z.string()), + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + name: z.optional(z.union([z.string(), z.null()])), + transaction_hash: z.optional(z.string()), + transaction_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + versioned_hashes: z.optional(z.array(z.string())), }); export const zDimContractOwner = z.object({ - account_owner: z.optional(z.union([ - z.string(), - z.null() - ])), - contract_address: z.optional(z.string()), - contract_name: z.optional(z.union([ - z.string(), - z.null() - ])), - factory_contract: z.optional(z.union([ - z.string(), - z.null() - ])), - labels: z.optional(z.array(z.string())), - owner_key: z.optional(z.union([ - z.string(), - z.null() - ])), - sources: z.optional(z.array(z.string())), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + account_owner: z.optional(z.union([z.string(), z.null()])), + contract_address: z.optional(z.string()), + contract_name: z.optional(z.union([z.string(), z.null()])), + factory_contract: z.optional(z.union([z.string(), z.null()])), + labels: z.optional(z.array(z.string())), + owner_key: z.optional(z.union([z.string(), z.null()])), + sources: z.optional(z.array(z.string())), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zDimFunctionSignature = z.object({ - has_verified_contract: z.optional(z.boolean()), - name: z.optional(z.string()), - selector: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + has_verified_contract: z.optional(z.boolean()), + name: z.optional(z.string()), + selector: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zDimNode = z.object({ - attributes: z.optional(z.record(z.string(), z.string())), - groups: z.optional(z.array(z.string())), - name: z.optional(z.union([ - z.string(), - z.null() - ])), - source: z.optional(z.string()), - tags: z.optional(z.array(z.string())), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + attributes: z.optional(z.record(z.string(), z.string())), + groups: z.optional(z.array(z.string())), + name: z.optional(z.union([z.string(), z.null()])), + source: z.optional(z.string()), + tags: z.optional(z.array(z.string())), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zDimRocketpoolNode = z.object({ - active_minipool_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - first_seen_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - in_smoothing_pool: z.optional(z.boolean()), - last_activity_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - megapool_validator_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - minipool_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - node_operator: z.optional(z.string()), - registered_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rpl_staked_wei: z.optional(z.string()), - timezone: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_minipool_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + in_smoothing_pool: z.optional(z.boolean()), + last_activity_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + megapool_validator_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + minipool_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + node_operator: z.optional(z.string()), + registered_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rpl_staked_wei: z.optional(z.string()), + timezone: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zDimTokenContract = z.object({ - contract_address: z.optional(z.string()), - token_standard: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + contract_address: z.optional(z.string()), + token_standard: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zDimValidatorPubkey = z.object({ - pubkey: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + pubkey: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zDimValidatorStatus = z.object({ - activation_eligibility_epoch: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - activation_epoch: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - exit_epoch: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - pubkey: z.optional(z.string()), - slashed: z.optional(z.boolean()), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - version: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - withdrawable_epoch: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])) + activation_eligibility_epoch: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + activation_epoch: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + exit_epoch: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + pubkey: z.optional(z.string()), + slashed: z.optional(z.boolean()), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + version: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + withdrawable_epoch: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), +}); + +export const zFctAttestationCorrectness = z.object({ + block_root: z.optional(z.union([z.string(), z.null()])), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + votes_max: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), +}); + +export const zFctAttestationCorrectnessByValidator = z.object({ + attesting_validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.union([z.string(), z.null()])), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + propagation_distance: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctAttestationCorrectnessByValidatorCanonical = z.object({ - attesting_validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.union([ - z.string(), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + attesting_validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.union([z.string(), z.null()])), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctAttestationCorrectnessByValidatorHead = z.object({ - attesting_validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.union([ - z.string(), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + attesting_validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.union([z.string(), z.null()])), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctAttestationCorrectnessCanonical = z.object({ - block_root: z.optional(z.union([ - z.string(), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - votes_max: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])) + block_root: z.optional(z.union([z.string(), z.null()])), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + votes_max: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), }); export const zFctAttestationCorrectnessHead = z.object({ - block_root: z.optional(z.union([ - z.string(), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - votes_max: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])) + block_root: z.optional(z.union([z.string(), z.null()])), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + votes_max: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), }); export const zFctAttestationFirstSeenByValidator = z.object({ - agg_seen_slot_start_diff: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - agg_source: z.optional(z.string()), - block_root: z.optional(z.string()), - committee_index: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - raw_seen_slot_start_diff: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - raw_source: z.optional(z.string()), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_root: z.optional(z.string()), - target_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_root: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + agg_seen_slot_start_diff: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + agg_source: z.optional(z.string()), + block_root: z.optional(z.string()), + committee_index: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + raw_seen_slot_start_diff: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + raw_source: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_root: z.optional(z.string()), + target_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_root: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctAttestationFirstSeenChunked50Ms = z.object({ - attestation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.string()), - chunk_slot_start_diff: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + attestation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + chunk_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctAttestationInclusionDelayDaily = z.object({ - avg_inclusion_delay: z.optional(z.number()), - day_start_date: z.optional(z.string()), - lower_band_inclusion_delay: z.optional(z.number()), - max_inclusion_delay: z.optional(z.number()), - min_inclusion_delay: z.optional(z.number()), - moving_avg_inclusion_delay: z.optional(z.number()), - p05_inclusion_delay: z.optional(z.number()), - p50_inclusion_delay: z.optional(z.number()), - p95_inclusion_delay: z.optional(z.number()), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - stddev_inclusion_delay: z.optional(z.number()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_inclusion_delay: z.optional(z.number()) + avg_inclusion_delay: z.optional(z.number()), + day_start_date: z.optional(z.string()), + lower_band_inclusion_delay: z.optional(z.number()), + max_inclusion_delay: z.optional(z.number()), + min_inclusion_delay: z.optional(z.number()), + moving_avg_inclusion_delay: z.optional(z.number()), + p05_inclusion_delay: z.optional(z.number()), + p50_inclusion_delay: z.optional(z.number()), + p95_inclusion_delay: z.optional(z.number()), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + stddev_inclusion_delay: z.optional(z.number()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_inclusion_delay: z.optional(z.number()), }); export const zFctAttestationInclusionDelayHourly = z.object({ - avg_inclusion_delay: z.optional(z.number()), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lower_band_inclusion_delay: z.optional(z.number()), - max_inclusion_delay: z.optional(z.number()), - min_inclusion_delay: z.optional(z.number()), - moving_avg_inclusion_delay: z.optional(z.number()), - p05_inclusion_delay: z.optional(z.number()), - p50_inclusion_delay: z.optional(z.number()), - p95_inclusion_delay: z.optional(z.number()), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - stddev_inclusion_delay: z.optional(z.number()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_inclusion_delay: z.optional(z.number()) + avg_inclusion_delay: z.optional(z.number()), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lower_band_inclusion_delay: z.optional(z.number()), + max_inclusion_delay: z.optional(z.number()), + min_inclusion_delay: z.optional(z.number()), + moving_avg_inclusion_delay: z.optional(z.number()), + p05_inclusion_delay: z.optional(z.number()), + p50_inclusion_delay: z.optional(z.number()), + p95_inclusion_delay: z.optional(z.number()), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + stddev_inclusion_delay: z.optional(z.number()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_inclusion_delay: z.optional(z.number()), +}); + +export const zFctAttestationLivenessByEntity = z.object({ + attestation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + entity: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctAttestationLivenessByEntityHead = z.object({ - attestation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - entity: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + attestation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + entity: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctAttestationObservationByNode = z.object({ - attestation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_seen_slot_start_diff: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.string()), - classification: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_seen_slot_start_diff: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - median_seen_slot_start_diff: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_client_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_continent_code: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_implementation: z.optional(z.string()), - meta_client_name: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_consensus_implementation: z.optional(z.string()), - meta_consensus_version: z.optional(z.string()), - min_seen_slot_start_diff: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - node_id: z.optional(z.string()), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - username: z.optional(z.string()) + attestation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + classification: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + median_seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_consensus_implementation: z.optional(z.string()), + meta_consensus_version: z.optional(z.string()), + min_seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + node_id: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + username: z.optional(z.string()), }); export const zFctAttestationParticipationRateDaily = z.object({ - avg_participation_rate: z.optional(z.number()), - day_start_date: z.optional(z.string()), - lower_band_participation_rate: z.optional(z.number()), - max_participation_rate: z.optional(z.number()), - min_participation_rate: z.optional(z.number()), - moving_avg_participation_rate: z.optional(z.number()), - p05_participation_rate: z.optional(z.number()), - p50_participation_rate: z.optional(z.number()), - p95_participation_rate: z.optional(z.number()), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - stddev_participation_rate: z.optional(z.number()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_participation_rate: z.optional(z.number()) + avg_participation_rate: z.optional(z.number()), + day_start_date: z.optional(z.string()), + lower_band_participation_rate: z.optional(z.number()), + max_participation_rate: z.optional(z.number()), + min_participation_rate: z.optional(z.number()), + moving_avg_participation_rate: z.optional(z.number()), + p05_participation_rate: z.optional(z.number()), + p50_participation_rate: z.optional(z.number()), + p95_participation_rate: z.optional(z.number()), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + stddev_participation_rate: z.optional(z.number()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_participation_rate: z.optional(z.number()), }); export const zFctAttestationParticipationRateHourly = z.object({ - avg_participation_rate: z.optional(z.number()), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lower_band_participation_rate: z.optional(z.number()), - max_participation_rate: z.optional(z.number()), - min_participation_rate: z.optional(z.number()), - moving_avg_participation_rate: z.optional(z.number()), - p05_participation_rate: z.optional(z.number()), - p50_participation_rate: z.optional(z.number()), - p95_participation_rate: z.optional(z.number()), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - stddev_participation_rate: z.optional(z.number()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_participation_rate: z.optional(z.number()) + avg_participation_rate: z.optional(z.number()), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lower_band_participation_rate: z.optional(z.number()), + max_participation_rate: z.optional(z.number()), + min_participation_rate: z.optional(z.number()), + moving_avg_participation_rate: z.optional(z.number()), + p05_participation_rate: z.optional(z.number()), + p50_participation_rate: z.optional(z.number()), + p95_participation_rate: z.optional(z.number()), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + stddev_participation_rate: z.optional(z.number()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_participation_rate: z.optional(z.number()), }); export const zFctAttestationVoteCorrectnessByValidator = z.object({ - attested: z.optional(z.boolean()), - head_correct: z.optional(z.union([ - z.boolean(), - z.null() - ])), - inclusion_distance: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - slot: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct: z.optional(z.union([ - z.boolean(), - z.null() - ])), - target_correct: z.optional(z.union([ - z.boolean(), - z.null() - ])), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + attested: z.optional(z.boolean()), + head_correct: z.optional(z.union([z.boolean(), z.null()])), + inclusion_distance: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + slot: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct: z.optional(z.union([z.boolean(), z.null()])), + target_correct: z.optional(z.union([z.boolean(), z.null()])), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctAttestationVoteCorrectnessByValidatorDaily = z.object({ - attested_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_inclusion_distance: z.optional(z.union([ - z.number(), - z.null() - ])), - day_start_date: z.optional(z.string()), - head_correct_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + attested_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_inclusion_distance: z.optional(z.union([z.number(), z.null()])), + day_start_date: z.optional(z.string()), + head_correct_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctAttestationVoteCorrectnessByValidatorHourly = z.object({ - attested_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_inclusion_distance: z.optional(z.union([ - z.number(), - z.null() - ])), - head_correct_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + attested_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_inclusion_distance: z.optional(z.union([z.number(), z.null()])), + head_correct_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctBlobCountDaily = z.object({ - avg_blob_count: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - day_start_date: z.optional(z.string()), - lower_band_blob_count: z.optional(z.number()), - max_blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - moving_avg_blob_count: z.optional(z.number()), - p05_blob_count: z.optional(z.number()), - p50_blob_count: z.optional(z.number()), - p95_blob_count: z.optional(z.number()), - stddev_blob_count: z.optional(z.number()), - total_blobs: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_blob_count: z.optional(z.number()) + avg_blob_count: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + day_start_date: z.optional(z.string()), + lower_band_blob_count: z.optional(z.number()), + max_blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + moving_avg_blob_count: z.optional(z.number()), + p05_blob_count: z.optional(z.number()), + p50_blob_count: z.optional(z.number()), + p95_blob_count: z.optional(z.number()), + stddev_blob_count: z.optional(z.number()), + total_blobs: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_blob_count: z.optional(z.number()), }); export const zFctBlobCountHourly = z.object({ - avg_blob_count: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lower_band_blob_count: z.optional(z.number()), - max_blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - moving_avg_blob_count: z.optional(z.number()), - p05_blob_count: z.optional(z.number()), - p50_blob_count: z.optional(z.number()), - p95_blob_count: z.optional(z.number()), - stddev_blob_count: z.optional(z.number()), - total_blobs: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_blob_count: z.optional(z.number()) + avg_blob_count: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lower_band_blob_count: z.optional(z.number()), + max_blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + moving_avg_blob_count: z.optional(z.number()), + p05_blob_count: z.optional(z.number()), + p50_blob_count: z.optional(z.number()), + p95_blob_count: z.optional(z.number()), + stddev_blob_count: z.optional(z.number()), + total_blobs: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_blob_count: z.optional(z.number()), }); export const zFctBlock = z.object({ - block_root: z.optional(z.string()), - block_total_bytes: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - block_total_bytes_compressed: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - block_version: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - eth1_data_block_hash: z.optional(z.string()), - eth1_data_deposit_root: z.optional(z.string()), - execution_payload_base_fee_per_gas: z.optional(z.union([ - z.string(), - z.null() - ])), - execution_payload_blob_gas_used: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_block_hash: z.optional(z.string()), - execution_payload_block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_excess_blob_gas: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_fee_recipient: z.optional(z.string()), - execution_payload_gas_limit: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_gas_used: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_parent_hash: z.optional(z.string()), - execution_payload_state_root: z.optional(z.string()), - execution_payload_transactions_count: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - execution_payload_transactions_total_bytes: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - execution_payload_transactions_total_bytes_compressed: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - parent_root: z.optional(z.string()), - proposer_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - state_root: z.optional(z.string()), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_root: z.optional(z.string()), + block_total_bytes: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + block_total_bytes_compressed: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + block_version: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + eth1_data_block_hash: z.optional(z.string()), + eth1_data_deposit_root: z.optional(z.string()), + execution_payload_base_fee_per_gas: z.optional(z.union([z.string(), z.null()])), + execution_payload_blob_gas_used: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_block_hash: z.optional(z.string()), + execution_payload_block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_excess_blob_gas: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_fee_recipient: z.optional(z.string()), + execution_payload_gas_limit: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_gas_used: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_parent_hash: z.optional(z.string()), + execution_payload_state_root: z.optional(z.string()), + execution_payload_transactions_count: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + execution_payload_transactions_total_bytes: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + execution_payload_transactions_total_bytes_compressed: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + parent_root: z.optional(z.string()), + proposer_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + state_root: z.optional(z.string()), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctBlockBlobCount = z.object({ - blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctBlockBlobCountHead = z.object({ - blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctBlockBlobFirstSeenByNode = z.object({ - blob_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.string()), - classification: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_client_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_continent_code: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_implementation: z.optional(z.string()), - meta_client_name: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_consensus_implementation: z.optional(z.string()), - meta_consensus_version: z.optional(z.string()), - node_id: z.optional(z.string()), - seen_slot_start_diff: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - username: z.optional(z.string()) + blob_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + classification: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_consensus_implementation: z.optional(z.string()), + meta_consensus_version: z.optional(z.string()), + node_id: z.optional(z.string()), + seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + username: z.optional(z.string()), }); export const zFctBlockBlobHead = z.object({ - blob_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - kzg_commitment: z.optional(z.string()), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - versioned_hash: z.optional(z.string()) + blob_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + kzg_commitment: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + versioned_hash: z.optional(z.string()), }); export const zFctBlockDataColumnSidecarFirstSeen = z.object({ - block_root: z.optional(z.string()), - classification: z.optional(z.string()), - column_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_client_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_continent_code: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_implementation: z.optional(z.string()), - meta_client_name: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_consensus_implementation: z.optional(z.string()), - meta_consensus_version: z.optional(z.string()), - node_id: z.optional(z.string()), - row_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - username: z.optional(z.string()) + block_root: z.optional(z.string()), + classification: z.optional(z.string()), + column_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_consensus_implementation: z.optional(z.string()), + meta_consensus_version: z.optional(z.string()), + node_id: z.optional(z.string()), + row_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + username: z.optional(z.string()), }); export const zFctBlockDataColumnSidecarFirstSeenByNode = z.object({ - block_root: z.optional(z.string()), - classification: z.optional(z.string()), - column_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_client_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_continent_code: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_implementation: z.optional(z.string()), - meta_client_name: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_consensus_implementation: z.optional(z.string()), - meta_consensus_version: z.optional(z.string()), - node_id: z.optional(z.string()), - row_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - username: z.optional(z.string()) + block_root: z.optional(z.string()), + classification: z.optional(z.string()), + column_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_consensus_implementation: z.optional(z.string()), + meta_consensus_version: z.optional(z.string()), + node_id: z.optional(z.string()), + row_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + username: z.optional(z.string()), }); export const zFctBlockFirstSeenByNode = z.object({ - block_root: z.optional(z.string()), - classification: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_client_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_continent_code: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_implementation: z.optional(z.string()), - meta_client_name: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_consensus_implementation: z.optional(z.string()), - meta_consensus_version: z.optional(z.string()), - node_id: z.optional(z.string()), - seen_slot_start_diff: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - username: z.optional(z.string()) + block_root: z.optional(z.string()), + classification: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_consensus_implementation: z.optional(z.string()), + meta_consensus_version: z.optional(z.string()), + node_id: z.optional(z.string()), + seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + username: z.optional(z.string()), }); export const zFctBlockHead = z.object({ - block_root: z.optional(z.string()), - block_total_bytes: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - block_total_bytes_compressed: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - block_version: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - eth1_data_block_hash: z.optional(z.string()), - eth1_data_deposit_root: z.optional(z.string()), - execution_payload_base_fee_per_gas: z.optional(z.union([ - z.string(), - z.null() - ])), - execution_payload_blob_gas_used: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_block_hash: z.optional(z.string()), - execution_payload_block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_excess_blob_gas: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_fee_recipient: z.optional(z.string()), - execution_payload_gas_limit: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_gas_used: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_parent_hash: z.optional(z.string()), - execution_payload_state_root: z.optional(z.string()), - execution_payload_transactions_count: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - execution_payload_transactions_total_bytes: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - execution_payload_transactions_total_bytes_compressed: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - parent_root: z.optional(z.string()), - proposer_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - state_root: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_root: z.optional(z.string()), + block_total_bytes: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + block_total_bytes_compressed: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + block_version: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + eth1_data_block_hash: z.optional(z.string()), + eth1_data_deposit_root: z.optional(z.string()), + execution_payload_base_fee_per_gas: z.optional(z.union([z.string(), z.null()])), + execution_payload_blob_gas_used: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_block_hash: z.optional(z.string()), + execution_payload_block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_excess_blob_gas: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_fee_recipient: z.optional(z.string()), + execution_payload_gas_limit: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_gas_used: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_parent_hash: z.optional(z.string()), + execution_payload_state_root: z.optional(z.string()), + execution_payload_transactions_count: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + execution_payload_transactions_total_bytes: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + execution_payload_transactions_total_bytes_compressed: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + parent_root: z.optional(z.string()), + proposer_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + state_root: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctBlockMev = z.object({ - block_hash: z.optional(z.string()), - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_root: z.optional(z.string()), - builder_pubkey: z.optional(z.string()), - earliest_bid_date_time: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' })), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - parent_hash: z.optional(z.string()), - proposer_fee_recipient: z.optional(z.string()), - proposer_pubkey: z.optional(z.string()), - relay_names: z.optional(z.array(z.string())), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - transaction_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - value: z.optional(z.union([ - z.string(), - z.null() - ])) + block_hash: z.optional(z.string()), + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_root: z.optional(z.string()), + builder_pubkey: z.optional(z.string()), + earliest_bid_date_time: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ), + z.null(), + ]) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + parent_hash: z.optional(z.string()), + proposer_fee_recipient: z.optional(z.string()), + proposer_pubkey: z.optional(z.string()), + relay_names: z.optional(z.array(z.string())), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + transaction_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + value: z.optional(z.union([z.string(), z.null()])), }); export const zFctBlockMevHead = z.object({ - block_hash: z.optional(z.string()), - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_root: z.optional(z.string()), - builder_pubkey: z.optional(z.string()), - earliest_bid_date_time: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' })), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - parent_hash: z.optional(z.string()), - proposer_fee_recipient: z.optional(z.string()), - proposer_pubkey: z.optional(z.string()), - relay_names: z.optional(z.array(z.string())), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - value: z.optional(z.union([ - z.string(), - z.null() - ])) + block_hash: z.optional(z.string()), + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_root: z.optional(z.string()), + builder_pubkey: z.optional(z.string()), + earliest_bid_date_time: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ), + z.null(), + ]) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + parent_hash: z.optional(z.string()), + proposer_fee_recipient: z.optional(z.string()), + proposer_pubkey: z.optional(z.string()), + relay_names: z.optional(z.array(z.string())), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + value: z.optional(z.union([z.string(), z.null()])), +}); + +export const zFctBlockPayloadAvailableByNode = z.object({ + available_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + classification: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_consensus_implementation: z.optional(z.string()), + meta_consensus_version: z.optional(z.string()), + node_id: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + username: z.optional(z.string()), +}); + +export const zFctBlockPayloadBid = z.object({ + blob_kzg_commitment_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_hash: z.optional(z.string()), + block_root: z.optional(z.string()), + block_version: z.optional(z.string()), + builder_index: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payment: z.optional(z.string()), + fee_recipient: z.optional(z.string()), + gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + parent_block_hash: z.optional(z.string()), + parent_block_root: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + value: z.optional(z.string()), +}); + +export const zFctBlockPayloadFirstSeenByNode = z.object({ + block_hash: z.optional(z.string()), + block_root: z.optional(z.string()), + builder_index: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + classification: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_consensus_implementation: z.optional(z.string()), + meta_consensus_version: z.optional(z.string()), + node_id: z.optional(z.string()), + seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + username: z.optional(z.string()), +}); + +export const zFctBlockPayloadPtcVote = z.object({ + blob_data_available_votes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + block_version: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_block_root: z.optional(z.union([z.string(), z.null()])), + included_in_slot: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + payload_present_votes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), +}); + +export const zFctBlockPayloadPtcVoteHead = z.object({ + blob_data_available_votes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_seen: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctBlockProposalStatusDaily = z.object({ - day_start_date: z.optional(z.string()), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + day_start_date: z.optional(z.string()), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctBlockProposalStatusHourly = z.object({ - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctBlockProposer = z.object({ - block_root: z.optional(z.union([ - z.string(), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_pubkey: z.optional(z.string()), - proposer_validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_root: z.optional(z.union([z.string(), z.null()])), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_pubkey: z.optional(z.string()), + proposer_validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctBlockProposerByValidator = z.object({ - block_root: z.optional(z.union([ - z.string(), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pubkey: z.optional(z.string()), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_root: z.optional(z.union([z.string(), z.null()])), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pubkey: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctBlockProposerEntity = z.object({ - entity: z.optional(z.union([ - z.string(), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + entity: z.optional(z.union([z.string(), z.null()])), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctBlockProposerHead = z.object({ - block_root: z.optional(z.union([ - z.string(), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_pubkey: z.optional(z.string()), - proposer_validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_root: z.optional(z.union([z.string(), z.null()])), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_pubkey: z.optional(z.string()), + proposer_validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctContractStorageStateByAddressDaily = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - day_start_date: z.optional(z.string()), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + day_start_date: z.optional(z.string()), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctContractStorageStateByAddressHourly = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctContractStorageStateByBlockDaily = z.object({ - active_contracts: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - day_start_date: z.optional(z.string()), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_contracts: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + day_start_date: z.optional(z.string()), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctContractStorageStateByBlockHourly = z.object({ - active_contracts: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_contracts: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctContractStorageStateWithExpiryByAddressDaily = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - day_start_date: z.optional(z.string()), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + day_start_date: z.optional(z.string()), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctContractStorageStateWithExpiryByAddressHourly = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctContractStorageStateWithExpiryByBlockDaily = z.object({ - active_contracts: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - day_start_date: z.optional(z.string()), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_contracts: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + day_start_date: z.optional(z.string()), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctContractStorageStateWithExpiryByBlockHourly = z.object({ - active_contracts: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_contracts: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctDataColumnAvailabilityByEpoch = z.object({ - avg_availability_pct: z.optional(z.number()), - avg_p50_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_availability_pct: z.optional(z.number()), - max_blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_availability_pct: z.optional(z.number()), - min_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_failure_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + avg_availability_pct: z.optional(z.number()), + avg_p50_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_availability_pct: z.optional(z.number()), + max_blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_availability_pct: z.optional(z.number()), + min_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_failure_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctDataColumnAvailabilityBySlot = z.object({ - availability_pct: z.optional(z.number()), - beacon_block_root: z.optional(z.union([ - z.string(), - z.null() - ])), - beacon_block_root_variants: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - custody_probe_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gossipsub_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + availability_pct: z.optional(z.number()), + beacon_block_root: z.optional(z.union([z.string(), z.null()])), + beacon_block_root_variants: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + custody_probe_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gossipsub_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctDataColumnAvailabilityBySlotBlob = z.object({ - availability_pct: z.optional(z.number()), - blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + availability_pct: z.optional(z.number()), + blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctDataColumnAvailabilityDaily = z.object({ - avg_availability_pct: z.optional(z.number()), - avg_p50_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - date: z.optional(z.string()), - hour_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_availability_pct: z.optional(z.number()), - max_blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_availability_pct: z.optional(z.number()), - min_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_failure_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + avg_availability_pct: z.optional(z.number()), + avg_p50_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + date: z.optional(z.string()), + hour_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_availability_pct: z.optional(z.number()), + max_blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_availability_pct: z.optional(z.number()), + min_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_failure_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctDataColumnAvailabilityHourly = z.object({ - avg_availability_pct: z.optional(z.number()), - avg_p50_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - epoch_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_availability_pct: z.optional(z.number()), - max_blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_availability_pct: z.optional(z.number()), - min_response_time_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_failure_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + avg_availability_pct: z.optional(z.number()), + avg_p50_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + epoch_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_availability_pct: z.optional(z.number()), + max_blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_availability_pct: z.optional(z.number()), + min_response_time_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_failure_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctEngineGetBlobsByElClient = z.object({ - avg_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_returned_count: z.optional(z.number()), - block_root: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_requested_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - median_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - meta_execution_implementation: z.optional(z.string()), - meta_execution_version: z.optional(z.string()), - min_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - node_class: z.optional(z.string()), - observation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - unique_node_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + avg_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_returned_count: z.optional(z.number()), + block_root: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_requested_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + median_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + meta_execution_implementation: z.optional(z.string()), + meta_execution_version: z.optional(z.string()), + min_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + node_class: z.optional(z.string()), + observation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + unique_node_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctEngineGetBlobsByElClientHourly = z.object({ - avg_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_returned_count: z.optional(z.number()), - empty_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - meta_execution_implementation: z.optional(z.string()), - meta_execution_version: z.optional(z.string()), - min_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - node_class: z.optional(z.string()), - observation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - partial_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - unique_node_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unsupported_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + avg_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_returned_count: z.optional(z.number()), + empty_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + meta_execution_implementation: z.optional(z.string()), + meta_execution_version: z.optional(z.string()), + min_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + node_class: z.optional(z.string()), + observation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + partial_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + unique_node_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unsupported_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctEngineGetBlobsBySlot = z.object({ - avg_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_returned_count: z.optional(z.number()), - block_root: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - full_return_pct: z.optional(z.union([ - z.number(), - z.null() - ])), - max_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_requested_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - median_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - node_class: z.optional(z.string()), - observation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - unique_cl_implementation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + avg_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_returned_count: z.optional(z.number()), + block_root: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + full_return_pct: z.optional(z.union([z.number(), z.null()])), + max_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_requested_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + median_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + node_class: z.optional(z.string()), + observation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + unique_cl_implementation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctEngineGetBlobsDurationChunked50Ms = z.object({ - block_root: z.optional(z.string()), - chunk_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - empty_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - error_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - node_class: z.optional(z.string()), - observation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - partial_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_root: z.optional(z.string()), + chunk_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + empty_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + error_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + node_class: z.optional(z.string()), + observation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + partial_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctEngineNewPayloadByElClient = z.object({ - avg_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_hash: z.optional(z.string()), - block_root: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - meta_execution_implementation: z.optional(z.string()), - meta_execution_version: z.optional(z.string()), - min_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - node_class: z.optional(z.string()), - observation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - tx_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + avg_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_hash: z.optional(z.string()), + block_root: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + meta_execution_implementation: z.optional(z.string()), + meta_execution_version: z.optional(z.string()), + min_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + node_class: z.optional(z.string()), + observation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + tx_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctEngineNewPayloadByElClientHourly = z.object({ - accepted_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_blob_count: z.optional(z.number()), - avg_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_tx_count: z.optional(z.number()), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - invalid_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - meta_execution_implementation: z.optional(z.string()), - meta_execution_version: z.optional(z.string()), - min_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - node_class: z.optional(z.string()), - observation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - syncing_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - unique_node_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - valid_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))) + accepted_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_blob_count: z.optional(z.number()), + avg_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_tx_count: z.optional(z.number()), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + invalid_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + meta_execution_implementation: z.optional(z.string()), + meta_execution_version: z.optional(z.string()), + min_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + node_class: z.optional(z.string()), + observation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + syncing_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + unique_node_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + valid_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), }); export const zFctEngineNewPayloadBySlot = z.object({ - avg_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_hash: z.optional(z.string()), - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_root: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - node_class: z.optional(z.string()), - observation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p99_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - proposer_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - tx_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + avg_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_hash: z.optional(z.string()), + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_root: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + node_class: z.optional(z.string()), + observation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p99_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + proposer_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + tx_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctEngineNewPayloadDurationChunked50Ms = z.object({ - block_hash: z.optional(z.string()), - chunk_duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - invalid_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - node_class: z.optional(z.string()), - observation_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - valid_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_hash: z.optional(z.string()), + chunk_duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + invalid_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + node_class: z.optional(z.string()), + observation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + valid_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctEngineNewPayloadWinrateDaily = z.object({ - day_start_date: z.optional(z.string()), - meta_execution_implementation: z.optional(z.string()), - node_class: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + day_start_date: z.optional(z.string()), + meta_execution_implementation: z.optional(z.string()), + node_class: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctEngineNewPayloadWinrateHourly = z.object({ - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_execution_implementation: z.optional(z.string()), - node_class: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_execution_implementation: z.optional(z.string()), + node_class: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctExecutionGasLimitDaily = z.object({ - avg_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - day_start_date: z.optional(z.string()), - lower_band_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - max_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))) + avg_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + day_start_date: z.optional(z.string()), + lower_band_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + max_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), }); export const zFctExecutionGasLimitHourly = z.object({ - avg_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lower_band_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - max_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))) + avg_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lower_band_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + max_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), }); export const zFctExecutionGasLimitSignallingDaily = z.object({ - day_start_date: z.optional(z.string()), - gas_limit_band_counts: z.optional(z.record(z.string(), z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + day_start_date: z.optional(z.string()), + gas_limit_band_counts: z.optional( + z.record( + z.string(), + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctExecutionGasLimitSignallingHourly = z.object({ - gas_limit_band_counts: z.optional(z.record(z.string(), z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + gas_limit_band_counts: z.optional( + z.record( + z.string(), + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctExecutionGasUsedDaily = z.object({ - avg_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - cumulative_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - day_start_date: z.optional(z.string()), - lower_band_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - max_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))) + avg_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + cumulative_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + day_start_date: z.optional(z.string()), + lower_band_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + max_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), }); export const zFctExecutionGasUsedHourly = z.object({ - avg_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - cumulative_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lower_band_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - max_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))) + avg_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + cumulative_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lower_band_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + max_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), }); export const zFctExecutionReceiptSizeDaily = z.object({ - avg_log_count_per_transaction: z.optional(z.number()), - avg_receipt_bytes_per_block: z.optional(z.number()), - avg_receipt_bytes_per_transaction: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - cumulative_receipt_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - day_start_date: z.optional(z.string()), - lower_band_receipt_bytes_per_block: z.optional(z.number()), - max_receipt_bytes_per_block: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_receipt_bytes_per_block: z.optional(z.number()), - p05_receipt_bytes_per_block: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_receipt_bytes_per_block: z.optional(z.number()), - total_log_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_receipt_bytes_per_block: z.optional(z.number()) + avg_log_count_per_transaction: z.optional(z.number()), + avg_receipt_bytes_per_block: z.optional(z.number()), + avg_receipt_bytes_per_transaction: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + cumulative_receipt_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + day_start_date: z.optional(z.string()), + lower_band_receipt_bytes_per_block: z.optional(z.number()), + max_receipt_bytes_per_block: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_receipt_bytes_per_block: z.optional(z.number()), + p05_receipt_bytes_per_block: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_receipt_bytes_per_block: z.optional(z.number()), + total_log_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_receipt_bytes_per_block: z.optional(z.number()), }); export const zFctExecutionReceiptSizeHourly = z.object({ - avg_log_count_per_transaction: z.optional(z.number()), - avg_receipt_bytes_per_block: z.optional(z.number()), - avg_receipt_bytes_per_transaction: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - cumulative_receipt_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lower_band_receipt_bytes_per_block: z.optional(z.number()), - max_receipt_bytes_per_block: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_receipt_bytes_per_block: z.optional(z.number()), - p05_receipt_bytes_per_block: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_receipt_bytes_per_block: z.optional(z.number()), - total_log_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_receipt_bytes_per_block: z.optional(z.number()) + avg_log_count_per_transaction: z.optional(z.number()), + avg_receipt_bytes_per_block: z.optional(z.number()), + avg_receipt_bytes_per_transaction: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + cumulative_receipt_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lower_band_receipt_bytes_per_block: z.optional(z.number()), + max_receipt_bytes_per_block: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_receipt_bytes_per_block: z.optional(z.number()), + p05_receipt_bytes_per_block: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_receipt_bytes_per_block: z.optional(z.number()), + total_log_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_receipt_bytes_per_block: z.optional(z.number()), }); export const zFctExecutionStateSizeDaily = z.object({ - account_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - day_start_date: z.optional(z.string()), - storage_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + account_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + day_start_date: z.optional(z.string()), + storage_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctExecutionStateSizeHourly = z.object({ - account_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - storage_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + account_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + storage_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctExecutionTpsDaily = z.object({ - avg_tps: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - day_start_date: z.optional(z.string()), - lower_band_tps: z.optional(z.number()), - max_tps: z.optional(z.number()), - min_tps: z.optional(z.number()), - moving_avg_tps: z.optional(z.number()), - p05_tps: z.optional(z.number()), - p50_tps: z.optional(z.number()), - p95_tps: z.optional(z.number()), - stddev_tps: z.optional(z.number()), - total_seconds: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_transactions: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_tps: z.optional(z.number()) + avg_tps: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + day_start_date: z.optional(z.string()), + lower_band_tps: z.optional(z.number()), + max_tps: z.optional(z.number()), + min_tps: z.optional(z.number()), + moving_avg_tps: z.optional(z.number()), + p05_tps: z.optional(z.number()), + p50_tps: z.optional(z.number()), + p95_tps: z.optional(z.number()), + stddev_tps: z.optional(z.number()), + total_seconds: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_transactions: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_tps: z.optional(z.number()), }); export const zFctExecutionTpsHourly = z.object({ - avg_tps: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lower_band_tps: z.optional(z.number()), - max_tps: z.optional(z.number()), - min_tps: z.optional(z.number()), - moving_avg_tps: z.optional(z.number()), - p05_tps: z.optional(z.number()), - p50_tps: z.optional(z.number()), - p95_tps: z.optional(z.number()), - stddev_tps: z.optional(z.number()), - total_seconds: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_transactions: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_tps: z.optional(z.number()) + avg_tps: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lower_band_tps: z.optional(z.number()), + max_tps: z.optional(z.number()), + min_tps: z.optional(z.number()), + moving_avg_tps: z.optional(z.number()), + p05_tps: z.optional(z.number()), + p50_tps: z.optional(z.number()), + p95_tps: z.optional(z.number()), + stddev_tps: z.optional(z.number()), + total_seconds: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_transactions: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_tps: z.optional(z.number()), }); export const zFctExecutionTransactionsDaily = z.object({ - avg_txn_per_block: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - cumulative_transactions: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - day_start_date: z.optional(z.string()), - lower_band_txn_per_block: z.optional(z.number()), - max_txn_per_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - moving_avg_txn_per_block: z.optional(z.number()), - p05_txn_per_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - stddev_txn_per_block: z.optional(z.number()), - total_transactions: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_txn_per_block: z.optional(z.number()) + avg_txn_per_block: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + cumulative_transactions: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + day_start_date: z.optional(z.string()), + lower_band_txn_per_block: z.optional(z.number()), + max_txn_per_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + moving_avg_txn_per_block: z.optional(z.number()), + p05_txn_per_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + stddev_txn_per_block: z.optional(z.number()), + total_transactions: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_txn_per_block: z.optional(z.number()), }); export const zFctExecutionTransactionsHourly = z.object({ - avg_txn_per_block: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - cumulative_transactions: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lower_band_txn_per_block: z.optional(z.number()), - max_txn_per_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - moving_avg_txn_per_block: z.optional(z.number()), - p05_txn_per_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - stddev_txn_per_block: z.optional(z.number()), - total_transactions: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_txn_per_block: z.optional(z.number()) + avg_txn_per_block: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + cumulative_transactions: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lower_band_txn_per_block: z.optional(z.number()), + max_txn_per_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + moving_avg_txn_per_block: z.optional(z.number()), + p05_txn_per_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + stddev_txn_per_block: z.optional(z.number()), + total_transactions: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_txn_per_block: z.optional(z.number()), }); export const zFctHeadFirstSeenByNode = z.object({ - block_root: z.optional(z.string()), - classification: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_client_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_continent_code: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_implementation: z.optional(z.string()), - meta_client_name: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_consensus_implementation: z.optional(z.string()), - meta_consensus_version: z.optional(z.string()), - node_id: z.optional(z.string()), - seen_slot_start_diff: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - username: z.optional(z.string()) + block_root: z.optional(z.string()), + classification: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_consensus_implementation: z.optional(z.string()), + meta_consensus_version: z.optional(z.string()), + node_id: z.optional(z.string()), + seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + username: z.optional(z.string()), }); export const zFctHeadVoteCorrectnessRateDaily = z.object({ - avg_head_vote_rate: z.optional(z.number()), - day_start_date: z.optional(z.string()), - lower_band_head_vote_rate: z.optional(z.number()), - max_head_vote_rate: z.optional(z.number()), - min_head_vote_rate: z.optional(z.number()), - moving_avg_head_vote_rate: z.optional(z.number()), - p05_head_vote_rate: z.optional(z.number()), - p50_head_vote_rate: z.optional(z.number()), - p95_head_vote_rate: z.optional(z.number()), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - stddev_head_vote_rate: z.optional(z.number()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_head_vote_rate: z.optional(z.number()) + avg_head_vote_rate: z.optional(z.number()), + day_start_date: z.optional(z.string()), + lower_band_head_vote_rate: z.optional(z.number()), + max_head_vote_rate: z.optional(z.number()), + min_head_vote_rate: z.optional(z.number()), + moving_avg_head_vote_rate: z.optional(z.number()), + p05_head_vote_rate: z.optional(z.number()), + p50_head_vote_rate: z.optional(z.number()), + p95_head_vote_rate: z.optional(z.number()), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + stddev_head_vote_rate: z.optional(z.number()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_head_vote_rate: z.optional(z.number()), }); export const zFctHeadVoteCorrectnessRateHourly = z.object({ - avg_head_vote_rate: z.optional(z.number()), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lower_band_head_vote_rate: z.optional(z.number()), - max_head_vote_rate: z.optional(z.number()), - min_head_vote_rate: z.optional(z.number()), - moving_avg_head_vote_rate: z.optional(z.number()), - p05_head_vote_rate: z.optional(z.number()), - p50_head_vote_rate: z.optional(z.number()), - p95_head_vote_rate: z.optional(z.number()), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - stddev_head_vote_rate: z.optional(z.number()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_head_vote_rate: z.optional(z.number()) + avg_head_vote_rate: z.optional(z.number()), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lower_band_head_vote_rate: z.optional(z.number()), + max_head_vote_rate: z.optional(z.number()), + min_head_vote_rate: z.optional(z.number()), + moving_avg_head_vote_rate: z.optional(z.number()), + p05_head_vote_rate: z.optional(z.number()), + p50_head_vote_rate: z.optional(z.number()), + p95_head_vote_rate: z.optional(z.number()), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + stddev_head_vote_rate: z.optional(z.number()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_head_vote_rate: z.optional(z.number()), }); export const zFctMevBidCountByBuilder = z.object({ - bid_total: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - builder_pubkey: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + bid_total: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + builder_pubkey: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctMevBidCountByRelay = z.object({ - bid_total: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_name: z.optional(z.string()), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + bid_total: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_name: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctMevBidHighestValueByBuilderChunked50Ms = z.object({ - block_hash: z.optional(z.string()), - builder_pubkey: z.optional(z.string()), - chunk_slot_start_diff: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - earliest_bid_date_time: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names: z.optional(z.array(z.string())), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - value: z.optional(z.string()) + block_hash: z.optional(z.string()), + builder_pubkey: z.optional(z.string()), + chunk_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + earliest_bid_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names: z.optional(z.array(z.string())), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + value: z.optional(z.string()), }); export const zFctMissedSlotRateDaily = z.object({ - day_start_date: z.optional(z.string()), - missed_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_rate: z.optional(z.number()), - moving_avg_missed_rate: z.optional(z.number()), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + day_start_date: z.optional(z.string()), + missed_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_rate: z.optional(z.number()), + moving_avg_missed_rate: z.optional(z.number()), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctMissedSlotRateHourly = z.object({ - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_rate: z.optional(z.number()), - moving_avg_missed_rate: z.optional(z.number()), - slot_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_rate: z.optional(z.number()), + moving_avg_missed_rate: z.optional(z.number()), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctNodeActiveLast24h = z.object({ - classification: z.optional(z.string()), - last_seen_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_client_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_continent_code: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_implementation: z.optional(z.string()), - meta_client_name: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_consensus_implementation: z.optional(z.string()), - meta_consensus_version: z.optional(z.string()), - node_id: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - username: z.optional(z.string()) + classification: z.optional(z.string()), + last_seen_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_consensus_implementation: z.optional(z.string()), + meta_consensus_version: z.optional(z.string()), + node_id: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + username: z.optional(z.string()), }); export const zFctNodeCpuUtilizationByProcess = z.object({ - client_type: z.optional(z.string()), - max_core_pct: z.optional(z.number()), - mean_core_pct: z.optional(z.number()), - meta_client_name: z.optional(z.string()), - meta_network_name: z.optional(z.string()), - min_core_pct: z.optional(z.number()), - node_class: z.optional(z.string()), - pid: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - system_cores: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_start_date_time: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))) + client_type: z.optional(z.string()), + max_core_pct: z.optional(z.number()), + mean_core_pct: z.optional(z.number()), + meta_client_name: z.optional(z.string()), + meta_network_name: z.optional(z.string()), + min_core_pct: z.optional(z.number()), + node_class: z.optional(z.string()), + pid: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + system_cores: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_start_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), }); export const zFctNodeDiskIoByProcess = z.object({ - client_type: z.optional(z.string()), - io_bytes: z.optional(z.number()), - io_ops: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_name: z.optional(z.string()), - meta_network_name: z.optional(z.string()), - node_class: z.optional(z.string()), - pid: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rw: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_start_date_time: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))) + client_type: z.optional(z.string()), + io_bytes: z.optional(z.number()), + io_ops: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_name: z.optional(z.string()), + meta_network_name: z.optional(z.string()), + node_class: z.optional(z.string()), + pid: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rw: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_start_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), }); export const zFctNodeMemoryUsageByProcess = z.object({ - client_type: z.optional(z.string()), - meta_client_name: z.optional(z.string()), - meta_network_name: z.optional(z.string()), - node_class: z.optional(z.string()), - pid: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rss_anon_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_file_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - vm_rss_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_swap_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - wallclock_slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_start_date_time: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))) + client_type: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_network_name: z.optional(z.string()), + node_class: z.optional(z.string()), + pid: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rss_anon_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_file_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + vm_rss_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_swap_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + wallclock_slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_start_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), }); export const zFctNodeNetworkIoByProcess = z.object({ - client_type: z.optional(z.string()), - direction: z.optional(z.string()), - io_bytes: z.optional(z.number()), - io_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_name: z.optional(z.string()), - meta_network_name: z.optional(z.string()), - node_class: z.optional(z.string()), - pid: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - port_label: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_start_date_time: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))) + client_type: z.optional(z.string()), + direction: z.optional(z.string()), + io_bytes: z.optional(z.number()), + io_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_name: z.optional(z.string()), + meta_network_name: z.optional(z.string()), + node_class: z.optional(z.string()), + pid: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + port_label: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_start_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), }); export const zFctOpcodeGasByOpcodeDaily = z.object({ - avg_count_per_block: z.optional(z.number()), - avg_gas_per_block: z.optional(z.number()), - avg_gas_per_execution: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - day_start_date: z.optional(z.string()), - opcode: z.optional(z.string()), - total_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + avg_count_per_block: z.optional(z.number()), + avg_gas_per_block: z.optional(z.number()), + avg_gas_per_execution: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + day_start_date: z.optional(z.string()), + opcode: z.optional(z.string()), + total_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctOpcodeGasByOpcodeHourly = z.object({ - avg_count_per_block: z.optional(z.number()), - avg_gas_per_block: z.optional(z.number()), - avg_gas_per_execution: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - opcode: z.optional(z.string()), - total_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + avg_count_per_block: z.optional(z.number()), + avg_gas_per_block: z.optional(z.number()), + avg_gas_per_execution: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + opcode: z.optional(z.string()), + total_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctOpcodeOpsDaily = z.object({ - avg_ops: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - day_start_date: z.optional(z.string()), - lower_band_ops: z.optional(z.number()), - max_ops: z.optional(z.number()), - min_ops: z.optional(z.number()), - moving_avg_ops: z.optional(z.number()), - p05_ops: z.optional(z.number()), - p50_ops: z.optional(z.number()), - p95_ops: z.optional(z.number()), - stddev_ops: z.optional(z.number()), - total_gas: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_seconds: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_ops: z.optional(z.number()) + avg_ops: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + day_start_date: z.optional(z.string()), + lower_band_ops: z.optional(z.number()), + max_ops: z.optional(z.number()), + min_ops: z.optional(z.number()), + moving_avg_ops: z.optional(z.number()), + p05_ops: z.optional(z.number()), + p50_ops: z.optional(z.number()), + p95_ops: z.optional(z.number()), + stddev_ops: z.optional(z.number()), + total_gas: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_seconds: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_ops: z.optional(z.number()), }); export const zFctOpcodeOpsHourly = z.object({ - avg_ops: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lower_band_ops: z.optional(z.number()), - max_ops: z.optional(z.number()), - min_ops: z.optional(z.number()), - moving_avg_ops: z.optional(z.number()), - p05_ops: z.optional(z.number()), - p50_ops: z.optional(z.number()), - p95_ops: z.optional(z.number()), - stddev_ops: z.optional(z.number()), - total_gas: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_seconds: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_ops: z.optional(z.number()) + avg_ops: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lower_band_ops: z.optional(z.number()), + max_ops: z.optional(z.number()), + min_ops: z.optional(z.number()), + moving_avg_ops: z.optional(z.number()), + p05_ops: z.optional(z.number()), + p50_ops: z.optional(z.number()), + p95_ops: z.optional(z.number()), + stddev_ops: z.optional(z.number()), + total_gas: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_seconds: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_ops: z.optional(z.number()), +}); + +export const zFctPayloadBidHighestValueByBuilderChunked50Ms = z.object({ + block_hash: z.optional(z.string()), + builder_index: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + chunk_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + earliest_bid_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payment: z.optional(z.string()), + fee_recipient: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + value: z.optional(z.string()), }); export const zFctPreparedBlock = z.object({ - block_total_bytes: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - block_total_bytes_compressed: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - block_version: z.optional(z.string()), - consensus_payload_value: z.optional(z.union([ - z.string(), - z.null() - ])), - event_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_gas_limit: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_gas_used: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_transactions_count: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - execution_payload_transactions_total_bytes: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - execution_payload_value: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_implementation: z.optional(z.string()), - meta_client_name: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_consensus_implementation: z.optional(z.string()), - meta_consensus_version: z.optional(z.string()), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_total_bytes: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + block_total_bytes_compressed: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + block_version: z.optional(z.string()), + consensus_payload_value: z.optional(z.union([z.string(), z.null()])), + event_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_gas_limit: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_gas_used: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_transactions_count: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + execution_payload_transactions_total_bytes: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + execution_payload_value: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_consensus_implementation: z.optional(z.string()), + meta_consensus_version: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctProposerRewardDaily = z.object({ - avg_reward_eth: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - day_start_date: z.optional(z.string()), - lower_band_reward_eth: z.optional(z.number()), - max_reward_eth: z.optional(z.number()), - min_reward_eth: z.optional(z.number()), - moving_avg_reward_eth: z.optional(z.number()), - p05_reward_eth: z.optional(z.number()), - p50_reward_eth: z.optional(z.number()), - p95_reward_eth: z.optional(z.number()), - stddev_reward_eth: z.optional(z.number()), - total_reward_eth: z.optional(z.number()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_reward_eth: z.optional(z.number()) + avg_reward_eth: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + day_start_date: z.optional(z.string()), + lower_band_reward_eth: z.optional(z.number()), + max_reward_eth: z.optional(z.number()), + min_reward_eth: z.optional(z.number()), + moving_avg_reward_eth: z.optional(z.number()), + p05_reward_eth: z.optional(z.number()), + p50_reward_eth: z.optional(z.number()), + p95_reward_eth: z.optional(z.number()), + stddev_reward_eth: z.optional(z.number()), + total_reward_eth: z.optional(z.number()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_reward_eth: z.optional(z.number()), }); export const zFctProposerRewardHourly = z.object({ - avg_reward_eth: z.optional(z.number()), - block_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lower_band_reward_eth: z.optional(z.number()), - max_reward_eth: z.optional(z.number()), - min_reward_eth: z.optional(z.number()), - moving_avg_reward_eth: z.optional(z.number()), - p05_reward_eth: z.optional(z.number()), - p50_reward_eth: z.optional(z.number()), - p95_reward_eth: z.optional(z.number()), - stddev_reward_eth: z.optional(z.number()), - total_reward_eth: z.optional(z.number()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - upper_band_reward_eth: z.optional(z.number()) + avg_reward_eth: z.optional(z.number()), + block_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lower_band_reward_eth: z.optional(z.number()), + max_reward_eth: z.optional(z.number()), + min_reward_eth: z.optional(z.number()), + moving_avg_reward_eth: z.optional(z.number()), + p05_reward_eth: z.optional(z.number()), + p50_reward_eth: z.optional(z.number()), + p95_reward_eth: z.optional(z.number()), + stddev_reward_eth: z.optional(z.number()), + total_reward_eth: z.optional(z.number()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + upper_band_reward_eth: z.optional(z.number()), }); export const zFctReorgDaily = z.object({ - day_start_date: z.optional(z.string()), - depth: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + day_start_date: z.optional(z.string()), + depth: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctReorgHourly = z.object({ - depth: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + depth: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctRocketpoolValidator = z.object({ - created_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - node_operator: z.optional(z.string()), - pool_address: z.optional(z.string()), - pool_type: z.optional(z.string()), - pubkey: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + created_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + node_operator: z.optional(z.string()), + pool_address: z.optional(z.string()), + pool_type: z.optional(z.string()), + pubkey: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctStorageSlotStateByAddressDaily = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - day_start_date: z.optional(z.string()), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + day_start_date: z.optional(z.string()), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctStorageSlotStateByAddressHourly = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctStorageSlotStateByBlockDaily = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - day_start_date: z.optional(z.string()), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + day_start_date: z.optional(z.string()), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctStorageSlotStateByBlockHourly = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctStorageSlotStateWithExpiryByAddressDaily = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - day_start_date: z.optional(z.string()), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + day_start_date: z.optional(z.string()), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctStorageSlotStateWithExpiryByAddressHourly = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctStorageSlotStateWithExpiryByBlockDaily = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - day_start_date: z.optional(z.string()), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + day_start_date: z.optional(z.string()), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctStorageSlotStateWithExpiryByBlockHourly = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctStorageSlotTop100ByBytes = z.object({ - account_owner: z.optional(z.union([ - z.string(), - z.null() - ])), - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - contract_address: z.optional(z.string()), - contract_name: z.optional(z.union([ - z.string(), - z.null() - ])), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.union([ - z.string(), - z.null() - ])), - factory_contract: z.optional(z.union([ - z.string(), - z.null() - ])), - labels: z.optional(z.array(z.string())), - owner_key: z.optional(z.union([ - z.string(), - z.null() - ])), - rank: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + account_owner: z.optional(z.union([z.string(), z.null()])), + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + contract_address: z.optional(z.string()), + contract_name: z.optional(z.union([z.string(), z.null()])), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.union([z.string(), z.null()])), + factory_contract: z.optional(z.union([z.string(), z.null()])), + labels: z.optional(z.array(z.string())), + owner_key: z.optional(z.union([z.string(), z.null()])), + rank: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctStorageSlotTop100BySlots = z.object({ - account_owner: z.optional(z.union([ - z.string(), - z.null() - ])), - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - contract_address: z.optional(z.string()), - contract_name: z.optional(z.union([ - z.string(), - z.null() - ])), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.union([ - z.string(), - z.null() - ])), - factory_contract: z.optional(z.union([ - z.string(), - z.null() - ])), - labels: z.optional(z.array(z.string())), - owner_key: z.optional(z.union([ - z.string(), - z.null() - ])), - rank: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + account_owner: z.optional(z.union([z.string(), z.null()])), + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + contract_address: z.optional(z.string()), + contract_name: z.optional(z.union([z.string(), z.null()])), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.union([z.string(), z.null()])), + factory_contract: z.optional(z.union([z.string(), z.null()])), + labels: z.optional(z.array(z.string())), + owner_key: z.optional(z.union([z.string(), z.null()])), + rank: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctSyncCommitteeParticipationByValidator = z.object({ - participated: z.optional(z.boolean()), - slot: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + participated: z.optional(z.boolean()), + slot: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctSyncCommitteeParticipationByValidatorDaily = z.object({ - day_start_date: z.optional(z.string()), - missed_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + day_start_date: z.optional(z.string()), + missed_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctSyncCommitteeParticipationByValidatorHourly = z.object({ - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctTokenContractStorageStateByBlockDaily = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - day_start_date: z.optional(z.string()), - token_standard: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + day_start_date: z.optional(z.string()), + token_standard: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctValidatorBalance = z.object({ - balance: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slashed: z.optional(z.boolean()), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + balance: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slashed: z.optional(z.boolean()), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctValidatorBalanceDaily = z.object({ - day_start_date: z.optional(z.string()), - effective_balance: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - end_balance: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - end_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_balance: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - min_balance: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - slashed: z.optional(z.boolean()), - start_balance: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - start_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + day_start_date: z.optional(z.string()), + effective_balance: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + end_balance: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + end_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_balance: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + min_balance: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + slashed: z.optional(z.boolean()), + start_balance: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + start_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctValidatorBalanceHourly = z.object({ - effective_balance: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - end_balance: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - end_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_balance: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - min_balance: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - slashed: z.optional(z.boolean()), - start_balance: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - start_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + effective_balance: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + end_balance: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + end_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_balance: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + min_balance: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + slashed: z.optional(z.boolean()), + start_balance: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + start_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); export const zFctValidatorCountByEntityByStatusDaily = z.object({ - day_start_date: z.optional(z.string()), - entity: z.optional(z.string()), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + day_start_date: z.optional(z.string()), + entity: z.optional(z.string()), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single admin_cbt_incremental record */ export const zGetAdminCbtIncrementalResponse = z.object({ - item: z.optional(zAdminCbtIncremental) + item: z.optional(zAdminCbtIncremental), +}); + +/** + * Response for getting a single admin_cbt_scheduled record + */ +export const zGetAdminCbtScheduledResponse = z.object({ + item: z.optional(zAdminCbtScheduled), }); /** * Response for getting a single dim_block_blob_submitter record */ export const zGetDimBlockBlobSubmitterResponse = z.object({ - item: z.optional(zDimBlockBlobSubmitter) + item: z.optional(zDimBlockBlobSubmitter), }); /** * Response for getting a single dim_contract_owner record */ export const zGetDimContractOwnerResponse = z.object({ - item: z.optional(zDimContractOwner) + item: z.optional(zDimContractOwner), }); /** * Response for getting a single dim_function_signature record */ export const zGetDimFunctionSignatureResponse = z.object({ - item: z.optional(zDimFunctionSignature) + item: z.optional(zDimFunctionSignature), }); /** * Response for getting a single dim_node record */ export const zGetDimNodeResponse = z.object({ - item: z.optional(zDimNode) + item: z.optional(zDimNode), }); /** * Response for getting a single dim_rocketpool_node record */ export const zGetDimRocketpoolNodeResponse = z.object({ - item: z.optional(zDimRocketpoolNode) + item: z.optional(zDimRocketpoolNode), }); /** * Response for getting a single dim_token_contract record */ export const zGetDimTokenContractResponse = z.object({ - item: z.optional(zDimTokenContract) + item: z.optional(zDimTokenContract), }); /** * Response for getting a single dim_validator_pubkey record */ export const zGetDimValidatorPubkeyResponse = z.object({ - item: z.optional(zDimValidatorPubkey) + item: z.optional(zDimValidatorPubkey), }); /** * Response for getting a single dim_validator_status record */ export const zGetDimValidatorStatusResponse = z.object({ - item: z.optional(zDimValidatorStatus) + item: z.optional(zDimValidatorStatus), }); /** * Response for getting a single fct_attestation_correctness_by_validator_canonical record */ export const zGetFctAttestationCorrectnessByValidatorCanonicalResponse = z.object({ - item: z.optional(zFctAttestationCorrectnessByValidatorCanonical) + item: z.optional(zFctAttestationCorrectnessByValidatorCanonical), }); /** * Response for getting a single fct_attestation_correctness_by_validator_head record */ export const zGetFctAttestationCorrectnessByValidatorHeadResponse = z.object({ - item: z.optional(zFctAttestationCorrectnessByValidatorHead) + item: z.optional(zFctAttestationCorrectnessByValidatorHead), +}); + +/** + * Response for getting a single fct_attestation_correctness_by_validator record + */ +export const zGetFctAttestationCorrectnessByValidatorResponse = z.object({ + item: z.optional(zFctAttestationCorrectnessByValidator), }); /** * Response for getting a single fct_attestation_correctness_canonical record */ export const zGetFctAttestationCorrectnessCanonicalResponse = z.object({ - item: z.optional(zFctAttestationCorrectnessCanonical) + item: z.optional(zFctAttestationCorrectnessCanonical), }); /** * Response for getting a single fct_attestation_correctness_head record */ export const zGetFctAttestationCorrectnessHeadResponse = z.object({ - item: z.optional(zFctAttestationCorrectnessHead) + item: z.optional(zFctAttestationCorrectnessHead), +}); + +/** + * Response for getting a single fct_attestation_correctness record + */ +export const zGetFctAttestationCorrectnessResponse = z.object({ + item: z.optional(zFctAttestationCorrectness), }); /** * Response for getting a single fct_attestation_first_seen_by_validator record */ export const zGetFctAttestationFirstSeenByValidatorResponse = z.object({ - item: z.optional(zFctAttestationFirstSeenByValidator) + item: z.optional(zFctAttestationFirstSeenByValidator), }); /** * Response for getting a single fct_attestation_first_seen_chunked_50ms record */ export const zGetFctAttestationFirstSeenChunked50MsResponse = z.object({ - item: z.optional(zFctAttestationFirstSeenChunked50Ms) + item: z.optional(zFctAttestationFirstSeenChunked50Ms), }); /** * Response for getting a single fct_attestation_inclusion_delay_daily record */ export const zGetFctAttestationInclusionDelayDailyResponse = z.object({ - item: z.optional(zFctAttestationInclusionDelayDaily) + item: z.optional(zFctAttestationInclusionDelayDaily), }); /** * Response for getting a single fct_attestation_inclusion_delay_hourly record */ export const zGetFctAttestationInclusionDelayHourlyResponse = z.object({ - item: z.optional(zFctAttestationInclusionDelayHourly) + item: z.optional(zFctAttestationInclusionDelayHourly), }); /** * Response for getting a single fct_attestation_liveness_by_entity_head record */ export const zGetFctAttestationLivenessByEntityHeadResponse = z.object({ - item: z.optional(zFctAttestationLivenessByEntityHead) + item: z.optional(zFctAttestationLivenessByEntityHead), +}); + +/** + * Response for getting a single fct_attestation_liveness_by_entity record + */ +export const zGetFctAttestationLivenessByEntityResponse = z.object({ + item: z.optional(zFctAttestationLivenessByEntity), }); /** * Response for getting a single fct_attestation_observation_by_node record */ export const zGetFctAttestationObservationByNodeResponse = z.object({ - item: z.optional(zFctAttestationObservationByNode) + item: z.optional(zFctAttestationObservationByNode), }); /** * Response for getting a single fct_attestation_participation_rate_daily record */ export const zGetFctAttestationParticipationRateDailyResponse = z.object({ - item: z.optional(zFctAttestationParticipationRateDaily) + item: z.optional(zFctAttestationParticipationRateDaily), }); /** * Response for getting a single fct_attestation_participation_rate_hourly record */ export const zGetFctAttestationParticipationRateHourlyResponse = z.object({ - item: z.optional(zFctAttestationParticipationRateHourly) + item: z.optional(zFctAttestationParticipationRateHourly), }); /** * Response for getting a single fct_attestation_vote_correctness_by_validator_daily record */ export const zGetFctAttestationVoteCorrectnessByValidatorDailyResponse = z.object({ - item: z.optional(zFctAttestationVoteCorrectnessByValidatorDaily) + item: z.optional(zFctAttestationVoteCorrectnessByValidatorDaily), }); /** * Response for getting a single fct_attestation_vote_correctness_by_validator_hourly record */ export const zGetFctAttestationVoteCorrectnessByValidatorHourlyResponse = z.object({ - item: z.optional(zFctAttestationVoteCorrectnessByValidatorHourly) + item: z.optional(zFctAttestationVoteCorrectnessByValidatorHourly), }); /** * Response for getting a single fct_attestation_vote_correctness_by_validator record */ export const zGetFctAttestationVoteCorrectnessByValidatorResponse = z.object({ - item: z.optional(zFctAttestationVoteCorrectnessByValidator) + item: z.optional(zFctAttestationVoteCorrectnessByValidator), }); /** * Response for getting a single fct_blob_count_daily record */ export const zGetFctBlobCountDailyResponse = z.object({ - item: z.optional(zFctBlobCountDaily) + item: z.optional(zFctBlobCountDaily), }); /** * Response for getting a single fct_blob_count_hourly record */ export const zGetFctBlobCountHourlyResponse = z.object({ - item: z.optional(zFctBlobCountHourly) + item: z.optional(zFctBlobCountHourly), }); /** * Response for getting a single fct_block_blob_count_head record */ export const zGetFctBlockBlobCountHeadResponse = z.object({ - item: z.optional(zFctBlockBlobCountHead) + item: z.optional(zFctBlockBlobCountHead), }); /** * Response for getting a single fct_block_blob_count record */ export const zGetFctBlockBlobCountResponse = z.object({ - item: z.optional(zFctBlockBlobCount) + item: z.optional(zFctBlockBlobCount), }); /** * Response for getting a single fct_block_blob_first_seen_by_node record */ export const zGetFctBlockBlobFirstSeenByNodeResponse = z.object({ - item: z.optional(zFctBlockBlobFirstSeenByNode) + item: z.optional(zFctBlockBlobFirstSeenByNode), }); /** * Response for getting a single fct_block_blob_head record */ export const zGetFctBlockBlobHeadResponse = z.object({ - item: z.optional(zFctBlockBlobHead) + item: z.optional(zFctBlockBlobHead), }); /** * Response for getting a single fct_block_data_column_sidecar_first_seen_by_node record */ export const zGetFctBlockDataColumnSidecarFirstSeenByNodeResponse = z.object({ - item: z.optional(zFctBlockDataColumnSidecarFirstSeenByNode) + item: z.optional(zFctBlockDataColumnSidecarFirstSeenByNode), }); /** * Response for getting a single fct_block_data_column_sidecar_first_seen record */ export const zGetFctBlockDataColumnSidecarFirstSeenResponse = z.object({ - item: z.optional(zFctBlockDataColumnSidecarFirstSeen) + item: z.optional(zFctBlockDataColumnSidecarFirstSeen), }); /** * Response for getting a single fct_block_first_seen_by_node record */ export const zGetFctBlockFirstSeenByNodeResponse = z.object({ - item: z.optional(zFctBlockFirstSeenByNode) + item: z.optional(zFctBlockFirstSeenByNode), }); /** * Response for getting a single fct_block_head record */ export const zGetFctBlockHeadResponse = z.object({ - item: z.optional(zFctBlockHead) + item: z.optional(zFctBlockHead), }); /** * Response for getting a single fct_block_mev_head record */ export const zGetFctBlockMevHeadResponse = z.object({ - item: z.optional(zFctBlockMevHead) + item: z.optional(zFctBlockMevHead), }); /** * Response for getting a single fct_block_mev record */ export const zGetFctBlockMevResponse = z.object({ - item: z.optional(zFctBlockMev) + item: z.optional(zFctBlockMev), +}); + +/** + * Response for getting a single fct_block_payload_available_by_node record + */ +export const zGetFctBlockPayloadAvailableByNodeResponse = z.object({ + item: z.optional(zFctBlockPayloadAvailableByNode), +}); + +/** + * Response for getting a single fct_block_payload_bid record + */ +export const zGetFctBlockPayloadBidResponse = z.object({ + item: z.optional(zFctBlockPayloadBid), +}); + +/** + * Response for getting a single fct_block_payload_first_seen_by_node record + */ +export const zGetFctBlockPayloadFirstSeenByNodeResponse = z.object({ + item: z.optional(zFctBlockPayloadFirstSeenByNode), +}); + +/** + * Response for getting a single fct_block_payload_ptc_vote_head record + */ +export const zGetFctBlockPayloadPtcVoteHeadResponse = z.object({ + item: z.optional(zFctBlockPayloadPtcVoteHead), +}); + +/** + * Response for getting a single fct_block_payload_ptc_vote record + */ +export const zGetFctBlockPayloadPtcVoteResponse = z.object({ + item: z.optional(zFctBlockPayloadPtcVote), }); /** * Response for getting a single fct_block_proposal_status_daily record */ export const zGetFctBlockProposalStatusDailyResponse = z.object({ - item: z.optional(zFctBlockProposalStatusDaily) + item: z.optional(zFctBlockProposalStatusDaily), }); /** * Response for getting a single fct_block_proposal_status_hourly record */ export const zGetFctBlockProposalStatusHourlyResponse = z.object({ - item: z.optional(zFctBlockProposalStatusHourly) + item: z.optional(zFctBlockProposalStatusHourly), }); /** * Response for getting a single fct_block_proposer_by_validator record */ export const zGetFctBlockProposerByValidatorResponse = z.object({ - item: z.optional(zFctBlockProposerByValidator) + item: z.optional(zFctBlockProposerByValidator), }); /** * Response for getting a single fct_block_proposer_entity record */ export const zGetFctBlockProposerEntityResponse = z.object({ - item: z.optional(zFctBlockProposerEntity) + item: z.optional(zFctBlockProposerEntity), }); /** * Response for getting a single fct_block_proposer_head record */ export const zGetFctBlockProposerHeadResponse = z.object({ - item: z.optional(zFctBlockProposerHead) + item: z.optional(zFctBlockProposerHead), }); /** * Response for getting a single fct_block_proposer record */ export const zGetFctBlockProposerResponse = z.object({ - item: z.optional(zFctBlockProposer) + item: z.optional(zFctBlockProposer), }); /** * Response for getting a single fct_block record */ export const zGetFctBlockResponse = z.object({ - item: z.optional(zFctBlock) + item: z.optional(zFctBlock), }); /** * Response for getting a single fct_contract_storage_state_by_address_daily record */ export const zGetFctContractStorageStateByAddressDailyResponse = z.object({ - item: z.optional(zFctContractStorageStateByAddressDaily) + item: z.optional(zFctContractStorageStateByAddressDaily), }); /** * Response for getting a single fct_contract_storage_state_by_address_hourly record */ export const zGetFctContractStorageStateByAddressHourlyResponse = z.object({ - item: z.optional(zFctContractStorageStateByAddressHourly) + item: z.optional(zFctContractStorageStateByAddressHourly), }); /** * Response for getting a single fct_contract_storage_state_by_block_daily record */ export const zGetFctContractStorageStateByBlockDailyResponse = z.object({ - item: z.optional(zFctContractStorageStateByBlockDaily) + item: z.optional(zFctContractStorageStateByBlockDaily), }); /** * Response for getting a single fct_contract_storage_state_by_block_hourly record */ export const zGetFctContractStorageStateByBlockHourlyResponse = z.object({ - item: z.optional(zFctContractStorageStateByBlockHourly) + item: z.optional(zFctContractStorageStateByBlockHourly), }); /** * Response for getting a single fct_contract_storage_state_with_expiry_by_address_daily record */ export const zGetFctContractStorageStateWithExpiryByAddressDailyResponse = z.object({ - item: z.optional(zFctContractStorageStateWithExpiryByAddressDaily) + item: z.optional(zFctContractStorageStateWithExpiryByAddressDaily), }); /** * Response for getting a single fct_contract_storage_state_with_expiry_by_address_hourly record */ export const zGetFctContractStorageStateWithExpiryByAddressHourlyResponse = z.object({ - item: z.optional(zFctContractStorageStateWithExpiryByAddressHourly) + item: z.optional(zFctContractStorageStateWithExpiryByAddressHourly), }); /** * Response for getting a single fct_contract_storage_state_with_expiry_by_block_daily record */ export const zGetFctContractStorageStateWithExpiryByBlockDailyResponse = z.object({ - item: z.optional(zFctContractStorageStateWithExpiryByBlockDaily) + item: z.optional(zFctContractStorageStateWithExpiryByBlockDaily), }); /** * Response for getting a single fct_contract_storage_state_with_expiry_by_block_hourly record */ export const zGetFctContractStorageStateWithExpiryByBlockHourlyResponse = z.object({ - item: z.optional(zFctContractStorageStateWithExpiryByBlockHourly) + item: z.optional(zFctContractStorageStateWithExpiryByBlockHourly), }); /** * Response for getting a single fct_data_column_availability_by_epoch record */ export const zGetFctDataColumnAvailabilityByEpochResponse = z.object({ - item: z.optional(zFctDataColumnAvailabilityByEpoch) + item: z.optional(zFctDataColumnAvailabilityByEpoch), }); /** * Response for getting a single fct_data_column_availability_by_slot_blob record */ export const zGetFctDataColumnAvailabilityBySlotBlobResponse = z.object({ - item: z.optional(zFctDataColumnAvailabilityBySlotBlob) + item: z.optional(zFctDataColumnAvailabilityBySlotBlob), }); /** * Response for getting a single fct_data_column_availability_by_slot record */ export const zGetFctDataColumnAvailabilityBySlotResponse = z.object({ - item: z.optional(zFctDataColumnAvailabilityBySlot) + item: z.optional(zFctDataColumnAvailabilityBySlot), }); /** * Response for getting a single fct_data_column_availability_daily record */ export const zGetFctDataColumnAvailabilityDailyResponse = z.object({ - item: z.optional(zFctDataColumnAvailabilityDaily) + item: z.optional(zFctDataColumnAvailabilityDaily), }); /** * Response for getting a single fct_data_column_availability_hourly record */ export const zGetFctDataColumnAvailabilityHourlyResponse = z.object({ - item: z.optional(zFctDataColumnAvailabilityHourly) + item: z.optional(zFctDataColumnAvailabilityHourly), }); /** * Response for getting a single fct_engine_get_blobs_by_el_client_hourly record */ export const zGetFctEngineGetBlobsByElClientHourlyResponse = z.object({ - item: z.optional(zFctEngineGetBlobsByElClientHourly) + item: z.optional(zFctEngineGetBlobsByElClientHourly), }); /** * Response for getting a single fct_engine_get_blobs_by_el_client record */ export const zGetFctEngineGetBlobsByElClientResponse = z.object({ - item: z.optional(zFctEngineGetBlobsByElClient) + item: z.optional(zFctEngineGetBlobsByElClient), }); /** * Response for getting a single fct_engine_get_blobs_by_slot record */ export const zGetFctEngineGetBlobsBySlotResponse = z.object({ - item: z.optional(zFctEngineGetBlobsBySlot) + item: z.optional(zFctEngineGetBlobsBySlot), }); /** * Response for getting a single fct_engine_get_blobs_duration_chunked_50ms record */ export const zGetFctEngineGetBlobsDurationChunked50MsResponse = z.object({ - item: z.optional(zFctEngineGetBlobsDurationChunked50Ms) + item: z.optional(zFctEngineGetBlobsDurationChunked50Ms), }); /** * Response for getting a single fct_engine_new_payload_by_el_client_hourly record */ export const zGetFctEngineNewPayloadByElClientHourlyResponse = z.object({ - item: z.optional(zFctEngineNewPayloadByElClientHourly) + item: z.optional(zFctEngineNewPayloadByElClientHourly), }); /** * Response for getting a single fct_engine_new_payload_by_el_client record */ export const zGetFctEngineNewPayloadByElClientResponse = z.object({ - item: z.optional(zFctEngineNewPayloadByElClient) + item: z.optional(zFctEngineNewPayloadByElClient), }); /** * Response for getting a single fct_engine_new_payload_by_slot record */ export const zGetFctEngineNewPayloadBySlotResponse = z.object({ - item: z.optional(zFctEngineNewPayloadBySlot) + item: z.optional(zFctEngineNewPayloadBySlot), }); /** * Response for getting a single fct_engine_new_payload_duration_chunked_50ms record */ export const zGetFctEngineNewPayloadDurationChunked50MsResponse = z.object({ - item: z.optional(zFctEngineNewPayloadDurationChunked50Ms) + item: z.optional(zFctEngineNewPayloadDurationChunked50Ms), }); /** * Response for getting a single fct_engine_new_payload_winrate_daily record */ export const zGetFctEngineNewPayloadWinrateDailyResponse = z.object({ - item: z.optional(zFctEngineNewPayloadWinrateDaily) + item: z.optional(zFctEngineNewPayloadWinrateDaily), }); /** * Response for getting a single fct_engine_new_payload_winrate_hourly record */ export const zGetFctEngineNewPayloadWinrateHourlyResponse = z.object({ - item: z.optional(zFctEngineNewPayloadWinrateHourly) + item: z.optional(zFctEngineNewPayloadWinrateHourly), }); /** * Response for getting a single fct_execution_gas_limit_daily record */ export const zGetFctExecutionGasLimitDailyResponse = z.object({ - item: z.optional(zFctExecutionGasLimitDaily) + item: z.optional(zFctExecutionGasLimitDaily), }); /** * Response for getting a single fct_execution_gas_limit_hourly record */ export const zGetFctExecutionGasLimitHourlyResponse = z.object({ - item: z.optional(zFctExecutionGasLimitHourly) + item: z.optional(zFctExecutionGasLimitHourly), }); /** * Response for getting a single fct_execution_gas_limit_signalling_daily record */ export const zGetFctExecutionGasLimitSignallingDailyResponse = z.object({ - item: z.optional(zFctExecutionGasLimitSignallingDaily) + item: z.optional(zFctExecutionGasLimitSignallingDaily), }); /** * Response for getting a single fct_execution_gas_limit_signalling_hourly record */ export const zGetFctExecutionGasLimitSignallingHourlyResponse = z.object({ - item: z.optional(zFctExecutionGasLimitSignallingHourly) + item: z.optional(zFctExecutionGasLimitSignallingHourly), }); /** * Response for getting a single fct_execution_gas_used_daily record */ export const zGetFctExecutionGasUsedDailyResponse = z.object({ - item: z.optional(zFctExecutionGasUsedDaily) + item: z.optional(zFctExecutionGasUsedDaily), }); /** * Response for getting a single fct_execution_gas_used_hourly record */ export const zGetFctExecutionGasUsedHourlyResponse = z.object({ - item: z.optional(zFctExecutionGasUsedHourly) + item: z.optional(zFctExecutionGasUsedHourly), }); /** * Response for getting a single fct_execution_receipt_size_daily record */ export const zGetFctExecutionReceiptSizeDailyResponse = z.object({ - item: z.optional(zFctExecutionReceiptSizeDaily) + item: z.optional(zFctExecutionReceiptSizeDaily), }); /** * Response for getting a single fct_execution_receipt_size_hourly record */ export const zGetFctExecutionReceiptSizeHourlyResponse = z.object({ - item: z.optional(zFctExecutionReceiptSizeHourly) + item: z.optional(zFctExecutionReceiptSizeHourly), }); /** * Response for getting a single fct_execution_state_size_daily record */ export const zGetFctExecutionStateSizeDailyResponse = z.object({ - item: z.optional(zFctExecutionStateSizeDaily) + item: z.optional(zFctExecutionStateSizeDaily), }); /** * Response for getting a single fct_execution_state_size_hourly record */ export const zGetFctExecutionStateSizeHourlyResponse = z.object({ - item: z.optional(zFctExecutionStateSizeHourly) + item: z.optional(zFctExecutionStateSizeHourly), }); /** * Response for getting a single fct_execution_tps_daily record */ export const zGetFctExecutionTpsDailyResponse = z.object({ - item: z.optional(zFctExecutionTpsDaily) + item: z.optional(zFctExecutionTpsDaily), }); /** * Response for getting a single fct_execution_tps_hourly record */ export const zGetFctExecutionTpsHourlyResponse = z.object({ - item: z.optional(zFctExecutionTpsHourly) + item: z.optional(zFctExecutionTpsHourly), }); /** * Response for getting a single fct_execution_transactions_daily record */ export const zGetFctExecutionTransactionsDailyResponse = z.object({ - item: z.optional(zFctExecutionTransactionsDaily) + item: z.optional(zFctExecutionTransactionsDaily), }); /** * Response for getting a single fct_execution_transactions_hourly record */ export const zGetFctExecutionTransactionsHourlyResponse = z.object({ - item: z.optional(zFctExecutionTransactionsHourly) + item: z.optional(zFctExecutionTransactionsHourly), }); /** * Response for getting a single fct_head_first_seen_by_node record */ export const zGetFctHeadFirstSeenByNodeResponse = z.object({ - item: z.optional(zFctHeadFirstSeenByNode) + item: z.optional(zFctHeadFirstSeenByNode), }); /** * Response for getting a single fct_head_vote_correctness_rate_daily record */ export const zGetFctHeadVoteCorrectnessRateDailyResponse = z.object({ - item: z.optional(zFctHeadVoteCorrectnessRateDaily) + item: z.optional(zFctHeadVoteCorrectnessRateDaily), }); /** * Response for getting a single fct_head_vote_correctness_rate_hourly record */ export const zGetFctHeadVoteCorrectnessRateHourlyResponse = z.object({ - item: z.optional(zFctHeadVoteCorrectnessRateHourly) + item: z.optional(zFctHeadVoteCorrectnessRateHourly), }); /** * Response for getting a single fct_mev_bid_count_by_builder record */ export const zGetFctMevBidCountByBuilderResponse = z.object({ - item: z.optional(zFctMevBidCountByBuilder) + item: z.optional(zFctMevBidCountByBuilder), }); /** * Response for getting a single fct_mev_bid_count_by_relay record */ export const zGetFctMevBidCountByRelayResponse = z.object({ - item: z.optional(zFctMevBidCountByRelay) + item: z.optional(zFctMevBidCountByRelay), }); /** * Response for getting a single fct_mev_bid_highest_value_by_builder_chunked_50ms record */ export const zGetFctMevBidHighestValueByBuilderChunked50MsResponse = z.object({ - item: z.optional(zFctMevBidHighestValueByBuilderChunked50Ms) + item: z.optional(zFctMevBidHighestValueByBuilderChunked50Ms), }); /** * Response for getting a single fct_missed_slot_rate_daily record */ export const zGetFctMissedSlotRateDailyResponse = z.object({ - item: z.optional(zFctMissedSlotRateDaily) + item: z.optional(zFctMissedSlotRateDaily), }); /** * Response for getting a single fct_missed_slot_rate_hourly record */ export const zGetFctMissedSlotRateHourlyResponse = z.object({ - item: z.optional(zFctMissedSlotRateHourly) + item: z.optional(zFctMissedSlotRateHourly), }); /** * Response for getting a single fct_node_active_last_24h record */ export const zGetFctNodeActiveLast24hResponse = z.object({ - item: z.optional(zFctNodeActiveLast24h) + item: z.optional(zFctNodeActiveLast24h), }); /** * Response for getting a single fct_node_cpu_utilization_by_process record */ export const zGetFctNodeCpuUtilizationByProcessResponse = z.object({ - item: z.optional(zFctNodeCpuUtilizationByProcess) + item: z.optional(zFctNodeCpuUtilizationByProcess), }); /** * Response for getting a single fct_node_disk_io_by_process record */ export const zGetFctNodeDiskIoByProcessResponse = z.object({ - item: z.optional(zFctNodeDiskIoByProcess) + item: z.optional(zFctNodeDiskIoByProcess), }); /** * Response for getting a single fct_node_memory_usage_by_process record */ export const zGetFctNodeMemoryUsageByProcessResponse = z.object({ - item: z.optional(zFctNodeMemoryUsageByProcess) + item: z.optional(zFctNodeMemoryUsageByProcess), }); /** * Response for getting a single fct_node_network_io_by_process record */ export const zGetFctNodeNetworkIoByProcessResponse = z.object({ - item: z.optional(zFctNodeNetworkIoByProcess) + item: z.optional(zFctNodeNetworkIoByProcess), }); /** * Response for getting a single fct_opcode_gas_by_opcode_daily record */ export const zGetFctOpcodeGasByOpcodeDailyResponse = z.object({ - item: z.optional(zFctOpcodeGasByOpcodeDaily) + item: z.optional(zFctOpcodeGasByOpcodeDaily), }); /** * Response for getting a single fct_opcode_gas_by_opcode_hourly record */ export const zGetFctOpcodeGasByOpcodeHourlyResponse = z.object({ - item: z.optional(zFctOpcodeGasByOpcodeHourly) + item: z.optional(zFctOpcodeGasByOpcodeHourly), }); /** * Response for getting a single fct_opcode_ops_daily record */ export const zGetFctOpcodeOpsDailyResponse = z.object({ - item: z.optional(zFctOpcodeOpsDaily) + item: z.optional(zFctOpcodeOpsDaily), }); /** * Response for getting a single fct_opcode_ops_hourly record */ export const zGetFctOpcodeOpsHourlyResponse = z.object({ - item: z.optional(zFctOpcodeOpsHourly) + item: z.optional(zFctOpcodeOpsHourly), +}); + +/** + * Response for getting a single fct_payload_bid_highest_value_by_builder_chunked_50ms record + */ +export const zGetFctPayloadBidHighestValueByBuilderChunked50MsResponse = z.object({ + item: z.optional(zFctPayloadBidHighestValueByBuilderChunked50Ms), }); /** * Response for getting a single fct_prepared_block record */ export const zGetFctPreparedBlockResponse = z.object({ - item: z.optional(zFctPreparedBlock) + item: z.optional(zFctPreparedBlock), }); /** * Response for getting a single fct_proposer_reward_daily record */ export const zGetFctProposerRewardDailyResponse = z.object({ - item: z.optional(zFctProposerRewardDaily) + item: z.optional(zFctProposerRewardDaily), }); /** * Response for getting a single fct_proposer_reward_hourly record */ export const zGetFctProposerRewardHourlyResponse = z.object({ - item: z.optional(zFctProposerRewardHourly) + item: z.optional(zFctProposerRewardHourly), }); /** * Response for getting a single fct_reorg_daily record */ export const zGetFctReorgDailyResponse = z.object({ - item: z.optional(zFctReorgDaily) + item: z.optional(zFctReorgDaily), }); /** * Response for getting a single fct_reorg_hourly record */ export const zGetFctReorgHourlyResponse = z.object({ - item: z.optional(zFctReorgHourly) + item: z.optional(zFctReorgHourly), }); /** * Response for getting a single fct_rocketpool_validator record */ export const zGetFctRocketpoolValidatorResponse = z.object({ - item: z.optional(zFctRocketpoolValidator) + item: z.optional(zFctRocketpoolValidator), }); /** * Response for getting a single fct_storage_slot_state_by_address_daily record */ export const zGetFctStorageSlotStateByAddressDailyResponse = z.object({ - item: z.optional(zFctStorageSlotStateByAddressDaily) + item: z.optional(zFctStorageSlotStateByAddressDaily), }); /** * Response for getting a single fct_storage_slot_state_by_address_hourly record */ export const zGetFctStorageSlotStateByAddressHourlyResponse = z.object({ - item: z.optional(zFctStorageSlotStateByAddressHourly) + item: z.optional(zFctStorageSlotStateByAddressHourly), }); /** * Response for getting a single fct_storage_slot_state_by_block_daily record */ export const zGetFctStorageSlotStateByBlockDailyResponse = z.object({ - item: z.optional(zFctStorageSlotStateByBlockDaily) + item: z.optional(zFctStorageSlotStateByBlockDaily), }); /** * Response for getting a single fct_storage_slot_state_by_block_hourly record */ export const zGetFctStorageSlotStateByBlockHourlyResponse = z.object({ - item: z.optional(zFctStorageSlotStateByBlockHourly) + item: z.optional(zFctStorageSlotStateByBlockHourly), }); /** * Response for getting a single fct_storage_slot_state_with_expiry_by_address_daily record */ export const zGetFctStorageSlotStateWithExpiryByAddressDailyResponse = z.object({ - item: z.optional(zFctStorageSlotStateWithExpiryByAddressDaily) + item: z.optional(zFctStorageSlotStateWithExpiryByAddressDaily), }); /** * Response for getting a single fct_storage_slot_state_with_expiry_by_address_hourly record */ export const zGetFctStorageSlotStateWithExpiryByAddressHourlyResponse = z.object({ - item: z.optional(zFctStorageSlotStateWithExpiryByAddressHourly) + item: z.optional(zFctStorageSlotStateWithExpiryByAddressHourly), }); /** * Response for getting a single fct_storage_slot_state_with_expiry_by_block_daily record */ export const zGetFctStorageSlotStateWithExpiryByBlockDailyResponse = z.object({ - item: z.optional(zFctStorageSlotStateWithExpiryByBlockDaily) + item: z.optional(zFctStorageSlotStateWithExpiryByBlockDaily), }); /** * Response for getting a single fct_storage_slot_state_with_expiry_by_block_hourly record */ export const zGetFctStorageSlotStateWithExpiryByBlockHourlyResponse = z.object({ - item: z.optional(zFctStorageSlotStateWithExpiryByBlockHourly) + item: z.optional(zFctStorageSlotStateWithExpiryByBlockHourly), }); /** * Response for getting a single fct_storage_slot_top_100_by_bytes record */ export const zGetFctStorageSlotTop100ByBytesResponse = z.object({ - item: z.optional(zFctStorageSlotTop100ByBytes) + item: z.optional(zFctStorageSlotTop100ByBytes), }); /** * Response for getting a single fct_storage_slot_top_100_by_slots record */ export const zGetFctStorageSlotTop100BySlotsResponse = z.object({ - item: z.optional(zFctStorageSlotTop100BySlots) + item: z.optional(zFctStorageSlotTop100BySlots), }); /** * Response for getting a single fct_sync_committee_participation_by_validator_daily record */ export const zGetFctSyncCommitteeParticipationByValidatorDailyResponse = z.object({ - item: z.optional(zFctSyncCommitteeParticipationByValidatorDaily) + item: z.optional(zFctSyncCommitteeParticipationByValidatorDaily), }); /** * Response for getting a single fct_sync_committee_participation_by_validator_hourly record */ export const zGetFctSyncCommitteeParticipationByValidatorHourlyResponse = z.object({ - item: z.optional(zFctSyncCommitteeParticipationByValidatorHourly) + item: z.optional(zFctSyncCommitteeParticipationByValidatorHourly), }); /** * Response for getting a single fct_sync_committee_participation_by_validator record */ export const zGetFctSyncCommitteeParticipationByValidatorResponse = z.object({ - item: z.optional(zFctSyncCommitteeParticipationByValidator) + item: z.optional(zFctSyncCommitteeParticipationByValidator), }); /** * Response for getting a single fct_token_contract_storage_state_by_block_daily record */ export const zGetFctTokenContractStorageStateByBlockDailyResponse = z.object({ - item: z.optional(zFctTokenContractStorageStateByBlockDaily) + item: z.optional(zFctTokenContractStorageStateByBlockDaily), }); /** * Response for getting a single fct_validator_balance_daily record */ export const zGetFctValidatorBalanceDailyResponse = z.object({ - item: z.optional(zFctValidatorBalanceDaily) + item: z.optional(zFctValidatorBalanceDaily), }); /** * Response for getting a single fct_validator_balance_hourly record */ export const zGetFctValidatorBalanceHourlyResponse = z.object({ - item: z.optional(zFctValidatorBalanceHourly) + item: z.optional(zFctValidatorBalanceHourly), }); /** * Response for getting a single fct_validator_balance record */ export const zGetFctValidatorBalanceResponse = z.object({ - item: z.optional(zFctValidatorBalance) + item: z.optional(zFctValidatorBalance), }); /** * Response for getting a single fct_validator_count_by_entity_by_status_daily record */ export const zGetFctValidatorCountByEntityByStatusDailyResponse = z.object({ - item: z.optional(zFctValidatorCountByEntityByStatusDaily) + item: z.optional(zFctValidatorCountByEntityByStatusDaily), }); /** * Contains an arbitrary serialized message along with a @type that describes the type of the serialized message. */ export const zGoogleProtobufAny = z.object({ - '@type': z.optional(z.string()) + '@type': z.optional(z.string()), +}); + +export const zIntAttestationAttested = z.object({ + attesting_validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + propagation_distance: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_root: z.optional(z.string()), + target_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_root: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), +}); + +/** + * Response for getting a single int_attestation_attested record + */ +export const zGetIntAttestationAttestedResponse = z.object({ + item: z.optional(zIntAttestationAttested), }); export const zIntAttestationAttestedCanonical = z.object({ - attesting_validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_root: z.optional(z.string()), - target_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_root: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + attesting_validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_root: z.optional(z.string()), + target_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_root: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_attestation_attested_canonical record */ export const zGetIntAttestationAttestedCanonicalResponse = z.object({ - item: z.optional(zIntAttestationAttestedCanonical) + item: z.optional(zIntAttestationAttestedCanonical), }); export const zIntAttestationAttestedHead = z.object({ - attesting_validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_root: z.optional(z.string()), - target_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_root: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + attesting_validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_root: z.optional(z.string()), + target_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_root: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_attestation_attested_head record */ export const zGetIntAttestationAttestedHeadResponse = z.object({ - item: z.optional(zIntAttestationAttestedHead) + item: z.optional(zIntAttestationAttestedHead), }); export const zIntAttestationFirstSeen = z.object({ - attesting_validator_committee_index: z.optional(z.string()), - attesting_validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.string()), - classification: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_client_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_continent_code: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_implementation: z.optional(z.string()), - meta_client_name: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_consensus_implementation: z.optional(z.string()), - meta_consensus_version: z.optional(z.string()), - node_id: z.optional(z.string()), - seen_slot_start_diff: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source: z.optional(z.string()), - source_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_root: z.optional(z.string()), - target_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_root: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - username: z.optional(z.string()) + attesting_validator_committee_index: z.optional(z.string()), + attesting_validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + classification: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_consensus_implementation: z.optional(z.string()), + meta_consensus_version: z.optional(z.string()), + node_id: z.optional(z.string()), + seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source: z.optional(z.string()), + source_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_root: z.optional(z.string()), + target_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_root: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + username: z.optional(z.string()), }); /** * Response for getting a single int_attestation_first_seen record */ export const zGetIntAttestationFirstSeenResponse = z.object({ - item: z.optional(zIntAttestationFirstSeen) + item: z.optional(zIntAttestationFirstSeen), }); export const zIntAttestationFirstSeenAggregate = z.object({ - attesting_validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.string()), - committee_index: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source: z.optional(z.string()), - source_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_root: z.optional(z.string()), - target_epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_root: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + attesting_validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + committee_index: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source: z.optional(z.string()), + source_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_root: z.optional(z.string()), + target_epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_root: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_attestation_first_seen_aggregate record */ export const zGetIntAttestationFirstSeenAggregateResponse = z.object({ - item: z.optional(zIntAttestationFirstSeenAggregate) + item: z.optional(zIntAttestationFirstSeenAggregate), +}); + +export const zIntBeaconCommittee = z.object({ + committee_index: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validators: z.optional( + z.array( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ) + ), +}); + +/** + * Response for getting a single int_beacon_committee record + */ +export const zGetIntBeaconCommitteeResponse = z.object({ + item: z.optional(zIntBeaconCommittee), }); export const zIntBeaconCommitteeHead = z.object({ - committee_index: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validators: z.optional(z.array(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })))) + committee_index: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validators: z.optional( + z.array( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ) + ), }); /** * Response for getting a single int_beacon_committee_head record */ export const zGetIntBeaconCommitteeHeadResponse = z.object({ - item: z.optional(zIntBeaconCommitteeHead) + item: z.optional(zIntBeaconCommitteeHead), }); export const zIntBlockBlobCountCanonical = z.object({ - blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_root: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_block_blob_count_canonical record */ export const zGetIntBlockBlobCountCanonicalResponse = z.object({ - item: z.optional(zIntBlockBlobCountCanonical) + item: z.optional(zIntBlockBlobCountCanonical), }); export const zIntBlockCanonical = z.object({ - block_root: z.optional(z.string()), - block_total_bytes: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - block_total_bytes_compressed: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - block_version: z.optional(z.string()), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - eth1_data_block_hash: z.optional(z.string()), - eth1_data_deposit_root: z.optional(z.string()), - execution_payload_base_fee_per_gas: z.optional(z.union([ - z.string(), - z.null() - ])), - execution_payload_blob_gas_used: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_block_hash: z.optional(z.string()), - execution_payload_block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_excess_blob_gas: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_fee_recipient: z.optional(z.string()), - execution_payload_gas_limit: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_gas_used: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - execution_payload_parent_hash: z.optional(z.string()), - execution_payload_state_root: z.optional(z.string()), - execution_payload_transactions_count: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - execution_payload_transactions_total_bytes: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - execution_payload_transactions_total_bytes_compressed: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - parent_root: z.optional(z.string()), - proposer_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - state_root: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_root: z.optional(z.string()), + block_total_bytes: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + block_total_bytes_compressed: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + block_version: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + eth1_data_block_hash: z.optional(z.string()), + eth1_data_deposit_root: z.optional(z.string()), + execution_payload_base_fee_per_gas: z.optional(z.union([z.string(), z.null()])), + execution_payload_blob_gas_used: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_block_hash: z.optional(z.string()), + execution_payload_block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_excess_blob_gas: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_fee_recipient: z.optional(z.string()), + execution_payload_gas_limit: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_gas_used: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + execution_payload_parent_hash: z.optional(z.string()), + execution_payload_state_root: z.optional(z.string()), + execution_payload_transactions_count: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + execution_payload_transactions_total_bytes: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + execution_payload_transactions_total_bytes_compressed: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + parent_root: z.optional(z.string()), + proposer_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + state_root: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_block_canonical record */ export const zGetIntBlockCanonicalResponse = z.object({ - item: z.optional(zIntBlockCanonical) + item: z.optional(zIntBlockCanonical), }); export const zIntBlockMevCanonical = z.object({ - block_hash: z.optional(z.string()), - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_root: z.optional(z.string()), - builder_pubkey: z.optional(z.string()), - earliest_bid_date_time: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' })), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - parent_hash: z.optional(z.string()), - proposer_fee_recipient: z.optional(z.string()), - proposer_pubkey: z.optional(z.string()), - relay_names: z.optional(z.array(z.string())), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - value: z.optional(z.union([ - z.string(), - z.null() - ])) + block_hash: z.optional(z.string()), + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_root: z.optional(z.string()), + builder_pubkey: z.optional(z.string()), + earliest_bid_date_time: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ), + z.null(), + ]) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + parent_hash: z.optional(z.string()), + proposer_fee_recipient: z.optional(z.string()), + proposer_pubkey: z.optional(z.string()), + relay_names: z.optional(z.array(z.string())), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + value: z.optional(z.union([z.string(), z.null()])), }); /** * Response for getting a single int_block_mev_canonical record */ export const zGetIntBlockMevCanonicalResponse = z.object({ - item: z.optional(zIntBlockMevCanonical) + item: z.optional(zIntBlockMevCanonical), }); export const zIntBlockOpcodeGas = z.object({ - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - meta_network_name: z.optional(z.string()), - opcode: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + meta_network_name: z.optional(z.string()), + opcode: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_block_opcode_gas record */ export const zGetIntBlockOpcodeGasResponse = z.object({ - item: z.optional(zIntBlockOpcodeGas) + item: z.optional(zIntBlockOpcodeGas), +}); + +export const zIntBlockPayloadPtcVoteCanonical = z.object({ + blob_data_available_votes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + block_version: z.optional(z.string()), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_block_root: z.optional(z.string()), + included_in_slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), +}); + +/** + * Response for getting a single int_block_payload_ptc_vote_canonical record + */ +export const zGetIntBlockPayloadPtcVoteCanonicalResponse = z.object({ + item: z.optional(zIntBlockPayloadPtcVoteCanonical), }); export const zIntBlockProposerCanonical = z.object({ - block_root: z.optional(z.union([ - z.string(), - z.null() - ])), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_pubkey: z.optional(z.string()), - proposer_validator_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_root: z.optional(z.union([z.string(), z.null()])), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_pubkey: z.optional(z.string()), + proposer_validator_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_block_proposer_canonical record */ export const zGetIntBlockProposerCanonicalResponse = z.object({ - item: z.optional(zIntBlockProposerCanonical) + item: z.optional(zIntBlockProposerCanonical), }); export const zIntBlockReceiptSize = z.object({ - avg_receipt_bytes_per_transaction: z.optional(z.number()), - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_data_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_topic_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_receipt_bytes_per_transaction: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - meta_network_name: z.optional(z.string()), - p50_receipt_bytes_per_transaction: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + avg_receipt_bytes_per_transaction: z.optional(z.number()), + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_data_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_topic_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_receipt_bytes_per_transaction: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + meta_network_name: z.optional(z.string()), + p50_receipt_bytes_per_transaction: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_block_receipt_size record */ export const zGetIntBlockReceiptSizeResponse = z.object({ - item: z.optional(zIntBlockReceiptSize) + item: z.optional(zIntBlockReceiptSize), }); export const zIntBlockResourceGas = z.object({ - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - meta_network_name: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + meta_network_name: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_block_resource_gas record */ export const zGetIntBlockResourceGasResponse = z.object({ - item: z.optional(zIntBlockResourceGas) + item: z.optional(zIntBlockResourceGas), }); export const zIntContractCreation = z.object({ - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - contract_address: z.optional(z.string()), - deployer: z.optional(z.string()), - factory: z.optional(z.string()), - init_code_hash: z.optional(z.string()), - internal_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_hash: z.optional(z.string()), - transaction_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + contract_address: z.optional(z.string()), + deployer: z.optional(z.string()), + factory: z.optional(z.string()), + init_code_hash: z.optional(z.string()), + internal_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_hash: z.optional(z.string()), + transaction_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_creation record */ export const zGetIntContractCreationResponse = z.object({ - item: z.optional(zIntContractCreation) + item: z.optional(zIntContractCreation), }); export const zIntContractSelfdestruct = z.object({ - address: z.optional(z.string()), - beneficiary: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - creation_block: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - creation_transaction_hash: z.optional(z.union([ - z.string(), - z.null() - ])), - ephemeral: z.optional(z.boolean()), - internal_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - storage_cleared: z.optional(z.boolean()), - transaction_hash: z.optional(z.string()), - transaction_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - value_transferred: z.optional(z.string()) + address: z.optional(z.string()), + beneficiary: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + creation_block: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + creation_transaction_hash: z.optional(z.union([z.string(), z.null()])), + ephemeral: z.optional(z.boolean()), + internal_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + storage_cleared: z.optional(z.boolean()), + transaction_hash: z.optional(z.string()), + transaction_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + value_transferred: z.optional(z.string()), }); /** * Response for getting a single int_contract_selfdestruct record */ export const zGetIntContractSelfdestructResponse = z.object({ - item: z.optional(zIntContractSelfdestruct) + item: z.optional(zIntContractSelfdestruct), }); export const zIntContractStorageExpiry1m = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_expiry_1m record */ export const zGetIntContractStorageExpiry1mResponse = z.object({ - item: z.optional(zIntContractStorageExpiry1m) + item: z.optional(zIntContractStorageExpiry1m), }); export const zIntContractStorageExpiry6m = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_expiry_6m record */ export const zGetIntContractStorageExpiry6mResponse = z.object({ - item: z.optional(zIntContractStorageExpiry6m) + item: z.optional(zIntContractStorageExpiry6m), }); export const zIntContractStorageExpiry12m = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_expiry_12m record */ export const zGetIntContractStorageExpiry12mResponse = z.object({ - item: z.optional(zIntContractStorageExpiry12m) + item: z.optional(zIntContractStorageExpiry12m), }); export const zIntContractStorageExpiry18m = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_expiry_18m record */ export const zGetIntContractStorageExpiry18mResponse = z.object({ - item: z.optional(zIntContractStorageExpiry18m) + item: z.optional(zIntContractStorageExpiry18m), }); export const zIntContractStorageExpiry24m = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_expiry_24m record */ export const zGetIntContractStorageExpiry24mResponse = z.object({ - item: z.optional(zIntContractStorageExpiry24m) + item: z.optional(zIntContractStorageExpiry24m), }); export const zIntContractStorageNextTouch = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_next_touch record */ export const zGetIntContractStorageNextTouchResponse = z.object({ - item: z.optional(zIntContractStorageNextTouch) + item: z.optional(zIntContractStorageNextTouch), }); export const zIntContractStorageReactivation1m = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_reactivation_1m record */ export const zGetIntContractStorageReactivation1mResponse = z.object({ - item: z.optional(zIntContractStorageReactivation1m) + item: z.optional(zIntContractStorageReactivation1m), }); export const zIntContractStorageReactivation6m = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_reactivation_6m record */ export const zGetIntContractStorageReactivation6mResponse = z.object({ - item: z.optional(zIntContractStorageReactivation6m) + item: z.optional(zIntContractStorageReactivation6m), }); export const zIntContractStorageReactivation12m = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_reactivation_12m record */ export const zGetIntContractStorageReactivation12mResponse = z.object({ - item: z.optional(zIntContractStorageReactivation12m) + item: z.optional(zIntContractStorageReactivation12m), }); export const zIntContractStorageReactivation18m = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_reactivation_18m record */ export const zGetIntContractStorageReactivation18mResponse = z.object({ - item: z.optional(zIntContractStorageReactivation18m) + item: z.optional(zIntContractStorageReactivation18m), }); export const zIntContractStorageReactivation24m = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_reactivation_24m record */ export const zGetIntContractStorageReactivation24mResponse = z.object({ - item: z.optional(zIntContractStorageReactivation24m) + item: z.optional(zIntContractStorageReactivation24m), }); export const zIntContractStorageState = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bytes_delta: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - slots_delta: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bytes_delta: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + slots_delta: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_state record */ export const zGetIntContractStorageStateResponse = z.object({ - item: z.optional(zIntContractStorageState) + item: z.optional(zIntContractStorageState), }); export const zIntContractStorageStateByAddress = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bytes_delta: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - slots_delta: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bytes_delta: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + slots_delta: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_state_by_address record */ export const zGetIntContractStorageStateByAddressResponse = z.object({ - item: z.optional(zIntContractStorageStateByAddress) + item: z.optional(zIntContractStorageStateByAddress), }); export const zIntContractStorageStateByBlock = z.object({ - active_contracts: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bytes_delta: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - contracts_delta: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - slots_delta: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_contracts: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bytes_delta: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + contracts_delta: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + slots_delta: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_state_by_block record */ export const zGetIntContractStorageStateByBlockResponse = z.object({ - item: z.optional(zIntContractStorageStateByBlock) + item: z.optional(zIntContractStorageStateByBlock), }); export const zIntContractStorageStateWithExpiry = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - cumulative_net_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - net_bytes_delta: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_slots_delta: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - prev_active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + cumulative_net_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + net_bytes_delta: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_slots_delta: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + prev_active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_state_with_expiry record */ export const zGetIntContractStorageStateWithExpiryResponse = z.object({ - item: z.optional(zIntContractStorageStateWithExpiry) + item: z.optional(zIntContractStorageStateWithExpiry), }); export const zIntContractStorageStateWithExpiryByAddress = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_state_with_expiry_by_address record */ export const zGetIntContractStorageStateWithExpiryByAddressResponse = z.object({ - item: z.optional(zIntContractStorageStateWithExpiryByAddress) + item: z.optional(zIntContractStorageStateWithExpiryByAddress), }); export const zIntContractStorageStateWithExpiryByBlock = z.object({ - active_contracts: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_contracts: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_contract_storage_state_with_expiry_by_block record */ export const zGetIntContractStorageStateWithExpiryByBlockResponse = z.object({ - item: z.optional(zIntContractStorageStateWithExpiryByBlock) + item: z.optional(zIntContractStorageStateWithExpiryByBlock), }); export const zIntCustodyProbe = z.object({ - blob_submitters: z.optional(z.array(z.string())), - classification: z.optional(z.string()), - column_indices: z.optional(z.array(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })))), - error: z.optional(z.string()), - meta_client_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_client_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_continent_code: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_implementation: z.optional(z.string()), - meta_client_os: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_peer_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_peer_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_peer_geo_city: z.optional(z.string()), - meta_peer_geo_continent_code: z.optional(z.string()), - meta_peer_geo_country: z.optional(z.string()), - meta_peer_geo_country_code: z.optional(z.string()), - meta_peer_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_peer_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_peer_implementation: z.optional(z.string()), - meta_peer_platform: z.optional(z.string()), - meta_peer_version: z.optional(z.string()), - node_id: z.optional(z.string()), - peer_id_unique_key: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - probe_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - response_time_ms: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - result: z.optional(z.string()), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - username: z.optional(z.string()) + blob_submitters: z.optional(z.array(z.string())), + classification: z.optional(z.string()), + column_indices: z.optional( + z.array( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ) + ), + error: z.optional(z.string()), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_os: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_peer_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_peer_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_peer_geo_city: z.optional(z.string()), + meta_peer_geo_continent_code: z.optional(z.string()), + meta_peer_geo_country: z.optional(z.string()), + meta_peer_geo_country_code: z.optional(z.string()), + meta_peer_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_peer_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_peer_implementation: z.optional(z.string()), + meta_peer_platform: z.optional(z.string()), + meta_peer_version: z.optional(z.string()), + node_id: z.optional(z.string()), + peer_id_unique_key: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + probe_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + response_time_ms: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + result: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + username: z.optional(z.string()), }); /** * Response for getting a single int_custody_probe record */ export const zGetIntCustodyProbeResponse = z.object({ - item: z.optional(zIntCustodyProbe) + item: z.optional(zIntCustodyProbe), }); export const zIntCustodyProbeOrderBySlot = z.object({ - blob_submitters: z.optional(z.array(z.string())), - classification: z.optional(z.string()), - column_indices: z.optional(z.array(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })))), - error: z.optional(z.string()), - meta_client_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_client_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_continent_code: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_implementation: z.optional(z.string()), - meta_client_os: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_peer_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_peer_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_peer_geo_city: z.optional(z.string()), - meta_peer_geo_continent_code: z.optional(z.string()), - meta_peer_geo_country: z.optional(z.string()), - meta_peer_geo_country_code: z.optional(z.string()), - meta_peer_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_peer_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_peer_implementation: z.optional(z.string()), - meta_peer_platform: z.optional(z.string()), - meta_peer_version: z.optional(z.string()), - node_id: z.optional(z.string()), - peer_id_unique_key: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - probe_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - response_time_ms: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - result: z.optional(z.string()), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - username: z.optional(z.string()) + blob_submitters: z.optional(z.array(z.string())), + classification: z.optional(z.string()), + column_indices: z.optional( + z.array( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ) + ), + error: z.optional(z.string()), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_os: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_peer_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_peer_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_peer_geo_city: z.optional(z.string()), + meta_peer_geo_continent_code: z.optional(z.string()), + meta_peer_geo_country: z.optional(z.string()), + meta_peer_geo_country_code: z.optional(z.string()), + meta_peer_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_peer_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_peer_implementation: z.optional(z.string()), + meta_peer_platform: z.optional(z.string()), + meta_peer_version: z.optional(z.string()), + node_id: z.optional(z.string()), + peer_id_unique_key: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + probe_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + response_time_ms: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + result: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + username: z.optional(z.string()), }); /** * Response for getting a single int_custody_probe_order_by_slot record */ export const zGetIntCustodyProbeOrderBySlotResponse = z.object({ - item: z.optional(zIntCustodyProbeOrderBySlot) + item: z.optional(zIntCustodyProbeOrderBySlot), }); export const zIntEngineGetBlobs = z.object({ - block_parent_root: z.optional(z.string()), - block_root: z.optional(z.string()), - duration_ms: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - error_message: z.optional(z.union([ - z.string(), - z.null() - ])), - event_date_time: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - meta_client_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_client_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_continent_code: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_implementation: z.optional(z.string()), - meta_client_name: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_execution_implementation: z.optional(z.string()), - meta_execution_version: z.optional(z.string()), - method_version: z.optional(z.string()), - node_class: z.optional(z.string()), - proposer_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - requested_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - requested_date_time: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - returned_blob_indexes: z.optional(z.array(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })))), - returned_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source: z.optional(z.string()), - status: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - versioned_hashes: z.optional(z.array(z.string())) + block_parent_root: z.optional(z.string()), + block_root: z.optional(z.string()), + duration_ms: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + error_message: z.optional(z.union([z.string(), z.null()])), + event_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_execution_implementation: z.optional(z.string()), + meta_execution_version: z.optional(z.string()), + method_version: z.optional(z.string()), + node_class: z.optional(z.string()), + proposer_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + requested_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + requested_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + returned_blob_indexes: z.optional( + z.array( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ) + ), + returned_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source: z.optional(z.string()), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + versioned_hashes: z.optional(z.array(z.string())), }); /** * Response for getting a single int_engine_get_blobs record */ export const zGetIntEngineGetBlobsResponse = z.object({ - item: z.optional(zIntEngineGetBlobs) + item: z.optional(zIntEngineGetBlobs), }); export const zIntEngineNewPayload = z.object({ - blob_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_hash: z.optional(z.string()), - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_root: z.optional(z.string()), - block_total_bytes: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - block_total_bytes_compressed: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - block_version: z.optional(z.string()), - duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - gas_limit: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - latest_valid_hash: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_autonomous_system_number: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - meta_client_geo_autonomous_system_organization: z.optional(z.union([ - z.string(), - z.null() - ])), - meta_client_geo_city: z.optional(z.string()), - meta_client_geo_continent_code: z.optional(z.string()), - meta_client_geo_country: z.optional(z.string()), - meta_client_geo_country_code: z.optional(z.string()), - meta_client_geo_latitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_geo_longitude: z.optional(z.union([ - z.number(), - z.null() - ])), - meta_client_implementation: z.optional(z.string()), - meta_client_name: z.optional(z.string()), - meta_client_version: z.optional(z.string()), - meta_execution_implementation: z.optional(z.string()), - meta_execution_version: z.optional(z.string()), - method_version: z.optional(z.string()), - node_class: z.optional(z.string()), - parent_block_root: z.optional(z.string()), - parent_hash: z.optional(z.string()), - proposer_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - requested_date_time: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status: z.optional(z.string()), - tx_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validation_error: z.optional(z.union([ - z.string(), - z.null() - ])) + blob_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_hash: z.optional(z.string()), + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_root: z.optional(z.string()), + block_total_bytes: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + block_total_bytes_compressed: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + block_version: z.optional(z.string()), + duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + latest_valid_hash: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_autonomous_system_number: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + meta_client_geo_autonomous_system_organization: z.optional(z.union([z.string(), z.null()])), + meta_client_geo_city: z.optional(z.string()), + meta_client_geo_continent_code: z.optional(z.string()), + meta_client_geo_country: z.optional(z.string()), + meta_client_geo_country_code: z.optional(z.string()), + meta_client_geo_latitude: z.optional(z.union([z.number(), z.null()])), + meta_client_geo_longitude: z.optional(z.union([z.number(), z.null()])), + meta_client_implementation: z.optional(z.string()), + meta_client_name: z.optional(z.string()), + meta_client_version: z.optional(z.string()), + meta_execution_implementation: z.optional(z.string()), + meta_execution_version: z.optional(z.string()), + method_version: z.optional(z.string()), + node_class: z.optional(z.string()), + parent_block_root: z.optional(z.string()), + parent_hash: z.optional(z.string()), + proposer_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + requested_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + tx_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validation_error: z.optional(z.union([z.string(), z.null()])), }); /** * Response for getting a single int_engine_new_payload record */ export const zGetIntEngineNewPayloadResponse = z.object({ - item: z.optional(zIntEngineNewPayload) + item: z.optional(zIntEngineNewPayload), }); export const zIntEngineNewPayloadFastestExecutionByNodeClass = z.object({ - block_hash: z.optional(z.string()), - duration_ms: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - epoch: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_name: z.optional(z.string()), - meta_execution_implementation: z.optional(z.string()), - meta_execution_version: z.optional(z.string()), - node_class: z.optional(z.string()), - slot: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_hash: z.optional(z.string()), + duration_ms: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_name: z.optional(z.string()), + meta_execution_implementation: z.optional(z.string()), + meta_execution_version: z.optional(z.string()), + node_class: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_engine_new_payload_fastest_execution_by_node_class record */ export const zGetIntEngineNewPayloadFastestExecutionByNodeClassResponse = z.object({ - item: z.optional(zIntEngineNewPayloadFastestExecutionByNodeClass) + item: z.optional(zIntEngineNewPayloadFastestExecutionByNodeClass), }); export const zIntExecutionBlockByDate = z.object({ - block_date_time: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_execution_block_by_date record */ export const zGetIntExecutionBlockByDateResponse = z.object({ - item: z.optional(zIntExecutionBlockByDate) + item: z.optional(zIntExecutionBlockByDate), }); export const zIntExecutionStateSizeByBlock = z.object({ - account_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + account_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_execution_state_size_by_block record */ export const zGetIntExecutionStateSizeByBlockResponse = z.object({ - item: z.optional(zIntExecutionStateSizeByBlock) + item: z.optional(zIntExecutionStateSizeByBlock), }); export const zIntRocketpoolMegapool = z.object({ - created_block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - created_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - megapool_address: z.optional(z.string()), - node_operator: z.optional(z.string()), - transaction_hash: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + created_block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + created_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + megapool_address: z.optional(z.string()), + node_operator: z.optional(z.string()), + transaction_hash: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_rocketpool_megapool record */ export const zGetIntRocketpoolMegapoolResponse = z.object({ - item: z.optional(zIntRocketpoolMegapool) + item: z.optional(zIntRocketpoolMegapool), }); export const zIntRocketpoolMinipool = z.object({ - event_block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_name: z.optional(z.string()), - log_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - minipool_address: z.optional(z.string()), - node_operator: z.optional(z.string()), - transaction_hash: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + event_block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_name: z.optional(z.string()), + log_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + minipool_address: z.optional(z.string()), + node_operator: z.optional(z.string()), + transaction_hash: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_rocketpool_minipool record */ export const zGetIntRocketpoolMinipoolResponse = z.object({ - item: z.optional(zIntRocketpoolMinipool) + item: z.optional(zIntRocketpoolMinipool), }); export const zIntRocketpoolNodeEvent = z.object({ - event_block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_name: z.optional(z.string()), - log_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - node_address: z.optional(z.string()), - rpl_amount_wei: z.optional(z.string()), - smoothing_state: z.optional(z.boolean()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + event_block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_name: z.optional(z.string()), + log_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + node_address: z.optional(z.string()), + rpl_amount_wei: z.optional(z.string()), + smoothing_state: z.optional(z.boolean()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_rocketpool_node_event record */ export const zGetIntRocketpoolNodeEventResponse = z.object({ - item: z.optional(zIntRocketpoolNodeEvent) + item: z.optional(zIntRocketpoolNodeEvent), }); export const zIntRocketpoolNodeTimezone = z.object({ - node_address: z.optional(z.string()), - set_block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - set_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - timezone: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + node_address: z.optional(z.string()), + set_block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + set_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + timezone: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_rocketpool_node_timezone record */ export const zGetIntRocketpoolNodeTimezoneResponse = z.object({ - item: z.optional(zIntRocketpoolNodeTimezone) + item: z.optional(zIntRocketpoolNodeTimezone), }); export const zIntStorageSelfdestructDiffs = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - from_value: z.optional(z.string()), - internal_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot: z.optional(z.string()), - to_value: z.optional(z.string()), - transaction_hash: z.optional(z.string()), - transaction_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + from_value: z.optional(z.string()), + internal_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional(z.string()), + to_value: z.optional(z.string()), + transaction_hash: z.optional(z.string()), + transaction_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_selfdestruct_diffs record */ export const zGetIntStorageSelfdestructDiffsResponse = z.object({ - item: z.optional(zIntStorageSelfdestructDiffs) + item: z.optional(zIntStorageSelfdestructDiffs), }); export const zIntStorageSlotDiff = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_diff record */ export const zGetIntStorageSlotDiffResponse = z.object({ - item: z.optional(zIntStorageSlotDiff) + item: z.optional(zIntStorageSlotDiff), }); export const zIntStorageSlotDiffByAddressSlot = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_diff_by_address_slot record */ export const zGetIntStorageSlotDiffByAddressSlotResponse = z.object({ - item: z.optional(zIntStorageSlotDiffByAddressSlot) + item: z.optional(zIntStorageSlotDiffByAddressSlot), }); export const zIntStorageSlotExpiry1m = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_expiry_1m record */ export const zGetIntStorageSlotExpiry1mResponse = z.object({ - item: z.optional(zIntStorageSlotExpiry1m) + item: z.optional(zIntStorageSlotExpiry1m), }); export const zIntStorageSlotExpiry6m = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_expiry_6m record */ export const zGetIntStorageSlotExpiry6mResponse = z.object({ - item: z.optional(zIntStorageSlotExpiry6m) + item: z.optional(zIntStorageSlotExpiry6m), }); export const zIntStorageSlotExpiry12m = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_expiry_12m record */ export const zGetIntStorageSlotExpiry12mResponse = z.object({ - item: z.optional(zIntStorageSlotExpiry12m) + item: z.optional(zIntStorageSlotExpiry12m), }); export const zIntStorageSlotExpiry18m = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_expiry_18m record */ export const zGetIntStorageSlotExpiry18mResponse = z.object({ - item: z.optional(zIntStorageSlotExpiry18m) + item: z.optional(zIntStorageSlotExpiry18m), }); export const zIntStorageSlotExpiry24m = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_expiry_24m record */ export const zGetIntStorageSlotExpiry24mResponse = z.object({ - item: z.optional(zIntStorageSlotExpiry24m) + item: z.optional(zIntStorageSlotExpiry24m), }); export const zIntStorageSlotLifecycle = z.object({ - address: z.optional(z.string()), - birth_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - effective_bytes_birth: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - effective_bytes_peak: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_max: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_sum: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - last_touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifespan_blocks: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - slot_key: z.optional(z.string()), - touch_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + birth_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + effective_bytes_birth: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + effective_bytes_peak: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_max: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_sum: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + last_touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifespan_blocks: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + slot_key: z.optional(z.string()), + touch_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_lifecycle record */ export const zGetIntStorageSlotLifecycleResponse = z.object({ - item: z.optional(zIntStorageSlotLifecycle) + item: z.optional(zIntStorageSlotLifecycle), }); export const zIntStorageSlotLifecycleBoundary = z.object({ - address: z.optional(z.string()), - birth_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - effective_bytes_birth: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - lifecycle_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + birth_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + effective_bytes_birth: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + lifecycle_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_lifecycle_boundary record */ export const zGetIntStorageSlotLifecycleBoundaryResponse = z.object({ - item: z.optional(zIntStorageSlotLifecycleBoundary) + item: z.optional(zIntStorageSlotLifecycleBoundary), }); export const zIntStorageSlotNextTouch = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - slot_key: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + slot_key: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_next_touch record */ export const zGetIntStorageSlotNextTouchResponse = z.object({ - item: z.optional(zIntStorageSlotNextTouch) + item: z.optional(zIntStorageSlotNextTouch), }); export const zIntStorageSlotReactivation1m = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_reactivation_1m record */ export const zGetIntStorageSlotReactivation1mResponse = z.object({ - item: z.optional(zIntStorageSlotReactivation1m) + item: z.optional(zIntStorageSlotReactivation1m), }); export const zIntStorageSlotReactivation6m = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_reactivation_6m record */ export const zGetIntStorageSlotReactivation6mResponse = z.object({ - item: z.optional(zIntStorageSlotReactivation6m) + item: z.optional(zIntStorageSlotReactivation6m), }); export const zIntStorageSlotReactivation12m = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_reactivation_12m record */ export const zGetIntStorageSlotReactivation12mResponse = z.object({ - item: z.optional(zIntStorageSlotReactivation12m) + item: z.optional(zIntStorageSlotReactivation12m), }); export const zIntStorageSlotReactivation18m = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_reactivation_18m record */ export const zGetIntStorageSlotReactivation18mResponse = z.object({ - item: z.optional(zIntStorageSlotReactivation18m) + item: z.optional(zIntStorageSlotReactivation18m), }); export const zIntStorageSlotReactivation24m = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - touch_block: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + touch_block: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_reactivation_24m record */ export const zGetIntStorageSlotReactivation24mResponse = z.object({ - item: z.optional(zIntStorageSlotReactivation24m) + item: z.optional(zIntStorageSlotReactivation24m), }); export const zIntStorageSlotRead = z.object({ - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_key: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_key: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_read record */ export const zGetIntStorageSlotReadResponse = z.object({ - item: z.optional(zIntStorageSlotRead) + item: z.optional(zIntStorageSlotRead), }); export const zIntStorageSlotState = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bytes_delta: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - slots_delta: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bytes_delta: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + slots_delta: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_state record */ export const zGetIntStorageSlotStateResponse = z.object({ - item: z.optional(zIntStorageSlotState) + item: z.optional(zIntStorageSlotState), }); export const zIntStorageSlotStateByAddress = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bytes_delta: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - slots_delta: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bytes_delta: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + slots_delta: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_state_by_address record */ export const zGetIntStorageSlotStateByAddressResponse = z.object({ - item: z.optional(zIntStorageSlotStateByAddress) + item: z.optional(zIntStorageSlotStateByAddress), }); export const zIntStorageSlotStateByBlock = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bytes_delta: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - slots_delta: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bytes_delta: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + slots_delta: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_state_by_block record */ export const zGetIntStorageSlotStateByBlockResponse = z.object({ - item: z.optional(zIntStorageSlotStateByBlock) + item: z.optional(zIntStorageSlotStateByBlock), }); export const zIntStorageSlotStateWithExpiry = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - cumulative_net_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - net_bytes_delta: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_slots_delta: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + cumulative_net_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + net_bytes_delta: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_slots_delta: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_state_with_expiry record */ export const zGetIntStorageSlotStateWithExpiryResponse = z.object({ - item: z.optional(zIntStorageSlotStateWithExpiry) + item: z.optional(zIntStorageSlotStateWithExpiry), }); export const zIntStorageSlotStateWithExpiryByAddress = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - address: z.optional(z.string()), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - cumulative_net_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - net_bytes_delta: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_slots_delta: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + address: z.optional(z.string()), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + cumulative_net_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + net_bytes_delta: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_slots_delta: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_state_with_expiry_by_address record */ export const zGetIntStorageSlotStateWithExpiryByAddressResponse = z.object({ - item: z.optional(zIntStorageSlotStateWithExpiryByAddress) + item: z.optional(zIntStorageSlotStateWithExpiryByAddress), }); export const zIntStorageSlotStateWithExpiryByBlock = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - cumulative_net_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - expiry_policy: z.optional(z.string()), - net_bytes_delta: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_slots_delta: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + cumulative_net_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + expiry_policy: z.optional(z.string()), + net_bytes_delta: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_slots_delta: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_storage_slot_state_with_expiry_by_block record */ export const zGetIntStorageSlotStateWithExpiryByBlockResponse = z.object({ - item: z.optional(zIntStorageSlotStateWithExpiryByBlock) + item: z.optional(zIntStorageSlotStateWithExpiryByBlock), }); export const zIntTokenContractStorageStateByBlock = z.object({ - active_slots: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_number: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slots_delta: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - token_standard: z.optional(z.string()), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + active_slots: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_number: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slots_delta: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + token_standard: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_token_contract_storage_state_by_block record */ export const zGetIntTokenContractStorageStateByBlockResponse = z.object({ - item: z.optional(zIntTokenContractStorageStateByBlock) + item: z.optional(zIntTokenContractStorageStateByBlock), }); export const zIntTransactionCallFrame = z.object({ - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - call_frame_id: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_type: z.optional(z.string()), - depth: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - error_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - function_selector: z.optional(z.union([ - z.string(), - z.null() - ])), - gas: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - intrinsic_gas: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - opcode_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - parent_call_frame_id: z.optional(z.union([ - z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })), - z.null() - ])), - receipt_gas_used: z.optional(z.union([ - z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })), - z.null() - ])), - target_address: z.optional(z.union([ - z.string(), - z.null() - ])), - transaction_hash: z.optional(z.string()), - transaction_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + call_frame_id: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_type: z.optional(z.string()), + depth: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + error_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + function_selector: z.optional(z.union([z.string(), z.null()])), + gas: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + intrinsic_gas: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + opcode_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + parent_call_frame_id: z.optional( + z.union([ + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + z.null(), + ]) + ), + receipt_gas_used: z.optional( + z.union([ + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + z.null(), + ]) + ), + target_address: z.optional(z.union([z.string(), z.null()])), + transaction_hash: z.optional(z.string()), + transaction_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_transaction_call_frame record */ export const zGetIntTransactionCallFrameResponse = z.object({ - item: z.optional(zIntTransactionCallFrame) + item: z.optional(zIntTransactionCallFrame), }); export const zIntTransactionCallFrameOpcodeGas = z.object({ - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - call_frame_id: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - cold_access_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_expansion_gas: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_after: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_before: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_after: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_before: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - meta_network_name: z.optional(z.string()), - opcode: z.optional(z.string()), - transaction_hash: z.optional(z.string()), - transaction_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + call_frame_id: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + cold_access_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_expansion_gas: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_after: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_before: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_after: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_before: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + meta_network_name: z.optional(z.string()), + opcode: z.optional(z.string()), + transaction_hash: z.optional(z.string()), + transaction_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_transaction_call_frame_opcode_gas record */ export const zGetIntTransactionCallFrameOpcodeGasResponse = z.object({ - item: z.optional(zIntTransactionCallFrameOpcodeGas) + item: z.optional(zIntTransactionCallFrameOpcodeGas), }); export const zIntTransactionCallFrameOpcodeResourceGas = z.object({ - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - call_frame_id: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - meta_network_name: z.optional(z.string()), - opcode: z.optional(z.string()), - transaction_hash: z.optional(z.string()), - transaction_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + call_frame_id: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + meta_network_name: z.optional(z.string()), + opcode: z.optional(z.string()), + transaction_hash: z.optional(z.string()), + transaction_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_transaction_call_frame_opcode_resource_gas record */ export const zGetIntTransactionCallFrameOpcodeResourceGasResponse = z.object({ - item: z.optional(zIntTransactionCallFrameOpcodeResourceGas) + item: z.optional(zIntTransactionCallFrameOpcodeResourceGas), }); export const zIntTransactionOpcodeGas = z.object({ - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - meta_network_name: z.optional(z.string()), - opcode: z.optional(z.string()), - transaction_hash: z.optional(z.string()), - transaction_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + meta_network_name: z.optional(z.string()), + opcode: z.optional(z.string()), + transaction_hash: z.optional(z.string()), + transaction_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_transaction_opcode_gas record */ export const zGetIntTransactionOpcodeGasResponse = z.object({ - item: z.optional(zIntTransactionOpcodeGas) + item: z.optional(zIntTransactionOpcodeGas), }); export const zIntTransactionReceiptSize = z.object({ - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_data_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_topic_count: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_network_name: z.optional(z.string()), - receipt_bytes: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_hash: z.optional(z.string()), - transaction_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_data_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_topic_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_network_name: z.optional(z.string()), + receipt_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_hash: z.optional(z.string()), + transaction_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_transaction_receipt_size record */ export const zGetIntTransactionReceiptSizeResponse = z.object({ - item: z.optional(zIntTransactionReceiptSize) + item: z.optional(zIntTransactionReceiptSize), }); export const zIntTransactionResourceGas = z.object({ - block_number: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - meta_network_name: z.optional(z.string()), - transaction_hash: z.optional(z.string()), - transaction_index: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))) + block_number: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + meta_network_name: z.optional(z.string()), + transaction_hash: z.optional(z.string()), + transaction_index: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), }); /** * Response for getting a single int_transaction_resource_gas record */ export const zGetIntTransactionResourceGasResponse = z.object({ - item: z.optional(zIntTransactionResourceGas) + item: z.optional(zIntTransactionResourceGas), }); /** * Response for listing admin_cbt_incremental records */ export const zListAdminCbtIncrementalResponse = z.object({ - admin_cbt_incremental: z.optional(z.array(zAdminCbtIncremental)), - next_page_token: z.optional(z.string()) + admin_cbt_incremental: z.optional(z.array(zAdminCbtIncremental)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing admin_cbt_scheduled records + */ +export const zListAdminCbtScheduledResponse = z.object({ + admin_cbt_scheduled: z.optional(z.array(zAdminCbtScheduled)), + next_page_token: z.optional(z.string()), }); /** * Response for listing dim_block_blob_submitter records */ export const zListDimBlockBlobSubmitterResponse = z.object({ - dim_block_blob_submitter: z.optional(z.array(zDimBlockBlobSubmitter)), - next_page_token: z.optional(z.string()) + dim_block_blob_submitter: z.optional(z.array(zDimBlockBlobSubmitter)), + next_page_token: z.optional(z.string()), }); /** * Response for listing dim_contract_owner records */ export const zListDimContractOwnerResponse = z.object({ - dim_contract_owner: z.optional(z.array(zDimContractOwner)), - next_page_token: z.optional(z.string()) + dim_contract_owner: z.optional(z.array(zDimContractOwner)), + next_page_token: z.optional(z.string()), }); /** * Response for listing dim_function_signature records */ export const zListDimFunctionSignatureResponse = z.object({ - dim_function_signature: z.optional(z.array(zDimFunctionSignature)), - next_page_token: z.optional(z.string()) + dim_function_signature: z.optional(z.array(zDimFunctionSignature)), + next_page_token: z.optional(z.string()), }); /** * Response for listing dim_node records */ export const zListDimNodeResponse = z.object({ - dim_node: z.optional(z.array(zDimNode)), - next_page_token: z.optional(z.string()) + dim_node: z.optional(z.array(zDimNode)), + next_page_token: z.optional(z.string()), }); /** * Response for listing dim_rocketpool_node records */ export const zListDimRocketpoolNodeResponse = z.object({ - dim_rocketpool_node: z.optional(z.array(zDimRocketpoolNode)), - next_page_token: z.optional(z.string()) + dim_rocketpool_node: z.optional(z.array(zDimRocketpoolNode)), + next_page_token: z.optional(z.string()), }); /** * Response for listing dim_token_contract records */ export const zListDimTokenContractResponse = z.object({ - dim_token_contract: z.optional(z.array(zDimTokenContract)), - next_page_token: z.optional(z.string()) + dim_token_contract: z.optional(z.array(zDimTokenContract)), + next_page_token: z.optional(z.string()), }); /** * Response for listing dim_validator_pubkey records */ export const zListDimValidatorPubkeyResponse = z.object({ - dim_validator_pubkey: z.optional(z.array(zDimValidatorPubkey)), - next_page_token: z.optional(z.string()) + dim_validator_pubkey: z.optional(z.array(zDimValidatorPubkey)), + next_page_token: z.optional(z.string()), }); /** * Response for listing dim_validator_status records */ export const zListDimValidatorStatusResponse = z.object({ - dim_validator_status: z.optional(z.array(zDimValidatorStatus)), - next_page_token: z.optional(z.string()) + dim_validator_status: z.optional(z.array(zDimValidatorStatus)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_correctness_by_validator_canonical records */ export const zListFctAttestationCorrectnessByValidatorCanonicalResponse = z.object({ - fct_attestation_correctness_by_validator_canonical: z.optional(z.array(zFctAttestationCorrectnessByValidatorCanonical)), - next_page_token: z.optional(z.string()) + fct_attestation_correctness_by_validator_canonical: z.optional( + z.array(zFctAttestationCorrectnessByValidatorCanonical) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_correctness_by_validator_head records */ export const zListFctAttestationCorrectnessByValidatorHeadResponse = z.object({ - fct_attestation_correctness_by_validator_head: z.optional(z.array(zFctAttestationCorrectnessByValidatorHead)), - next_page_token: z.optional(z.string()) + fct_attestation_correctness_by_validator_head: z.optional(z.array(zFctAttestationCorrectnessByValidatorHead)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing fct_attestation_correctness_by_validator records + */ +export const zListFctAttestationCorrectnessByValidatorResponse = z.object({ + fct_attestation_correctness_by_validator: z.optional(z.array(zFctAttestationCorrectnessByValidator)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_correctness_canonical records */ export const zListFctAttestationCorrectnessCanonicalResponse = z.object({ - fct_attestation_correctness_canonical: z.optional(z.array(zFctAttestationCorrectnessCanonical)), - next_page_token: z.optional(z.string()) + fct_attestation_correctness_canonical: z.optional(z.array(zFctAttestationCorrectnessCanonical)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_correctness_head records */ export const zListFctAttestationCorrectnessHeadResponse = z.object({ - fct_attestation_correctness_head: z.optional(z.array(zFctAttestationCorrectnessHead)), - next_page_token: z.optional(z.string()) + fct_attestation_correctness_head: z.optional(z.array(zFctAttestationCorrectnessHead)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing fct_attestation_correctness records + */ +export const zListFctAttestationCorrectnessResponse = z.object({ + fct_attestation_correctness: z.optional(z.array(zFctAttestationCorrectness)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_first_seen_by_validator records */ export const zListFctAttestationFirstSeenByValidatorResponse = z.object({ - fct_attestation_first_seen_by_validator: z.optional(z.array(zFctAttestationFirstSeenByValidator)), - next_page_token: z.optional(z.string()) + fct_attestation_first_seen_by_validator: z.optional(z.array(zFctAttestationFirstSeenByValidator)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_first_seen_chunked_50ms records */ export const zListFctAttestationFirstSeenChunked50MsResponse = z.object({ - fct_attestation_first_seen_chunked_50ms: z.optional(z.array(zFctAttestationFirstSeenChunked50Ms)), - next_page_token: z.optional(z.string()) + fct_attestation_first_seen_chunked_50ms: z.optional(z.array(zFctAttestationFirstSeenChunked50Ms)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_inclusion_delay_daily records */ export const zListFctAttestationInclusionDelayDailyResponse = z.object({ - fct_attestation_inclusion_delay_daily: z.optional(z.array(zFctAttestationInclusionDelayDaily)), - next_page_token: z.optional(z.string()) + fct_attestation_inclusion_delay_daily: z.optional(z.array(zFctAttestationInclusionDelayDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_inclusion_delay_hourly records */ export const zListFctAttestationInclusionDelayHourlyResponse = z.object({ - fct_attestation_inclusion_delay_hourly: z.optional(z.array(zFctAttestationInclusionDelayHourly)), - next_page_token: z.optional(z.string()) + fct_attestation_inclusion_delay_hourly: z.optional(z.array(zFctAttestationInclusionDelayHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_liveness_by_entity_head records */ export const zListFctAttestationLivenessByEntityHeadResponse = z.object({ - fct_attestation_liveness_by_entity_head: z.optional(z.array(zFctAttestationLivenessByEntityHead)), - next_page_token: z.optional(z.string()) + fct_attestation_liveness_by_entity_head: z.optional(z.array(zFctAttestationLivenessByEntityHead)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing fct_attestation_liveness_by_entity records + */ +export const zListFctAttestationLivenessByEntityResponse = z.object({ + fct_attestation_liveness_by_entity: z.optional(z.array(zFctAttestationLivenessByEntity)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_observation_by_node records */ export const zListFctAttestationObservationByNodeResponse = z.object({ - fct_attestation_observation_by_node: z.optional(z.array(zFctAttestationObservationByNode)), - next_page_token: z.optional(z.string()) + fct_attestation_observation_by_node: z.optional(z.array(zFctAttestationObservationByNode)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_participation_rate_daily records */ export const zListFctAttestationParticipationRateDailyResponse = z.object({ - fct_attestation_participation_rate_daily: z.optional(z.array(zFctAttestationParticipationRateDaily)), - next_page_token: z.optional(z.string()) + fct_attestation_participation_rate_daily: z.optional(z.array(zFctAttestationParticipationRateDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_participation_rate_hourly records */ export const zListFctAttestationParticipationRateHourlyResponse = z.object({ - fct_attestation_participation_rate_hourly: z.optional(z.array(zFctAttestationParticipationRateHourly)), - next_page_token: z.optional(z.string()) + fct_attestation_participation_rate_hourly: z.optional(z.array(zFctAttestationParticipationRateHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_vote_correctness_by_validator_daily records */ export const zListFctAttestationVoteCorrectnessByValidatorDailyResponse = z.object({ - fct_attestation_vote_correctness_by_validator_daily: z.optional(z.array(zFctAttestationVoteCorrectnessByValidatorDaily)), - next_page_token: z.optional(z.string()) + fct_attestation_vote_correctness_by_validator_daily: z.optional( + z.array(zFctAttestationVoteCorrectnessByValidatorDaily) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_vote_correctness_by_validator_hourly records */ export const zListFctAttestationVoteCorrectnessByValidatorHourlyResponse = z.object({ - fct_attestation_vote_correctness_by_validator_hourly: z.optional(z.array(zFctAttestationVoteCorrectnessByValidatorHourly)), - next_page_token: z.optional(z.string()) + fct_attestation_vote_correctness_by_validator_hourly: z.optional( + z.array(zFctAttestationVoteCorrectnessByValidatorHourly) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_attestation_vote_correctness_by_validator records */ export const zListFctAttestationVoteCorrectnessByValidatorResponse = z.object({ - fct_attestation_vote_correctness_by_validator: z.optional(z.array(zFctAttestationVoteCorrectnessByValidator)), - next_page_token: z.optional(z.string()) + fct_attestation_vote_correctness_by_validator: z.optional(z.array(zFctAttestationVoteCorrectnessByValidator)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_blob_count_daily records */ export const zListFctBlobCountDailyResponse = z.object({ - fct_blob_count_daily: z.optional(z.array(zFctBlobCountDaily)), - next_page_token: z.optional(z.string()) + fct_blob_count_daily: z.optional(z.array(zFctBlobCountDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_blob_count_hourly records */ export const zListFctBlobCountHourlyResponse = z.object({ - fct_blob_count_hourly: z.optional(z.array(zFctBlobCountHourly)), - next_page_token: z.optional(z.string()) + fct_blob_count_hourly: z.optional(z.array(zFctBlobCountHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_blob_count_head records */ export const zListFctBlockBlobCountHeadResponse = z.object({ - fct_block_blob_count_head: z.optional(z.array(zFctBlockBlobCountHead)), - next_page_token: z.optional(z.string()) + fct_block_blob_count_head: z.optional(z.array(zFctBlockBlobCountHead)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_blob_count records */ export const zListFctBlockBlobCountResponse = z.object({ - fct_block_blob_count: z.optional(z.array(zFctBlockBlobCount)), - next_page_token: z.optional(z.string()) + fct_block_blob_count: z.optional(z.array(zFctBlockBlobCount)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_blob_first_seen_by_node records */ export const zListFctBlockBlobFirstSeenByNodeResponse = z.object({ - fct_block_blob_first_seen_by_node: z.optional(z.array(zFctBlockBlobFirstSeenByNode)), - next_page_token: z.optional(z.string()) + fct_block_blob_first_seen_by_node: z.optional(z.array(zFctBlockBlobFirstSeenByNode)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_blob_head records */ export const zListFctBlockBlobHeadResponse = z.object({ - fct_block_blob_head: z.optional(z.array(zFctBlockBlobHead)), - next_page_token: z.optional(z.string()) + fct_block_blob_head: z.optional(z.array(zFctBlockBlobHead)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_data_column_sidecar_first_seen_by_node records */ export const zListFctBlockDataColumnSidecarFirstSeenByNodeResponse = z.object({ - fct_block_data_column_sidecar_first_seen_by_node: z.optional(z.array(zFctBlockDataColumnSidecarFirstSeenByNode)), - next_page_token: z.optional(z.string()) + fct_block_data_column_sidecar_first_seen_by_node: z.optional(z.array(zFctBlockDataColumnSidecarFirstSeenByNode)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_data_column_sidecar_first_seen records */ export const zListFctBlockDataColumnSidecarFirstSeenResponse = z.object({ - fct_block_data_column_sidecar_first_seen: z.optional(z.array(zFctBlockDataColumnSidecarFirstSeen)), - next_page_token: z.optional(z.string()) + fct_block_data_column_sidecar_first_seen: z.optional(z.array(zFctBlockDataColumnSidecarFirstSeen)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_first_seen_by_node records */ export const zListFctBlockFirstSeenByNodeResponse = z.object({ - fct_block_first_seen_by_node: z.optional(z.array(zFctBlockFirstSeenByNode)), - next_page_token: z.optional(z.string()) + fct_block_first_seen_by_node: z.optional(z.array(zFctBlockFirstSeenByNode)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_head records */ export const zListFctBlockHeadResponse = z.object({ - fct_block_head: z.optional(z.array(zFctBlockHead)), - next_page_token: z.optional(z.string()) + fct_block_head: z.optional(z.array(zFctBlockHead)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_mev_head records */ export const zListFctBlockMevHeadResponse = z.object({ - fct_block_mev_head: z.optional(z.array(zFctBlockMevHead)), - next_page_token: z.optional(z.string()) + fct_block_mev_head: z.optional(z.array(zFctBlockMevHead)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_mev records */ export const zListFctBlockMevResponse = z.object({ - fct_block_mev: z.optional(z.array(zFctBlockMev)), - next_page_token: z.optional(z.string()) + fct_block_mev: z.optional(z.array(zFctBlockMev)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing fct_block_payload_available_by_node records + */ +export const zListFctBlockPayloadAvailableByNodeResponse = z.object({ + fct_block_payload_available_by_node: z.optional(z.array(zFctBlockPayloadAvailableByNode)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing fct_block_payload_bid records + */ +export const zListFctBlockPayloadBidResponse = z.object({ + fct_block_payload_bid: z.optional(z.array(zFctBlockPayloadBid)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing fct_block_payload_first_seen_by_node records + */ +export const zListFctBlockPayloadFirstSeenByNodeResponse = z.object({ + fct_block_payload_first_seen_by_node: z.optional(z.array(zFctBlockPayloadFirstSeenByNode)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing fct_block_payload_ptc_vote_head records + */ +export const zListFctBlockPayloadPtcVoteHeadResponse = z.object({ + fct_block_payload_ptc_vote_head: z.optional(z.array(zFctBlockPayloadPtcVoteHead)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing fct_block_payload_ptc_vote records + */ +export const zListFctBlockPayloadPtcVoteResponse = z.object({ + fct_block_payload_ptc_vote: z.optional(z.array(zFctBlockPayloadPtcVote)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_proposal_status_daily records */ export const zListFctBlockProposalStatusDailyResponse = z.object({ - fct_block_proposal_status_daily: z.optional(z.array(zFctBlockProposalStatusDaily)), - next_page_token: z.optional(z.string()) + fct_block_proposal_status_daily: z.optional(z.array(zFctBlockProposalStatusDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_proposal_status_hourly records */ export const zListFctBlockProposalStatusHourlyResponse = z.object({ - fct_block_proposal_status_hourly: z.optional(z.array(zFctBlockProposalStatusHourly)), - next_page_token: z.optional(z.string()) + fct_block_proposal_status_hourly: z.optional(z.array(zFctBlockProposalStatusHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_proposer_by_validator records */ export const zListFctBlockProposerByValidatorResponse = z.object({ - fct_block_proposer_by_validator: z.optional(z.array(zFctBlockProposerByValidator)), - next_page_token: z.optional(z.string()) + fct_block_proposer_by_validator: z.optional(z.array(zFctBlockProposerByValidator)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_proposer_entity records */ export const zListFctBlockProposerEntityResponse = z.object({ - fct_block_proposer_entity: z.optional(z.array(zFctBlockProposerEntity)), - next_page_token: z.optional(z.string()) + fct_block_proposer_entity: z.optional(z.array(zFctBlockProposerEntity)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_proposer_head records */ export const zListFctBlockProposerHeadResponse = z.object({ - fct_block_proposer_head: z.optional(z.array(zFctBlockProposerHead)), - next_page_token: z.optional(z.string()) + fct_block_proposer_head: z.optional(z.array(zFctBlockProposerHead)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block_proposer records */ export const zListFctBlockProposerResponse = z.object({ - fct_block_proposer: z.optional(z.array(zFctBlockProposer)), - next_page_token: z.optional(z.string()) + fct_block_proposer: z.optional(z.array(zFctBlockProposer)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_block records */ export const zListFctBlockResponse = z.object({ - fct_block: z.optional(z.array(zFctBlock)), - next_page_token: z.optional(z.string()) + fct_block: z.optional(z.array(zFctBlock)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_contract_storage_state_by_address_daily records */ export const zListFctContractStorageStateByAddressDailyResponse = z.object({ - fct_contract_storage_state_by_address_daily: z.optional(z.array(zFctContractStorageStateByAddressDaily)), - next_page_token: z.optional(z.string()) + fct_contract_storage_state_by_address_daily: z.optional(z.array(zFctContractStorageStateByAddressDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_contract_storage_state_by_address_hourly records */ export const zListFctContractStorageStateByAddressHourlyResponse = z.object({ - fct_contract_storage_state_by_address_hourly: z.optional(z.array(zFctContractStorageStateByAddressHourly)), - next_page_token: z.optional(z.string()) + fct_contract_storage_state_by_address_hourly: z.optional(z.array(zFctContractStorageStateByAddressHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_contract_storage_state_by_block_daily records */ export const zListFctContractStorageStateByBlockDailyResponse = z.object({ - fct_contract_storage_state_by_block_daily: z.optional(z.array(zFctContractStorageStateByBlockDaily)), - next_page_token: z.optional(z.string()) + fct_contract_storage_state_by_block_daily: z.optional(z.array(zFctContractStorageStateByBlockDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_contract_storage_state_by_block_hourly records */ export const zListFctContractStorageStateByBlockHourlyResponse = z.object({ - fct_contract_storage_state_by_block_hourly: z.optional(z.array(zFctContractStorageStateByBlockHourly)), - next_page_token: z.optional(z.string()) + fct_contract_storage_state_by_block_hourly: z.optional(z.array(zFctContractStorageStateByBlockHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_contract_storage_state_with_expiry_by_address_daily records */ export const zListFctContractStorageStateWithExpiryByAddressDailyResponse = z.object({ - fct_contract_storage_state_with_expiry_by_address_daily: z.optional(z.array(zFctContractStorageStateWithExpiryByAddressDaily)), - next_page_token: z.optional(z.string()) + fct_contract_storage_state_with_expiry_by_address_daily: z.optional( + z.array(zFctContractStorageStateWithExpiryByAddressDaily) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_contract_storage_state_with_expiry_by_address_hourly records */ export const zListFctContractStorageStateWithExpiryByAddressHourlyResponse = z.object({ - fct_contract_storage_state_with_expiry_by_address_hourly: z.optional(z.array(zFctContractStorageStateWithExpiryByAddressHourly)), - next_page_token: z.optional(z.string()) + fct_contract_storage_state_with_expiry_by_address_hourly: z.optional( + z.array(zFctContractStorageStateWithExpiryByAddressHourly) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_contract_storage_state_with_expiry_by_block_daily records */ export const zListFctContractStorageStateWithExpiryByBlockDailyResponse = z.object({ - fct_contract_storage_state_with_expiry_by_block_daily: z.optional(z.array(zFctContractStorageStateWithExpiryByBlockDaily)), - next_page_token: z.optional(z.string()) + fct_contract_storage_state_with_expiry_by_block_daily: z.optional( + z.array(zFctContractStorageStateWithExpiryByBlockDaily) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_contract_storage_state_with_expiry_by_block_hourly records */ export const zListFctContractStorageStateWithExpiryByBlockHourlyResponse = z.object({ - fct_contract_storage_state_with_expiry_by_block_hourly: z.optional(z.array(zFctContractStorageStateWithExpiryByBlockHourly)), - next_page_token: z.optional(z.string()) + fct_contract_storage_state_with_expiry_by_block_hourly: z.optional( + z.array(zFctContractStorageStateWithExpiryByBlockHourly) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_data_column_availability_by_epoch records */ export const zListFctDataColumnAvailabilityByEpochResponse = z.object({ - fct_data_column_availability_by_epoch: z.optional(z.array(zFctDataColumnAvailabilityByEpoch)), - next_page_token: z.optional(z.string()) + fct_data_column_availability_by_epoch: z.optional(z.array(zFctDataColumnAvailabilityByEpoch)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_data_column_availability_by_slot_blob records */ export const zListFctDataColumnAvailabilityBySlotBlobResponse = z.object({ - fct_data_column_availability_by_slot_blob: z.optional(z.array(zFctDataColumnAvailabilityBySlotBlob)), - next_page_token: z.optional(z.string()) + fct_data_column_availability_by_slot_blob: z.optional(z.array(zFctDataColumnAvailabilityBySlotBlob)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_data_column_availability_by_slot records */ export const zListFctDataColumnAvailabilityBySlotResponse = z.object({ - fct_data_column_availability_by_slot: z.optional(z.array(zFctDataColumnAvailabilityBySlot)), - next_page_token: z.optional(z.string()) + fct_data_column_availability_by_slot: z.optional(z.array(zFctDataColumnAvailabilityBySlot)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_data_column_availability_daily records */ export const zListFctDataColumnAvailabilityDailyResponse = z.object({ - fct_data_column_availability_daily: z.optional(z.array(zFctDataColumnAvailabilityDaily)), - next_page_token: z.optional(z.string()) + fct_data_column_availability_daily: z.optional(z.array(zFctDataColumnAvailabilityDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_data_column_availability_hourly records */ export const zListFctDataColumnAvailabilityHourlyResponse = z.object({ - fct_data_column_availability_hourly: z.optional(z.array(zFctDataColumnAvailabilityHourly)), - next_page_token: z.optional(z.string()) + fct_data_column_availability_hourly: z.optional(z.array(zFctDataColumnAvailabilityHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_engine_get_blobs_by_el_client_hourly records */ export const zListFctEngineGetBlobsByElClientHourlyResponse = z.object({ - fct_engine_get_blobs_by_el_client_hourly: z.optional(z.array(zFctEngineGetBlobsByElClientHourly)), - next_page_token: z.optional(z.string()) + fct_engine_get_blobs_by_el_client_hourly: z.optional(z.array(zFctEngineGetBlobsByElClientHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_engine_get_blobs_by_el_client records */ export const zListFctEngineGetBlobsByElClientResponse = z.object({ - fct_engine_get_blobs_by_el_client: z.optional(z.array(zFctEngineGetBlobsByElClient)), - next_page_token: z.optional(z.string()) + fct_engine_get_blobs_by_el_client: z.optional(z.array(zFctEngineGetBlobsByElClient)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_engine_get_blobs_by_slot records */ export const zListFctEngineGetBlobsBySlotResponse = z.object({ - fct_engine_get_blobs_by_slot: z.optional(z.array(zFctEngineGetBlobsBySlot)), - next_page_token: z.optional(z.string()) + fct_engine_get_blobs_by_slot: z.optional(z.array(zFctEngineGetBlobsBySlot)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_engine_get_blobs_duration_chunked_50ms records */ export const zListFctEngineGetBlobsDurationChunked50MsResponse = z.object({ - fct_engine_get_blobs_duration_chunked_50ms: z.optional(z.array(zFctEngineGetBlobsDurationChunked50Ms)), - next_page_token: z.optional(z.string()) + fct_engine_get_blobs_duration_chunked_50ms: z.optional(z.array(zFctEngineGetBlobsDurationChunked50Ms)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_engine_new_payload_by_el_client_hourly records */ export const zListFctEngineNewPayloadByElClientHourlyResponse = z.object({ - fct_engine_new_payload_by_el_client_hourly: z.optional(z.array(zFctEngineNewPayloadByElClientHourly)), - next_page_token: z.optional(z.string()) + fct_engine_new_payload_by_el_client_hourly: z.optional(z.array(zFctEngineNewPayloadByElClientHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_engine_new_payload_by_el_client records */ export const zListFctEngineNewPayloadByElClientResponse = z.object({ - fct_engine_new_payload_by_el_client: z.optional(z.array(zFctEngineNewPayloadByElClient)), - next_page_token: z.optional(z.string()) + fct_engine_new_payload_by_el_client: z.optional(z.array(zFctEngineNewPayloadByElClient)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_engine_new_payload_by_slot records */ export const zListFctEngineNewPayloadBySlotResponse = z.object({ - fct_engine_new_payload_by_slot: z.optional(z.array(zFctEngineNewPayloadBySlot)), - next_page_token: z.optional(z.string()) + fct_engine_new_payload_by_slot: z.optional(z.array(zFctEngineNewPayloadBySlot)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_engine_new_payload_duration_chunked_50ms records */ export const zListFctEngineNewPayloadDurationChunked50MsResponse = z.object({ - fct_engine_new_payload_duration_chunked_50ms: z.optional(z.array(zFctEngineNewPayloadDurationChunked50Ms)), - next_page_token: z.optional(z.string()) + fct_engine_new_payload_duration_chunked_50ms: z.optional(z.array(zFctEngineNewPayloadDurationChunked50Ms)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_engine_new_payload_winrate_daily records */ export const zListFctEngineNewPayloadWinrateDailyResponse = z.object({ - fct_engine_new_payload_winrate_daily: z.optional(z.array(zFctEngineNewPayloadWinrateDaily)), - next_page_token: z.optional(z.string()) + fct_engine_new_payload_winrate_daily: z.optional(z.array(zFctEngineNewPayloadWinrateDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_engine_new_payload_winrate_hourly records */ export const zListFctEngineNewPayloadWinrateHourlyResponse = z.object({ - fct_engine_new_payload_winrate_hourly: z.optional(z.array(zFctEngineNewPayloadWinrateHourly)), - next_page_token: z.optional(z.string()) + fct_engine_new_payload_winrate_hourly: z.optional(z.array(zFctEngineNewPayloadWinrateHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_gas_limit_daily records */ export const zListFctExecutionGasLimitDailyResponse = z.object({ - fct_execution_gas_limit_daily: z.optional(z.array(zFctExecutionGasLimitDaily)), - next_page_token: z.optional(z.string()) + fct_execution_gas_limit_daily: z.optional(z.array(zFctExecutionGasLimitDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_gas_limit_hourly records */ export const zListFctExecutionGasLimitHourlyResponse = z.object({ - fct_execution_gas_limit_hourly: z.optional(z.array(zFctExecutionGasLimitHourly)), - next_page_token: z.optional(z.string()) + fct_execution_gas_limit_hourly: z.optional(z.array(zFctExecutionGasLimitHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_gas_limit_signalling_daily records */ export const zListFctExecutionGasLimitSignallingDailyResponse = z.object({ - fct_execution_gas_limit_signalling_daily: z.optional(z.array(zFctExecutionGasLimitSignallingDaily)), - next_page_token: z.optional(z.string()) + fct_execution_gas_limit_signalling_daily: z.optional(z.array(zFctExecutionGasLimitSignallingDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_gas_limit_signalling_hourly records */ export const zListFctExecutionGasLimitSignallingHourlyResponse = z.object({ - fct_execution_gas_limit_signalling_hourly: z.optional(z.array(zFctExecutionGasLimitSignallingHourly)), - next_page_token: z.optional(z.string()) + fct_execution_gas_limit_signalling_hourly: z.optional(z.array(zFctExecutionGasLimitSignallingHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_gas_used_daily records */ export const zListFctExecutionGasUsedDailyResponse = z.object({ - fct_execution_gas_used_daily: z.optional(z.array(zFctExecutionGasUsedDaily)), - next_page_token: z.optional(z.string()) + fct_execution_gas_used_daily: z.optional(z.array(zFctExecutionGasUsedDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_gas_used_hourly records */ export const zListFctExecutionGasUsedHourlyResponse = z.object({ - fct_execution_gas_used_hourly: z.optional(z.array(zFctExecutionGasUsedHourly)), - next_page_token: z.optional(z.string()) + fct_execution_gas_used_hourly: z.optional(z.array(zFctExecutionGasUsedHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_receipt_size_daily records */ export const zListFctExecutionReceiptSizeDailyResponse = z.object({ - fct_execution_receipt_size_daily: z.optional(z.array(zFctExecutionReceiptSizeDaily)), - next_page_token: z.optional(z.string()) + fct_execution_receipt_size_daily: z.optional(z.array(zFctExecutionReceiptSizeDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_receipt_size_hourly records */ export const zListFctExecutionReceiptSizeHourlyResponse = z.object({ - fct_execution_receipt_size_hourly: z.optional(z.array(zFctExecutionReceiptSizeHourly)), - next_page_token: z.optional(z.string()) + fct_execution_receipt_size_hourly: z.optional(z.array(zFctExecutionReceiptSizeHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_state_size_daily records */ export const zListFctExecutionStateSizeDailyResponse = z.object({ - fct_execution_state_size_daily: z.optional(z.array(zFctExecutionStateSizeDaily)), - next_page_token: z.optional(z.string()) + fct_execution_state_size_daily: z.optional(z.array(zFctExecutionStateSizeDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_state_size_hourly records */ export const zListFctExecutionStateSizeHourlyResponse = z.object({ - fct_execution_state_size_hourly: z.optional(z.array(zFctExecutionStateSizeHourly)), - next_page_token: z.optional(z.string()) + fct_execution_state_size_hourly: z.optional(z.array(zFctExecutionStateSizeHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_tps_daily records */ export const zListFctExecutionTpsDailyResponse = z.object({ - fct_execution_tps_daily: z.optional(z.array(zFctExecutionTpsDaily)), - next_page_token: z.optional(z.string()) + fct_execution_tps_daily: z.optional(z.array(zFctExecutionTpsDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_tps_hourly records */ export const zListFctExecutionTpsHourlyResponse = z.object({ - fct_execution_tps_hourly: z.optional(z.array(zFctExecutionTpsHourly)), - next_page_token: z.optional(z.string()) + fct_execution_tps_hourly: z.optional(z.array(zFctExecutionTpsHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_transactions_daily records */ export const zListFctExecutionTransactionsDailyResponse = z.object({ - fct_execution_transactions_daily: z.optional(z.array(zFctExecutionTransactionsDaily)), - next_page_token: z.optional(z.string()) + fct_execution_transactions_daily: z.optional(z.array(zFctExecutionTransactionsDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_execution_transactions_hourly records */ export const zListFctExecutionTransactionsHourlyResponse = z.object({ - fct_execution_transactions_hourly: z.optional(z.array(zFctExecutionTransactionsHourly)), - next_page_token: z.optional(z.string()) + fct_execution_transactions_hourly: z.optional(z.array(zFctExecutionTransactionsHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_head_first_seen_by_node records */ export const zListFctHeadFirstSeenByNodeResponse = z.object({ - fct_head_first_seen_by_node: z.optional(z.array(zFctHeadFirstSeenByNode)), - next_page_token: z.optional(z.string()) + fct_head_first_seen_by_node: z.optional(z.array(zFctHeadFirstSeenByNode)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_head_vote_correctness_rate_daily records */ export const zListFctHeadVoteCorrectnessRateDailyResponse = z.object({ - fct_head_vote_correctness_rate_daily: z.optional(z.array(zFctHeadVoteCorrectnessRateDaily)), - next_page_token: z.optional(z.string()) + fct_head_vote_correctness_rate_daily: z.optional(z.array(zFctHeadVoteCorrectnessRateDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_head_vote_correctness_rate_hourly records */ export const zListFctHeadVoteCorrectnessRateHourlyResponse = z.object({ - fct_head_vote_correctness_rate_hourly: z.optional(z.array(zFctHeadVoteCorrectnessRateHourly)), - next_page_token: z.optional(z.string()) + fct_head_vote_correctness_rate_hourly: z.optional(z.array(zFctHeadVoteCorrectnessRateHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_mev_bid_count_by_builder records */ export const zListFctMevBidCountByBuilderResponse = z.object({ - fct_mev_bid_count_by_builder: z.optional(z.array(zFctMevBidCountByBuilder)), - next_page_token: z.optional(z.string()) + fct_mev_bid_count_by_builder: z.optional(z.array(zFctMevBidCountByBuilder)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_mev_bid_count_by_relay records */ export const zListFctMevBidCountByRelayResponse = z.object({ - fct_mev_bid_count_by_relay: z.optional(z.array(zFctMevBidCountByRelay)), - next_page_token: z.optional(z.string()) + fct_mev_bid_count_by_relay: z.optional(z.array(zFctMevBidCountByRelay)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_mev_bid_highest_value_by_builder_chunked_50ms records */ export const zListFctMevBidHighestValueByBuilderChunked50MsResponse = z.object({ - fct_mev_bid_highest_value_by_builder_chunked_50ms: z.optional(z.array(zFctMevBidHighestValueByBuilderChunked50Ms)), - next_page_token: z.optional(z.string()) + fct_mev_bid_highest_value_by_builder_chunked_50ms: z.optional(z.array(zFctMevBidHighestValueByBuilderChunked50Ms)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_missed_slot_rate_daily records */ export const zListFctMissedSlotRateDailyResponse = z.object({ - fct_missed_slot_rate_daily: z.optional(z.array(zFctMissedSlotRateDaily)), - next_page_token: z.optional(z.string()) + fct_missed_slot_rate_daily: z.optional(z.array(zFctMissedSlotRateDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_missed_slot_rate_hourly records */ export const zListFctMissedSlotRateHourlyResponse = z.object({ - fct_missed_slot_rate_hourly: z.optional(z.array(zFctMissedSlotRateHourly)), - next_page_token: z.optional(z.string()) + fct_missed_slot_rate_hourly: z.optional(z.array(zFctMissedSlotRateHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_node_active_last_24h records */ export const zListFctNodeActiveLast24hResponse = z.object({ - fct_node_active_last_24h: z.optional(z.array(zFctNodeActiveLast24h)), - next_page_token: z.optional(z.string()) + fct_node_active_last_24h: z.optional(z.array(zFctNodeActiveLast24h)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_node_cpu_utilization_by_process records */ export const zListFctNodeCpuUtilizationByProcessResponse = z.object({ - fct_node_cpu_utilization_by_process: z.optional(z.array(zFctNodeCpuUtilizationByProcess)), - next_page_token: z.optional(z.string()) + fct_node_cpu_utilization_by_process: z.optional(z.array(zFctNodeCpuUtilizationByProcess)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_node_disk_io_by_process records */ export const zListFctNodeDiskIoByProcessResponse = z.object({ - fct_node_disk_io_by_process: z.optional(z.array(zFctNodeDiskIoByProcess)), - next_page_token: z.optional(z.string()) + fct_node_disk_io_by_process: z.optional(z.array(zFctNodeDiskIoByProcess)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_node_memory_usage_by_process records */ export const zListFctNodeMemoryUsageByProcessResponse = z.object({ - fct_node_memory_usage_by_process: z.optional(z.array(zFctNodeMemoryUsageByProcess)), - next_page_token: z.optional(z.string()) + fct_node_memory_usage_by_process: z.optional(z.array(zFctNodeMemoryUsageByProcess)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_node_network_io_by_process records */ export const zListFctNodeNetworkIoByProcessResponse = z.object({ - fct_node_network_io_by_process: z.optional(z.array(zFctNodeNetworkIoByProcess)), - next_page_token: z.optional(z.string()) + fct_node_network_io_by_process: z.optional(z.array(zFctNodeNetworkIoByProcess)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_opcode_gas_by_opcode_daily records */ export const zListFctOpcodeGasByOpcodeDailyResponse = z.object({ - fct_opcode_gas_by_opcode_daily: z.optional(z.array(zFctOpcodeGasByOpcodeDaily)), - next_page_token: z.optional(z.string()) + fct_opcode_gas_by_opcode_daily: z.optional(z.array(zFctOpcodeGasByOpcodeDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_opcode_gas_by_opcode_hourly records */ export const zListFctOpcodeGasByOpcodeHourlyResponse = z.object({ - fct_opcode_gas_by_opcode_hourly: z.optional(z.array(zFctOpcodeGasByOpcodeHourly)), - next_page_token: z.optional(z.string()) + fct_opcode_gas_by_opcode_hourly: z.optional(z.array(zFctOpcodeGasByOpcodeHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_opcode_ops_daily records */ export const zListFctOpcodeOpsDailyResponse = z.object({ - fct_opcode_ops_daily: z.optional(z.array(zFctOpcodeOpsDaily)), - next_page_token: z.optional(z.string()) + fct_opcode_ops_daily: z.optional(z.array(zFctOpcodeOpsDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_opcode_ops_hourly records */ export const zListFctOpcodeOpsHourlyResponse = z.object({ - fct_opcode_ops_hourly: z.optional(z.array(zFctOpcodeOpsHourly)), - next_page_token: z.optional(z.string()) + fct_opcode_ops_hourly: z.optional(z.array(zFctOpcodeOpsHourly)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing fct_payload_bid_highest_value_by_builder_chunked_50ms records + */ +export const zListFctPayloadBidHighestValueByBuilderChunked50MsResponse = z.object({ + fct_payload_bid_highest_value_by_builder_chunked_50ms: z.optional( + z.array(zFctPayloadBidHighestValueByBuilderChunked50Ms) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_prepared_block records */ export const zListFctPreparedBlockResponse = z.object({ - fct_prepared_block: z.optional(z.array(zFctPreparedBlock)), - next_page_token: z.optional(z.string()) + fct_prepared_block: z.optional(z.array(zFctPreparedBlock)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_proposer_reward_daily records */ export const zListFctProposerRewardDailyResponse = z.object({ - fct_proposer_reward_daily: z.optional(z.array(zFctProposerRewardDaily)), - next_page_token: z.optional(z.string()) + fct_proposer_reward_daily: z.optional(z.array(zFctProposerRewardDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_proposer_reward_hourly records */ export const zListFctProposerRewardHourlyResponse = z.object({ - fct_proposer_reward_hourly: z.optional(z.array(zFctProposerRewardHourly)), - next_page_token: z.optional(z.string()) + fct_proposer_reward_hourly: z.optional(z.array(zFctProposerRewardHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_reorg_daily records */ export const zListFctReorgDailyResponse = z.object({ - fct_reorg_daily: z.optional(z.array(zFctReorgDaily)), - next_page_token: z.optional(z.string()) + fct_reorg_daily: z.optional(z.array(zFctReorgDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_reorg_hourly records */ export const zListFctReorgHourlyResponse = z.object({ - fct_reorg_hourly: z.optional(z.array(zFctReorgHourly)), - next_page_token: z.optional(z.string()) + fct_reorg_hourly: z.optional(z.array(zFctReorgHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_rocketpool_validator records */ export const zListFctRocketpoolValidatorResponse = z.object({ - fct_rocketpool_validator: z.optional(z.array(zFctRocketpoolValidator)), - next_page_token: z.optional(z.string()) + fct_rocketpool_validator: z.optional(z.array(zFctRocketpoolValidator)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_storage_slot_state_by_address_daily records */ export const zListFctStorageSlotStateByAddressDailyResponse = z.object({ - fct_storage_slot_state_by_address_daily: z.optional(z.array(zFctStorageSlotStateByAddressDaily)), - next_page_token: z.optional(z.string()) + fct_storage_slot_state_by_address_daily: z.optional(z.array(zFctStorageSlotStateByAddressDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_storage_slot_state_by_address_hourly records */ export const zListFctStorageSlotStateByAddressHourlyResponse = z.object({ - fct_storage_slot_state_by_address_hourly: z.optional(z.array(zFctStorageSlotStateByAddressHourly)), - next_page_token: z.optional(z.string()) + fct_storage_slot_state_by_address_hourly: z.optional(z.array(zFctStorageSlotStateByAddressHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_storage_slot_state_by_block_daily records */ export const zListFctStorageSlotStateByBlockDailyResponse = z.object({ - fct_storage_slot_state_by_block_daily: z.optional(z.array(zFctStorageSlotStateByBlockDaily)), - next_page_token: z.optional(z.string()) + fct_storage_slot_state_by_block_daily: z.optional(z.array(zFctStorageSlotStateByBlockDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_storage_slot_state_by_block_hourly records */ export const zListFctStorageSlotStateByBlockHourlyResponse = z.object({ - fct_storage_slot_state_by_block_hourly: z.optional(z.array(zFctStorageSlotStateByBlockHourly)), - next_page_token: z.optional(z.string()) + fct_storage_slot_state_by_block_hourly: z.optional(z.array(zFctStorageSlotStateByBlockHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_storage_slot_state_with_expiry_by_address_daily records */ export const zListFctStorageSlotStateWithExpiryByAddressDailyResponse = z.object({ - fct_storage_slot_state_with_expiry_by_address_daily: z.optional(z.array(zFctStorageSlotStateWithExpiryByAddressDaily)), - next_page_token: z.optional(z.string()) + fct_storage_slot_state_with_expiry_by_address_daily: z.optional( + z.array(zFctStorageSlotStateWithExpiryByAddressDaily) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_storage_slot_state_with_expiry_by_address_hourly records */ export const zListFctStorageSlotStateWithExpiryByAddressHourlyResponse = z.object({ - fct_storage_slot_state_with_expiry_by_address_hourly: z.optional(z.array(zFctStorageSlotStateWithExpiryByAddressHourly)), - next_page_token: z.optional(z.string()) + fct_storage_slot_state_with_expiry_by_address_hourly: z.optional( + z.array(zFctStorageSlotStateWithExpiryByAddressHourly) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_storage_slot_state_with_expiry_by_block_daily records */ export const zListFctStorageSlotStateWithExpiryByBlockDailyResponse = z.object({ - fct_storage_slot_state_with_expiry_by_block_daily: z.optional(z.array(zFctStorageSlotStateWithExpiryByBlockDaily)), - next_page_token: z.optional(z.string()) + fct_storage_slot_state_with_expiry_by_block_daily: z.optional(z.array(zFctStorageSlotStateWithExpiryByBlockDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_storage_slot_state_with_expiry_by_block_hourly records */ export const zListFctStorageSlotStateWithExpiryByBlockHourlyResponse = z.object({ - fct_storage_slot_state_with_expiry_by_block_hourly: z.optional(z.array(zFctStorageSlotStateWithExpiryByBlockHourly)), - next_page_token: z.optional(z.string()) + fct_storage_slot_state_with_expiry_by_block_hourly: z.optional(z.array(zFctStorageSlotStateWithExpiryByBlockHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_storage_slot_top_100_by_bytes records */ export const zListFctStorageSlotTop100ByBytesResponse = z.object({ - fct_storage_slot_top_100_by_bytes: z.optional(z.array(zFctStorageSlotTop100ByBytes)), - next_page_token: z.optional(z.string()) + fct_storage_slot_top_100_by_bytes: z.optional(z.array(zFctStorageSlotTop100ByBytes)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_storage_slot_top_100_by_slots records */ export const zListFctStorageSlotTop100BySlotsResponse = z.object({ - fct_storage_slot_top_100_by_slots: z.optional(z.array(zFctStorageSlotTop100BySlots)), - next_page_token: z.optional(z.string()) + fct_storage_slot_top_100_by_slots: z.optional(z.array(zFctStorageSlotTop100BySlots)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_sync_committee_participation_by_validator_daily records */ export const zListFctSyncCommitteeParticipationByValidatorDailyResponse = z.object({ - fct_sync_committee_participation_by_validator_daily: z.optional(z.array(zFctSyncCommitteeParticipationByValidatorDaily)), - next_page_token: z.optional(z.string()) + fct_sync_committee_participation_by_validator_daily: z.optional( + z.array(zFctSyncCommitteeParticipationByValidatorDaily) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_sync_committee_participation_by_validator_hourly records */ export const zListFctSyncCommitteeParticipationByValidatorHourlyResponse = z.object({ - fct_sync_committee_participation_by_validator_hourly: z.optional(z.array(zFctSyncCommitteeParticipationByValidatorHourly)), - next_page_token: z.optional(z.string()) + fct_sync_committee_participation_by_validator_hourly: z.optional( + z.array(zFctSyncCommitteeParticipationByValidatorHourly) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_sync_committee_participation_by_validator records */ export const zListFctSyncCommitteeParticipationByValidatorResponse = z.object({ - fct_sync_committee_participation_by_validator: z.optional(z.array(zFctSyncCommitteeParticipationByValidator)), - next_page_token: z.optional(z.string()) + fct_sync_committee_participation_by_validator: z.optional(z.array(zFctSyncCommitteeParticipationByValidator)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_token_contract_storage_state_by_block_daily records */ export const zListFctTokenContractStorageStateByBlockDailyResponse = z.object({ - fct_token_contract_storage_state_by_block_daily: z.optional(z.array(zFctTokenContractStorageStateByBlockDaily)), - next_page_token: z.optional(z.string()) + fct_token_contract_storage_state_by_block_daily: z.optional(z.array(zFctTokenContractStorageStateByBlockDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_validator_balance_daily records */ export const zListFctValidatorBalanceDailyResponse = z.object({ - fct_validator_balance_daily: z.optional(z.array(zFctValidatorBalanceDaily)), - next_page_token: z.optional(z.string()) + fct_validator_balance_daily: z.optional(z.array(zFctValidatorBalanceDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_validator_balance_hourly records */ export const zListFctValidatorBalanceHourlyResponse = z.object({ - fct_validator_balance_hourly: z.optional(z.array(zFctValidatorBalanceHourly)), - next_page_token: z.optional(z.string()) + fct_validator_balance_hourly: z.optional(z.array(zFctValidatorBalanceHourly)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_validator_balance records */ export const zListFctValidatorBalanceResponse = z.object({ - fct_validator_balance: z.optional(z.array(zFctValidatorBalance)), - next_page_token: z.optional(z.string()) + fct_validator_balance: z.optional(z.array(zFctValidatorBalance)), + next_page_token: z.optional(z.string()), }); /** * Response for listing fct_validator_count_by_entity_by_status_daily records */ export const zListFctValidatorCountByEntityByStatusDailyResponse = z.object({ - fct_validator_count_by_entity_by_status_daily: z.optional(z.array(zFctValidatorCountByEntityByStatusDaily)), - next_page_token: z.optional(z.string()) + fct_validator_count_by_entity_by_status_daily: z.optional(z.array(zFctValidatorCountByEntityByStatusDaily)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_attestation_attested_canonical records */ export const zListIntAttestationAttestedCanonicalResponse = z.object({ - int_attestation_attested_canonical: z.optional(z.array(zIntAttestationAttestedCanonical)), - next_page_token: z.optional(z.string()) + int_attestation_attested_canonical: z.optional(z.array(zIntAttestationAttestedCanonical)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_attestation_attested_head records */ export const zListIntAttestationAttestedHeadResponse = z.object({ - int_attestation_attested_head: z.optional(z.array(zIntAttestationAttestedHead)), - next_page_token: z.optional(z.string()) + int_attestation_attested_head: z.optional(z.array(zIntAttestationAttestedHead)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing int_attestation_attested records + */ +export const zListIntAttestationAttestedResponse = z.object({ + int_attestation_attested: z.optional(z.array(zIntAttestationAttested)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_attestation_first_seen_aggregate records */ export const zListIntAttestationFirstSeenAggregateResponse = z.object({ - int_attestation_first_seen_aggregate: z.optional(z.array(zIntAttestationFirstSeenAggregate)), - next_page_token: z.optional(z.string()) + int_attestation_first_seen_aggregate: z.optional(z.array(zIntAttestationFirstSeenAggregate)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_attestation_first_seen records */ export const zListIntAttestationFirstSeenResponse = z.object({ - int_attestation_first_seen: z.optional(z.array(zIntAttestationFirstSeen)), - next_page_token: z.optional(z.string()) + int_attestation_first_seen: z.optional(z.array(zIntAttestationFirstSeen)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_beacon_committee_head records */ export const zListIntBeaconCommitteeHeadResponse = z.object({ - int_beacon_committee_head: z.optional(z.array(zIntBeaconCommitteeHead)), - next_page_token: z.optional(z.string()) + int_beacon_committee_head: z.optional(z.array(zIntBeaconCommitteeHead)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing int_beacon_committee records + */ +export const zListIntBeaconCommitteeResponse = z.object({ + int_beacon_committee: z.optional(z.array(zIntBeaconCommittee)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_block_blob_count_canonical records */ export const zListIntBlockBlobCountCanonicalResponse = z.object({ - int_block_blob_count_canonical: z.optional(z.array(zIntBlockBlobCountCanonical)), - next_page_token: z.optional(z.string()) + int_block_blob_count_canonical: z.optional(z.array(zIntBlockBlobCountCanonical)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_block_canonical records */ export const zListIntBlockCanonicalResponse = z.object({ - int_block_canonical: z.optional(z.array(zIntBlockCanonical)), - next_page_token: z.optional(z.string()) + int_block_canonical: z.optional(z.array(zIntBlockCanonical)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_block_mev_canonical records */ export const zListIntBlockMevCanonicalResponse = z.object({ - int_block_mev_canonical: z.optional(z.array(zIntBlockMevCanonical)), - next_page_token: z.optional(z.string()) + int_block_mev_canonical: z.optional(z.array(zIntBlockMevCanonical)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_block_opcode_gas records */ export const zListIntBlockOpcodeGasResponse = z.object({ - int_block_opcode_gas: z.optional(z.array(zIntBlockOpcodeGas)), - next_page_token: z.optional(z.string()) + int_block_opcode_gas: z.optional(z.array(zIntBlockOpcodeGas)), + next_page_token: z.optional(z.string()), +}); + +/** + * Response for listing int_block_payload_ptc_vote_canonical records + */ +export const zListIntBlockPayloadPtcVoteCanonicalResponse = z.object({ + int_block_payload_ptc_vote_canonical: z.optional(z.array(zIntBlockPayloadPtcVoteCanonical)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_block_proposer_canonical records */ export const zListIntBlockProposerCanonicalResponse = z.object({ - int_block_proposer_canonical: z.optional(z.array(zIntBlockProposerCanonical)), - next_page_token: z.optional(z.string()) + int_block_proposer_canonical: z.optional(z.array(zIntBlockProposerCanonical)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_block_receipt_size records */ export const zListIntBlockReceiptSizeResponse = z.object({ - int_block_receipt_size: z.optional(z.array(zIntBlockReceiptSize)), - next_page_token: z.optional(z.string()) + int_block_receipt_size: z.optional(z.array(zIntBlockReceiptSize)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_block_resource_gas records */ export const zListIntBlockResourceGasResponse = z.object({ - int_block_resource_gas: z.optional(z.array(zIntBlockResourceGas)), - next_page_token: z.optional(z.string()) + int_block_resource_gas: z.optional(z.array(zIntBlockResourceGas)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_creation records */ export const zListIntContractCreationResponse = z.object({ - int_contract_creation: z.optional(z.array(zIntContractCreation)), - next_page_token: z.optional(z.string()) + int_contract_creation: z.optional(z.array(zIntContractCreation)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_selfdestruct records */ export const zListIntContractSelfdestructResponse = z.object({ - int_contract_selfdestruct: z.optional(z.array(zIntContractSelfdestruct)), - next_page_token: z.optional(z.string()) + int_contract_selfdestruct: z.optional(z.array(zIntContractSelfdestruct)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_expiry_1m records */ export const zListIntContractStorageExpiry1mResponse = z.object({ - int_contract_storage_expiry_1m: z.optional(z.array(zIntContractStorageExpiry1m)), - next_page_token: z.optional(z.string()) + int_contract_storage_expiry_1m: z.optional(z.array(zIntContractStorageExpiry1m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_expiry_6m records */ export const zListIntContractStorageExpiry6mResponse = z.object({ - int_contract_storage_expiry_6m: z.optional(z.array(zIntContractStorageExpiry6m)), - next_page_token: z.optional(z.string()) + int_contract_storage_expiry_6m: z.optional(z.array(zIntContractStorageExpiry6m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_expiry_12m records */ export const zListIntContractStorageExpiry12mResponse = z.object({ - int_contract_storage_expiry_12m: z.optional(z.array(zIntContractStorageExpiry12m)), - next_page_token: z.optional(z.string()) + int_contract_storage_expiry_12m: z.optional(z.array(zIntContractStorageExpiry12m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_expiry_18m records */ export const zListIntContractStorageExpiry18mResponse = z.object({ - int_contract_storage_expiry_18m: z.optional(z.array(zIntContractStorageExpiry18m)), - next_page_token: z.optional(z.string()) + int_contract_storage_expiry_18m: z.optional(z.array(zIntContractStorageExpiry18m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_expiry_24m records */ export const zListIntContractStorageExpiry24mResponse = z.object({ - int_contract_storage_expiry_24m: z.optional(z.array(zIntContractStorageExpiry24m)), - next_page_token: z.optional(z.string()) + int_contract_storage_expiry_24m: z.optional(z.array(zIntContractStorageExpiry24m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_next_touch records */ export const zListIntContractStorageNextTouchResponse = z.object({ - int_contract_storage_next_touch: z.optional(z.array(zIntContractStorageNextTouch)), - next_page_token: z.optional(z.string()) + int_contract_storage_next_touch: z.optional(z.array(zIntContractStorageNextTouch)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_reactivation_1m records */ export const zListIntContractStorageReactivation1mResponse = z.object({ - int_contract_storage_reactivation_1m: z.optional(z.array(zIntContractStorageReactivation1m)), - next_page_token: z.optional(z.string()) + int_contract_storage_reactivation_1m: z.optional(z.array(zIntContractStorageReactivation1m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_reactivation_6m records */ export const zListIntContractStorageReactivation6mResponse = z.object({ - int_contract_storage_reactivation_6m: z.optional(z.array(zIntContractStorageReactivation6m)), - next_page_token: z.optional(z.string()) + int_contract_storage_reactivation_6m: z.optional(z.array(zIntContractStorageReactivation6m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_reactivation_12m records */ export const zListIntContractStorageReactivation12mResponse = z.object({ - int_contract_storage_reactivation_12m: z.optional(z.array(zIntContractStorageReactivation12m)), - next_page_token: z.optional(z.string()) + int_contract_storage_reactivation_12m: z.optional(z.array(zIntContractStorageReactivation12m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_reactivation_18m records */ export const zListIntContractStorageReactivation18mResponse = z.object({ - int_contract_storage_reactivation_18m: z.optional(z.array(zIntContractStorageReactivation18m)), - next_page_token: z.optional(z.string()) + int_contract_storage_reactivation_18m: z.optional(z.array(zIntContractStorageReactivation18m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_reactivation_24m records */ export const zListIntContractStorageReactivation24mResponse = z.object({ - int_contract_storage_reactivation_24m: z.optional(z.array(zIntContractStorageReactivation24m)), - next_page_token: z.optional(z.string()) + int_contract_storage_reactivation_24m: z.optional(z.array(zIntContractStorageReactivation24m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_state_by_address records */ export const zListIntContractStorageStateByAddressResponse = z.object({ - int_contract_storage_state_by_address: z.optional(z.array(zIntContractStorageStateByAddress)), - next_page_token: z.optional(z.string()) + int_contract_storage_state_by_address: z.optional(z.array(zIntContractStorageStateByAddress)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_state_by_block records */ export const zListIntContractStorageStateByBlockResponse = z.object({ - int_contract_storage_state_by_block: z.optional(z.array(zIntContractStorageStateByBlock)), - next_page_token: z.optional(z.string()) + int_contract_storage_state_by_block: z.optional(z.array(zIntContractStorageStateByBlock)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_state records */ export const zListIntContractStorageStateResponse = z.object({ - int_contract_storage_state: z.optional(z.array(zIntContractStorageState)), - next_page_token: z.optional(z.string()) + int_contract_storage_state: z.optional(z.array(zIntContractStorageState)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_state_with_expiry_by_address records */ export const zListIntContractStorageStateWithExpiryByAddressResponse = z.object({ - int_contract_storage_state_with_expiry_by_address: z.optional(z.array(zIntContractStorageStateWithExpiryByAddress)), - next_page_token: z.optional(z.string()) + int_contract_storage_state_with_expiry_by_address: z.optional(z.array(zIntContractStorageStateWithExpiryByAddress)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_state_with_expiry_by_block records */ export const zListIntContractStorageStateWithExpiryByBlockResponse = z.object({ - int_contract_storage_state_with_expiry_by_block: z.optional(z.array(zIntContractStorageStateWithExpiryByBlock)), - next_page_token: z.optional(z.string()) + int_contract_storage_state_with_expiry_by_block: z.optional(z.array(zIntContractStorageStateWithExpiryByBlock)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_contract_storage_state_with_expiry records */ export const zListIntContractStorageStateWithExpiryResponse = z.object({ - int_contract_storage_state_with_expiry: z.optional(z.array(zIntContractStorageStateWithExpiry)), - next_page_token: z.optional(z.string()) + int_contract_storage_state_with_expiry: z.optional(z.array(zIntContractStorageStateWithExpiry)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_custody_probe_order_by_slot records */ export const zListIntCustodyProbeOrderBySlotResponse = z.object({ - int_custody_probe_order_by_slot: z.optional(z.array(zIntCustodyProbeOrderBySlot)), - next_page_token: z.optional(z.string()) + int_custody_probe_order_by_slot: z.optional(z.array(zIntCustodyProbeOrderBySlot)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_custody_probe records */ export const zListIntCustodyProbeResponse = z.object({ - int_custody_probe: z.optional(z.array(zIntCustodyProbe)), - next_page_token: z.optional(z.string()) + int_custody_probe: z.optional(z.array(zIntCustodyProbe)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_engine_get_blobs records */ export const zListIntEngineGetBlobsResponse = z.object({ - int_engine_get_blobs: z.optional(z.array(zIntEngineGetBlobs)), - next_page_token: z.optional(z.string()) + int_engine_get_blobs: z.optional(z.array(zIntEngineGetBlobs)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_engine_new_payload_fastest_execution_by_node_class records */ export const zListIntEngineNewPayloadFastestExecutionByNodeClassResponse = z.object({ - int_engine_new_payload_fastest_execution_by_node_class: z.optional(z.array(zIntEngineNewPayloadFastestExecutionByNodeClass)), - next_page_token: z.optional(z.string()) + int_engine_new_payload_fastest_execution_by_node_class: z.optional( + z.array(zIntEngineNewPayloadFastestExecutionByNodeClass) + ), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_engine_new_payload records */ export const zListIntEngineNewPayloadResponse = z.object({ - int_engine_new_payload: z.optional(z.array(zIntEngineNewPayload)), - next_page_token: z.optional(z.string()) + int_engine_new_payload: z.optional(z.array(zIntEngineNewPayload)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_execution_block_by_date records */ export const zListIntExecutionBlockByDateResponse = z.object({ - int_execution_block_by_date: z.optional(z.array(zIntExecutionBlockByDate)), - next_page_token: z.optional(z.string()) + int_execution_block_by_date: z.optional(z.array(zIntExecutionBlockByDate)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_execution_state_size_by_block records */ export const zListIntExecutionStateSizeByBlockResponse = z.object({ - int_execution_state_size_by_block: z.optional(z.array(zIntExecutionStateSizeByBlock)), - next_page_token: z.optional(z.string()) + int_execution_state_size_by_block: z.optional(z.array(zIntExecutionStateSizeByBlock)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_rocketpool_megapool records */ export const zListIntRocketpoolMegapoolResponse = z.object({ - int_rocketpool_megapool: z.optional(z.array(zIntRocketpoolMegapool)), - next_page_token: z.optional(z.string()) + int_rocketpool_megapool: z.optional(z.array(zIntRocketpoolMegapool)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_rocketpool_minipool records */ export const zListIntRocketpoolMinipoolResponse = z.object({ - int_rocketpool_minipool: z.optional(z.array(zIntRocketpoolMinipool)), - next_page_token: z.optional(z.string()) + int_rocketpool_minipool: z.optional(z.array(zIntRocketpoolMinipool)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_rocketpool_node_event records */ export const zListIntRocketpoolNodeEventResponse = z.object({ - int_rocketpool_node_event: z.optional(z.array(zIntRocketpoolNodeEvent)), - next_page_token: z.optional(z.string()) + int_rocketpool_node_event: z.optional(z.array(zIntRocketpoolNodeEvent)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_rocketpool_node_timezone records */ export const zListIntRocketpoolNodeTimezoneResponse = z.object({ - int_rocketpool_node_timezone: z.optional(z.array(zIntRocketpoolNodeTimezone)), - next_page_token: z.optional(z.string()) + int_rocketpool_node_timezone: z.optional(z.array(zIntRocketpoolNodeTimezone)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_selfdestruct_diffs records */ export const zListIntStorageSelfdestructDiffsResponse = z.object({ - int_storage_selfdestruct_diffs: z.optional(z.array(zIntStorageSelfdestructDiffs)), - next_page_token: z.optional(z.string()) + int_storage_selfdestruct_diffs: z.optional(z.array(zIntStorageSelfdestructDiffs)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_diff_by_address_slot records */ export const zListIntStorageSlotDiffByAddressSlotResponse = z.object({ - int_storage_slot_diff_by_address_slot: z.optional(z.array(zIntStorageSlotDiffByAddressSlot)), - next_page_token: z.optional(z.string()) + int_storage_slot_diff_by_address_slot: z.optional(z.array(zIntStorageSlotDiffByAddressSlot)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_diff records */ export const zListIntStorageSlotDiffResponse = z.object({ - int_storage_slot_diff: z.optional(z.array(zIntStorageSlotDiff)), - next_page_token: z.optional(z.string()) + int_storage_slot_diff: z.optional(z.array(zIntStorageSlotDiff)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_expiry_1m records */ export const zListIntStorageSlotExpiry1mResponse = z.object({ - int_storage_slot_expiry_1m: z.optional(z.array(zIntStorageSlotExpiry1m)), - next_page_token: z.optional(z.string()) + int_storage_slot_expiry_1m: z.optional(z.array(zIntStorageSlotExpiry1m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_expiry_6m records */ export const zListIntStorageSlotExpiry6mResponse = z.object({ - int_storage_slot_expiry_6m: z.optional(z.array(zIntStorageSlotExpiry6m)), - next_page_token: z.optional(z.string()) + int_storage_slot_expiry_6m: z.optional(z.array(zIntStorageSlotExpiry6m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_expiry_12m records */ export const zListIntStorageSlotExpiry12mResponse = z.object({ - int_storage_slot_expiry_12m: z.optional(z.array(zIntStorageSlotExpiry12m)), - next_page_token: z.optional(z.string()) + int_storage_slot_expiry_12m: z.optional(z.array(zIntStorageSlotExpiry12m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_expiry_18m records */ export const zListIntStorageSlotExpiry18mResponse = z.object({ - int_storage_slot_expiry_18m: z.optional(z.array(zIntStorageSlotExpiry18m)), - next_page_token: z.optional(z.string()) + int_storage_slot_expiry_18m: z.optional(z.array(zIntStorageSlotExpiry18m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_expiry_24m records */ export const zListIntStorageSlotExpiry24mResponse = z.object({ - int_storage_slot_expiry_24m: z.optional(z.array(zIntStorageSlotExpiry24m)), - next_page_token: z.optional(z.string()) + int_storage_slot_expiry_24m: z.optional(z.array(zIntStorageSlotExpiry24m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_lifecycle_boundary records */ export const zListIntStorageSlotLifecycleBoundaryResponse = z.object({ - int_storage_slot_lifecycle_boundary: z.optional(z.array(zIntStorageSlotLifecycleBoundary)), - next_page_token: z.optional(z.string()) + int_storage_slot_lifecycle_boundary: z.optional(z.array(zIntStorageSlotLifecycleBoundary)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_lifecycle records */ export const zListIntStorageSlotLifecycleResponse = z.object({ - int_storage_slot_lifecycle: z.optional(z.array(zIntStorageSlotLifecycle)), - next_page_token: z.optional(z.string()) + int_storage_slot_lifecycle: z.optional(z.array(zIntStorageSlotLifecycle)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_next_touch records */ export const zListIntStorageSlotNextTouchResponse = z.object({ - int_storage_slot_next_touch: z.optional(z.array(zIntStorageSlotNextTouch)), - next_page_token: z.optional(z.string()) + int_storage_slot_next_touch: z.optional(z.array(zIntStorageSlotNextTouch)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_reactivation_1m records */ export const zListIntStorageSlotReactivation1mResponse = z.object({ - int_storage_slot_reactivation_1m: z.optional(z.array(zIntStorageSlotReactivation1m)), - next_page_token: z.optional(z.string()) + int_storage_slot_reactivation_1m: z.optional(z.array(zIntStorageSlotReactivation1m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_reactivation_6m records */ export const zListIntStorageSlotReactivation6mResponse = z.object({ - int_storage_slot_reactivation_6m: z.optional(z.array(zIntStorageSlotReactivation6m)), - next_page_token: z.optional(z.string()) + int_storage_slot_reactivation_6m: z.optional(z.array(zIntStorageSlotReactivation6m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_reactivation_12m records */ export const zListIntStorageSlotReactivation12mResponse = z.object({ - int_storage_slot_reactivation_12m: z.optional(z.array(zIntStorageSlotReactivation12m)), - next_page_token: z.optional(z.string()) + int_storage_slot_reactivation_12m: z.optional(z.array(zIntStorageSlotReactivation12m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_reactivation_18m records */ export const zListIntStorageSlotReactivation18mResponse = z.object({ - int_storage_slot_reactivation_18m: z.optional(z.array(zIntStorageSlotReactivation18m)), - next_page_token: z.optional(z.string()) + int_storage_slot_reactivation_18m: z.optional(z.array(zIntStorageSlotReactivation18m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_reactivation_24m records */ export const zListIntStorageSlotReactivation24mResponse = z.object({ - int_storage_slot_reactivation_24m: z.optional(z.array(zIntStorageSlotReactivation24m)), - next_page_token: z.optional(z.string()) + int_storage_slot_reactivation_24m: z.optional(z.array(zIntStorageSlotReactivation24m)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_read records */ export const zListIntStorageSlotReadResponse = z.object({ - int_storage_slot_read: z.optional(z.array(zIntStorageSlotRead)), - next_page_token: z.optional(z.string()) + int_storage_slot_read: z.optional(z.array(zIntStorageSlotRead)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_state_by_address records */ export const zListIntStorageSlotStateByAddressResponse = z.object({ - int_storage_slot_state_by_address: z.optional(z.array(zIntStorageSlotStateByAddress)), - next_page_token: z.optional(z.string()) + int_storage_slot_state_by_address: z.optional(z.array(zIntStorageSlotStateByAddress)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_state_by_block records */ export const zListIntStorageSlotStateByBlockResponse = z.object({ - int_storage_slot_state_by_block: z.optional(z.array(zIntStorageSlotStateByBlock)), - next_page_token: z.optional(z.string()) + int_storage_slot_state_by_block: z.optional(z.array(zIntStorageSlotStateByBlock)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_state records */ export const zListIntStorageSlotStateResponse = z.object({ - int_storage_slot_state: z.optional(z.array(zIntStorageSlotState)), - next_page_token: z.optional(z.string()) + int_storage_slot_state: z.optional(z.array(zIntStorageSlotState)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_state_with_expiry_by_address records */ export const zListIntStorageSlotStateWithExpiryByAddressResponse = z.object({ - int_storage_slot_state_with_expiry_by_address: z.optional(z.array(zIntStorageSlotStateWithExpiryByAddress)), - next_page_token: z.optional(z.string()) + int_storage_slot_state_with_expiry_by_address: z.optional(z.array(zIntStorageSlotStateWithExpiryByAddress)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_state_with_expiry_by_block records */ export const zListIntStorageSlotStateWithExpiryByBlockResponse = z.object({ - int_storage_slot_state_with_expiry_by_block: z.optional(z.array(zIntStorageSlotStateWithExpiryByBlock)), - next_page_token: z.optional(z.string()) + int_storage_slot_state_with_expiry_by_block: z.optional(z.array(zIntStorageSlotStateWithExpiryByBlock)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_storage_slot_state_with_expiry records */ export const zListIntStorageSlotStateWithExpiryResponse = z.object({ - int_storage_slot_state_with_expiry: z.optional(z.array(zIntStorageSlotStateWithExpiry)), - next_page_token: z.optional(z.string()) + int_storage_slot_state_with_expiry: z.optional(z.array(zIntStorageSlotStateWithExpiry)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_token_contract_storage_state_by_block records */ export const zListIntTokenContractStorageStateByBlockResponse = z.object({ - int_token_contract_storage_state_by_block: z.optional(z.array(zIntTokenContractStorageStateByBlock)), - next_page_token: z.optional(z.string()) + int_token_contract_storage_state_by_block: z.optional(z.array(zIntTokenContractStorageStateByBlock)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_transaction_call_frame_opcode_gas records */ export const zListIntTransactionCallFrameOpcodeGasResponse = z.object({ - int_transaction_call_frame_opcode_gas: z.optional(z.array(zIntTransactionCallFrameOpcodeGas)), - next_page_token: z.optional(z.string()) + int_transaction_call_frame_opcode_gas: z.optional(z.array(zIntTransactionCallFrameOpcodeGas)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_transaction_call_frame_opcode_resource_gas records */ export const zListIntTransactionCallFrameOpcodeResourceGasResponse = z.object({ - int_transaction_call_frame_opcode_resource_gas: z.optional(z.array(zIntTransactionCallFrameOpcodeResourceGas)), - next_page_token: z.optional(z.string()) + int_transaction_call_frame_opcode_resource_gas: z.optional(z.array(zIntTransactionCallFrameOpcodeResourceGas)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_transaction_call_frame records */ export const zListIntTransactionCallFrameResponse = z.object({ - int_transaction_call_frame: z.optional(z.array(zIntTransactionCallFrame)), - next_page_token: z.optional(z.string()) + int_transaction_call_frame: z.optional(z.array(zIntTransactionCallFrame)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_transaction_opcode_gas records */ export const zListIntTransactionOpcodeGasResponse = z.object({ - int_transaction_opcode_gas: z.optional(z.array(zIntTransactionOpcodeGas)), - next_page_token: z.optional(z.string()) + int_transaction_opcode_gas: z.optional(z.array(zIntTransactionOpcodeGas)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_transaction_receipt_size records */ export const zListIntTransactionReceiptSizeResponse = z.object({ - int_transaction_receipt_size: z.optional(z.array(zIntTransactionReceiptSize)), - next_page_token: z.optional(z.string()) + int_transaction_receipt_size: z.optional(z.array(zIntTransactionReceiptSize)), + next_page_token: z.optional(z.string()), }); /** * Response for listing int_transaction_resource_gas records */ export const zListIntTransactionResourceGasResponse = z.object({ - int_transaction_resource_gas: z.optional(z.array(zIntTransactionResourceGas)), - next_page_token: z.optional(z.string()) + int_transaction_resource_gas: z.optional(z.array(zIntTransactionResourceGas)), + next_page_token: z.optional(z.string()), }); /** * The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). */ export const zStatus = z.object({ - code: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - details: z.optional(z.array(zGoogleProtobufAny)), - message: z.optional(z.string()) + code: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + details: z.optional(z.array(zGoogleProtobufAny)), + message: z.optional(z.string()), }); export const zAdminCbtIncrementalServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - database_eq: z.optional(z.string()), - database_ne: z.optional(z.string()), - database_contains: z.optional(z.string()), - database_starts_with: z.optional(z.string()), - database_ends_with: z.optional(z.string()), - database_like: z.optional(z.string()), - database_not_like: z.optional(z.string()), - database_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - database_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - position_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - position_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - position_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - position_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - position_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - position_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - position_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - position_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - position_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - position_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - interval_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - interval_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - table_eq: z.optional(z.string()), - table_ne: z.optional(z.string()), - table_contains: z.optional(z.string()), - table_starts_with: z.optional(z.string()), - table_ends_with: z.optional(z.string()), - table_like: z.optional(z.string()), - table_not_like: z.optional(z.string()), - table_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - table_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + database_eq: z.optional(z.string()), + database_ne: z.optional(z.string()), + database_contains: z.optional(z.string()), + database_starts_with: z.optional(z.string()), + database_ends_with: z.optional(z.string()), + database_like: z.optional(z.string()), + database_not_like: z.optional(z.string()), + database_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + database_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + position_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + position_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + position_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + position_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + position_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + position_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + position_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + position_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + position_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + position_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + interval_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + interval_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + table_eq: z.optional(z.string()), + table_ne: z.optional(z.string()), + table_contains: z.optional(z.string()), + table_starts_with: z.optional(z.string()), + table_ends_with: z.optional(z.string()), + table_like: z.optional(z.string()), + table_not_like: z.optional(z.string()), + table_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + table_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -6249,11 +17898,11 @@ export const zAdminCbtIncrementalServiceListData = z.object({ export const zAdminCbtIncrementalServiceListResponse = zListAdminCbtIncrementalResponse; export const zAdminCbtIncrementalServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - database: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + database: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -6261,79 +17910,558 @@ export const zAdminCbtIncrementalServiceGetData = z.object({ */ export const zAdminCbtIncrementalServiceGetResponse = zGetAdminCbtIncrementalResponse; +export const zAdminCbtScheduledServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + database_eq: z.optional(z.string()), + database_ne: z.optional(z.string()), + database_contains: z.optional(z.string()), + database_starts_with: z.optional(z.string()), + database_ends_with: z.optional(z.string()), + database_like: z.optional(z.string()), + database_not_like: z.optional(z.string()), + database_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + database_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + table_eq: z.optional(z.string()), + table_ne: z.optional(z.string()), + table_contains: z.optional(z.string()), + table_starts_with: z.optional(z.string()), + table_ends_with: z.optional(z.string()), + table_like: z.optional(z.string()), + table_not_like: z.optional(z.string()), + table_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + table_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + start_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + start_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + start_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + start_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + start_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + start_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + start_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + start_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + start_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zAdminCbtScheduledServiceListResponse = zListAdminCbtScheduledResponse; + +export const zAdminCbtScheduledServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + database: z.string(), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zAdminCbtScheduledServiceGetResponse = zGetAdminCbtScheduledResponse; + export const zDimBlockBlobSubmitterServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_hash_eq: z.optional(z.string()), - transaction_hash_ne: z.optional(z.string()), - transaction_hash_contains: z.optional(z.string()), - transaction_hash_starts_with: z.optional(z.string()), - transaction_hash_ends_with: z.optional(z.string()), - transaction_hash_like: z.optional(z.string()), - transaction_hash_not_like: z.optional(z.string()), - transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - versioned_hashes_has: z.optional(z.string()), - versioned_hashes_has_all_values: z.optional(z.array(z.string())), - versioned_hashes_has_any_values: z.optional(z.array(z.string())), - versioned_hashes_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - versioned_hashes_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - versioned_hashes_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - versioned_hashes_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - versioned_hashes_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - name_eq: z.optional(z.string()), - name_ne: z.optional(z.string()), - name_contains: z.optional(z.string()), - name_starts_with: z.optional(z.string()), - name_ends_with: z.optional(z.string()), - name_like: z.optional(z.string()), - name_not_like: z.optional(z.string()), - name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_hash_eq: z.optional(z.string()), + transaction_hash_ne: z.optional(z.string()), + transaction_hash_contains: z.optional(z.string()), + transaction_hash_starts_with: z.optional(z.string()), + transaction_hash_ends_with: z.optional(z.string()), + transaction_hash_like: z.optional(z.string()), + transaction_hash_not_like: z.optional(z.string()), + transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + versioned_hashes_has: z.optional(z.string()), + versioned_hashes_has_all_values: z.optional(z.array(z.string())), + versioned_hashes_has_any_values: z.optional(z.array(z.string())), + versioned_hashes_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + versioned_hashes_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + versioned_hashes_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + versioned_hashes_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + versioned_hashes_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + name_eq: z.optional(z.string()), + name_ne: z.optional(z.string()), + name_contains: z.optional(z.string()), + name_starts_with: z.optional(z.string()), + name_ends_with: z.optional(z.string()), + name_like: z.optional(z.string()), + name_not_like: z.optional(z.string()), + name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -6342,11 +18470,18 @@ export const zDimBlockBlobSubmitterServiceListData = z.object({ export const zDimBlockBlobSubmitterServiceListResponse = zListDimBlockBlobSubmitterResponse; export const zDimBlockBlobSubmitterServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -6355,84 +18490,219 @@ export const zDimBlockBlobSubmitterServiceGetData = z.object({ export const zDimBlockBlobSubmitterServiceGetResponse = zGetDimBlockBlobSubmitterResponse; export const zDimContractOwnerServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - contract_address_eq: z.optional(z.string()), - contract_address_ne: z.optional(z.string()), - contract_address_contains: z.optional(z.string()), - contract_address_starts_with: z.optional(z.string()), - contract_address_ends_with: z.optional(z.string()), - contract_address_like: z.optional(z.string()), - contract_address_not_like: z.optional(z.string()), - contract_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - owner_key_eq: z.optional(z.string()), - owner_key_ne: z.optional(z.string()), - owner_key_contains: z.optional(z.string()), - owner_key_starts_with: z.optional(z.string()), - owner_key_ends_with: z.optional(z.string()), - owner_key_like: z.optional(z.string()), - owner_key_not_like: z.optional(z.string()), - owner_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - owner_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - account_owner_eq: z.optional(z.string()), - account_owner_ne: z.optional(z.string()), - account_owner_contains: z.optional(z.string()), - account_owner_starts_with: z.optional(z.string()), - account_owner_ends_with: z.optional(z.string()), - account_owner_like: z.optional(z.string()), - account_owner_not_like: z.optional(z.string()), - account_owner_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - account_owner_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_name_eq: z.optional(z.string()), - contract_name_ne: z.optional(z.string()), - contract_name_contains: z.optional(z.string()), - contract_name_starts_with: z.optional(z.string()), - contract_name_ends_with: z.optional(z.string()), - contract_name_like: z.optional(z.string()), - contract_name_not_like: z.optional(z.string()), - contract_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - factory_contract_eq: z.optional(z.string()), - factory_contract_ne: z.optional(z.string()), - factory_contract_contains: z.optional(z.string()), - factory_contract_starts_with: z.optional(z.string()), - factory_contract_ends_with: z.optional(z.string()), - factory_contract_like: z.optional(z.string()), - factory_contract_not_like: z.optional(z.string()), - factory_contract_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - factory_contract_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - labels_has: z.optional(z.string()), - labels_has_all_values: z.optional(z.array(z.string())), - labels_has_any_values: z.optional(z.array(z.string())), - labels_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - labels_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - labels_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - labels_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - labels_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - sources_has: z.optional(z.string()), - sources_has_all_values: z.optional(z.array(z.string())), - sources_has_any_values: z.optional(z.array(z.string())), - sources_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - sources_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - sources_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - sources_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - sources_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + contract_address_eq: z.optional(z.string()), + contract_address_ne: z.optional(z.string()), + contract_address_contains: z.optional(z.string()), + contract_address_starts_with: z.optional(z.string()), + contract_address_ends_with: z.optional(z.string()), + contract_address_like: z.optional(z.string()), + contract_address_not_like: z.optional(z.string()), + contract_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + owner_key_eq: z.optional(z.string()), + owner_key_ne: z.optional(z.string()), + owner_key_contains: z.optional(z.string()), + owner_key_starts_with: z.optional(z.string()), + owner_key_ends_with: z.optional(z.string()), + owner_key_like: z.optional(z.string()), + owner_key_not_like: z.optional(z.string()), + owner_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + owner_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + account_owner_eq: z.optional(z.string()), + account_owner_ne: z.optional(z.string()), + account_owner_contains: z.optional(z.string()), + account_owner_starts_with: z.optional(z.string()), + account_owner_ends_with: z.optional(z.string()), + account_owner_like: z.optional(z.string()), + account_owner_not_like: z.optional(z.string()), + account_owner_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + account_owner_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_name_eq: z.optional(z.string()), + contract_name_ne: z.optional(z.string()), + contract_name_contains: z.optional(z.string()), + contract_name_starts_with: z.optional(z.string()), + contract_name_ends_with: z.optional(z.string()), + contract_name_like: z.optional(z.string()), + contract_name_not_like: z.optional(z.string()), + contract_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + factory_contract_eq: z.optional(z.string()), + factory_contract_ne: z.optional(z.string()), + factory_contract_contains: z.optional(z.string()), + factory_contract_starts_with: z.optional(z.string()), + factory_contract_ends_with: z.optional(z.string()), + factory_contract_like: z.optional(z.string()), + factory_contract_not_like: z.optional(z.string()), + factory_contract_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + factory_contract_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + labels_has: z.optional(z.string()), + labels_has_all_values: z.optional(z.array(z.string())), + labels_has_any_values: z.optional(z.array(z.string())), + labels_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + labels_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + labels_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + labels_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + labels_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + sources_has: z.optional(z.string()), + sources_has_all_values: z.optional(z.array(z.string())), + sources_has_any_values: z.optional(z.array(z.string())), + sources_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + sources_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + sources_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + sources_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + sources_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -6441,11 +18711,11 @@ export const zDimContractOwnerServiceListData = z.object({ export const zDimContractOwnerServiceListResponse = zListDimContractOwnerResponse; export const zDimContractOwnerServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - contract_address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + contract_address: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -6454,43 +18724,108 @@ export const zDimContractOwnerServiceGetData = z.object({ export const zDimContractOwnerServiceGetResponse = zGetDimContractOwnerResponse; export const zDimFunctionSignatureServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - selector_eq: z.optional(z.string()), - selector_ne: z.optional(z.string()), - selector_contains: z.optional(z.string()), - selector_starts_with: z.optional(z.string()), - selector_ends_with: z.optional(z.string()), - selector_like: z.optional(z.string()), - selector_not_like: z.optional(z.string()), - selector_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - selector_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - name_eq: z.optional(z.string()), - name_ne: z.optional(z.string()), - name_contains: z.optional(z.string()), - name_starts_with: z.optional(z.string()), - name_ends_with: z.optional(z.string()), - name_like: z.optional(z.string()), - name_not_like: z.optional(z.string()), - name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - has_verified_contract_eq: z.optional(z.boolean()), - has_verified_contract_ne: z.optional(z.boolean()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + selector_eq: z.optional(z.string()), + selector_ne: z.optional(z.string()), + selector_contains: z.optional(z.string()), + selector_starts_with: z.optional(z.string()), + selector_ends_with: z.optional(z.string()), + selector_like: z.optional(z.string()), + selector_not_like: z.optional(z.string()), + selector_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + selector_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + name_eq: z.optional(z.string()), + name_ne: z.optional(z.string()), + name_contains: z.optional(z.string()), + name_starts_with: z.optional(z.string()), + name_ends_with: z.optional(z.string()), + name_like: z.optional(z.string()), + name_not_like: z.optional(z.string()), + name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + has_verified_contract_eq: z.optional(z.boolean()), + has_verified_contract_ne: z.optional(z.boolean()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -6499,11 +18834,11 @@ export const zDimFunctionSignatureServiceListData = z.object({ export const zDimFunctionSignatureServiceListResponse = zListDimFunctionSignatureResponse; export const zDimFunctionSignatureServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - selector: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + selector: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -6512,79 +18847,270 @@ export const zDimFunctionSignatureServiceGetData = z.object({ export const zDimFunctionSignatureServiceGetResponse = zGetDimFunctionSignatureResponse; export const zDimNodeServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - name_eq: z.optional(z.string()), - name_ne: z.optional(z.string()), - name_contains: z.optional(z.string()), - name_starts_with: z.optional(z.string()), - name_ends_with: z.optional(z.string()), - name_like: z.optional(z.string()), - name_not_like: z.optional(z.string()), - name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - groups_has: z.optional(z.string()), - groups_has_all_values: z.optional(z.array(z.string())), - groups_has_any_values: z.optional(z.array(z.string())), - groups_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - groups_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - groups_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - groups_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - groups_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tags_has: z.optional(z.string()), - tags_has_all_values: z.optional(z.array(z.string())), - tags_has_any_values: z.optional(z.array(z.string())), - tags_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tags_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tags_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tags_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tags_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attributes_key_value_key: z.optional(z.string()), - attributes_key_value_value_filter_eq: z.optional(z.string()), - attributes_key_value_value_filter_ne: z.optional(z.string()), - attributes_key_value_value_filter_contains: z.optional(z.string()), - attributes_key_value_value_filter_starts_with: z.optional(z.string()), - attributes_key_value_value_filter_ends_with: z.optional(z.string()), - attributes_key_value_value_filter_like: z.optional(z.string()), - attributes_key_value_value_filter_not_like: z.optional(z.string()), - attributes_key_value_value_filter_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - attributes_key_value_value_filter_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - attributes_has_key: z.optional(z.string()), - attributes_not_has_key: z.optional(z.string()), - source_eq: z.optional(z.string()), - source_ne: z.optional(z.string()), - source_contains: z.optional(z.string()), - source_starts_with: z.optional(z.string()), - source_ends_with: z.optional(z.string()), - source_like: z.optional(z.string()), - source_not_like: z.optional(z.string()), - source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + name_eq: z.optional(z.string()), + name_ne: z.optional(z.string()), + name_contains: z.optional(z.string()), + name_starts_with: z.optional(z.string()), + name_ends_with: z.optional(z.string()), + name_like: z.optional(z.string()), + name_not_like: z.optional(z.string()), + name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + groups_has: z.optional(z.string()), + groups_has_all_values: z.optional(z.array(z.string())), + groups_has_any_values: z.optional(z.array(z.string())), + groups_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + groups_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + groups_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + groups_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + groups_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tags_has: z.optional(z.string()), + tags_has_all_values: z.optional(z.array(z.string())), + tags_has_any_values: z.optional(z.array(z.string())), + tags_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tags_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tags_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tags_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tags_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attributes_key_value_key: z.optional(z.string()), + attributes_key_value_value_filter_eq: z.optional(z.string()), + attributes_key_value_value_filter_ne: z.optional(z.string()), + attributes_key_value_value_filter_contains: z.optional(z.string()), + attributes_key_value_value_filter_starts_with: z.optional(z.string()), + attributes_key_value_value_filter_ends_with: z.optional(z.string()), + attributes_key_value_value_filter_like: z.optional(z.string()), + attributes_key_value_value_filter_not_like: z.optional(z.string()), + attributes_key_value_value_filter_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + attributes_key_value_value_filter_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + attributes_has_key: z.optional(z.string()), + attributes_not_has_key: z.optional(z.string()), + source_eq: z.optional(z.string()), + source_ne: z.optional(z.string()), + source_contains: z.optional(z.string()), + source_starts_with: z.optional(z.string()), + source_ends_with: z.optional(z.string()), + source_like: z.optional(z.string()), + source_not_like: z.optional(z.string()), + source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -6593,11 +19119,16 @@ export const zDimNodeServiceListData = z.object({ export const zDimNodeServiceListResponse = zListDimNodeResponse; export const zDimNodeServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -6606,122 +19137,579 @@ export const zDimNodeServiceGetData = z.object({ export const zDimNodeServiceGetResponse = zGetDimNodeResponse; export const zDimRocketpoolNodeServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - node_operator_eq: z.optional(z.string()), - node_operator_ne: z.optional(z.string()), - node_operator_contains: z.optional(z.string()), - node_operator_starts_with: z.optional(z.string()), - node_operator_ends_with: z.optional(z.string()), - node_operator_like: z.optional(z.string()), - node_operator_not_like: z.optional(z.string()), - node_operator_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_operator_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - timezone_eq: z.optional(z.string()), - timezone_ne: z.optional(z.string()), - timezone_contains: z.optional(z.string()), - timezone_starts_with: z.optional(z.string()), - timezone_ends_with: z.optional(z.string()), - timezone_like: z.optional(z.string()), - timezone_not_like: z.optional(z.string()), - timezone_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - timezone_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - registered_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - registered_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - registered_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - registered_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - registered_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - registered_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - registered_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - registered_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - registered_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - registered_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - minipool_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - minipool_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - minipool_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - minipool_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - minipool_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - minipool_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - minipool_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - minipool_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - minipool_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - minipool_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_minipool_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - active_minipool_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - active_minipool_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - active_minipool_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - active_minipool_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - active_minipool_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - active_minipool_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - active_minipool_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - active_minipool_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_minipool_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - megapool_validator_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - megapool_validator_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - megapool_validator_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - megapool_validator_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - megapool_validator_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - megapool_validator_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - megapool_validator_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - megapool_validator_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - megapool_validator_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - megapool_validator_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - rpl_staked_wei_eq: z.optional(z.string()), - rpl_staked_wei_ne: z.optional(z.string()), - rpl_staked_wei_contains: z.optional(z.string()), - rpl_staked_wei_starts_with: z.optional(z.string()), - rpl_staked_wei_ends_with: z.optional(z.string()), - rpl_staked_wei_like: z.optional(z.string()), - rpl_staked_wei_not_like: z.optional(z.string()), - rpl_staked_wei_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - rpl_staked_wei_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - in_smoothing_pool_eq: z.optional(z.boolean()), - in_smoothing_pool_ne: z.optional(z.boolean()), - first_seen_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - first_seen_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - first_seen_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - first_seen_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - first_seen_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - first_seen_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - first_seen_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - first_seen_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - first_seen_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - first_seen_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - last_activity_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_activity_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_activity_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_activity_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_activity_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_activity_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_activity_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_activity_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_activity_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - last_activity_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + node_operator_eq: z.optional(z.string()), + node_operator_ne: z.optional(z.string()), + node_operator_contains: z.optional(z.string()), + node_operator_starts_with: z.optional(z.string()), + node_operator_ends_with: z.optional(z.string()), + node_operator_like: z.optional(z.string()), + node_operator_not_like: z.optional(z.string()), + node_operator_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_operator_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + timezone_eq: z.optional(z.string()), + timezone_ne: z.optional(z.string()), + timezone_contains: z.optional(z.string()), + timezone_starts_with: z.optional(z.string()), + timezone_ends_with: z.optional(z.string()), + timezone_like: z.optional(z.string()), + timezone_not_like: z.optional(z.string()), + timezone_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + timezone_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + registered_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + registered_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + registered_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + registered_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + registered_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + registered_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + registered_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + registered_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + registered_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + registered_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + minipool_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + minipool_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + minipool_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + minipool_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + minipool_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + minipool_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + minipool_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + minipool_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + minipool_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + minipool_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_minipool_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + active_minipool_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + active_minipool_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + active_minipool_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + active_minipool_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + active_minipool_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + active_minipool_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + active_minipool_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + active_minipool_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_minipool_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + megapool_validator_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + megapool_validator_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + megapool_validator_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + megapool_validator_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + megapool_validator_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + megapool_validator_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + megapool_validator_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + megapool_validator_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + megapool_validator_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + megapool_validator_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + rpl_staked_wei_eq: z.optional(z.string()), + rpl_staked_wei_ne: z.optional(z.string()), + rpl_staked_wei_contains: z.optional(z.string()), + rpl_staked_wei_starts_with: z.optional(z.string()), + rpl_staked_wei_ends_with: z.optional(z.string()), + rpl_staked_wei_like: z.optional(z.string()), + rpl_staked_wei_not_like: z.optional(z.string()), + rpl_staked_wei_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + rpl_staked_wei_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + in_smoothing_pool_eq: z.optional(z.boolean()), + in_smoothing_pool_ne: z.optional(z.boolean()), + first_seen_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + first_seen_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + last_activity_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_activity_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_activity_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_activity_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_activity_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_activity_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_activity_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_activity_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_activity_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + last_activity_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -6730,11 +19718,11 @@ export const zDimRocketpoolNodeServiceListData = z.object({ export const zDimRocketpoolNodeServiceListResponse = zListDimRocketpoolNodeResponse; export const zDimRocketpoolNodeServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - node_operator: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + node_operator: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -6743,41 +19731,106 @@ export const zDimRocketpoolNodeServiceGetData = z.object({ export const zDimRocketpoolNodeServiceGetResponse = zGetDimRocketpoolNodeResponse; export const zDimTokenContractServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - contract_address_eq: z.optional(z.string()), - contract_address_ne: z.optional(z.string()), - contract_address_contains: z.optional(z.string()), - contract_address_starts_with: z.optional(z.string()), - contract_address_ends_with: z.optional(z.string()), - contract_address_like: z.optional(z.string()), - contract_address_not_like: z.optional(z.string()), - contract_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - token_standard_eq: z.optional(z.string()), - token_standard_ne: z.optional(z.string()), - token_standard_contains: z.optional(z.string()), - token_standard_starts_with: z.optional(z.string()), - token_standard_ends_with: z.optional(z.string()), - token_standard_like: z.optional(z.string()), - token_standard_not_like: z.optional(z.string()), - token_standard_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - token_standard_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + contract_address_eq: z.optional(z.string()), + contract_address_ne: z.optional(z.string()), + contract_address_contains: z.optional(z.string()), + contract_address_starts_with: z.optional(z.string()), + contract_address_ends_with: z.optional(z.string()), + contract_address_like: z.optional(z.string()), + contract_address_not_like: z.optional(z.string()), + contract_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + token_standard_eq: z.optional(z.string()), + token_standard_ne: z.optional(z.string()), + token_standard_contains: z.optional(z.string()), + token_standard_starts_with: z.optional(z.string()), + token_standard_ends_with: z.optional(z.string()), + token_standard_like: z.optional(z.string()), + token_standard_not_like: z.optional(z.string()), + token_standard_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + token_standard_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -6786,11 +19839,11 @@ export const zDimTokenContractServiceListData = z.object({ export const zDimTokenContractServiceListResponse = zListDimTokenContractResponse; export const zDimTokenContractServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - contract_address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + contract_address: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -6799,42 +19852,163 @@ export const zDimTokenContractServiceGetData = z.object({ export const zDimTokenContractServiceGetResponse = zGetDimTokenContractResponse; export const zDimValidatorPubkeyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - pubkey_eq: z.optional(z.string()), - pubkey_ne: z.optional(z.string()), - pubkey_contains: z.optional(z.string()), - pubkey_starts_with: z.optional(z.string()), - pubkey_ends_with: z.optional(z.string()), - pubkey_like: z.optional(z.string()), - pubkey_not_like: z.optional(z.string()), - pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + pubkey_eq: z.optional(z.string()), + pubkey_ne: z.optional(z.string()), + pubkey_contains: z.optional(z.string()), + pubkey_starts_with: z.optional(z.string()), + pubkey_ends_with: z.optional(z.string()), + pubkey_like: z.optional(z.string()), + pubkey_not_like: z.optional(z.string()), + pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -6843,11 +20017,11 @@ export const zDimValidatorPubkeyServiceListData = z.object({ export const zDimValidatorPubkeyServiceListResponse = zListDimValidatorPubkeyResponse; export const zDimValidatorPubkeyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - pubkey: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + pubkey: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -6856,123 +20030,700 @@ export const zDimValidatorPubkeyServiceGetData = z.object({ export const zDimValidatorPubkeyServiceGetResponse = zGetDimValidatorPubkeyResponse; export const zDimValidatorStatusServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - version_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - version_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - version_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - version_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - version_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - version_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - version_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - version_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - version_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - version_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - pubkey_eq: z.optional(z.string()), - pubkey_ne: z.optional(z.string()), - pubkey_contains: z.optional(z.string()), - pubkey_starts_with: z.optional(z.string()), - pubkey_ends_with: z.optional(z.string()), - pubkey_like: z.optional(z.string()), - pubkey_not_like: z.optional(z.string()), - pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - activation_epoch_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_epoch_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_epoch_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_epoch_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_epoch_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_epoch_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_epoch_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_epoch_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - activation_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - activation_eligibility_epoch_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_eligibility_epoch_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_eligibility_epoch_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_eligibility_epoch_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_eligibility_epoch_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_eligibility_epoch_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_eligibility_epoch_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_eligibility_epoch_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - activation_eligibility_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - activation_eligibility_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - exit_epoch_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - exit_epoch_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - exit_epoch_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - exit_epoch_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - exit_epoch_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - exit_epoch_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - exit_epoch_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - exit_epoch_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - exit_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - exit_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - withdrawable_epoch_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - withdrawable_epoch_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - withdrawable_epoch_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - withdrawable_epoch_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - withdrawable_epoch_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - withdrawable_epoch_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - withdrawable_epoch_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - withdrawable_epoch_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - withdrawable_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - withdrawable_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slashed_eq: z.optional(z.boolean()), - slashed_ne: z.optional(z.boolean()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + version_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + version_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + version_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + version_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + version_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + version_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + version_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + version_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + version_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + version_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + pubkey_eq: z.optional(z.string()), + pubkey_ne: z.optional(z.string()), + pubkey_contains: z.optional(z.string()), + pubkey_starts_with: z.optional(z.string()), + pubkey_ends_with: z.optional(z.string()), + pubkey_like: z.optional(z.string()), + pubkey_not_like: z.optional(z.string()), + pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + activation_epoch_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_epoch_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_epoch_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_epoch_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_epoch_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_epoch_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_epoch_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_epoch_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + activation_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + activation_eligibility_epoch_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_eligibility_epoch_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_eligibility_epoch_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_eligibility_epoch_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_eligibility_epoch_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_eligibility_epoch_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_eligibility_epoch_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_eligibility_epoch_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + activation_eligibility_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + activation_eligibility_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + exit_epoch_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + exit_epoch_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + exit_epoch_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + exit_epoch_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + exit_epoch_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + exit_epoch_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + exit_epoch_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + exit_epoch_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + exit_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + exit_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + withdrawable_epoch_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + withdrawable_epoch_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + withdrawable_epoch_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + withdrawable_epoch_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + withdrawable_epoch_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + withdrawable_epoch_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + withdrawable_epoch_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + withdrawable_epoch_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + withdrawable_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + withdrawable_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slashed_eq: z.optional(z.boolean()), + slashed_ne: z.optional(z.boolean()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -6981,11 +20732,16 @@ export const zDimValidatorStatusServiceListData = z.object({ export const zDimValidatorStatusServiceListResponse = zListDimValidatorStatusResponse; export const zDimValidatorStatusServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -6993,346 +20749,2965 @@ export const zDimValidatorStatusServiceGetData = z.object({ */ export const zDimValidatorStatusServiceGetResponse = zGetDimValidatorStatusResponse; +export const zFctAttestationCorrectnessServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + votes_max_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_max_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_head_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_head_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_other_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_other_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctAttestationCorrectnessServiceListResponse = zListFctAttestationCorrectnessResponse; + +export const zFctAttestationCorrectnessServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctAttestationCorrectnessServiceGetResponse = zGetFctAttestationCorrectnessResponse; + +export const zFctAttestationCorrectnessByValidatorServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_distance_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + propagation_distance_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + propagation_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + inclusion_distance_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + inclusion_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctAttestationCorrectnessByValidatorServiceListResponse = + zListFctAttestationCorrectnessByValidatorResponse; + +export const zFctAttestationCorrectnessByValidatorServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctAttestationCorrectnessByValidatorServiceGetResponse = zGetFctAttestationCorrectnessByValidatorResponse; + export const zFctAttestationCorrectnessByValidatorCanonicalServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attesting_validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_distance_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - inclusion_distance_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - inclusion_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctAttestationCorrectnessByValidatorCanonicalServiceListResponse = zListFctAttestationCorrectnessByValidatorCanonicalResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_distance_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + inclusion_distance_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + inclusion_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctAttestationCorrectnessByValidatorCanonicalServiceListResponse = + zListFctAttestationCorrectnessByValidatorCanonicalResponse; export const zFctAttestationCorrectnessByValidatorCanonicalServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctAttestationCorrectnessByValidatorCanonicalServiceGetResponse = zGetFctAttestationCorrectnessByValidatorCanonicalResponse; +export const zFctAttestationCorrectnessByValidatorCanonicalServiceGetResponse = + zGetFctAttestationCorrectnessByValidatorCanonicalResponse; export const zFctAttestationCorrectnessByValidatorHeadServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attesting_validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_distance_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - propagation_distance_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - propagation_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctAttestationCorrectnessByValidatorHeadServiceListResponse = zListFctAttestationCorrectnessByValidatorHeadResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_distance_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + propagation_distance_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + propagation_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctAttestationCorrectnessByValidatorHeadServiceListResponse = + zListFctAttestationCorrectnessByValidatorHeadResponse; export const zFctAttestationCorrectnessByValidatorHeadServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctAttestationCorrectnessByValidatorHeadServiceGetResponse = zGetFctAttestationCorrectnessByValidatorHeadResponse; +export const zFctAttestationCorrectnessByValidatorHeadServiceGetResponse = + zGetFctAttestationCorrectnessByValidatorHeadResponse; export const zFctAttestationCorrectnessCanonicalServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - votes_max_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - votes_max_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - votes_head_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - votes_head_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - votes_other_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - votes_other_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + votes_max_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_max_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_head_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_head_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_other_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_other_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -7341,11 +23716,16 @@ export const zFctAttestationCorrectnessCanonicalServiceListData = z.object({ export const zFctAttestationCorrectnessCanonicalServiceListResponse = zListFctAttestationCorrectnessCanonicalResponse; export const zFctAttestationCorrectnessCanonicalServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -7354,102 +23734,559 @@ export const zFctAttestationCorrectnessCanonicalServiceGetData = z.object({ export const zFctAttestationCorrectnessCanonicalServiceGetResponse = zGetFctAttestationCorrectnessCanonicalResponse; export const zFctAttestationCorrectnessHeadServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - votes_max_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_max_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - votes_max_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - votes_head_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_head_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - votes_head_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - votes_other_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - votes_other_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - votes_other_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + votes_max_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_max_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_max_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_head_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_head_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_head_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_other_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + votes_other_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + votes_other_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -7458,11 +24295,16 @@ export const zFctAttestationCorrectnessHeadServiceListData = z.object({ export const zFctAttestationCorrectnessHeadServiceListResponse = zListFctAttestationCorrectnessHeadResponse; export const zFctAttestationCorrectnessHeadServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -7471,167 +24313,736 @@ export const zFctAttestationCorrectnessHeadServiceGetData = z.object({ export const zFctAttestationCorrectnessHeadServiceGetResponse = zGetFctAttestationCorrectnessHeadResponse; export const zFctAttestationFirstSeenByValidatorServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_root_eq: z.optional(z.string()), - source_root_ne: z.optional(z.string()), - source_root_contains: z.optional(z.string()), - source_root_starts_with: z.optional(z.string()), - source_root_ends_with: z.optional(z.string()), - source_root_like: z.optional(z.string()), - source_root_not_like: z.optional(z.string()), - source_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - target_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_root_eq: z.optional(z.string()), - target_root_ne: z.optional(z.string()), - target_root_contains: z.optional(z.string()), - target_root_starts_with: z.optional(z.string()), - target_root_ends_with: z.optional(z.string()), - target_root_like: z.optional(z.string()), - target_root_not_like: z.optional(z.string()), - target_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - target_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - committee_index_eq: z.optional(z.string()), - committee_index_ne: z.optional(z.string()), - committee_index_contains: z.optional(z.string()), - committee_index_starts_with: z.optional(z.string()), - committee_index_ends_with: z.optional(z.string()), - committee_index_like: z.optional(z.string()), - committee_index_not_like: z.optional(z.string()), - committee_index_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - committee_index_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - raw_seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - raw_seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - raw_seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - raw_seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - raw_seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - raw_seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - raw_seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - raw_seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - raw_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - raw_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - raw_source_eq: z.optional(z.string()), - raw_source_ne: z.optional(z.string()), - raw_source_contains: z.optional(z.string()), - raw_source_starts_with: z.optional(z.string()), - raw_source_ends_with: z.optional(z.string()), - raw_source_like: z.optional(z.string()), - raw_source_not_like: z.optional(z.string()), - raw_source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - raw_source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - agg_seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - agg_seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - agg_seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - agg_seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - agg_seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - agg_seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - agg_seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - agg_seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - agg_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - agg_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - agg_source_eq: z.optional(z.string()), - agg_source_ne: z.optional(z.string()), - agg_source_contains: z.optional(z.string()), - agg_source_starts_with: z.optional(z.string()), - agg_source_ends_with: z.optional(z.string()), - agg_source_like: z.optional(z.string()), - agg_source_not_like: z.optional(z.string()), - agg_source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - agg_source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_root_eq: z.optional(z.string()), + source_root_ne: z.optional(z.string()), + source_root_contains: z.optional(z.string()), + source_root_starts_with: z.optional(z.string()), + source_root_ends_with: z.optional(z.string()), + source_root_like: z.optional(z.string()), + source_root_not_like: z.optional(z.string()), + source_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_root_eq: z.optional(z.string()), + target_root_ne: z.optional(z.string()), + target_root_contains: z.optional(z.string()), + target_root_starts_with: z.optional(z.string()), + target_root_ends_with: z.optional(z.string()), + target_root_like: z.optional(z.string()), + target_root_not_like: z.optional(z.string()), + target_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + committee_index_eq: z.optional(z.string()), + committee_index_ne: z.optional(z.string()), + committee_index_contains: z.optional(z.string()), + committee_index_starts_with: z.optional(z.string()), + committee_index_ends_with: z.optional(z.string()), + committee_index_like: z.optional(z.string()), + committee_index_not_like: z.optional(z.string()), + committee_index_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + committee_index_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + raw_seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + raw_seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + raw_seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + raw_seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + raw_seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + raw_seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + raw_seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + raw_seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + raw_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + raw_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + raw_source_eq: z.optional(z.string()), + raw_source_ne: z.optional(z.string()), + raw_source_contains: z.optional(z.string()), + raw_source_starts_with: z.optional(z.string()), + raw_source_ends_with: z.optional(z.string()), + raw_source_like: z.optional(z.string()), + raw_source_not_like: z.optional(z.string()), + raw_source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + raw_source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + agg_seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + agg_seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + agg_seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + agg_seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + agg_seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + agg_seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + agg_seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + agg_seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + agg_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + agg_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + agg_source_eq: z.optional(z.string()), + agg_source_ne: z.optional(z.string()), + agg_source_contains: z.optional(z.string()), + agg_source_starts_with: z.optional(z.string()), + agg_source_ends_with: z.optional(z.string()), + agg_source_like: z.optional(z.string()), + agg_source_not_like: z.optional(z.string()), + agg_source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + agg_source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -7640,11 +25051,16 @@ export const zFctAttestationFirstSeenByValidatorServiceListData = z.object({ export const zFctAttestationFirstSeenByValidatorServiceListResponse = zListFctAttestationFirstSeenByValidatorResponse; export const zFctAttestationFirstSeenByValidatorServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -7653,92 +25069,493 @@ export const zFctAttestationFirstSeenByValidatorServiceGetData = z.object({ export const zFctAttestationFirstSeenByValidatorServiceGetResponse = zGetFctAttestationFirstSeenByValidatorResponse; export const zFctAttestationFirstSeenChunked50MsServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - chunk_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - chunk_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - chunk_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - chunk_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - chunk_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - chunk_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - chunk_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - chunk_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - chunk_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - chunk_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attestation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attestation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + chunk_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + chunk_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attestation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attestation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -7747,11 +25564,16 @@ export const zFctAttestationFirstSeenChunked50MsServiceListData = z.object({ export const zFctAttestationFirstSeenChunked50MsServiceListResponse = zListFctAttestationFirstSeenChunked50MsResponse; export const zFctAttestationFirstSeenChunked50MsServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -7760,52 +25582,173 @@ export const zFctAttestationFirstSeenChunked50MsServiceGetData = z.object({ export const zFctAttestationFirstSeenChunked50MsServiceGetResponse = zGetFctAttestationFirstSeenChunked50MsResponse; export const zFctAttestationInclusionDelayDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_inclusion_delay_value: z.optional(z.number()), - min_inclusion_delay_value: z.optional(z.number()), - max_inclusion_delay_value: z.optional(z.number()), - p05_inclusion_delay_value: z.optional(z.number()), - p50_inclusion_delay_value: z.optional(z.number()), - p95_inclusion_delay_value: z.optional(z.number()), - stddev_inclusion_delay_value: z.optional(z.number()), - upper_band_inclusion_delay_value: z.optional(z.number()), - lower_band_inclusion_delay_value: z.optional(z.number()), - moving_avg_inclusion_delay_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_inclusion_delay_value: z.optional(z.number()), + min_inclusion_delay_value: z.optional(z.number()), + max_inclusion_delay_value: z.optional(z.number()), + p05_inclusion_delay_value: z.optional(z.number()), + p50_inclusion_delay_value: z.optional(z.number()), + p95_inclusion_delay_value: z.optional(z.number()), + stddev_inclusion_delay_value: z.optional(z.number()), + upper_band_inclusion_delay_value: z.optional(z.number()), + lower_band_inclusion_delay_value: z.optional(z.number()), + moving_avg_inclusion_delay_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -7814,11 +25757,11 @@ export const zFctAttestationInclusionDelayDailyServiceListData = z.object({ export const zFctAttestationInclusionDelayDailyServiceListResponse = zListFctAttestationInclusionDelayDailyResponse; export const zFctAttestationInclusionDelayDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -7827,53 +25770,230 @@ export const zFctAttestationInclusionDelayDailyServiceGetData = z.object({ export const zFctAttestationInclusionDelayDailyServiceGetResponse = zGetFctAttestationInclusionDelayDailyResponse; export const zFctAttestationInclusionDelayHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_inclusion_delay_value: z.optional(z.number()), - min_inclusion_delay_value: z.optional(z.number()), - max_inclusion_delay_value: z.optional(z.number()), - p05_inclusion_delay_value: z.optional(z.number()), - p50_inclusion_delay_value: z.optional(z.number()), - p95_inclusion_delay_value: z.optional(z.number()), - stddev_inclusion_delay_value: z.optional(z.number()), - upper_band_inclusion_delay_value: z.optional(z.number()), - lower_band_inclusion_delay_value: z.optional(z.number()), - moving_avg_inclusion_delay_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_inclusion_delay_value: z.optional(z.number()), + min_inclusion_delay_value: z.optional(z.number()), + max_inclusion_delay_value: z.optional(z.number()), + p05_inclusion_delay_value: z.optional(z.number()), + p50_inclusion_delay_value: z.optional(z.number()), + p95_inclusion_delay_value: z.optional(z.number()), + stddev_inclusion_delay_value: z.optional(z.number()), + upper_band_inclusion_delay_value: z.optional(z.number()), + lower_band_inclusion_delay_value: z.optional(z.number()), + moving_avg_inclusion_delay_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -7882,11 +26002,16 @@ export const zFctAttestationInclusionDelayHourlyServiceListData = z.object({ export const zFctAttestationInclusionDelayHourlyServiceListResponse = zListFctAttestationInclusionDelayHourlyResponse; export const zFctAttestationInclusionDelayHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -7894,93 +26019,1007 @@ export const zFctAttestationInclusionDelayHourlyServiceGetData = z.object({ */ export const zFctAttestationInclusionDelayHourlyServiceGetResponse = zGetFctAttestationInclusionDelayHourlyResponse; +export const zFctAttestationLivenessByEntityServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + entity_eq: z.optional(z.string()), + entity_ne: z.optional(z.string()), + entity_contains: z.optional(z.string()), + entity_starts_with: z.optional(z.string()), + entity_ends_with: z.optional(z.string()), + entity_like: z.optional(z.string()), + entity_not_like: z.optional(z.string()), + entity_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + entity_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attestation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attestation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctAttestationLivenessByEntityServiceListResponse = zListFctAttestationLivenessByEntityResponse; + +export const zFctAttestationLivenessByEntityServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctAttestationLivenessByEntityServiceGetResponse = zGetFctAttestationLivenessByEntityResponse; + export const zFctAttestationLivenessByEntityHeadServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - entity_eq: z.optional(z.string()), - entity_ne: z.optional(z.string()), - entity_contains: z.optional(z.string()), - entity_starts_with: z.optional(z.string()), - entity_ends_with: z.optional(z.string()), - entity_like: z.optional(z.string()), - entity_not_like: z.optional(z.string()), - entity_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - entity_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attestation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attestation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + entity_eq: z.optional(z.string()), + entity_ne: z.optional(z.string()), + entity_contains: z.optional(z.string()), + entity_starts_with: z.optional(z.string()), + entity_ends_with: z.optional(z.string()), + entity_like: z.optional(z.string()), + entity_not_like: z.optional(z.string()), + entity_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + entity_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attestation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attestation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -7989,11 +27028,16 @@ export const zFctAttestationLivenessByEntityHeadServiceListData = z.object({ export const zFctAttestationLivenessByEntityHeadServiceListResponse = zListFctAttestationLivenessByEntityHeadResponse; export const zFctAttestationLivenessByEntityHeadServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -8002,251 +27046,880 @@ export const zFctAttestationLivenessByEntityHeadServiceGetData = z.object({ export const zFctAttestationLivenessByEntityHeadServiceGetResponse = zGetFctAttestationLivenessByEntityHeadResponse; export const zFctAttestationObservationByNodeServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attestation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attestation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attestation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - median_seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - median_seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - median_seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - median_seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - median_seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - median_seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - median_seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - median_seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - median_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - median_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - username_eq: z.optional(z.string()), - username_ne: z.optional(z.string()), - username_contains: z.optional(z.string()), - username_starts_with: z.optional(z.string()), - username_ends_with: z.optional(z.string()), - username_like: z.optional(z.string()), - username_not_like: z.optional(z.string()), - username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_eq: z.optional(z.string()), - node_id_ne: z.optional(z.string()), - node_id_contains: z.optional(z.string()), - node_id_starts_with: z.optional(z.string()), - node_id_ends_with: z.optional(z.string()), - node_id_like: z.optional(z.string()), - node_id_not_like: z.optional(z.string()), - node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_eq: z.optional(z.string()), - classification_ne: z.optional(z.string()), - classification_contains: z.optional(z.string()), - classification_starts_with: z.optional(z.string()), - classification_ends_with: z.optional(z.string()), - classification_like: z.optional(z.string()), - classification_not_like: z.optional(z.string()), - classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_eq: z.optional(z.string()), - meta_client_geo_continent_code_ne: z.optional(z.string()), - meta_client_geo_continent_code_contains: z.optional(z.string()), - meta_client_geo_continent_code_starts_with: z.optional(z.string()), - meta_client_geo_continent_code_ends_with: z.optional(z.string()), - meta_client_geo_continent_code_like: z.optional(z.string()), - meta_client_geo_continent_code_not_like: z.optional(z.string()), - meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_longitude_value: z.optional(z.number()), - meta_client_geo_latitude_value: z.optional(z.number()), - meta_client_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_eq: z.optional(z.string()), - meta_consensus_version_ne: z.optional(z.string()), - meta_consensus_version_contains: z.optional(z.string()), - meta_consensus_version_starts_with: z.optional(z.string()), - meta_consensus_version_ends_with: z.optional(z.string()), - meta_consensus_version_like: z.optional(z.string()), - meta_consensus_version_not_like: z.optional(z.string()), - meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_eq: z.optional(z.string()), - meta_consensus_implementation_ne: z.optional(z.string()), - meta_consensus_implementation_contains: z.optional(z.string()), - meta_consensus_implementation_starts_with: z.optional(z.string()), - meta_consensus_implementation_ends_with: z.optional(z.string()), - meta_consensus_implementation_like: z.optional(z.string()), - meta_consensus_implementation_not_like: z.optional(z.string()), - meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attestation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attestation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + median_seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + median_seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + median_seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + median_seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + median_seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + median_seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + median_seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + median_seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + median_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + median_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_eq: z.optional(z.string()), + username_ne: z.optional(z.string()), + username_contains: z.optional(z.string()), + username_starts_with: z.optional(z.string()), + username_ends_with: z.optional(z.string()), + username_like: z.optional(z.string()), + username_not_like: z.optional(z.string()), + username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_eq: z.optional(z.string()), + node_id_ne: z.optional(z.string()), + node_id_contains: z.optional(z.string()), + node_id_starts_with: z.optional(z.string()), + node_id_ends_with: z.optional(z.string()), + node_id_like: z.optional(z.string()), + node_id_not_like: z.optional(z.string()), + node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_eq: z.optional(z.string()), + classification_ne: z.optional(z.string()), + classification_contains: z.optional(z.string()), + classification_starts_with: z.optional(z.string()), + classification_ends_with: z.optional(z.string()), + classification_like: z.optional(z.string()), + classification_not_like: z.optional(z.string()), + classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_consensus_version_eq: z.optional(z.string()), + meta_consensus_version_ne: z.optional(z.string()), + meta_consensus_version_contains: z.optional(z.string()), + meta_consensus_version_starts_with: z.optional(z.string()), + meta_consensus_version_ends_with: z.optional(z.string()), + meta_consensus_version_like: z.optional(z.string()), + meta_consensus_version_not_like: z.optional(z.string()), + meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_eq: z.optional(z.string()), + meta_consensus_implementation_ne: z.optional(z.string()), + meta_consensus_implementation_contains: z.optional(z.string()), + meta_consensus_implementation_starts_with: z.optional(z.string()), + meta_consensus_implementation_ends_with: z.optional(z.string()), + meta_consensus_implementation_like: z.optional(z.string()), + meta_consensus_implementation_not_like: z.optional(z.string()), + meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -8255,11 +27928,16 @@ export const zFctAttestationObservationByNodeServiceListData = z.object({ export const zFctAttestationObservationByNodeServiceListResponse = zListFctAttestationObservationByNodeResponse; export const zFctAttestationObservationByNodeServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -8268,65 +27946,187 @@ export const zFctAttestationObservationByNodeServiceGetData = z.object({ export const zFctAttestationObservationByNodeServiceGetResponse = zGetFctAttestationObservationByNodeResponse; export const zFctAttestationParticipationRateDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_participation_rate_value: z.optional(z.number()), - min_participation_rate_value: z.optional(z.number()), - max_participation_rate_value: z.optional(z.number()), - p05_participation_rate_value: z.optional(z.number()), - p50_participation_rate_value: z.optional(z.number()), - p95_participation_rate_value: z.optional(z.number()), - stddev_participation_rate_value: z.optional(z.number()), - upper_band_participation_rate_value: z.optional(z.number()), - lower_band_participation_rate_value: z.optional(z.number()), - moving_avg_participation_rate_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctAttestationParticipationRateDailyServiceListResponse = zListFctAttestationParticipationRateDailyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_participation_rate_value: z.optional(z.number()), + min_participation_rate_value: z.optional(z.number()), + max_participation_rate_value: z.optional(z.number()), + p05_participation_rate_value: z.optional(z.number()), + p50_participation_rate_value: z.optional(z.number()), + p95_participation_rate_value: z.optional(z.number()), + stddev_participation_rate_value: z.optional(z.number()), + upper_band_participation_rate_value: z.optional(z.number()), + lower_band_participation_rate_value: z.optional(z.number()), + moving_avg_participation_rate_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctAttestationParticipationRateDailyServiceListResponse = + zListFctAttestationParticipationRateDailyResponse; export const zFctAttestationParticipationRateDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -8335,471 +28135,2256 @@ export const zFctAttestationParticipationRateDailyServiceGetData = z.object({ export const zFctAttestationParticipationRateDailyServiceGetResponse = zGetFctAttestationParticipationRateDailyResponse; export const zFctAttestationParticipationRateHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_participation_rate_value: z.optional(z.number()), - min_participation_rate_value: z.optional(z.number()), - max_participation_rate_value: z.optional(z.number()), - p05_participation_rate_value: z.optional(z.number()), - p50_participation_rate_value: z.optional(z.number()), - p95_participation_rate_value: z.optional(z.number()), - stddev_participation_rate_value: z.optional(z.number()), - upper_band_participation_rate_value: z.optional(z.number()), - lower_band_participation_rate_value: z.optional(z.number()), - moving_avg_participation_rate_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctAttestationParticipationRateHourlyServiceListResponse = zListFctAttestationParticipationRateHourlyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_participation_rate_value: z.optional(z.number()), + min_participation_rate_value: z.optional(z.number()), + max_participation_rate_value: z.optional(z.number()), + p05_participation_rate_value: z.optional(z.number()), + p50_participation_rate_value: z.optional(z.number()), + p95_participation_rate_value: z.optional(z.number()), + stddev_participation_rate_value: z.optional(z.number()), + upper_band_participation_rate_value: z.optional(z.number()), + lower_band_participation_rate_value: z.optional(z.number()), + moving_avg_participation_rate_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctAttestationParticipationRateHourlyServiceListResponse = + zListFctAttestationParticipationRateHourlyResponse; export const zFctAttestationParticipationRateHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctAttestationParticipationRateHourlyServiceGetResponse = zGetFctAttestationParticipationRateHourlyResponse; +export const zFctAttestationParticipationRateHourlyServiceGetResponse = + zGetFctAttestationParticipationRateHourlyResponse; export const zFctAttestationVoteCorrectnessByValidatorServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attested_eq: z.optional(z.boolean()), - attested_ne: z.optional(z.boolean()), - head_correct_eq: z.optional(z.boolean()), - head_correct_ne: z.optional(z.boolean()), - target_correct_eq: z.optional(z.boolean()), - target_correct_ne: z.optional(z.boolean()), - source_correct_eq: z.optional(z.boolean()), - source_correct_ne: z.optional(z.boolean()), - inclusion_distance_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - inclusion_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctAttestationVoteCorrectnessByValidatorServiceListResponse = zListFctAttestationVoteCorrectnessByValidatorResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attested_eq: z.optional(z.boolean()), + attested_ne: z.optional(z.boolean()), + head_correct_eq: z.optional(z.boolean()), + head_correct_ne: z.optional(z.boolean()), + target_correct_eq: z.optional(z.boolean()), + target_correct_ne: z.optional(z.boolean()), + source_correct_eq: z.optional(z.boolean()), + source_correct_ne: z.optional(z.boolean()), + inclusion_distance_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + inclusion_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctAttestationVoteCorrectnessByValidatorServiceListResponse = + zListFctAttestationVoteCorrectnessByValidatorResponse; export const zFctAttestationVoteCorrectnessByValidatorServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctAttestationVoteCorrectnessByValidatorServiceGetResponse = zGetFctAttestationVoteCorrectnessByValidatorResponse; +export const zFctAttestationVoteCorrectnessByValidatorServiceGetResponse = + zGetFctAttestationVoteCorrectnessByValidatorResponse; export const zFctAttestationVoteCorrectnessByValidatorDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_duties_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_duties_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attested_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attested_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - head_correct_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - head_correct_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_correct_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_correct_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_correct_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_correct_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_inclusion_distance_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctAttestationVoteCorrectnessByValidatorDailyServiceListResponse = zListFctAttestationVoteCorrectnessByValidatorDailyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_duties_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_duties_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attested_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attested_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + head_correct_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + head_correct_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_correct_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_correct_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_correct_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_correct_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_inclusion_distance_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctAttestationVoteCorrectnessByValidatorDailyServiceListResponse = + zListFctAttestationVoteCorrectnessByValidatorDailyResponse; export const zFctAttestationVoteCorrectnessByValidatorDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse = zGetFctAttestationVoteCorrectnessByValidatorDailyResponse; +export const zFctAttestationVoteCorrectnessByValidatorDailyServiceGetResponse = + zGetFctAttestationVoteCorrectnessByValidatorDailyResponse; export const zFctAttestationVoteCorrectnessByValidatorHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_duties_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_duties_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_duties_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attested_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attested_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attested_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - head_correct_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - head_correct_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - head_correct_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_correct_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_correct_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_correct_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_correct_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_correct_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_correct_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_inclusion_distance_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse = zListFctAttestationVoteCorrectnessByValidatorHourlyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_duties_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_duties_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_duties_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attested_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attested_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attested_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + head_correct_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + head_correct_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + head_correct_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_correct_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_correct_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_correct_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_correct_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_correct_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_correct_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_inclusion_distance_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctAttestationVoteCorrectnessByValidatorHourlyServiceListResponse = + zListFctAttestationVoteCorrectnessByValidatorHourlyResponse; export const zFctAttestationVoteCorrectnessByValidatorHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse = zGetFctAttestationVoteCorrectnessByValidatorHourlyResponse; +export const zFctAttestationVoteCorrectnessByValidatorHourlyServiceGetResponse = + zGetFctAttestationVoteCorrectnessByValidatorHourlyResponse; export const zFctBlobCountDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_blobs_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_blobs_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_blob_count_value: z.optional(z.number()), - min_blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_blob_count_value: z.optional(z.number()), - p50_blob_count_value: z.optional(z.number()), - p95_blob_count_value: z.optional(z.number()), - stddev_blob_count_value: z.optional(z.number()), - upper_band_blob_count_value: z.optional(z.number()), - lower_band_blob_count_value: z.optional(z.number()), - moving_avg_blob_count_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_blobs_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_blobs_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_blob_count_value: z.optional(z.number()), + min_blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_blob_count_value: z.optional(z.number()), + p50_blob_count_value: z.optional(z.number()), + p95_blob_count_value: z.optional(z.number()), + stddev_blob_count_value: z.optional(z.number()), + upper_band_blob_count_value: z.optional(z.number()), + lower_band_blob_count_value: z.optional(z.number()), + moving_avg_blob_count_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -8808,11 +30393,11 @@ export const zFctBlobCountDailyServiceListData = z.object({ export const zFctBlobCountDailyServiceListResponse = zListFctBlobCountDailyResponse; export const zFctBlobCountDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -8821,81 +30406,442 @@ export const zFctBlobCountDailyServiceGetData = z.object({ export const zFctBlobCountDailyServiceGetResponse = zGetFctBlobCountDailyResponse; export const zFctBlobCountHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_blobs_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_blobs_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_blobs_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_blob_count_value: z.optional(z.number()), - min_blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_blob_count_value: z.optional(z.number()), - p50_blob_count_value: z.optional(z.number()), - p95_blob_count_value: z.optional(z.number()), - stddev_blob_count_value: z.optional(z.number()), - upper_band_blob_count_value: z.optional(z.number()), - lower_band_blob_count_value: z.optional(z.number()), - moving_avg_blob_count_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_blobs_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_blobs_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_blobs_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_blob_count_value: z.optional(z.number()), + min_blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_blob_count_value: z.optional(z.number()), + p50_blob_count_value: z.optional(z.number()), + p95_blob_count_value: z.optional(z.number()), + stddev_blob_count_value: z.optional(z.number()), + upper_band_blob_count_value: z.optional(z.number()), + lower_band_blob_count_value: z.optional(z.number()), + moving_avg_blob_count_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -8904,11 +30850,16 @@ export const zFctBlobCountHourlyServiceListData = z.object({ export const zFctBlobCountHourlyServiceListResponse = zListFctBlobCountHourlyResponse; export const zFctBlobCountHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -8917,281 +30868,1254 @@ export const zFctBlobCountHourlyServiceGetData = z.object({ export const zFctBlobCountHourlyServiceGetResponse = zGetFctBlobCountHourlyResponse; export const zFctBlockServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_version_eq: z.optional(z.string()), - block_version_ne: z.optional(z.string()), - block_version_contains: z.optional(z.string()), - block_version_starts_with: z.optional(z.string()), - block_version_ends_with: z.optional(z.string()), - block_version_like: z.optional(z.string()), - block_version_not_like: z.optional(z.string()), - block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_total_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_compressed_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - parent_root_eq: z.optional(z.string()), - parent_root_ne: z.optional(z.string()), - parent_root_contains: z.optional(z.string()), - parent_root_starts_with: z.optional(z.string()), - parent_root_ends_with: z.optional(z.string()), - parent_root_like: z.optional(z.string()), - parent_root_not_like: z.optional(z.string()), - parent_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - parent_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - state_root_eq: z.optional(z.string()), - state_root_ne: z.optional(z.string()), - state_root_contains: z.optional(z.string()), - state_root_starts_with: z.optional(z.string()), - state_root_ends_with: z.optional(z.string()), - state_root_like: z.optional(z.string()), - state_root_not_like: z.optional(z.string()), - state_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - state_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - eth1_data_block_hash_eq: z.optional(z.string()), - eth1_data_block_hash_ne: z.optional(z.string()), - eth1_data_block_hash_contains: z.optional(z.string()), - eth1_data_block_hash_starts_with: z.optional(z.string()), - eth1_data_block_hash_ends_with: z.optional(z.string()), - eth1_data_block_hash_like: z.optional(z.string()), - eth1_data_block_hash_not_like: z.optional(z.string()), - eth1_data_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - eth1_data_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - eth1_data_deposit_root_eq: z.optional(z.string()), - eth1_data_deposit_root_ne: z.optional(z.string()), - eth1_data_deposit_root_contains: z.optional(z.string()), - eth1_data_deposit_root_starts_with: z.optional(z.string()), - eth1_data_deposit_root_ends_with: z.optional(z.string()), - eth1_data_deposit_root_like: z.optional(z.string()), - eth1_data_deposit_root_not_like: z.optional(z.string()), - eth1_data_deposit_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - eth1_data_deposit_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_block_hash_eq: z.optional(z.string()), - execution_payload_block_hash_ne: z.optional(z.string()), - execution_payload_block_hash_contains: z.optional(z.string()), - execution_payload_block_hash_starts_with: z.optional(z.string()), - execution_payload_block_hash_ends_with: z.optional(z.string()), - execution_payload_block_hash_like: z.optional(z.string()), - execution_payload_block_hash_not_like: z.optional(z.string()), - execution_payload_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_fee_recipient_eq: z.optional(z.string()), - execution_payload_fee_recipient_ne: z.optional(z.string()), - execution_payload_fee_recipient_contains: z.optional(z.string()), - execution_payload_fee_recipient_starts_with: z.optional(z.string()), - execution_payload_fee_recipient_ends_with: z.optional(z.string()), - execution_payload_fee_recipient_like: z.optional(z.string()), - execution_payload_fee_recipient_not_like: z.optional(z.string()), - execution_payload_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_base_fee_per_gas_eq: z.optional(z.string()), - execution_payload_base_fee_per_gas_ne: z.optional(z.string()), - execution_payload_base_fee_per_gas_contains: z.optional(z.string()), - execution_payload_base_fee_per_gas_starts_with: z.optional(z.string()), - execution_payload_base_fee_per_gas_ends_with: z.optional(z.string()), - execution_payload_base_fee_per_gas_like: z.optional(z.string()), - execution_payload_base_fee_per_gas_not_like: z.optional(z.string()), - execution_payload_base_fee_per_gas_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_base_fee_per_gas_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_blob_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_blob_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_excess_blob_gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_excess_blob_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_state_root_eq: z.optional(z.string()), - execution_payload_state_root_ne: z.optional(z.string()), - execution_payload_state_root_contains: z.optional(z.string()), - execution_payload_state_root_starts_with: z.optional(z.string()), - execution_payload_state_root_ends_with: z.optional(z.string()), - execution_payload_state_root_like: z.optional(z.string()), - execution_payload_state_root_not_like: z.optional(z.string()), - execution_payload_state_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_state_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_parent_hash_eq: z.optional(z.string()), - execution_payload_parent_hash_ne: z.optional(z.string()), - execution_payload_parent_hash_contains: z.optional(z.string()), - execution_payload_parent_hash_starts_with: z.optional(z.string()), - execution_payload_parent_hash_ends_with: z.optional(z.string()), - execution_payload_parent_hash_like: z.optional(z.string()), - execution_payload_parent_hash_not_like: z.optional(z.string()), - execution_payload_parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_transactions_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_compressed_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_version_eq: z.optional(z.string()), + block_version_ne: z.optional(z.string()), + block_version_contains: z.optional(z.string()), + block_version_starts_with: z.optional(z.string()), + block_version_ends_with: z.optional(z.string()), + block_version_like: z.optional(z.string()), + block_version_not_like: z.optional(z.string()), + block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_total_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_compressed_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + parent_root_eq: z.optional(z.string()), + parent_root_ne: z.optional(z.string()), + parent_root_contains: z.optional(z.string()), + parent_root_starts_with: z.optional(z.string()), + parent_root_ends_with: z.optional(z.string()), + parent_root_like: z.optional(z.string()), + parent_root_not_like: z.optional(z.string()), + parent_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + state_root_eq: z.optional(z.string()), + state_root_ne: z.optional(z.string()), + state_root_contains: z.optional(z.string()), + state_root_starts_with: z.optional(z.string()), + state_root_ends_with: z.optional(z.string()), + state_root_like: z.optional(z.string()), + state_root_not_like: z.optional(z.string()), + state_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + state_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + eth1_data_block_hash_eq: z.optional(z.string()), + eth1_data_block_hash_ne: z.optional(z.string()), + eth1_data_block_hash_contains: z.optional(z.string()), + eth1_data_block_hash_starts_with: z.optional(z.string()), + eth1_data_block_hash_ends_with: z.optional(z.string()), + eth1_data_block_hash_like: z.optional(z.string()), + eth1_data_block_hash_not_like: z.optional(z.string()), + eth1_data_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + eth1_data_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + eth1_data_deposit_root_eq: z.optional(z.string()), + eth1_data_deposit_root_ne: z.optional(z.string()), + eth1_data_deposit_root_contains: z.optional(z.string()), + eth1_data_deposit_root_starts_with: z.optional(z.string()), + eth1_data_deposit_root_ends_with: z.optional(z.string()), + eth1_data_deposit_root_like: z.optional(z.string()), + eth1_data_deposit_root_not_like: z.optional(z.string()), + eth1_data_deposit_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + eth1_data_deposit_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_block_hash_eq: z.optional(z.string()), + execution_payload_block_hash_ne: z.optional(z.string()), + execution_payload_block_hash_contains: z.optional(z.string()), + execution_payload_block_hash_starts_with: z.optional(z.string()), + execution_payload_block_hash_ends_with: z.optional(z.string()), + execution_payload_block_hash_like: z.optional(z.string()), + execution_payload_block_hash_not_like: z.optional(z.string()), + execution_payload_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_fee_recipient_eq: z.optional(z.string()), + execution_payload_fee_recipient_ne: z.optional(z.string()), + execution_payload_fee_recipient_contains: z.optional(z.string()), + execution_payload_fee_recipient_starts_with: z.optional(z.string()), + execution_payload_fee_recipient_ends_with: z.optional(z.string()), + execution_payload_fee_recipient_like: z.optional(z.string()), + execution_payload_fee_recipient_not_like: z.optional(z.string()), + execution_payload_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_base_fee_per_gas_eq: z.optional(z.string()), + execution_payload_base_fee_per_gas_ne: z.optional(z.string()), + execution_payload_base_fee_per_gas_contains: z.optional(z.string()), + execution_payload_base_fee_per_gas_starts_with: z.optional(z.string()), + execution_payload_base_fee_per_gas_ends_with: z.optional(z.string()), + execution_payload_base_fee_per_gas_like: z.optional(z.string()), + execution_payload_base_fee_per_gas_not_like: z.optional(z.string()), + execution_payload_base_fee_per_gas_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_base_fee_per_gas_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_blob_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_blob_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_excess_blob_gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_excess_blob_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_state_root_eq: z.optional(z.string()), + execution_payload_state_root_ne: z.optional(z.string()), + execution_payload_state_root_contains: z.optional(z.string()), + execution_payload_state_root_starts_with: z.optional(z.string()), + execution_payload_state_root_ends_with: z.optional(z.string()), + execution_payload_state_root_like: z.optional(z.string()), + execution_payload_state_root_not_like: z.optional(z.string()), + execution_payload_state_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_state_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_parent_hash_eq: z.optional(z.string()), + execution_payload_parent_hash_ne: z.optional(z.string()), + execution_payload_parent_hash_contains: z.optional(z.string()), + execution_payload_parent_hash_starts_with: z.optional(z.string()), + execution_payload_parent_hash_ends_with: z.optional(z.string()), + execution_payload_parent_hash_like: z.optional(z.string()), + execution_payload_parent_hash_not_like: z.optional(z.string()), + execution_payload_parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_transactions_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_total_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_total_bytes_compressed_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_in_values: z.optional( + z.string().check(z.regex(/^\d+(,\d+)*$/)) + ), + execution_payload_transactions_total_bytes_compressed_not_in_values: z.optional( + z.string().check(z.regex(/^\d+(,\d+)*$/)) + ), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -9200,11 +32124,16 @@ export const zFctBlockServiceListData = z.object({ export const zFctBlockServiceListResponse = zListFctBlockResponse; export const zFctBlockServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -9213,91 +32142,436 @@ export const zFctBlockServiceGetData = z.object({ export const zFctBlockServiceGetResponse = zGetFctBlockResponse; export const zFctBlockBlobCountServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -9306,11 +32580,16 @@ export const zFctBlockBlobCountServiceListData = z.object({ export const zFctBlockBlobCountServiceListResponse = zListFctBlockBlobCountResponse; export const zFctBlockBlobCountServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -9319,82 +32598,427 @@ export const zFctBlockBlobCountServiceGetData = z.object({ export const zFctBlockBlobCountServiceGetResponse = zGetFctBlockBlobCountResponse; export const zFctBlockBlobCountHeadServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -9403,11 +33027,16 @@ export const zFctBlockBlobCountHeadServiceListData = z.object({ export const zFctBlockBlobCountHeadServiceListResponse = zListFctBlockBlobCountHeadResponse; export const zFctBlockBlobCountHeadServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -9416,230 +33045,691 @@ export const zFctBlockBlobCountHeadServiceGetData = z.object({ export const zFctBlockBlobCountHeadServiceGetResponse = zGetFctBlockBlobCountHeadResponse; export const zFctBlockBlobFirstSeenByNodeServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - blob_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_eq: z.optional(z.string()), - source_ne: z.optional(z.string()), - source_contains: z.optional(z.string()), - source_starts_with: z.optional(z.string()), - source_ends_with: z.optional(z.string()), - source_like: z.optional(z.string()), - source_not_like: z.optional(z.string()), - source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - username_eq: z.optional(z.string()), - username_ne: z.optional(z.string()), - username_contains: z.optional(z.string()), - username_starts_with: z.optional(z.string()), - username_ends_with: z.optional(z.string()), - username_like: z.optional(z.string()), - username_not_like: z.optional(z.string()), - username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_eq: z.optional(z.string()), - node_id_ne: z.optional(z.string()), - node_id_contains: z.optional(z.string()), - node_id_starts_with: z.optional(z.string()), - node_id_ends_with: z.optional(z.string()), - node_id_like: z.optional(z.string()), - node_id_not_like: z.optional(z.string()), - node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_eq: z.optional(z.string()), - classification_ne: z.optional(z.string()), - classification_contains: z.optional(z.string()), - classification_starts_with: z.optional(z.string()), - classification_ends_with: z.optional(z.string()), - classification_like: z.optional(z.string()), - classification_not_like: z.optional(z.string()), - classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_eq: z.optional(z.string()), - meta_client_geo_continent_code_ne: z.optional(z.string()), - meta_client_geo_continent_code_contains: z.optional(z.string()), - meta_client_geo_continent_code_starts_with: z.optional(z.string()), - meta_client_geo_continent_code_ends_with: z.optional(z.string()), - meta_client_geo_continent_code_like: z.optional(z.string()), - meta_client_geo_continent_code_not_like: z.optional(z.string()), - meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_longitude_value: z.optional(z.number()), - meta_client_geo_latitude_value: z.optional(z.number()), - meta_client_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_eq: z.optional(z.string()), - meta_consensus_version_ne: z.optional(z.string()), - meta_consensus_version_contains: z.optional(z.string()), - meta_consensus_version_starts_with: z.optional(z.string()), - meta_consensus_version_ends_with: z.optional(z.string()), - meta_consensus_version_like: z.optional(z.string()), - meta_consensus_version_not_like: z.optional(z.string()), - meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_eq: z.optional(z.string()), - meta_consensus_implementation_ne: z.optional(z.string()), - meta_consensus_implementation_contains: z.optional(z.string()), - meta_consensus_implementation_starts_with: z.optional(z.string()), - meta_consensus_implementation_ends_with: z.optional(z.string()), - meta_consensus_implementation_like: z.optional(z.string()), - meta_consensus_implementation_not_like: z.optional(z.string()), - meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + blob_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_eq: z.optional(z.string()), + source_ne: z.optional(z.string()), + source_contains: z.optional(z.string()), + source_starts_with: z.optional(z.string()), + source_ends_with: z.optional(z.string()), + source_like: z.optional(z.string()), + source_not_like: z.optional(z.string()), + source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + username_eq: z.optional(z.string()), + username_ne: z.optional(z.string()), + username_contains: z.optional(z.string()), + username_starts_with: z.optional(z.string()), + username_ends_with: z.optional(z.string()), + username_like: z.optional(z.string()), + username_not_like: z.optional(z.string()), + username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_eq: z.optional(z.string()), + node_id_ne: z.optional(z.string()), + node_id_contains: z.optional(z.string()), + node_id_starts_with: z.optional(z.string()), + node_id_ends_with: z.optional(z.string()), + node_id_like: z.optional(z.string()), + node_id_not_like: z.optional(z.string()), + node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_eq: z.optional(z.string()), + classification_ne: z.optional(z.string()), + classification_contains: z.optional(z.string()), + classification_starts_with: z.optional(z.string()), + classification_ends_with: z.optional(z.string()), + classification_like: z.optional(z.string()), + classification_not_like: z.optional(z.string()), + classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_consensus_version_eq: z.optional(z.string()), + meta_consensus_version_ne: z.optional(z.string()), + meta_consensus_version_contains: z.optional(z.string()), + meta_consensus_version_starts_with: z.optional(z.string()), + meta_consensus_version_ends_with: z.optional(z.string()), + meta_consensus_version_like: z.optional(z.string()), + meta_consensus_version_not_like: z.optional(z.string()), + meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_eq: z.optional(z.string()), + meta_consensus_implementation_ne: z.optional(z.string()), + meta_consensus_implementation_contains: z.optional(z.string()), + meta_consensus_implementation_starts_with: z.optional(z.string()), + meta_consensus_implementation_ends_with: z.optional(z.string()), + meta_consensus_implementation_like: z.optional(z.string()), + meta_consensus_implementation_not_like: z.optional(z.string()), + meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -9648,11 +33738,16 @@ export const zFctBlockBlobFirstSeenByNodeServiceListData = z.object({ export const zFctBlockBlobFirstSeenByNodeServiceListResponse = zListFctBlockBlobFirstSeenByNodeResponse; export const zFctBlockBlobFirstSeenByNodeServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -9661,100 +33756,445 @@ export const zFctBlockBlobFirstSeenByNodeServiceGetData = z.object({ export const zFctBlockBlobFirstSeenByNodeServiceGetResponse = zGetFctBlockBlobFirstSeenByNodeResponse; export const zFctBlockBlobHeadServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - blob_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - versioned_hash_eq: z.optional(z.string()), - versioned_hash_ne: z.optional(z.string()), - versioned_hash_contains: z.optional(z.string()), - versioned_hash_starts_with: z.optional(z.string()), - versioned_hash_ends_with: z.optional(z.string()), - versioned_hash_like: z.optional(z.string()), - versioned_hash_not_like: z.optional(z.string()), - versioned_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - versioned_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - kzg_commitment_eq: z.optional(z.string()), - kzg_commitment_ne: z.optional(z.string()), - kzg_commitment_contains: z.optional(z.string()), - kzg_commitment_starts_with: z.optional(z.string()), - kzg_commitment_ends_with: z.optional(z.string()), - kzg_commitment_like: z.optional(z.string()), - kzg_commitment_not_like: z.optional(z.string()), - kzg_commitment_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - kzg_commitment_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + blob_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + versioned_hash_eq: z.optional(z.string()), + versioned_hash_ne: z.optional(z.string()), + versioned_hash_contains: z.optional(z.string()), + versioned_hash_starts_with: z.optional(z.string()), + versioned_hash_ends_with: z.optional(z.string()), + versioned_hash_like: z.optional(z.string()), + versioned_hash_not_like: z.optional(z.string()), + versioned_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + versioned_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + kzg_commitment_eq: z.optional(z.string()), + kzg_commitment_ne: z.optional(z.string()), + kzg_commitment_contains: z.optional(z.string()), + kzg_commitment_starts_with: z.optional(z.string()), + kzg_commitment_ends_with: z.optional(z.string()), + kzg_commitment_like: z.optional(z.string()), + kzg_commitment_not_like: z.optional(z.string()), + kzg_commitment_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + kzg_commitment_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -9763,11 +34203,16 @@ export const zFctBlockBlobHeadServiceListData = z.object({ export const zFctBlockBlobHeadServiceListResponse = zListFctBlockBlobHeadResponse; export const zFctBlockBlobHeadServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -9776,240 +34221,757 @@ export const zFctBlockBlobHeadServiceGetData = z.object({ export const zFctBlockBlobHeadServiceGetResponse = zGetFctBlockBlobHeadResponse; export const zFctBlockDataColumnSidecarFirstSeenServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - column_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_eq: z.optional(z.string()), - source_ne: z.optional(z.string()), - source_contains: z.optional(z.string()), - source_starts_with: z.optional(z.string()), - source_ends_with: z.optional(z.string()), - source_like: z.optional(z.string()), - source_not_like: z.optional(z.string()), - source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - row_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - row_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - username_eq: z.optional(z.string()), - username_ne: z.optional(z.string()), - username_contains: z.optional(z.string()), - username_starts_with: z.optional(z.string()), - username_ends_with: z.optional(z.string()), - username_like: z.optional(z.string()), - username_not_like: z.optional(z.string()), - username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_eq: z.optional(z.string()), - node_id_ne: z.optional(z.string()), - node_id_contains: z.optional(z.string()), - node_id_starts_with: z.optional(z.string()), - node_id_ends_with: z.optional(z.string()), - node_id_like: z.optional(z.string()), - node_id_not_like: z.optional(z.string()), - node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_eq: z.optional(z.string()), - classification_ne: z.optional(z.string()), - classification_contains: z.optional(z.string()), - classification_starts_with: z.optional(z.string()), - classification_ends_with: z.optional(z.string()), - classification_like: z.optional(z.string()), - classification_not_like: z.optional(z.string()), - classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_eq: z.optional(z.string()), - meta_client_geo_continent_code_ne: z.optional(z.string()), - meta_client_geo_continent_code_contains: z.optional(z.string()), - meta_client_geo_continent_code_starts_with: z.optional(z.string()), - meta_client_geo_continent_code_ends_with: z.optional(z.string()), - meta_client_geo_continent_code_like: z.optional(z.string()), - meta_client_geo_continent_code_not_like: z.optional(z.string()), - meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_longitude_value: z.optional(z.number()), - meta_client_geo_latitude_value: z.optional(z.number()), - meta_client_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_eq: z.optional(z.string()), - meta_consensus_version_ne: z.optional(z.string()), - meta_consensus_version_contains: z.optional(z.string()), - meta_consensus_version_starts_with: z.optional(z.string()), - meta_consensus_version_ends_with: z.optional(z.string()), - meta_consensus_version_like: z.optional(z.string()), - meta_consensus_version_not_like: z.optional(z.string()), - meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_eq: z.optional(z.string()), - meta_consensus_implementation_ne: z.optional(z.string()), - meta_consensus_implementation_contains: z.optional(z.string()), - meta_consensus_implementation_starts_with: z.optional(z.string()), - meta_consensus_implementation_ends_with: z.optional(z.string()), - meta_consensus_implementation_like: z.optional(z.string()), - meta_consensus_implementation_not_like: z.optional(z.string()), - meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + column_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_eq: z.optional(z.string()), + source_ne: z.optional(z.string()), + source_contains: z.optional(z.string()), + source_starts_with: z.optional(z.string()), + source_ends_with: z.optional(z.string()), + source_like: z.optional(z.string()), + source_not_like: z.optional(z.string()), + source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + row_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + row_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + username_eq: z.optional(z.string()), + username_ne: z.optional(z.string()), + username_contains: z.optional(z.string()), + username_starts_with: z.optional(z.string()), + username_ends_with: z.optional(z.string()), + username_like: z.optional(z.string()), + username_not_like: z.optional(z.string()), + username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_eq: z.optional(z.string()), + node_id_ne: z.optional(z.string()), + node_id_contains: z.optional(z.string()), + node_id_starts_with: z.optional(z.string()), + node_id_ends_with: z.optional(z.string()), + node_id_like: z.optional(z.string()), + node_id_not_like: z.optional(z.string()), + node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_eq: z.optional(z.string()), + classification_ne: z.optional(z.string()), + classification_contains: z.optional(z.string()), + classification_starts_with: z.optional(z.string()), + classification_ends_with: z.optional(z.string()), + classification_like: z.optional(z.string()), + classification_not_like: z.optional(z.string()), + classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_consensus_version_eq: z.optional(z.string()), + meta_consensus_version_ne: z.optional(z.string()), + meta_consensus_version_contains: z.optional(z.string()), + meta_consensus_version_starts_with: z.optional(z.string()), + meta_consensus_version_ends_with: z.optional(z.string()), + meta_consensus_version_like: z.optional(z.string()), + meta_consensus_version_not_like: z.optional(z.string()), + meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_eq: z.optional(z.string()), + meta_consensus_implementation_ne: z.optional(z.string()), + meta_consensus_implementation_contains: z.optional(z.string()), + meta_consensus_implementation_starts_with: z.optional(z.string()), + meta_consensus_implementation_ends_with: z.optional(z.string()), + meta_consensus_implementation_like: z.optional(z.string()), + meta_consensus_implementation_not_like: z.optional(z.string()), + meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -10018,11 +34980,16 @@ export const zFctBlockDataColumnSidecarFirstSeenServiceListData = z.object({ export const zFctBlockDataColumnSidecarFirstSeenServiceListResponse = zListFctBlockDataColumnSidecarFirstSeenResponse; export const zFctBlockDataColumnSidecarFirstSeenServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -10031,475 +34998,1404 @@ export const zFctBlockDataColumnSidecarFirstSeenServiceGetData = z.object({ export const zFctBlockDataColumnSidecarFirstSeenServiceGetResponse = zGetFctBlockDataColumnSidecarFirstSeenResponse; export const zFctBlockDataColumnSidecarFirstSeenByNodeServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - column_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_eq: z.optional(z.string()), - source_ne: z.optional(z.string()), - source_contains: z.optional(z.string()), - source_starts_with: z.optional(z.string()), - source_ends_with: z.optional(z.string()), - source_like: z.optional(z.string()), - source_not_like: z.optional(z.string()), - source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - row_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - row_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - row_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - username_eq: z.optional(z.string()), - username_ne: z.optional(z.string()), - username_contains: z.optional(z.string()), - username_starts_with: z.optional(z.string()), - username_ends_with: z.optional(z.string()), - username_like: z.optional(z.string()), - username_not_like: z.optional(z.string()), - username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_eq: z.optional(z.string()), - node_id_ne: z.optional(z.string()), - node_id_contains: z.optional(z.string()), - node_id_starts_with: z.optional(z.string()), - node_id_ends_with: z.optional(z.string()), - node_id_like: z.optional(z.string()), - node_id_not_like: z.optional(z.string()), - node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_eq: z.optional(z.string()), - classification_ne: z.optional(z.string()), - classification_contains: z.optional(z.string()), - classification_starts_with: z.optional(z.string()), - classification_ends_with: z.optional(z.string()), - classification_like: z.optional(z.string()), - classification_not_like: z.optional(z.string()), - classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_eq: z.optional(z.string()), - meta_client_geo_continent_code_ne: z.optional(z.string()), - meta_client_geo_continent_code_contains: z.optional(z.string()), - meta_client_geo_continent_code_starts_with: z.optional(z.string()), - meta_client_geo_continent_code_ends_with: z.optional(z.string()), - meta_client_geo_continent_code_like: z.optional(z.string()), - meta_client_geo_continent_code_not_like: z.optional(z.string()), - meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_longitude_value: z.optional(z.number()), - meta_client_geo_latitude_value: z.optional(z.number()), - meta_client_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_eq: z.optional(z.string()), - meta_consensus_version_ne: z.optional(z.string()), - meta_consensus_version_contains: z.optional(z.string()), - meta_consensus_version_starts_with: z.optional(z.string()), - meta_consensus_version_ends_with: z.optional(z.string()), - meta_consensus_version_like: z.optional(z.string()), - meta_consensus_version_not_like: z.optional(z.string()), - meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_eq: z.optional(z.string()), - meta_consensus_implementation_ne: z.optional(z.string()), - meta_consensus_implementation_contains: z.optional(z.string()), - meta_consensus_implementation_starts_with: z.optional(z.string()), - meta_consensus_implementation_ends_with: z.optional(z.string()), - meta_consensus_implementation_like: z.optional(z.string()), - meta_consensus_implementation_not_like: z.optional(z.string()), - meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse = zListFctBlockDataColumnSidecarFirstSeenByNodeResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + column_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_eq: z.optional(z.string()), + source_ne: z.optional(z.string()), + source_contains: z.optional(z.string()), + source_starts_with: z.optional(z.string()), + source_ends_with: z.optional(z.string()), + source_like: z.optional(z.string()), + source_not_like: z.optional(z.string()), + source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + row_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + row_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + row_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + username_eq: z.optional(z.string()), + username_ne: z.optional(z.string()), + username_contains: z.optional(z.string()), + username_starts_with: z.optional(z.string()), + username_ends_with: z.optional(z.string()), + username_like: z.optional(z.string()), + username_not_like: z.optional(z.string()), + username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_eq: z.optional(z.string()), + node_id_ne: z.optional(z.string()), + node_id_contains: z.optional(z.string()), + node_id_starts_with: z.optional(z.string()), + node_id_ends_with: z.optional(z.string()), + node_id_like: z.optional(z.string()), + node_id_not_like: z.optional(z.string()), + node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_eq: z.optional(z.string()), + classification_ne: z.optional(z.string()), + classification_contains: z.optional(z.string()), + classification_starts_with: z.optional(z.string()), + classification_ends_with: z.optional(z.string()), + classification_like: z.optional(z.string()), + classification_not_like: z.optional(z.string()), + classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_consensus_version_eq: z.optional(z.string()), + meta_consensus_version_ne: z.optional(z.string()), + meta_consensus_version_contains: z.optional(z.string()), + meta_consensus_version_starts_with: z.optional(z.string()), + meta_consensus_version_ends_with: z.optional(z.string()), + meta_consensus_version_like: z.optional(z.string()), + meta_consensus_version_not_like: z.optional(z.string()), + meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_eq: z.optional(z.string()), + meta_consensus_implementation_ne: z.optional(z.string()), + meta_consensus_implementation_contains: z.optional(z.string()), + meta_consensus_implementation_starts_with: z.optional(z.string()), + meta_consensus_implementation_ends_with: z.optional(z.string()), + meta_consensus_implementation_like: z.optional(z.string()), + meta_consensus_implementation_not_like: z.optional(z.string()), + meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctBlockDataColumnSidecarFirstSeenByNodeServiceListResponse = + zListFctBlockDataColumnSidecarFirstSeenByNodeResponse; export const zFctBlockDataColumnSidecarFirstSeenByNodeServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse = zGetFctBlockDataColumnSidecarFirstSeenByNodeResponse; +export const zFctBlockDataColumnSidecarFirstSeenByNodeServiceGetResponse = + zGetFctBlockDataColumnSidecarFirstSeenByNodeResponse; export const zFctBlockFirstSeenByNodeServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_eq: z.optional(z.string()), - source_ne: z.optional(z.string()), - source_contains: z.optional(z.string()), - source_starts_with: z.optional(z.string()), - source_ends_with: z.optional(z.string()), - source_like: z.optional(z.string()), - source_not_like: z.optional(z.string()), - source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - username_eq: z.optional(z.string()), - username_ne: z.optional(z.string()), - username_contains: z.optional(z.string()), - username_starts_with: z.optional(z.string()), - username_ends_with: z.optional(z.string()), - username_like: z.optional(z.string()), - username_not_like: z.optional(z.string()), - username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_eq: z.optional(z.string()), - node_id_ne: z.optional(z.string()), - node_id_contains: z.optional(z.string()), - node_id_starts_with: z.optional(z.string()), - node_id_ends_with: z.optional(z.string()), - node_id_like: z.optional(z.string()), - node_id_not_like: z.optional(z.string()), - node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_eq: z.optional(z.string()), - classification_ne: z.optional(z.string()), - classification_contains: z.optional(z.string()), - classification_starts_with: z.optional(z.string()), - classification_ends_with: z.optional(z.string()), - classification_like: z.optional(z.string()), - classification_not_like: z.optional(z.string()), - classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_eq: z.optional(z.string()), - meta_client_geo_continent_code_ne: z.optional(z.string()), - meta_client_geo_continent_code_contains: z.optional(z.string()), - meta_client_geo_continent_code_starts_with: z.optional(z.string()), - meta_client_geo_continent_code_ends_with: z.optional(z.string()), - meta_client_geo_continent_code_like: z.optional(z.string()), - meta_client_geo_continent_code_not_like: z.optional(z.string()), - meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_longitude_value: z.optional(z.number()), - meta_client_geo_latitude_value: z.optional(z.number()), - meta_client_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_eq: z.optional(z.string()), - meta_consensus_version_ne: z.optional(z.string()), - meta_consensus_version_contains: z.optional(z.string()), - meta_consensus_version_starts_with: z.optional(z.string()), - meta_consensus_version_ends_with: z.optional(z.string()), - meta_consensus_version_like: z.optional(z.string()), - meta_consensus_version_not_like: z.optional(z.string()), - meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_eq: z.optional(z.string()), - meta_consensus_implementation_ne: z.optional(z.string()), - meta_consensus_implementation_contains: z.optional(z.string()), - meta_consensus_implementation_starts_with: z.optional(z.string()), - meta_consensus_implementation_ends_with: z.optional(z.string()), - meta_consensus_implementation_like: z.optional(z.string()), - meta_consensus_implementation_not_like: z.optional(z.string()), - meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_eq: z.optional(z.string()), + source_ne: z.optional(z.string()), + source_contains: z.optional(z.string()), + source_starts_with: z.optional(z.string()), + source_ends_with: z.optional(z.string()), + source_like: z.optional(z.string()), + source_not_like: z.optional(z.string()), + source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + username_eq: z.optional(z.string()), + username_ne: z.optional(z.string()), + username_contains: z.optional(z.string()), + username_starts_with: z.optional(z.string()), + username_ends_with: z.optional(z.string()), + username_like: z.optional(z.string()), + username_not_like: z.optional(z.string()), + username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_eq: z.optional(z.string()), + node_id_ne: z.optional(z.string()), + node_id_contains: z.optional(z.string()), + node_id_starts_with: z.optional(z.string()), + node_id_ends_with: z.optional(z.string()), + node_id_like: z.optional(z.string()), + node_id_not_like: z.optional(z.string()), + node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_eq: z.optional(z.string()), + classification_ne: z.optional(z.string()), + classification_contains: z.optional(z.string()), + classification_starts_with: z.optional(z.string()), + classification_ends_with: z.optional(z.string()), + classification_like: z.optional(z.string()), + classification_not_like: z.optional(z.string()), + classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_consensus_version_eq: z.optional(z.string()), + meta_consensus_version_ne: z.optional(z.string()), + meta_consensus_version_contains: z.optional(z.string()), + meta_consensus_version_starts_with: z.optional(z.string()), + meta_consensus_version_ends_with: z.optional(z.string()), + meta_consensus_version_like: z.optional(z.string()), + meta_consensus_version_not_like: z.optional(z.string()), + meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_eq: z.optional(z.string()), + meta_consensus_implementation_ne: z.optional(z.string()), + meta_consensus_implementation_contains: z.optional(z.string()), + meta_consensus_implementation_starts_with: z.optional(z.string()), + meta_consensus_implementation_ends_with: z.optional(z.string()), + meta_consensus_implementation_like: z.optional(z.string()), + meta_consensus_implementation_not_like: z.optional(z.string()), + meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -10508,11 +36404,16 @@ export const zFctBlockFirstSeenByNodeServiceListData = z.object({ export const zFctBlockFirstSeenByNodeServiceListResponse = zListFctBlockFirstSeenByNodeResponse; export const zFctBlockFirstSeenByNodeServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -10521,272 +36422,1245 @@ export const zFctBlockFirstSeenByNodeServiceGetData = z.object({ export const zFctBlockFirstSeenByNodeServiceGetResponse = zGetFctBlockFirstSeenByNodeResponse; export const zFctBlockHeadServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_version_eq: z.optional(z.string()), - block_version_ne: z.optional(z.string()), - block_version_contains: z.optional(z.string()), - block_version_starts_with: z.optional(z.string()), - block_version_ends_with: z.optional(z.string()), - block_version_like: z.optional(z.string()), - block_version_not_like: z.optional(z.string()), - block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_total_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_compressed_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - parent_root_eq: z.optional(z.string()), - parent_root_ne: z.optional(z.string()), - parent_root_contains: z.optional(z.string()), - parent_root_starts_with: z.optional(z.string()), - parent_root_ends_with: z.optional(z.string()), - parent_root_like: z.optional(z.string()), - parent_root_not_like: z.optional(z.string()), - parent_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - parent_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - state_root_eq: z.optional(z.string()), - state_root_ne: z.optional(z.string()), - state_root_contains: z.optional(z.string()), - state_root_starts_with: z.optional(z.string()), - state_root_ends_with: z.optional(z.string()), - state_root_like: z.optional(z.string()), - state_root_not_like: z.optional(z.string()), - state_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - state_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - eth1_data_block_hash_eq: z.optional(z.string()), - eth1_data_block_hash_ne: z.optional(z.string()), - eth1_data_block_hash_contains: z.optional(z.string()), - eth1_data_block_hash_starts_with: z.optional(z.string()), - eth1_data_block_hash_ends_with: z.optional(z.string()), - eth1_data_block_hash_like: z.optional(z.string()), - eth1_data_block_hash_not_like: z.optional(z.string()), - eth1_data_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - eth1_data_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - eth1_data_deposit_root_eq: z.optional(z.string()), - eth1_data_deposit_root_ne: z.optional(z.string()), - eth1_data_deposit_root_contains: z.optional(z.string()), - eth1_data_deposit_root_starts_with: z.optional(z.string()), - eth1_data_deposit_root_ends_with: z.optional(z.string()), - eth1_data_deposit_root_like: z.optional(z.string()), - eth1_data_deposit_root_not_like: z.optional(z.string()), - eth1_data_deposit_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - eth1_data_deposit_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_block_hash_eq: z.optional(z.string()), - execution_payload_block_hash_ne: z.optional(z.string()), - execution_payload_block_hash_contains: z.optional(z.string()), - execution_payload_block_hash_starts_with: z.optional(z.string()), - execution_payload_block_hash_ends_with: z.optional(z.string()), - execution_payload_block_hash_like: z.optional(z.string()), - execution_payload_block_hash_not_like: z.optional(z.string()), - execution_payload_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_fee_recipient_eq: z.optional(z.string()), - execution_payload_fee_recipient_ne: z.optional(z.string()), - execution_payload_fee_recipient_contains: z.optional(z.string()), - execution_payload_fee_recipient_starts_with: z.optional(z.string()), - execution_payload_fee_recipient_ends_with: z.optional(z.string()), - execution_payload_fee_recipient_like: z.optional(z.string()), - execution_payload_fee_recipient_not_like: z.optional(z.string()), - execution_payload_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_base_fee_per_gas_eq: z.optional(z.string()), - execution_payload_base_fee_per_gas_ne: z.optional(z.string()), - execution_payload_base_fee_per_gas_contains: z.optional(z.string()), - execution_payload_base_fee_per_gas_starts_with: z.optional(z.string()), - execution_payload_base_fee_per_gas_ends_with: z.optional(z.string()), - execution_payload_base_fee_per_gas_like: z.optional(z.string()), - execution_payload_base_fee_per_gas_not_like: z.optional(z.string()), - execution_payload_base_fee_per_gas_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_base_fee_per_gas_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_blob_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_blob_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_excess_blob_gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_excess_blob_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_state_root_eq: z.optional(z.string()), - execution_payload_state_root_ne: z.optional(z.string()), - execution_payload_state_root_contains: z.optional(z.string()), - execution_payload_state_root_starts_with: z.optional(z.string()), - execution_payload_state_root_ends_with: z.optional(z.string()), - execution_payload_state_root_like: z.optional(z.string()), - execution_payload_state_root_not_like: z.optional(z.string()), - execution_payload_state_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_state_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_parent_hash_eq: z.optional(z.string()), - execution_payload_parent_hash_ne: z.optional(z.string()), - execution_payload_parent_hash_contains: z.optional(z.string()), - execution_payload_parent_hash_starts_with: z.optional(z.string()), - execution_payload_parent_hash_ends_with: z.optional(z.string()), - execution_payload_parent_hash_like: z.optional(z.string()), - execution_payload_parent_hash_not_like: z.optional(z.string()), - execution_payload_parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_transactions_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_compressed_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_version_eq: z.optional(z.string()), + block_version_ne: z.optional(z.string()), + block_version_contains: z.optional(z.string()), + block_version_starts_with: z.optional(z.string()), + block_version_ends_with: z.optional(z.string()), + block_version_like: z.optional(z.string()), + block_version_not_like: z.optional(z.string()), + block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_total_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_compressed_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + parent_root_eq: z.optional(z.string()), + parent_root_ne: z.optional(z.string()), + parent_root_contains: z.optional(z.string()), + parent_root_starts_with: z.optional(z.string()), + parent_root_ends_with: z.optional(z.string()), + parent_root_like: z.optional(z.string()), + parent_root_not_like: z.optional(z.string()), + parent_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + state_root_eq: z.optional(z.string()), + state_root_ne: z.optional(z.string()), + state_root_contains: z.optional(z.string()), + state_root_starts_with: z.optional(z.string()), + state_root_ends_with: z.optional(z.string()), + state_root_like: z.optional(z.string()), + state_root_not_like: z.optional(z.string()), + state_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + state_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + eth1_data_block_hash_eq: z.optional(z.string()), + eth1_data_block_hash_ne: z.optional(z.string()), + eth1_data_block_hash_contains: z.optional(z.string()), + eth1_data_block_hash_starts_with: z.optional(z.string()), + eth1_data_block_hash_ends_with: z.optional(z.string()), + eth1_data_block_hash_like: z.optional(z.string()), + eth1_data_block_hash_not_like: z.optional(z.string()), + eth1_data_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + eth1_data_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + eth1_data_deposit_root_eq: z.optional(z.string()), + eth1_data_deposit_root_ne: z.optional(z.string()), + eth1_data_deposit_root_contains: z.optional(z.string()), + eth1_data_deposit_root_starts_with: z.optional(z.string()), + eth1_data_deposit_root_ends_with: z.optional(z.string()), + eth1_data_deposit_root_like: z.optional(z.string()), + eth1_data_deposit_root_not_like: z.optional(z.string()), + eth1_data_deposit_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + eth1_data_deposit_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_block_hash_eq: z.optional(z.string()), + execution_payload_block_hash_ne: z.optional(z.string()), + execution_payload_block_hash_contains: z.optional(z.string()), + execution_payload_block_hash_starts_with: z.optional(z.string()), + execution_payload_block_hash_ends_with: z.optional(z.string()), + execution_payload_block_hash_like: z.optional(z.string()), + execution_payload_block_hash_not_like: z.optional(z.string()), + execution_payload_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_fee_recipient_eq: z.optional(z.string()), + execution_payload_fee_recipient_ne: z.optional(z.string()), + execution_payload_fee_recipient_contains: z.optional(z.string()), + execution_payload_fee_recipient_starts_with: z.optional(z.string()), + execution_payload_fee_recipient_ends_with: z.optional(z.string()), + execution_payload_fee_recipient_like: z.optional(z.string()), + execution_payload_fee_recipient_not_like: z.optional(z.string()), + execution_payload_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_base_fee_per_gas_eq: z.optional(z.string()), + execution_payload_base_fee_per_gas_ne: z.optional(z.string()), + execution_payload_base_fee_per_gas_contains: z.optional(z.string()), + execution_payload_base_fee_per_gas_starts_with: z.optional(z.string()), + execution_payload_base_fee_per_gas_ends_with: z.optional(z.string()), + execution_payload_base_fee_per_gas_like: z.optional(z.string()), + execution_payload_base_fee_per_gas_not_like: z.optional(z.string()), + execution_payload_base_fee_per_gas_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_base_fee_per_gas_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_blob_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_blob_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_excess_blob_gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_excess_blob_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_state_root_eq: z.optional(z.string()), + execution_payload_state_root_ne: z.optional(z.string()), + execution_payload_state_root_contains: z.optional(z.string()), + execution_payload_state_root_starts_with: z.optional(z.string()), + execution_payload_state_root_ends_with: z.optional(z.string()), + execution_payload_state_root_like: z.optional(z.string()), + execution_payload_state_root_not_like: z.optional(z.string()), + execution_payload_state_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_state_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_parent_hash_eq: z.optional(z.string()), + execution_payload_parent_hash_ne: z.optional(z.string()), + execution_payload_parent_hash_contains: z.optional(z.string()), + execution_payload_parent_hash_starts_with: z.optional(z.string()), + execution_payload_parent_hash_ends_with: z.optional(z.string()), + execution_payload_parent_hash_like: z.optional(z.string()), + execution_payload_parent_hash_not_like: z.optional(z.string()), + execution_payload_parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_transactions_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_total_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_total_bytes_compressed_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_in_values: z.optional( + z.string().check(z.regex(/^\d+(,\d+)*$/)) + ), + execution_payload_transactions_total_bytes_compressed_not_in_values: z.optional( + z.string().check(z.regex(/^\d+(,\d+)*$/)) + ), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -10795,11 +37669,16 @@ export const zFctBlockHeadServiceListData = z.object({ export const zFctBlockHeadServiceListResponse = zListFctBlockHeadResponse; export const zFctBlockHeadServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -10808,193 +37687,877 @@ export const zFctBlockHeadServiceGetData = z.object({ export const zFctBlockHeadServiceGetResponse = zGetFctBlockHeadResponse; export const zFctBlockMevServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - earliest_bid_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - earliest_bid_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - relay_names_has: z.optional(z.string()), - relay_names_has_all_values: z.optional(z.array(z.string())), - relay_names_has_any_values: z.optional(z.array(z.string())), - relay_names_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - parent_hash_eq: z.optional(z.string()), - parent_hash_ne: z.optional(z.string()), - parent_hash_contains: z.optional(z.string()), - parent_hash_starts_with: z.optional(z.string()), - parent_hash_ends_with: z.optional(z.string()), - parent_hash_like: z.optional(z.string()), - parent_hash_not_like: z.optional(z.string()), - parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_hash_eq: z.optional(z.string()), - block_hash_ne: z.optional(z.string()), - block_hash_contains: z.optional(z.string()), - block_hash_starts_with: z.optional(z.string()), - block_hash_ends_with: z.optional(z.string()), - block_hash_like: z.optional(z.string()), - block_hash_not_like: z.optional(z.string()), - block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - builder_pubkey_eq: z.optional(z.string()), - builder_pubkey_ne: z.optional(z.string()), - builder_pubkey_contains: z.optional(z.string()), - builder_pubkey_starts_with: z.optional(z.string()), - builder_pubkey_ends_with: z.optional(z.string()), - builder_pubkey_like: z.optional(z.string()), - builder_pubkey_not_like: z.optional(z.string()), - builder_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - builder_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_pubkey_eq: z.optional(z.string()), - proposer_pubkey_ne: z.optional(z.string()), - proposer_pubkey_contains: z.optional(z.string()), - proposer_pubkey_starts_with: z.optional(z.string()), - proposer_pubkey_ends_with: z.optional(z.string()), - proposer_pubkey_like: z.optional(z.string()), - proposer_pubkey_not_like: z.optional(z.string()), - proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_fee_recipient_eq: z.optional(z.string()), - proposer_fee_recipient_ne: z.optional(z.string()), - proposer_fee_recipient_contains: z.optional(z.string()), - proposer_fee_recipient_starts_with: z.optional(z.string()), - proposer_fee_recipient_ends_with: z.optional(z.string()), - proposer_fee_recipient_like: z.optional(z.string()), - proposer_fee_recipient_not_like: z.optional(z.string()), - proposer_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - value_eq: z.optional(z.string()), - value_ne: z.optional(z.string()), - value_contains: z.optional(z.string()), - value_starts_with: z.optional(z.string()), - value_ends_with: z.optional(z.string()), - value_like: z.optional(z.string()), - value_not_like: z.optional(z.string()), - value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + earliest_bid_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + earliest_bid_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + relay_names_has: z.optional(z.string()), + relay_names_has_all_values: z.optional(z.array(z.string())), + relay_names_has_any_values: z.optional(z.array(z.string())), + relay_names_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + parent_hash_eq: z.optional(z.string()), + parent_hash_ne: z.optional(z.string()), + parent_hash_contains: z.optional(z.string()), + parent_hash_starts_with: z.optional(z.string()), + parent_hash_ends_with: z.optional(z.string()), + parent_hash_like: z.optional(z.string()), + parent_hash_not_like: z.optional(z.string()), + parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_pubkey_eq: z.optional(z.string()), + builder_pubkey_ne: z.optional(z.string()), + builder_pubkey_contains: z.optional(z.string()), + builder_pubkey_starts_with: z.optional(z.string()), + builder_pubkey_ends_with: z.optional(z.string()), + builder_pubkey_like: z.optional(z.string()), + builder_pubkey_not_like: z.optional(z.string()), + builder_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_pubkey_eq: z.optional(z.string()), + proposer_pubkey_ne: z.optional(z.string()), + proposer_pubkey_contains: z.optional(z.string()), + proposer_pubkey_starts_with: z.optional(z.string()), + proposer_pubkey_ends_with: z.optional(z.string()), + proposer_pubkey_like: z.optional(z.string()), + proposer_pubkey_not_like: z.optional(z.string()), + proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_fee_recipient_eq: z.optional(z.string()), + proposer_fee_recipient_ne: z.optional(z.string()), + proposer_fee_recipient_contains: z.optional(z.string()), + proposer_fee_recipient_starts_with: z.optional(z.string()), + proposer_fee_recipient_ends_with: z.optional(z.string()), + proposer_fee_recipient_like: z.optional(z.string()), + proposer_fee_recipient_not_like: z.optional(z.string()), + proposer_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + value_eq: z.optional(z.string()), + value_ne: z.optional(z.string()), + value_contains: z.optional(z.string()), + value_starts_with: z.optional(z.string()), + value_ends_with: z.optional(z.string()), + value_like: z.optional(z.string()), + value_not_like: z.optional(z.string()), + value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -11003,11 +38566,16 @@ export const zFctBlockMevServiceListData = z.object({ export const zFctBlockMevServiceListResponse = zListFctBlockMevResponse; export const zFctBlockMevServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -11016,184 +38584,868 @@ export const zFctBlockMevServiceGetData = z.object({ export const zFctBlockMevServiceGetResponse = zGetFctBlockMevResponse; export const zFctBlockMevHeadServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - earliest_bid_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - earliest_bid_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - relay_names_has: z.optional(z.string()), - relay_names_has_all_values: z.optional(z.array(z.string())), - relay_names_has_any_values: z.optional(z.array(z.string())), - relay_names_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - parent_hash_eq: z.optional(z.string()), - parent_hash_ne: z.optional(z.string()), - parent_hash_contains: z.optional(z.string()), - parent_hash_starts_with: z.optional(z.string()), - parent_hash_ends_with: z.optional(z.string()), - parent_hash_like: z.optional(z.string()), - parent_hash_not_like: z.optional(z.string()), - parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_hash_eq: z.optional(z.string()), - block_hash_ne: z.optional(z.string()), - block_hash_contains: z.optional(z.string()), - block_hash_starts_with: z.optional(z.string()), - block_hash_ends_with: z.optional(z.string()), - block_hash_like: z.optional(z.string()), - block_hash_not_like: z.optional(z.string()), - block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - builder_pubkey_eq: z.optional(z.string()), - builder_pubkey_ne: z.optional(z.string()), - builder_pubkey_contains: z.optional(z.string()), - builder_pubkey_starts_with: z.optional(z.string()), - builder_pubkey_ends_with: z.optional(z.string()), - builder_pubkey_like: z.optional(z.string()), - builder_pubkey_not_like: z.optional(z.string()), - builder_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - builder_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_pubkey_eq: z.optional(z.string()), - proposer_pubkey_ne: z.optional(z.string()), - proposer_pubkey_contains: z.optional(z.string()), - proposer_pubkey_starts_with: z.optional(z.string()), - proposer_pubkey_ends_with: z.optional(z.string()), - proposer_pubkey_like: z.optional(z.string()), - proposer_pubkey_not_like: z.optional(z.string()), - proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_fee_recipient_eq: z.optional(z.string()), - proposer_fee_recipient_ne: z.optional(z.string()), - proposer_fee_recipient_contains: z.optional(z.string()), - proposer_fee_recipient_starts_with: z.optional(z.string()), - proposer_fee_recipient_ends_with: z.optional(z.string()), - proposer_fee_recipient_like: z.optional(z.string()), - proposer_fee_recipient_not_like: z.optional(z.string()), - proposer_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - value_eq: z.optional(z.string()), - value_ne: z.optional(z.string()), - value_contains: z.optional(z.string()), - value_starts_with: z.optional(z.string()), - value_ends_with: z.optional(z.string()), - value_like: z.optional(z.string()), - value_not_like: z.optional(z.string()), - value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + earliest_bid_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + earliest_bid_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + relay_names_has: z.optional(z.string()), + relay_names_has_all_values: z.optional(z.array(z.string())), + relay_names_has_any_values: z.optional(z.array(z.string())), + relay_names_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + parent_hash_eq: z.optional(z.string()), + parent_hash_ne: z.optional(z.string()), + parent_hash_contains: z.optional(z.string()), + parent_hash_starts_with: z.optional(z.string()), + parent_hash_ends_with: z.optional(z.string()), + parent_hash_like: z.optional(z.string()), + parent_hash_not_like: z.optional(z.string()), + parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_pubkey_eq: z.optional(z.string()), + builder_pubkey_ne: z.optional(z.string()), + builder_pubkey_contains: z.optional(z.string()), + builder_pubkey_starts_with: z.optional(z.string()), + builder_pubkey_ends_with: z.optional(z.string()), + builder_pubkey_like: z.optional(z.string()), + builder_pubkey_not_like: z.optional(z.string()), + builder_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_pubkey_eq: z.optional(z.string()), + proposer_pubkey_ne: z.optional(z.string()), + proposer_pubkey_contains: z.optional(z.string()), + proposer_pubkey_starts_with: z.optional(z.string()), + proposer_pubkey_ends_with: z.optional(z.string()), + proposer_pubkey_like: z.optional(z.string()), + proposer_pubkey_not_like: z.optional(z.string()), + proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_fee_recipient_eq: z.optional(z.string()), + proposer_fee_recipient_ne: z.optional(z.string()), + proposer_fee_recipient_contains: z.optional(z.string()), + proposer_fee_recipient_starts_with: z.optional(z.string()), + proposer_fee_recipient_ends_with: z.optional(z.string()), + proposer_fee_recipient_like: z.optional(z.string()), + proposer_fee_recipient_not_like: z.optional(z.string()), + proposer_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + value_eq: z.optional(z.string()), + value_ne: z.optional(z.string()), + value_contains: z.optional(z.string()), + value_starts_with: z.optional(z.string()), + value_ends_with: z.optional(z.string()), + value_like: z.optional(z.string()), + value_not_like: z.optional(z.string()), + value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -11202,11 +39454,16 @@ export const zFctBlockMevHeadServiceListData = z.object({ export const zFctBlockMevHeadServiceListResponse = zListFctBlockMevHeadResponse; export const zFctBlockMevHeadServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -11214,52 +39471,3602 @@ export const zFctBlockMevHeadServiceGetData = z.object({ */ export const zFctBlockMevHeadServiceGetResponse = zGetFctBlockMevHeadResponse; +export const zFctBlockPayloadAvailableByNodeServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + available_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + available_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + available_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + available_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + available_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + available_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + available_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + available_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + available_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + available_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + username_eq: z.optional(z.string()), + username_ne: z.optional(z.string()), + username_contains: z.optional(z.string()), + username_starts_with: z.optional(z.string()), + username_ends_with: z.optional(z.string()), + username_like: z.optional(z.string()), + username_not_like: z.optional(z.string()), + username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_eq: z.optional(z.string()), + node_id_ne: z.optional(z.string()), + node_id_contains: z.optional(z.string()), + node_id_starts_with: z.optional(z.string()), + node_id_ends_with: z.optional(z.string()), + node_id_like: z.optional(z.string()), + node_id_not_like: z.optional(z.string()), + node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_eq: z.optional(z.string()), + classification_ne: z.optional(z.string()), + classification_contains: z.optional(z.string()), + classification_starts_with: z.optional(z.string()), + classification_ends_with: z.optional(z.string()), + classification_like: z.optional(z.string()), + classification_not_like: z.optional(z.string()), + classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_consensus_version_eq: z.optional(z.string()), + meta_consensus_version_ne: z.optional(z.string()), + meta_consensus_version_contains: z.optional(z.string()), + meta_consensus_version_starts_with: z.optional(z.string()), + meta_consensus_version_ends_with: z.optional(z.string()), + meta_consensus_version_like: z.optional(z.string()), + meta_consensus_version_not_like: z.optional(z.string()), + meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_eq: z.optional(z.string()), + meta_consensus_implementation_ne: z.optional(z.string()), + meta_consensus_implementation_contains: z.optional(z.string()), + meta_consensus_implementation_starts_with: z.optional(z.string()), + meta_consensus_implementation_ends_with: z.optional(z.string()), + meta_consensus_implementation_like: z.optional(z.string()), + meta_consensus_implementation_not_like: z.optional(z.string()), + meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctBlockPayloadAvailableByNodeServiceListResponse = zListFctBlockPayloadAvailableByNodeResponse; + +export const zFctBlockPayloadAvailableByNodeServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctBlockPayloadAvailableByNodeServiceGetResponse = zGetFctBlockPayloadAvailableByNodeResponse; + +export const zFctBlockPayloadBidServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_version_eq: z.optional(z.string()), + block_version_ne: z.optional(z.string()), + block_version_contains: z.optional(z.string()), + block_version_starts_with: z.optional(z.string()), + block_version_ends_with: z.optional(z.string()), + block_version_like: z.optional(z.string()), + block_version_not_like: z.optional(z.string()), + block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_index_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + builder_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_block_hash_eq: z.optional(z.string()), + parent_block_hash_ne: z.optional(z.string()), + parent_block_hash_contains: z.optional(z.string()), + parent_block_hash_starts_with: z.optional(z.string()), + parent_block_hash_ends_with: z.optional(z.string()), + parent_block_hash_like: z.optional(z.string()), + parent_block_hash_not_like: z.optional(z.string()), + parent_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_block_root_eq: z.optional(z.string()), + parent_block_root_ne: z.optional(z.string()), + parent_block_root_contains: z.optional(z.string()), + parent_block_root_starts_with: z.optional(z.string()), + parent_block_root_ends_with: z.optional(z.string()), + parent_block_root_like: z.optional(z.string()), + parent_block_root_not_like: z.optional(z.string()), + parent_block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_eq: z.optional(z.string()), + value_ne: z.optional(z.string()), + value_contains: z.optional(z.string()), + value_starts_with: z.optional(z.string()), + value_ends_with: z.optional(z.string()), + value_like: z.optional(z.string()), + value_not_like: z.optional(z.string()), + value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payment_eq: z.optional(z.string()), + execution_payment_ne: z.optional(z.string()), + execution_payment_contains: z.optional(z.string()), + execution_payment_starts_with: z.optional(z.string()), + execution_payment_ends_with: z.optional(z.string()), + execution_payment_like: z.optional(z.string()), + execution_payment_not_like: z.optional(z.string()), + execution_payment_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payment_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + fee_recipient_eq: z.optional(z.string()), + fee_recipient_ne: z.optional(z.string()), + fee_recipient_contains: z.optional(z.string()), + fee_recipient_starts_with: z.optional(z.string()), + fee_recipient_ends_with: z.optional(z.string()), + fee_recipient_like: z.optional(z.string()), + fee_recipient_not_like: z.optional(z.string()), + fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_kzg_commitment_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_kzg_commitment_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctBlockPayloadBidServiceListResponse = zListFctBlockPayloadBidResponse; + +export const zFctBlockPayloadBidServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctBlockPayloadBidServiceGetResponse = zGetFctBlockPayloadBidResponse; + +export const zFctBlockPayloadFirstSeenByNodeServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_eq: z.optional(z.string()), + source_ne: z.optional(z.string()), + source_contains: z.optional(z.string()), + source_starts_with: z.optional(z.string()), + source_ends_with: z.optional(z.string()), + source_like: z.optional(z.string()), + source_not_like: z.optional(z.string()), + source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_index_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + builder_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + username_eq: z.optional(z.string()), + username_ne: z.optional(z.string()), + username_contains: z.optional(z.string()), + username_starts_with: z.optional(z.string()), + username_ends_with: z.optional(z.string()), + username_like: z.optional(z.string()), + username_not_like: z.optional(z.string()), + username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_eq: z.optional(z.string()), + node_id_ne: z.optional(z.string()), + node_id_contains: z.optional(z.string()), + node_id_starts_with: z.optional(z.string()), + node_id_ends_with: z.optional(z.string()), + node_id_like: z.optional(z.string()), + node_id_not_like: z.optional(z.string()), + node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_eq: z.optional(z.string()), + classification_ne: z.optional(z.string()), + classification_contains: z.optional(z.string()), + classification_starts_with: z.optional(z.string()), + classification_ends_with: z.optional(z.string()), + classification_like: z.optional(z.string()), + classification_not_like: z.optional(z.string()), + classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_consensus_version_eq: z.optional(z.string()), + meta_consensus_version_ne: z.optional(z.string()), + meta_consensus_version_contains: z.optional(z.string()), + meta_consensus_version_starts_with: z.optional(z.string()), + meta_consensus_version_ends_with: z.optional(z.string()), + meta_consensus_version_like: z.optional(z.string()), + meta_consensus_version_not_like: z.optional(z.string()), + meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_eq: z.optional(z.string()), + meta_consensus_implementation_ne: z.optional(z.string()), + meta_consensus_implementation_contains: z.optional(z.string()), + meta_consensus_implementation_starts_with: z.optional(z.string()), + meta_consensus_implementation_ends_with: z.optional(z.string()), + meta_consensus_implementation_like: z.optional(z.string()), + meta_consensus_implementation_not_like: z.optional(z.string()), + meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctBlockPayloadFirstSeenByNodeServiceListResponse = zListFctBlockPayloadFirstSeenByNodeResponse; + +export const zFctBlockPayloadFirstSeenByNodeServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctBlockPayloadFirstSeenByNodeServiceGetResponse = zGetFctBlockPayloadFirstSeenByNodeResponse; + +export const zFctBlockPayloadPtcVoteServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_version_eq: z.optional(z.string()), + block_version_ne: z.optional(z.string()), + block_version_contains: z.optional(z.string()), + block_version_starts_with: z.optional(z.string()), + block_version_ends_with: z.optional(z.string()), + block_version_like: z.optional(z.string()), + block_version_not_like: z.optional(z.string()), + block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + included_in_slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + included_in_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + included_in_block_root_eq: z.optional(z.string()), + included_in_block_root_ne: z.optional(z.string()), + included_in_block_root_contains: z.optional(z.string()), + included_in_block_root_starts_with: z.optional(z.string()), + included_in_block_root_ends_with: z.optional(z.string()), + included_in_block_root_like: z.optional(z.string()), + included_in_block_root_not_like: z.optional(z.string()), + included_in_block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + included_in_block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + ptc_validators_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + ptc_validators_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + payload_present_votes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + payload_present_votes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_data_available_votes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_data_available_votes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctBlockPayloadPtcVoteServiceListResponse = zListFctBlockPayloadPtcVoteResponse; + +export const zFctBlockPayloadPtcVoteServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctBlockPayloadPtcVoteServiceGetResponse = zGetFctBlockPayloadPtcVoteResponse; + +export const zFctBlockPayloadPtcVoteHeadServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + ptc_validators_seen_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_seen_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_seen_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_seen_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_seen_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_seen_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_seen_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_seen_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_seen_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + ptc_validators_seen_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + payload_present_votes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + payload_present_votes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_data_available_votes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_data_available_votes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + first_seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + first_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + first_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + last_seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + last_seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctBlockPayloadPtcVoteHeadServiceListResponse = zListFctBlockPayloadPtcVoteHeadResponse; + +export const zFctBlockPayloadPtcVoteHeadServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctBlockPayloadPtcVoteHeadServiceGetResponse = zGetFctBlockPayloadPtcVoteHeadResponse; + export const zFctBlockProposalStatusDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -11268,11 +43075,11 @@ export const zFctBlockProposalStatusDailyServiceListData = z.object({ export const zFctBlockProposalStatusDailyServiceListResponse = zListFctBlockProposalStatusDailyResponse; export const zFctBlockProposalStatusDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -11281,52 +43088,229 @@ export const zFctBlockProposalStatusDailyServiceGetData = z.object({ export const zFctBlockProposalStatusDailyServiceGetResponse = zGetFctBlockProposalStatusDailyResponse; export const zFctBlockProposalStatusHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -11335,11 +43319,16 @@ export const zFctBlockProposalStatusHourlyServiceListData = z.object({ export const zFctBlockProposalStatusHourlyServiceListResponse = zListFctBlockProposalStatusHourlyResponse; export const zFctBlockProposalStatusHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -11348,100 +43337,445 @@ export const zFctBlockProposalStatusHourlyServiceGetData = z.object({ export const zFctBlockProposalStatusHourlyServiceGetResponse = zGetFctBlockProposalStatusHourlyResponse; export const zFctBlockProposerServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_pubkey_eq: z.optional(z.string()), - proposer_pubkey_ne: z.optional(z.string()), - proposer_pubkey_contains: z.optional(z.string()), - proposer_pubkey_starts_with: z.optional(z.string()), - proposer_pubkey_ends_with: z.optional(z.string()), - proposer_pubkey_like: z.optional(z.string()), - proposer_pubkey_not_like: z.optional(z.string()), - proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_pubkey_eq: z.optional(z.string()), + proposer_pubkey_ne: z.optional(z.string()), + proposer_pubkey_contains: z.optional(z.string()), + proposer_pubkey_starts_with: z.optional(z.string()), + proposer_pubkey_ends_with: z.optional(z.string()), + proposer_pubkey_like: z.optional(z.string()), + proposer_pubkey_not_like: z.optional(z.string()), + proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -11450,11 +43784,16 @@ export const zFctBlockProposerServiceListData = z.object({ export const zFctBlockProposerServiceListResponse = zListFctBlockProposerResponse; export const zFctBlockProposerServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -11463,100 +43802,445 @@ export const zFctBlockProposerServiceGetData = z.object({ export const zFctBlockProposerServiceGetResponse = zGetFctBlockProposerResponse; export const zFctBlockProposerByValidatorServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - pubkey_eq: z.optional(z.string()), - pubkey_ne: z.optional(z.string()), - pubkey_contains: z.optional(z.string()), - pubkey_starts_with: z.optional(z.string()), - pubkey_ends_with: z.optional(z.string()), - pubkey_like: z.optional(z.string()), - pubkey_not_like: z.optional(z.string()), - pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + pubkey_eq: z.optional(z.string()), + pubkey_ne: z.optional(z.string()), + pubkey_contains: z.optional(z.string()), + pubkey_starts_with: z.optional(z.string()), + pubkey_ends_with: z.optional(z.string()), + pubkey_like: z.optional(z.string()), + pubkey_not_like: z.optional(z.string()), + pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -11565,11 +44249,16 @@ export const zFctBlockProposerByValidatorServiceListData = z.object({ export const zFctBlockProposerByValidatorServiceListResponse = zListFctBlockProposerByValidatorResponse; export const zFctBlockProposerByValidatorServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -11578,72 +44267,361 @@ export const zFctBlockProposerByValidatorServiceGetData = z.object({ export const zFctBlockProposerByValidatorServiceGetResponse = zGetFctBlockProposerByValidatorResponse; export const zFctBlockProposerEntityServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - entity_eq: z.optional(z.string()), - entity_ne: z.optional(z.string()), - entity_contains: z.optional(z.string()), - entity_starts_with: z.optional(z.string()), - entity_ends_with: z.optional(z.string()), - entity_like: z.optional(z.string()), - entity_not_like: z.optional(z.string()), - entity_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - entity_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + entity_eq: z.optional(z.string()), + entity_ne: z.optional(z.string()), + entity_contains: z.optional(z.string()), + entity_starts_with: z.optional(z.string()), + entity_ends_with: z.optional(z.string()), + entity_like: z.optional(z.string()), + entity_not_like: z.optional(z.string()), + entity_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + entity_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -11652,11 +44630,16 @@ export const zFctBlockProposerEntityServiceListData = z.object({ export const zFctBlockProposerEntityServiceListResponse = zListFctBlockProposerEntityResponse; export const zFctBlockProposerEntityServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -11665,91 +44648,436 @@ export const zFctBlockProposerEntityServiceGetData = z.object({ export const zFctBlockProposerEntityServiceGetResponse = zGetFctBlockProposerEntityResponse; export const zFctBlockProposerHeadServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_pubkey_eq: z.optional(z.string()), - proposer_pubkey_ne: z.optional(z.string()), - proposer_pubkey_contains: z.optional(z.string()), - proposer_pubkey_starts_with: z.optional(z.string()), - proposer_pubkey_ends_with: z.optional(z.string()), - proposer_pubkey_like: z.optional(z.string()), - proposer_pubkey_not_like: z.optional(z.string()), - proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_pubkey_eq: z.optional(z.string()), + proposer_pubkey_ne: z.optional(z.string()), + proposer_pubkey_contains: z.optional(z.string()), + proposer_pubkey_starts_with: z.optional(z.string()), + proposer_pubkey_ends_with: z.optional(z.string()), + proposer_pubkey_like: z.optional(z.string()), + proposer_pubkey_not_like: z.optional(z.string()), + proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -11758,11 +45086,16 @@ export const zFctBlockProposerHeadServiceListData = z.object({ export const zFctBlockProposerHeadServiceListResponse = zListFctBlockProposerHeadResponse; export const zFctBlockProposerHeadServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -11771,215 +45104,1086 @@ export const zFctBlockProposerHeadServiceGetData = z.object({ export const zFctBlockProposerHeadServiceGetResponse = zGetFctBlockProposerHeadResponse; export const zFctContractStorageStateByAddressDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctContractStorageStateByAddressDailyServiceListResponse = zListFctContractStorageStateByAddressDailyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctContractStorageStateByAddressDailyServiceListResponse = + zListFctContractStorageStateByAddressDailyResponse; export const zFctContractStorageStateByAddressDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctContractStorageStateByAddressDailyServiceGetResponse = zGetFctContractStorageStateByAddressDailyResponse; +export const zFctContractStorageStateByAddressDailyServiceGetResponse = + zGetFctContractStorageStateByAddressDailyResponse; export const zFctContractStorageStateByAddressHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctContractStorageStateByAddressHourlyServiceListResponse = zListFctContractStorageStateByAddressHourlyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctContractStorageStateByAddressHourlyServiceListResponse = + zListFctContractStorageStateByAddressHourlyResponse; export const zFctContractStorageStateByAddressHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctContractStorageStateByAddressHourlyServiceGetResponse = zGetFctContractStorageStateByAddressHourlyResponse; +export const zFctContractStorageStateByAddressHourlyServiceGetResponse = + zGetFctContractStorageStateByAddressHourlyResponse; export const zFctContractStorageStateByBlockDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_contracts_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_contracts_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_contracts_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_contracts_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -11988,11 +46192,11 @@ export const zFctContractStorageStateByBlockDailyServiceListData = z.object({ export const zFctContractStorageStateByBlockDailyServiceListResponse = zListFctContractStorageStateByBlockDailyResponse; export const zFctContractStorageStateByBlockDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -12001,76 +46205,467 @@ export const zFctContractStorageStateByBlockDailyServiceGetData = z.object({ export const zFctContractStorageStateByBlockDailyServiceGetResponse = zGetFctContractStorageStateByBlockDailyResponse; export const zFctContractStorageStateByBlockHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_contracts_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_contracts_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctContractStorageStateByBlockHourlyServiceListResponse = zListFctContractStorageStateByBlockHourlyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_contracts_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_contracts_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctContractStorageStateByBlockHourlyServiceListResponse = + zListFctContractStorageStateByBlockHourlyResponse; export const zFctContractStorageStateByBlockHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -12079,520 +46674,2765 @@ export const zFctContractStorageStateByBlockHourlyServiceGetData = z.object({ export const zFctContractStorageStateByBlockHourlyServiceGetResponse = zGetFctContractStorageStateByBlockHourlyResponse; export const zFctContractStorageStateWithExpiryByAddressDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctContractStorageStateWithExpiryByAddressDailyServiceListResponse = zListFctContractStorageStateWithExpiryByAddressDailyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctContractStorageStateWithExpiryByAddressDailyServiceListResponse = + zListFctContractStorageStateWithExpiryByAddressDailyResponse; export const zFctContractStorageStateWithExpiryByAddressDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctContractStorageStateWithExpiryByAddressDailyServiceGetResponse = zGetFctContractStorageStateWithExpiryByAddressDailyResponse; +export const zFctContractStorageStateWithExpiryByAddressDailyServiceGetResponse = + zGetFctContractStorageStateWithExpiryByAddressDailyResponse; export const zFctContractStorageStateWithExpiryByAddressHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctContractStorageStateWithExpiryByAddressHourlyServiceListResponse = zListFctContractStorageStateWithExpiryByAddressHourlyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctContractStorageStateWithExpiryByAddressHourlyServiceListResponse = + zListFctContractStorageStateWithExpiryByAddressHourlyResponse; export const zFctContractStorageStateWithExpiryByAddressHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse = zGetFctContractStorageStateWithExpiryByAddressHourlyResponse; +export const zFctContractStorageStateWithExpiryByAddressHourlyServiceGetResponse = + zGetFctContractStorageStateWithExpiryByAddressHourlyResponse; export const zFctContractStorageStateWithExpiryByBlockDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_contracts_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_contracts_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctContractStorageStateWithExpiryByBlockDailyServiceListResponse = zListFctContractStorageStateWithExpiryByBlockDailyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_contracts_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_contracts_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctContractStorageStateWithExpiryByBlockDailyServiceListResponse = + zListFctContractStorageStateWithExpiryByBlockDailyResponse; export const zFctContractStorageStateWithExpiryByBlockDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - expiry_policy: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + expiry_policy: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctContractStorageStateWithExpiryByBlockDailyServiceGetResponse = zGetFctContractStorageStateWithExpiryByBlockDailyResponse; +export const zFctContractStorageStateWithExpiryByBlockDailyServiceGetResponse = + zGetFctContractStorageStateWithExpiryByBlockDailyResponse; export const zFctContractStorageStateWithExpiryByBlockHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_contracts_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_contracts_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctContractStorageStateWithExpiryByBlockHourlyServiceListResponse = zListFctContractStorageStateWithExpiryByBlockHourlyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_contracts_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_contracts_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctContractStorageStateWithExpiryByBlockHourlyServiceListResponse = + zListFctContractStorageStateWithExpiryByBlockHourlyResponse; export const zFctContractStorageStateWithExpiryByBlockHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - expiry_policy: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + expiry_policy: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse = zGetFctContractStorageStateWithExpiryByBlockHourlyResponse; +export const zFctContractStorageStateWithExpiryByBlockHourlyServiceGetResponse = + zGetFctContractStorageStateWithExpiryByBlockHourlyResponse; export const zFctDataColumnAvailabilityByEpochServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_index_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_probe_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_probe_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_success_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_failure_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_failure_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_missing_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_missing_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_availability_pct_value: z.optional(z.number()), - min_availability_pct_value: z.optional(z.number()), - max_availability_pct_value: z.optional(z.number()), - min_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p50_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p50_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p95_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p95_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p99_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p99_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_index_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_probe_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_probe_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_success_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_failure_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_failure_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_missing_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_missing_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_availability_pct_value: z.optional(z.number()), + min_availability_pct_value: z.optional(z.number()), + max_availability_pct_value: z.optional(z.number()), + min_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p50_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p50_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p95_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p95_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p99_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p99_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -12601,11 +49441,16 @@ export const zFctDataColumnAvailabilityByEpochServiceListData = z.object({ export const zFctDataColumnAvailabilityByEpochServiceListResponse = zListFctDataColumnAvailabilityByEpochResponse; export const zFctDataColumnAvailabilityByEpochServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - epoch_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + epoch_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -12614,283 +49459,1764 @@ export const zFctDataColumnAvailabilityByEpochServiceGetData = z.object({ export const zFctDataColumnAvailabilityByEpochServiceGetResponse = zGetFctDataColumnAvailabilityByEpochResponse; export const zFctDataColumnAvailabilityBySlotServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_index_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - beacon_block_root_eq: z.optional(z.string()), - beacon_block_root_ne: z.optional(z.string()), - beacon_block_root_contains: z.optional(z.string()), - beacon_block_root_starts_with: z.optional(z.string()), - beacon_block_root_ends_with: z.optional(z.string()), - beacon_block_root_like: z.optional(z.string()), - beacon_block_root_not_like: z.optional(z.string()), - beacon_block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - beacon_block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - beacon_block_root_variants_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - beacon_block_root_variants_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - beacon_block_root_variants_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - beacon_block_root_variants_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - beacon_block_root_variants_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - beacon_block_root_variants_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - beacon_block_root_variants_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - beacon_block_root_variants_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - beacon_block_root_variants_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - beacon_block_root_variants_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - success_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - failure_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - failure_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missing_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missing_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - probe_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - probe_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - availability_pct_value: z.optional(z.number()), - min_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p99_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p99_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_peer_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_peer_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_client_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_client_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_implementation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_implementation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - custody_probe_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - custody_probe_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - custody_probe_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - custody_probe_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - custody_probe_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - custody_probe_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - custody_probe_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - custody_probe_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - custody_probe_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - custody_probe_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gossipsub_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gossipsub_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gossipsub_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gossipsub_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gossipsub_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gossipsub_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gossipsub_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gossipsub_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gossipsub_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gossipsub_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_index_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + beacon_block_root_eq: z.optional(z.string()), + beacon_block_root_ne: z.optional(z.string()), + beacon_block_root_contains: z.optional(z.string()), + beacon_block_root_starts_with: z.optional(z.string()), + beacon_block_root_ends_with: z.optional(z.string()), + beacon_block_root_like: z.optional(z.string()), + beacon_block_root_not_like: z.optional(z.string()), + beacon_block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + beacon_block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + beacon_block_root_variants_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + beacon_block_root_variants_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + beacon_block_root_variants_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + beacon_block_root_variants_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + beacon_block_root_variants_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + beacon_block_root_variants_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + beacon_block_root_variants_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + beacon_block_root_variants_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + beacon_block_root_variants_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + beacon_block_root_variants_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + success_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + failure_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + failure_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missing_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missing_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + probe_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + probe_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + availability_pct_value: z.optional(z.number()), + min_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p99_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p99_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_peer_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_peer_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_client_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_client_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_implementation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_implementation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + custody_probe_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + custody_probe_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + custody_probe_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + custody_probe_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + custody_probe_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + custody_probe_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + custody_probe_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + custody_probe_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + custody_probe_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + custody_probe_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gossipsub_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gossipsub_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gossipsub_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gossipsub_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gossipsub_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gossipsub_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gossipsub_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gossipsub_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gossipsub_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gossipsub_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -12899,11 +51225,16 @@ export const zFctDataColumnAvailabilityBySlotServiceListData = z.object({ export const zFctDataColumnAvailabilityBySlotServiceListResponse = zListFctDataColumnAvailabilityBySlotResponse; export const zFctDataColumnAvailabilityBySlotServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -12912,254 +51243,1623 @@ export const zFctDataColumnAvailabilityBySlotServiceGetData = z.object({ export const zFctDataColumnAvailabilityBySlotServiceGetResponse = zGetFctDataColumnAvailabilityBySlotResponse; export const zFctDataColumnAvailabilityBySlotBlobServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_index_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_request_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_request_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - availability_pct_value: z.optional(z.number()), - success_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - failure_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - failure_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - failure_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missing_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missing_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missing_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - probe_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - probe_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p99_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p99_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p99_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_peer_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_peer_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_peer_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_client_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_client_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_client_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_implementation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_implementation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_implementation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_index_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_request_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_request_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + availability_pct_value: z.optional(z.number()), + success_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + failure_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + failure_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + failure_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missing_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missing_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missing_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + probe_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + probe_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p99_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p99_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p99_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_peer_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_peer_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_peer_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_client_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_client_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_client_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_implementation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_implementation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_implementation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -13168,11 +52868,16 @@ export const zFctDataColumnAvailabilityBySlotBlobServiceListData = z.object({ export const zFctDataColumnAvailabilityBySlotBlobServiceListResponse = zListFctDataColumnAvailabilityBySlotBlobResponse; export const zFctDataColumnAvailabilityBySlotBlobServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -13181,155 +52886,972 @@ export const zFctDataColumnAvailabilityBySlotBlobServiceGetData = z.object({ export const zFctDataColumnAvailabilityBySlotBlobServiceGetResponse = zGetFctDataColumnAvailabilityBySlotBlobResponse; export const zFctDataColumnAvailabilityDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - date_eq: z.optional(z.string()), - date_ne: z.optional(z.string()), - date_contains: z.optional(z.string()), - date_starts_with: z.optional(z.string()), - date_ends_with: z.optional(z.string()), - date_like: z.optional(z.string()), - date_not_like: z.optional(z.string()), - date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - column_index_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_availability_pct_value: z.optional(z.number()), - min_availability_pct_value: z.optional(z.number()), - max_availability_pct_value: z.optional(z.number()), - total_probe_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_probe_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_success_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_failure_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_failure_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_missing_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_missing_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p50_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p50_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p95_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p95_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p99_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p99_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + date_eq: z.optional(z.string()), + date_ne: z.optional(z.string()), + date_contains: z.optional(z.string()), + date_starts_with: z.optional(z.string()), + date_ends_with: z.optional(z.string()), + date_like: z.optional(z.string()), + date_not_like: z.optional(z.string()), + date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + column_index_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_availability_pct_value: z.optional(z.number()), + min_availability_pct_value: z.optional(z.number()), + max_availability_pct_value: z.optional(z.number()), + total_probe_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_probe_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_success_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_failure_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_failure_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_missing_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_missing_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p50_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p50_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p95_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p95_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p99_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p99_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -13338,11 +53860,11 @@ export const zFctDataColumnAvailabilityDailyServiceListData = z.object({ export const zFctDataColumnAvailabilityDailyServiceListResponse = zListFctDataColumnAvailabilityDailyResponse; export const zFctDataColumnAvailabilityDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -13351,156 +53873,1029 @@ export const zFctDataColumnAvailabilityDailyServiceGetData = z.object({ export const zFctDataColumnAvailabilityDailyServiceGetResponse = zGetFctDataColumnAvailabilityDailyResponse; export const zFctDataColumnAvailabilityHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_index_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_availability_pct_value: z.optional(z.number()), - min_availability_pct_value: z.optional(z.number()), - max_availability_pct_value: z.optional(z.number()), - total_probe_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_probe_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_probe_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_success_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_failure_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_failure_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_failure_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_missing_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_missing_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_missing_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p50_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p50_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p50_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p95_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p95_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p95_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p99_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - avg_p99_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_p99_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_response_time_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_index_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_availability_pct_value: z.optional(z.number()), + min_availability_pct_value: z.optional(z.number()), + max_availability_pct_value: z.optional(z.number()), + total_probe_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_probe_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_probe_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_success_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_failure_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_failure_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_failure_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_missing_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_missing_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_missing_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p50_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p50_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p50_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p95_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p95_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p95_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p99_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + avg_p99_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_p99_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_response_time_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -13509,11 +54904,16 @@ export const zFctDataColumnAvailabilityHourlyServiceListData = z.object({ export const zFctDataColumnAvailabilityHourlyServiceListResponse = zListFctDataColumnAvailabilityHourlyResponse; export const zFctDataColumnAvailabilityHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -13522,189 +54922,1006 @@ export const zFctDataColumnAvailabilityHourlyServiceGetData = z.object({ export const zFctDataColumnAvailabilityHourlyServiceGetResponse = zGetFctDataColumnAvailabilityHourlyResponse; export const zFctEngineGetBlobsByElClientServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_eq: z.optional(z.string()), - meta_execution_implementation_ne: z.optional(z.string()), - meta_execution_implementation_contains: z.optional(z.string()), - meta_execution_implementation_starts_with: z.optional(z.string()), - meta_execution_implementation_ends_with: z.optional(z.string()), - meta_execution_implementation_like: z.optional(z.string()), - meta_execution_implementation_not_like: z.optional(z.string()), - meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_eq: z.optional(z.string()), - meta_execution_version_ne: z.optional(z.string()), - meta_execution_version_contains: z.optional(z.string()), - meta_execution_version_starts_with: z.optional(z.string()), - meta_execution_version_ends_with: z.optional(z.string()), - meta_execution_version_like: z.optional(z.string()), - meta_execution_version_not_like: z.optional(z.string()), - meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_node_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_node_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_requested_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_requested_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_returned_count_value: z.optional(z.number()), - avg_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - median_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - median_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_eq: z.optional(z.string()), + meta_execution_implementation_ne: z.optional(z.string()), + meta_execution_implementation_contains: z.optional(z.string()), + meta_execution_implementation_starts_with: z.optional(z.string()), + meta_execution_implementation_ends_with: z.optional(z.string()), + meta_execution_implementation_like: z.optional(z.string()), + meta_execution_implementation_not_like: z.optional(z.string()), + meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_eq: z.optional(z.string()), + meta_execution_version_ne: z.optional(z.string()), + meta_execution_version_contains: z.optional(z.string()), + meta_execution_version_starts_with: z.optional(z.string()), + meta_execution_version_ends_with: z.optional(z.string()), + meta_execution_version_like: z.optional(z.string()), + meta_execution_version_not_like: z.optional(z.string()), + meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_node_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_node_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_requested_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_requested_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_returned_count_value: z.optional(z.number()), + avg_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + median_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + median_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -13713,11 +55930,16 @@ export const zFctEngineGetBlobsByElClientServiceListData = z.object({ export const zFctEngineGetBlobsByElClientServiceListResponse = zListFctEngineGetBlobsByElClientResponse; export const zFctEngineGetBlobsByElClientServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -13726,191 +55948,1200 @@ export const zFctEngineGetBlobsByElClientServiceGetData = z.object({ export const zFctEngineGetBlobsByElClientServiceGetResponse = zGetFctEngineGetBlobsByElClientResponse; export const zFctEngineGetBlobsByElClientHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_execution_implementation_eq: z.optional(z.string()), - meta_execution_implementation_ne: z.optional(z.string()), - meta_execution_implementation_contains: z.optional(z.string()), - meta_execution_implementation_starts_with: z.optional(z.string()), - meta_execution_implementation_ends_with: z.optional(z.string()), - meta_execution_implementation_like: z.optional(z.string()), - meta_execution_implementation_not_like: z.optional(z.string()), - meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_eq: z.optional(z.string()), - meta_execution_version_ne: z.optional(z.string()), - meta_execution_version_contains: z.optional(z.string()), - meta_execution_version_starts_with: z.optional(z.string()), - meta_execution_version_ends_with: z.optional(z.string()), - meta_execution_version_like: z.optional(z.string()), - meta_execution_version_not_like: z.optional(z.string()), - meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_node_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_node_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - success_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - success_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - success_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - success_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - success_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - success_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - success_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - success_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - partial_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - partial_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - partial_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - partial_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - partial_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - partial_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - partial_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - partial_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - partial_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - partial_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - empty_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - empty_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - empty_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - empty_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - empty_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - empty_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - empty_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - empty_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - empty_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - empty_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unsupported_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - unsupported_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - unsupported_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - unsupported_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - unsupported_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - unsupported_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - unsupported_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - unsupported_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - unsupported_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unsupported_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - error_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_returned_count_value: z.optional(z.number()), - avg_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_execution_implementation_eq: z.optional(z.string()), + meta_execution_implementation_ne: z.optional(z.string()), + meta_execution_implementation_contains: z.optional(z.string()), + meta_execution_implementation_starts_with: z.optional(z.string()), + meta_execution_implementation_ends_with: z.optional(z.string()), + meta_execution_implementation_like: z.optional(z.string()), + meta_execution_implementation_not_like: z.optional(z.string()), + meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_eq: z.optional(z.string()), + meta_execution_version_ne: z.optional(z.string()), + meta_execution_version_contains: z.optional(z.string()), + meta_execution_version_starts_with: z.optional(z.string()), + meta_execution_version_ends_with: z.optional(z.string()), + meta_execution_version_like: z.optional(z.string()), + meta_execution_version_not_like: z.optional(z.string()), + meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_node_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_node_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + success_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + success_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + success_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + success_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + success_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + success_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + success_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + success_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + partial_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + partial_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + partial_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + partial_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + partial_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + partial_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + partial_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + partial_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + partial_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + partial_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + empty_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + empty_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + empty_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + empty_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + empty_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + empty_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + empty_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + empty_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + empty_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + empty_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unsupported_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + unsupported_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + unsupported_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + unsupported_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + unsupported_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + unsupported_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + unsupported_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + unsupported_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + unsupported_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unsupported_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + error_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_returned_count_value: z.optional(z.number()), + avg_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -13919,11 +57150,16 @@ export const zFctEngineGetBlobsByElClientHourlyServiceListData = z.object({ export const zFctEngineGetBlobsByElClientHourlyServiceListResponse = zListFctEngineGetBlobsByElClientHourlyResponse; export const zFctEngineGetBlobsByElClientHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -13932,192 +57168,1121 @@ export const zFctEngineGetBlobsByElClientHourlyServiceGetData = z.object({ export const zFctEngineGetBlobsByElClientHourlyServiceGetResponse = zGetFctEngineGetBlobsByElClientHourlyResponse; export const zFctEngineGetBlobsBySlotServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_node_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_node_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_requested_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_requested_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_requested_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_returned_count_value: z.optional(z.number()), - full_return_pct_value: z.optional(z.number()), - avg_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - median_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - median_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_cl_implementation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_cl_implementation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_el_implementation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_el_implementation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_node_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_node_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_requested_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_requested_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_requested_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_returned_count_value: z.optional(z.number()), + full_return_pct_value: z.optional(z.number()), + avg_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + median_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + median_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_cl_implementation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_cl_implementation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_el_implementation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_el_implementation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -14126,11 +58291,16 @@ export const zFctEngineGetBlobsBySlotServiceListData = z.object({ export const zFctEngineGetBlobsBySlotServiceListResponse = zListFctEngineGetBlobsBySlotResponse; export const zFctEngineGetBlobsBySlotServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -14139,154 +58309,817 @@ export const zFctEngineGetBlobsBySlotServiceGetData = z.object({ export const zFctEngineGetBlobsBySlotServiceGetResponse = zGetFctEngineGetBlobsBySlotResponse; export const zFctEngineGetBlobsDurationChunked50MsServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - chunk_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - chunk_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - success_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - partial_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - partial_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - partial_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - partial_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - partial_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - partial_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - partial_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - partial_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - partial_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - partial_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - empty_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - empty_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - empty_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - empty_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - empty_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - empty_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - empty_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - empty_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - empty_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - empty_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - error_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - error_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - error_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - error_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - error_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - error_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - error_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - error_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctEngineGetBlobsDurationChunked50MsServiceListResponse = zListFctEngineGetBlobsDurationChunked50MsResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + chunk_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + chunk_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + success_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + success_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + success_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + partial_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + partial_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + partial_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + partial_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + partial_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + partial_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + partial_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + partial_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + partial_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + partial_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + empty_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + empty_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + empty_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + empty_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + empty_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + empty_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + empty_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + empty_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + empty_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + empty_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + error_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + error_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + error_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + error_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + error_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + error_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + error_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + error_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctEngineGetBlobsDurationChunked50MsServiceListResponse = + zListFctEngineGetBlobsDurationChunked50MsResponse; export const zFctEngineGetBlobsDurationChunked50MsServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -14295,227 +59128,1244 @@ export const zFctEngineGetBlobsDurationChunked50MsServiceGetData = z.object({ export const zFctEngineGetBlobsDurationChunked50MsServiceGetResponse = zGetFctEngineGetBlobsDurationChunked50MsResponse; export const zFctEngineNewPayloadByElClientServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_hash_eq: z.optional(z.string()), - block_hash_ne: z.optional(z.string()), - block_hash_contains: z.optional(z.string()), - block_hash_starts_with: z.optional(z.string()), - block_hash_ends_with: z.optional(z.string()), - block_hash_like: z.optional(z.string()), - block_hash_not_like: z.optional(z.string()), - block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_eq: z.optional(z.string()), - meta_execution_implementation_ne: z.optional(z.string()), - meta_execution_implementation_contains: z.optional(z.string()), - meta_execution_implementation_starts_with: z.optional(z.string()), - meta_execution_implementation_ends_with: z.optional(z.string()), - meta_execution_implementation_like: z.optional(z.string()), - meta_execution_implementation_not_like: z.optional(z.string()), - meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_eq: z.optional(z.string()), - meta_execution_version_ne: z.optional(z.string()), - meta_execution_version_contains: z.optional(z.string()), - meta_execution_version_starts_with: z.optional(z.string()), - meta_execution_version_ends_with: z.optional(z.string()), - meta_execution_version_like: z.optional(z.string()), - meta_execution_version_not_like: z.optional(z.string()), - meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - tx_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - tx_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_node_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_node_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - median_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - median_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_eq: z.optional(z.string()), + meta_execution_implementation_ne: z.optional(z.string()), + meta_execution_implementation_contains: z.optional(z.string()), + meta_execution_implementation_starts_with: z.optional(z.string()), + meta_execution_implementation_ends_with: z.optional(z.string()), + meta_execution_implementation_like: z.optional(z.string()), + meta_execution_implementation_not_like: z.optional(z.string()), + meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_eq: z.optional(z.string()), + meta_execution_version_ne: z.optional(z.string()), + meta_execution_version_contains: z.optional(z.string()), + meta_execution_version_starts_with: z.optional(z.string()), + meta_execution_version_ends_with: z.optional(z.string()), + meta_execution_version_like: z.optional(z.string()), + meta_execution_version_not_like: z.optional(z.string()), + meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + tx_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + tx_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_node_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_node_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + median_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + median_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -14524,11 +60374,16 @@ export const zFctEngineNewPayloadByElClientServiceListData = z.object({ export const zFctEngineNewPayloadByElClientServiceListResponse = zListFctEngineNewPayloadByElClientResponse; export const zFctEngineNewPayloadByElClientServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -14537,202 +60392,1283 @@ export const zFctEngineNewPayloadByElClientServiceGetData = z.object({ export const zFctEngineNewPayloadByElClientServiceGetResponse = zGetFctEngineNewPayloadByElClientResponse; export const zFctEngineNewPayloadByElClientHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_execution_implementation_eq: z.optional(z.string()), - meta_execution_implementation_ne: z.optional(z.string()), - meta_execution_implementation_contains: z.optional(z.string()), - meta_execution_implementation_starts_with: z.optional(z.string()), - meta_execution_implementation_ends_with: z.optional(z.string()), - meta_execution_implementation_like: z.optional(z.string()), - meta_execution_implementation_not_like: z.optional(z.string()), - meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_eq: z.optional(z.string()), - meta_execution_version_ne: z.optional(z.string()), - meta_execution_version_contains: z.optional(z.string()), - meta_execution_version_starts_with: z.optional(z.string()), - meta_execution_version_ends_with: z.optional(z.string()), - meta_execution_version_like: z.optional(z.string()), - meta_execution_version_not_like: z.optional(z.string()), - meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_node_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_node_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - valid_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - valid_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - valid_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - valid_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - valid_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - valid_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - valid_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - valid_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - valid_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - valid_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - invalid_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - invalid_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - invalid_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - invalid_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - invalid_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - invalid_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - invalid_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - invalid_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - invalid_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - invalid_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - syncing_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - syncing_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - syncing_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - syncing_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - syncing_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - syncing_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - syncing_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - syncing_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - syncing_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - syncing_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - accepted_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accepted_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accepted_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accepted_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accepted_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accepted_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accepted_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accepted_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accepted_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - accepted_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_tx_count_value: z.optional(z.number()), - avg_blob_count_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_execution_implementation_eq: z.optional(z.string()), + meta_execution_implementation_ne: z.optional(z.string()), + meta_execution_implementation_contains: z.optional(z.string()), + meta_execution_implementation_starts_with: z.optional(z.string()), + meta_execution_implementation_ends_with: z.optional(z.string()), + meta_execution_implementation_like: z.optional(z.string()), + meta_execution_implementation_not_like: z.optional(z.string()), + meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_eq: z.optional(z.string()), + meta_execution_version_ne: z.optional(z.string()), + meta_execution_version_contains: z.optional(z.string()), + meta_execution_version_starts_with: z.optional(z.string()), + meta_execution_version_ends_with: z.optional(z.string()), + meta_execution_version_like: z.optional(z.string()), + meta_execution_version_not_like: z.optional(z.string()), + meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_node_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_node_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + valid_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + valid_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + valid_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + valid_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + valid_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + valid_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + valid_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + valid_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + valid_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + valid_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + invalid_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + invalid_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + invalid_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + invalid_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + invalid_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + invalid_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + invalid_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + invalid_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + invalid_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + invalid_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + syncing_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + syncing_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + syncing_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + syncing_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + syncing_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + syncing_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + syncing_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + syncing_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + syncing_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + syncing_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + accepted_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accepted_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accepted_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accepted_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accepted_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accepted_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accepted_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accepted_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accepted_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + accepted_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_tx_count_value: z.optional(z.number()), + avg_blob_count_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -14741,11 +61677,16 @@ export const zFctEngineNewPayloadByElClientHourlyServiceListData = z.object({ export const zFctEngineNewPayloadByElClientHourlyServiceListResponse = zListFctEngineNewPayloadByElClientHourlyResponse; export const zFctEngineNewPayloadByElClientHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -14754,259 +61695,1588 @@ export const zFctEngineNewPayloadByElClientHourlyServiceGetData = z.object({ export const zFctEngineNewPayloadByElClientHourlyServiceGetResponse = zGetFctEngineNewPayloadByElClientHourlyResponse; export const zFctEngineNewPayloadBySlotServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_hash_eq: z.optional(z.string()), - block_hash_ne: z.optional(z.string()), - block_hash_contains: z.optional(z.string()), - block_hash_starts_with: z.optional(z.string()), - block_hash_ends_with: z.optional(z.string()), - block_hash_like: z.optional(z.string()), - block_hash_not_like: z.optional(z.string()), - block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - tx_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - tx_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_node_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_node_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_node_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - median_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - median_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - median_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p99_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p99_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p99_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p99_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p99_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p99_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p99_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p99_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p99_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p99_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_cl_implementation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_cl_implementation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_cl_implementation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_el_implementation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - unique_el_implementation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - unique_el_implementation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + tx_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + tx_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_node_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_node_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_node_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + median_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + median_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + median_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p99_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p99_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p99_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p99_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p99_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p99_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p99_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p99_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p99_duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p99_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_cl_implementation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_cl_implementation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_cl_implementation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_el_implementation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + unique_el_implementation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + unique_el_implementation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -15015,11 +63285,16 @@ export const zFctEngineNewPayloadBySlotServiceListData = z.object({ export const zFctEngineNewPayloadBySlotServiceListResponse = zListFctEngineNewPayloadBySlotResponse; export const zFctEngineNewPayloadBySlotServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -15028,196 +63303,869 @@ export const zFctEngineNewPayloadBySlotServiceGetData = z.object({ export const zFctEngineNewPayloadBySlotServiceGetResponse = zGetFctEngineNewPayloadBySlotResponse; export const zFctEngineNewPayloadDurationChunked50MsServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_hash_eq: z.optional(z.string()), - block_hash_ne: z.optional(z.string()), - block_hash_contains: z.optional(z.string()), - block_hash_starts_with: z.optional(z.string()), - block_hash_ends_with: z.optional(z.string()), - block_hash_like: z.optional(z.string()), - block_hash_not_like: z.optional(z.string()), - block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - chunk_duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - chunk_duration_ms_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - chunk_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - valid_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - valid_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - valid_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - valid_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - valid_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - valid_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - valid_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - valid_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - valid_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - valid_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - invalid_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - invalid_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - invalid_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - invalid_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - invalid_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - invalid_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - invalid_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - invalid_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - invalid_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - invalid_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctEngineNewPayloadDurationChunked50MsServiceListResponse = zListFctEngineNewPayloadDurationChunked50MsResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + chunk_duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + chunk_duration_ms_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + chunk_duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + observation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + observation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + valid_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + valid_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + valid_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + valid_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + valid_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + valid_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + valid_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + valid_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + valid_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + valid_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + invalid_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + invalid_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + invalid_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + invalid_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + invalid_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + invalid_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + invalid_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + invalid_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + invalid_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + invalid_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctEngineNewPayloadDurationChunked50MsServiceListResponse = + zListFctEngineNewPayloadDurationChunked50MsResponse; export const zFctEngineNewPayloadDurationChunked50MsServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctEngineNewPayloadDurationChunked50MsServiceGetResponse = zGetFctEngineNewPayloadDurationChunked50MsResponse; +export const zFctEngineNewPayloadDurationChunked50MsServiceGetResponse = + zGetFctEngineNewPayloadDurationChunked50MsResponse; export const zFctEngineNewPayloadWinrateDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_eq: z.optional(z.string()), - meta_execution_implementation_ne: z.optional(z.string()), - meta_execution_implementation_contains: z.optional(z.string()), - meta_execution_implementation_starts_with: z.optional(z.string()), - meta_execution_implementation_ends_with: z.optional(z.string()), - meta_execution_implementation_like: z.optional(z.string()), - meta_execution_implementation_not_like: z.optional(z.string()), - meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - win_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - win_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_eq: z.optional(z.string()), + meta_execution_implementation_ne: z.optional(z.string()), + meta_execution_implementation_contains: z.optional(z.string()), + meta_execution_implementation_starts_with: z.optional(z.string()), + meta_execution_implementation_ends_with: z.optional(z.string()), + meta_execution_implementation_like: z.optional(z.string()), + meta_execution_implementation_not_like: z.optional(z.string()), + meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + win_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + win_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -15226,11 +64174,11 @@ export const zFctEngineNewPayloadWinrateDailyServiceListData = z.object({ export const zFctEngineNewPayloadWinrateDailyServiceListResponse = zListFctEngineNewPayloadWinrateDailyResponse; export const zFctEngineNewPayloadWinrateDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -15239,61 +64187,238 @@ export const zFctEngineNewPayloadWinrateDailyServiceGetData = z.object({ export const zFctEngineNewPayloadWinrateDailyServiceGetResponse = zGetFctEngineNewPayloadWinrateDailyResponse; export const zFctEngineNewPayloadWinrateHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_eq: z.optional(z.string()), - meta_execution_implementation_ne: z.optional(z.string()), - meta_execution_implementation_contains: z.optional(z.string()), - meta_execution_implementation_starts_with: z.optional(z.string()), - meta_execution_implementation_ends_with: z.optional(z.string()), - meta_execution_implementation_like: z.optional(z.string()), - meta_execution_implementation_not_like: z.optional(z.string()), - meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - win_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - win_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - win_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_eq: z.optional(z.string()), + meta_execution_implementation_ne: z.optional(z.string()), + meta_execution_implementation_contains: z.optional(z.string()), + meta_execution_implementation_starts_with: z.optional(z.string()), + meta_execution_implementation_ends_with: z.optional(z.string()), + meta_execution_implementation_like: z.optional(z.string()), + meta_execution_implementation_not_like: z.optional(z.string()), + meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + win_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + win_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + win_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -15302,11 +64427,16 @@ export const zFctEngineNewPayloadWinrateHourlyServiceListData = z.object({ export const zFctEngineNewPayloadWinrateHourlyServiceListResponse = zListFctEngineNewPayloadWinrateHourlyResponse; export const zFctEngineNewPayloadWinrateHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -15315,152 +64445,1081 @@ export const zFctEngineNewPayloadWinrateHourlyServiceGetData = z.object({ export const zFctEngineNewPayloadWinrateHourlyServiceGetResponse = zGetFctEngineNewPayloadWinrateHourlyResponse; export const zFctExecutionGasLimitDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - stddev_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - stddev_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - upper_band_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - upper_band_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - lower_band_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - lower_band_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - moving_avg_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - moving_avg_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + stddev_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + stddev_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + upper_band_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + upper_band_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + lower_band_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + lower_band_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + moving_avg_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + moving_avg_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -15469,11 +65528,11 @@ export const zFctExecutionGasLimitDailyServiceListData = z.object({ export const zFctExecutionGasLimitDailyServiceListResponse = zListFctExecutionGasLimitDailyResponse; export const zFctExecutionGasLimitDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -15482,153 +65541,1138 @@ export const zFctExecutionGasLimitDailyServiceGetData = z.object({ export const zFctExecutionGasLimitDailyServiceGetResponse = zGetFctExecutionGasLimitDailyResponse; export const zFctExecutionGasLimitHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - stddev_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - stddev_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - upper_band_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - upper_band_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - lower_band_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_limit_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - lower_band_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - moving_avg_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - moving_avg_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + stddev_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + stddev_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + upper_band_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + upper_band_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + lower_band_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_limit_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + lower_band_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + moving_avg_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + moving_avg_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -15637,11 +66681,16 @@ export const zFctExecutionGasLimitHourlyServiceListData = z.object({ export const zFctExecutionGasLimitHourlyServiceListResponse = zListFctExecutionGasLimitHourlyResponse; export const zFctExecutionGasLimitHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -15650,47 +66699,168 @@ export const zFctExecutionGasLimitHourlyServiceGetData = z.object({ export const zFctExecutionGasLimitHourlyServiceGetResponse = zGetFctExecutionGasLimitHourlyResponse; export const zFctExecutionGasLimitSignallingDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_band_counts_key_value_key: z.optional(z.string()), - gas_limit_band_counts_key_value_value_filter_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_band_counts_key_value_value_filter_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_band_counts_has_key: z.optional(z.string()), - gas_limit_band_counts_not_has_key: z.optional(z.string()), - gas_limit_band_counts_has_any_key_values: z.optional(z.array(z.string())), - gas_limit_band_counts_has_all_keys_values: z.optional(z.array(z.string())), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_band_counts_key_value_key: z.optional(z.string()), + gas_limit_band_counts_key_value_value_filter_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_band_counts_key_value_value_filter_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_band_counts_has_key: z.optional(z.string()), + gas_limit_band_counts_not_has_key: z.optional(z.string()), + gas_limit_band_counts_has_any_key_values: z.optional(z.array(z.string())), + gas_limit_band_counts_has_all_keys_values: z.optional(z.array(z.string())), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -15699,11 +66869,11 @@ export const zFctExecutionGasLimitSignallingDailyServiceListData = z.object({ export const zFctExecutionGasLimitSignallingDailyServiceListResponse = zListFctExecutionGasLimitSignallingDailyResponse; export const zFctExecutionGasLimitSignallingDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -15712,61 +66882,244 @@ export const zFctExecutionGasLimitSignallingDailyServiceGetData = z.object({ export const zFctExecutionGasLimitSignallingDailyServiceGetResponse = zGetFctExecutionGasLimitSignallingDailyResponse; export const zFctExecutionGasLimitSignallingHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_band_counts_key_value_key: z.optional(z.string()), - gas_limit_band_counts_key_value_value_filter_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - gas_limit_band_counts_key_value_value_filter_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_band_counts_key_value_value_filter_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_band_counts_has_key: z.optional(z.string()), - gas_limit_band_counts_not_has_key: z.optional(z.string()), - gas_limit_band_counts_has_any_key_values: z.optional(z.array(z.string())), - gas_limit_band_counts_has_all_keys_values: z.optional(z.array(z.string())), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctExecutionGasLimitSignallingHourlyServiceListResponse = zListFctExecutionGasLimitSignallingHourlyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_band_counts_key_value_key: z.optional(z.string()), + gas_limit_band_counts_key_value_value_filter_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit_band_counts_key_value_value_filter_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_band_counts_key_value_value_filter_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_band_counts_has_key: z.optional(z.string()), + gas_limit_band_counts_not_has_key: z.optional(z.string()), + gas_limit_band_counts_has_any_key_values: z.optional(z.array(z.string())), + gas_limit_band_counts_has_all_keys_values: z.optional(z.array(z.string())), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctExecutionGasLimitSignallingHourlyServiceListResponse = + zListFctExecutionGasLimitSignallingHourlyResponse; export const zFctExecutionGasLimitSignallingHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -15775,162 +67128,1163 @@ export const zFctExecutionGasLimitSignallingHourlyServiceGetData = z.object({ export const zFctExecutionGasLimitSignallingHourlyServiceGetResponse = zGetFctExecutionGasLimitSignallingHourlyResponse; export const zFctExecutionGasUsedDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - cumulative_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - cumulative_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - stddev_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - stddev_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - upper_band_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - upper_band_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - lower_band_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - lower_band_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - moving_avg_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - moving_avg_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + cumulative_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + cumulative_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + stddev_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + stddev_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + upper_band_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + upper_band_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + lower_band_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + lower_band_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + moving_avg_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + moving_avg_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -15939,11 +68293,11 @@ export const zFctExecutionGasUsedDailyServiceListData = z.object({ export const zFctExecutionGasUsedDailyServiceListResponse = zListFctExecutionGasUsedDailyResponse; export const zFctExecutionGasUsedDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -15952,163 +68306,1220 @@ export const zFctExecutionGasUsedDailyServiceGetData = z.object({ export const zFctExecutionGasUsedDailyServiceGetResponse = zGetFctExecutionGasUsedDailyResponse; export const zFctExecutionGasUsedHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - cumulative_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - cumulative_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - avg_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - stddev_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - stddev_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - stddev_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - upper_band_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - upper_band_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - upper_band_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - lower_band_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - lower_band_gas_used_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - lower_band_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - moving_avg_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - moving_avg_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - moving_avg_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + cumulative_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + cumulative_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + avg_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + stddev_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + stddev_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + stddev_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + upper_band_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + upper_band_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + upper_band_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + lower_band_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + lower_band_gas_used_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + lower_band_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + moving_avg_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + moving_avg_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + moving_avg_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -16117,11 +69528,16 @@ export const zFctExecutionGasUsedHourlyServiceListData = z.object({ export const zFctExecutionGasUsedHourlyServiceListResponse = zListFctExecutionGasUsedHourlyResponse; export const zFctExecutionGasUsedHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -16130,159 +69546,1072 @@ export const zFctExecutionGasUsedHourlyServiceGetData = z.object({ export const zFctExecutionGasUsedHourlyServiceGetResponse = zGetFctExecutionGasUsedHourlyResponse; export const zFctExecutionReceiptSizeDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_receipt_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_receipt_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_receipt_bytes_per_block_value: z.optional(z.number()), - min_receipt_bytes_per_block_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_receipt_bytes_per_block_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_receipt_bytes_per_block_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_receipt_bytes_per_block_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_receipt_bytes_per_block_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - stddev_receipt_bytes_per_block_value: z.optional(z.number()), - upper_band_receipt_bytes_per_block_value: z.optional(z.number()), - lower_band_receipt_bytes_per_block_value: z.optional(z.number()), - moving_avg_receipt_bytes_per_block_value: z.optional(z.number()), - avg_receipt_bytes_per_transaction_value: z.optional(z.number()), - p50_receipt_bytes_per_transaction_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_receipt_bytes_per_transaction_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_log_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_log_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_log_count_per_transaction_value: z.optional(z.number()), - cumulative_receipt_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - cumulative_receipt_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_receipt_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_receipt_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_receipt_bytes_per_block_value: z.optional(z.number()), + min_receipt_bytes_per_block_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_receipt_bytes_per_block_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_receipt_bytes_per_block_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_receipt_bytes_per_block_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_receipt_bytes_per_block_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + stddev_receipt_bytes_per_block_value: z.optional(z.number()), + upper_band_receipt_bytes_per_block_value: z.optional(z.number()), + lower_band_receipt_bytes_per_block_value: z.optional(z.number()), + moving_avg_receipt_bytes_per_block_value: z.optional(z.number()), + avg_receipt_bytes_per_transaction_value: z.optional(z.number()), + p50_receipt_bytes_per_transaction_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_receipt_bytes_per_transaction_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_log_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_log_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_log_count_per_transaction_value: z.optional(z.number()), + cumulative_receipt_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + cumulative_receipt_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -16291,11 +70620,11 @@ export const zFctExecutionReceiptSizeDailyServiceListData = z.object({ export const zFctExecutionReceiptSizeDailyServiceListResponse = zListFctExecutionReceiptSizeDailyResponse; export const zFctExecutionReceiptSizeDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -16304,160 +70633,1129 @@ export const zFctExecutionReceiptSizeDailyServiceGetData = z.object({ export const zFctExecutionReceiptSizeDailyServiceGetResponse = zGetFctExecutionReceiptSizeDailyResponse; export const zFctExecutionReceiptSizeHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_receipt_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_receipt_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_receipt_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_receipt_bytes_per_block_value: z.optional(z.number()), - min_receipt_bytes_per_block_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_receipt_bytes_per_block_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_receipt_bytes_per_block_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p05_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_receipt_bytes_per_block_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_receipt_bytes_per_block_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - stddev_receipt_bytes_per_block_value: z.optional(z.number()), - upper_band_receipt_bytes_per_block_value: z.optional(z.number()), - lower_band_receipt_bytes_per_block_value: z.optional(z.number()), - moving_avg_receipt_bytes_per_block_value: z.optional(z.number()), - avg_receipt_bytes_per_transaction_value: z.optional(z.number()), - p50_receipt_bytes_per_transaction_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_receipt_bytes_per_transaction_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_log_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_log_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_log_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_log_count_per_transaction_value: z.optional(z.number()), - cumulative_receipt_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_receipt_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - cumulative_receipt_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_receipt_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_receipt_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_receipt_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_receipt_bytes_per_block_value: z.optional(z.number()), + min_receipt_bytes_per_block_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_receipt_bytes_per_block_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_receipt_bytes_per_block_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p05_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_receipt_bytes_per_block_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_receipt_bytes_per_block_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_receipt_bytes_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + stddev_receipt_bytes_per_block_value: z.optional(z.number()), + upper_band_receipt_bytes_per_block_value: z.optional(z.number()), + lower_band_receipt_bytes_per_block_value: z.optional(z.number()), + moving_avg_receipt_bytes_per_block_value: z.optional(z.number()), + avg_receipt_bytes_per_transaction_value: z.optional(z.number()), + p50_receipt_bytes_per_transaction_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_receipt_bytes_per_transaction_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_log_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_log_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_log_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_log_count_per_transaction_value: z.optional(z.number()), + cumulative_receipt_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_receipt_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + cumulative_receipt_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -16466,11 +71764,16 @@ export const zFctExecutionReceiptSizeHourlyServiceListData = z.object({ export const zFctExecutionReceiptSizeHourlyServiceListResponse = zListFctExecutionReceiptSizeHourlyResponse; export const zFctExecutionReceiptSizeHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -16479,142 +71782,999 @@ export const zFctExecutionReceiptSizeHourlyServiceGetData = z.object({ export const zFctExecutionReceiptSizeHourlyServiceGetResponse = zGetFctExecutionReceiptSizeHourlyResponse; export const zFctExecutionStateSizeDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - accounts_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - accounts_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_trienodes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_trienodes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_trienode_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_trienode_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_codes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_codes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_code_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_code_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storages_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storages_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_trienodes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_trienodes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_trienode_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_trienode_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + accounts_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + accounts_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_trienodes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_trienodes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_trienode_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_trienode_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_codes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_codes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_code_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_code_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storages_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storages_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_trienodes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_trienodes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_trienode_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_trienode_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -16623,11 +72783,11 @@ export const zFctExecutionStateSizeDailyServiceListData = z.object({ export const zFctExecutionStateSizeDailyServiceListResponse = zListFctExecutionStateSizeDailyResponse; export const zFctExecutionStateSizeDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -16636,143 +72796,1056 @@ export const zFctExecutionStateSizeDailyServiceGetData = z.object({ export const zFctExecutionStateSizeDailyServiceGetResponse = zGetFctExecutionStateSizeDailyResponse; export const zFctExecutionStateSizeHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - accounts_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - accounts_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_trienodes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_trienodes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_trienode_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_trienode_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_codes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_codes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_code_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_code_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storages_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storages_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_trienodes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_trienodes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_trienode_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_trienode_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + accounts_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + accounts_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_trienodes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_trienodes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_trienode_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_trienode_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_codes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_codes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_code_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_code_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storages_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storages_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_trienodes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_trienodes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_trienode_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_trienode_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -16781,11 +73854,16 @@ export const zFctExecutionStateSizeHourlyServiceListData = z.object({ export const zFctExecutionStateSizeHourlyServiceListResponse = zListFctExecutionStateSizeHourlyResponse; export const zFctExecutionStateSizeHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -16794,72 +73872,321 @@ export const zFctExecutionStateSizeHourlyServiceGetData = z.object({ export const zFctExecutionStateSizeHourlyServiceGetResponse = zGetFctExecutionStateSizeHourlyResponse; export const zFctExecutionTpsDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_transactions_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_transactions_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_seconds_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_seconds_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_tps_value: z.optional(z.number()), - min_tps_value: z.optional(z.number()), - max_tps_value: z.optional(z.number()), - p05_tps_value: z.optional(z.number()), - p50_tps_value: z.optional(z.number()), - p95_tps_value: z.optional(z.number()), - stddev_tps_value: z.optional(z.number()), - upper_band_tps_value: z.optional(z.number()), - lower_band_tps_value: z.optional(z.number()), - moving_avg_tps_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_transactions_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_transactions_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_seconds_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_seconds_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_tps_value: z.optional(z.number()), + min_tps_value: z.optional(z.number()), + max_tps_value: z.optional(z.number()), + p05_tps_value: z.optional(z.number()), + p50_tps_value: z.optional(z.number()), + p95_tps_value: z.optional(z.number()), + stddev_tps_value: z.optional(z.number()), + upper_band_tps_value: z.optional(z.number()), + lower_band_tps_value: z.optional(z.number()), + moving_avg_tps_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -16868,11 +74195,11 @@ export const zFctExecutionTpsDailyServiceListData = z.object({ export const zFctExecutionTpsDailyServiceListResponse = zListFctExecutionTpsDailyResponse; export const zFctExecutionTpsDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -16881,73 +74208,378 @@ export const zFctExecutionTpsDailyServiceGetData = z.object({ export const zFctExecutionTpsDailyServiceGetResponse = zGetFctExecutionTpsDailyResponse; export const zFctExecutionTpsHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_transactions_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_transactions_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_seconds_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_seconds_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_tps_value: z.optional(z.number()), - min_tps_value: z.optional(z.number()), - max_tps_value: z.optional(z.number()), - p05_tps_value: z.optional(z.number()), - p50_tps_value: z.optional(z.number()), - p95_tps_value: z.optional(z.number()), - stddev_tps_value: z.optional(z.number()), - upper_band_tps_value: z.optional(z.number()), - lower_band_tps_value: z.optional(z.number()), - moving_avg_tps_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_transactions_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_transactions_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_seconds_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_seconds_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_tps_value: z.optional(z.number()), + min_tps_value: z.optional(z.number()), + max_tps_value: z.optional(z.number()), + p05_tps_value: z.optional(z.number()), + p50_tps_value: z.optional(z.number()), + p95_tps_value: z.optional(z.number()), + stddev_tps_value: z.optional(z.number()), + upper_band_tps_value: z.optional(z.number()), + lower_band_tps_value: z.optional(z.number()), + moving_avg_tps_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -16956,11 +74588,16 @@ export const zFctExecutionTpsHourlyServiceListData = z.object({ export const zFctExecutionTpsHourlyServiceListResponse = zListFctExecutionTpsHourlyResponse; export const zFctExecutionTpsHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -16969,117 +74606,662 @@ export const zFctExecutionTpsHourlyServiceGetData = z.object({ export const zFctExecutionTpsHourlyServiceGetResponse = zGetFctExecutionTpsHourlyResponse; export const zFctExecutionTransactionsDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_transactions_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_transactions_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - cumulative_transactions_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - cumulative_transactions_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_txn_per_block_value: z.optional(z.number()), - min_txn_per_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_txn_per_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_txn_per_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_txn_per_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_txn_per_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - stddev_txn_per_block_value: z.optional(z.number()), - upper_band_txn_per_block_value: z.optional(z.number()), - lower_band_txn_per_block_value: z.optional(z.number()), - moving_avg_txn_per_block_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_transactions_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_transactions_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + cumulative_transactions_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + cumulative_transactions_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_txn_per_block_value: z.optional(z.number()), + min_txn_per_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_txn_per_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_txn_per_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_txn_per_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_txn_per_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + stddev_txn_per_block_value: z.optional(z.number()), + upper_band_txn_per_block_value: z.optional(z.number()), + lower_band_txn_per_block_value: z.optional(z.number()), + moving_avg_txn_per_block_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -17088,11 +75270,11 @@ export const zFctExecutionTransactionsDailyServiceListData = z.object({ export const zFctExecutionTransactionsDailyServiceListResponse = zListFctExecutionTransactionsDailyResponse; export const zFctExecutionTransactionsDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -17101,118 +75283,719 @@ export const zFctExecutionTransactionsDailyServiceGetData = z.object({ export const zFctExecutionTransactionsDailyServiceGetResponse = zGetFctExecutionTransactionsDailyResponse; export const zFctExecutionTransactionsHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_transactions_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_transactions_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_transactions_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - cumulative_transactions_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cumulative_transactions_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - cumulative_transactions_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_txn_per_block_value: z.optional(z.number()), - min_txn_per_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - min_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_txn_per_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - max_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_txn_per_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p50_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_txn_per_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p95_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_txn_per_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - p05_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p05_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - stddev_txn_per_block_value: z.optional(z.number()), - upper_band_txn_per_block_value: z.optional(z.number()), - lower_band_txn_per_block_value: z.optional(z.number()), - moving_avg_txn_per_block_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_transactions_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_transactions_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_transactions_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + cumulative_transactions_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cumulative_transactions_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + cumulative_transactions_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_txn_per_block_value: z.optional(z.number()), + min_txn_per_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + min_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_txn_per_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + max_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_txn_per_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p50_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_txn_per_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p95_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_txn_per_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + p05_txn_per_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p05_txn_per_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + stddev_txn_per_block_value: z.optional(z.number()), + upper_band_txn_per_block_value: z.optional(z.number()), + lower_band_txn_per_block_value: z.optional(z.number()), + moving_avg_txn_per_block_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -17221,11 +76004,16 @@ export const zFctExecutionTransactionsHourlyServiceListData = z.object({ export const zFctExecutionTransactionsHourlyServiceListResponse = zListFctExecutionTransactionsHourlyResponse; export const zFctExecutionTransactionsHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -17234,220 +76022,625 @@ export const zFctExecutionTransactionsHourlyServiceGetData = z.object({ export const zFctExecutionTransactionsHourlyServiceGetResponse = zGetFctExecutionTransactionsHourlyResponse; export const zFctHeadFirstSeenByNodeServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_eq: z.optional(z.string()), - source_ne: z.optional(z.string()), - source_contains: z.optional(z.string()), - source_starts_with: z.optional(z.string()), - source_ends_with: z.optional(z.string()), - source_like: z.optional(z.string()), - source_not_like: z.optional(z.string()), - source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - username_eq: z.optional(z.string()), - username_ne: z.optional(z.string()), - username_contains: z.optional(z.string()), - username_starts_with: z.optional(z.string()), - username_ends_with: z.optional(z.string()), - username_like: z.optional(z.string()), - username_not_like: z.optional(z.string()), - username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_eq: z.optional(z.string()), - node_id_ne: z.optional(z.string()), - node_id_contains: z.optional(z.string()), - node_id_starts_with: z.optional(z.string()), - node_id_ends_with: z.optional(z.string()), - node_id_like: z.optional(z.string()), - node_id_not_like: z.optional(z.string()), - node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_eq: z.optional(z.string()), - classification_ne: z.optional(z.string()), - classification_contains: z.optional(z.string()), - classification_starts_with: z.optional(z.string()), - classification_ends_with: z.optional(z.string()), - classification_like: z.optional(z.string()), - classification_not_like: z.optional(z.string()), - classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_eq: z.optional(z.string()), - meta_client_geo_continent_code_ne: z.optional(z.string()), - meta_client_geo_continent_code_contains: z.optional(z.string()), - meta_client_geo_continent_code_starts_with: z.optional(z.string()), - meta_client_geo_continent_code_ends_with: z.optional(z.string()), - meta_client_geo_continent_code_like: z.optional(z.string()), - meta_client_geo_continent_code_not_like: z.optional(z.string()), - meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_longitude_value: z.optional(z.number()), - meta_client_geo_latitude_value: z.optional(z.number()), - meta_client_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_eq: z.optional(z.string()), - meta_consensus_version_ne: z.optional(z.string()), - meta_consensus_version_contains: z.optional(z.string()), - meta_consensus_version_starts_with: z.optional(z.string()), - meta_consensus_version_ends_with: z.optional(z.string()), - meta_consensus_version_like: z.optional(z.string()), - meta_consensus_version_not_like: z.optional(z.string()), - meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_eq: z.optional(z.string()), - meta_consensus_implementation_ne: z.optional(z.string()), - meta_consensus_implementation_contains: z.optional(z.string()), - meta_consensus_implementation_starts_with: z.optional(z.string()), - meta_consensus_implementation_ends_with: z.optional(z.string()), - meta_consensus_implementation_like: z.optional(z.string()), - meta_consensus_implementation_not_like: z.optional(z.string()), - meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_eq: z.optional(z.string()), + source_ne: z.optional(z.string()), + source_contains: z.optional(z.string()), + source_starts_with: z.optional(z.string()), + source_ends_with: z.optional(z.string()), + source_like: z.optional(z.string()), + source_not_like: z.optional(z.string()), + source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + username_eq: z.optional(z.string()), + username_ne: z.optional(z.string()), + username_contains: z.optional(z.string()), + username_starts_with: z.optional(z.string()), + username_ends_with: z.optional(z.string()), + username_like: z.optional(z.string()), + username_not_like: z.optional(z.string()), + username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_eq: z.optional(z.string()), + node_id_ne: z.optional(z.string()), + node_id_contains: z.optional(z.string()), + node_id_starts_with: z.optional(z.string()), + node_id_ends_with: z.optional(z.string()), + node_id_like: z.optional(z.string()), + node_id_not_like: z.optional(z.string()), + node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_eq: z.optional(z.string()), + classification_ne: z.optional(z.string()), + classification_contains: z.optional(z.string()), + classification_starts_with: z.optional(z.string()), + classification_ends_with: z.optional(z.string()), + classification_like: z.optional(z.string()), + classification_not_like: z.optional(z.string()), + classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_consensus_version_eq: z.optional(z.string()), + meta_consensus_version_ne: z.optional(z.string()), + meta_consensus_version_contains: z.optional(z.string()), + meta_consensus_version_starts_with: z.optional(z.string()), + meta_consensus_version_ends_with: z.optional(z.string()), + meta_consensus_version_like: z.optional(z.string()), + meta_consensus_version_not_like: z.optional(z.string()), + meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_eq: z.optional(z.string()), + meta_consensus_implementation_ne: z.optional(z.string()), + meta_consensus_implementation_contains: z.optional(z.string()), + meta_consensus_implementation_starts_with: z.optional(z.string()), + meta_consensus_implementation_ends_with: z.optional(z.string()), + meta_consensus_implementation_like: z.optional(z.string()), + meta_consensus_implementation_not_like: z.optional(z.string()), + meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -17456,11 +76649,16 @@ export const zFctHeadFirstSeenByNodeServiceListData = z.object({ export const zFctHeadFirstSeenByNodeServiceListResponse = zListFctHeadFirstSeenByNodeResponse; export const zFctHeadFirstSeenByNodeServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -17469,52 +76667,173 @@ export const zFctHeadFirstSeenByNodeServiceGetData = z.object({ export const zFctHeadFirstSeenByNodeServiceGetResponse = zGetFctHeadFirstSeenByNodeResponse; export const zFctHeadVoteCorrectnessRateDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_head_vote_rate_value: z.optional(z.number()), - min_head_vote_rate_value: z.optional(z.number()), - max_head_vote_rate_value: z.optional(z.number()), - p05_head_vote_rate_value: z.optional(z.number()), - p50_head_vote_rate_value: z.optional(z.number()), - p95_head_vote_rate_value: z.optional(z.number()), - stddev_head_vote_rate_value: z.optional(z.number()), - upper_band_head_vote_rate_value: z.optional(z.number()), - lower_band_head_vote_rate_value: z.optional(z.number()), - moving_avg_head_vote_rate_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_head_vote_rate_value: z.optional(z.number()), + min_head_vote_rate_value: z.optional(z.number()), + max_head_vote_rate_value: z.optional(z.number()), + p05_head_vote_rate_value: z.optional(z.number()), + p50_head_vote_rate_value: z.optional(z.number()), + p95_head_vote_rate_value: z.optional(z.number()), + stddev_head_vote_rate_value: z.optional(z.number()), + upper_band_head_vote_rate_value: z.optional(z.number()), + lower_band_head_vote_rate_value: z.optional(z.number()), + moving_avg_head_vote_rate_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -17523,11 +76842,11 @@ export const zFctHeadVoteCorrectnessRateDailyServiceListData = z.object({ export const zFctHeadVoteCorrectnessRateDailyServiceListResponse = zListFctHeadVoteCorrectnessRateDailyResponse; export const zFctHeadVoteCorrectnessRateDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -17536,53 +76855,230 @@ export const zFctHeadVoteCorrectnessRateDailyServiceGetData = z.object({ export const zFctHeadVoteCorrectnessRateDailyServiceGetResponse = zGetFctHeadVoteCorrectnessRateDailyResponse; export const zFctHeadVoteCorrectnessRateHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_head_vote_rate_value: z.optional(z.number()), - min_head_vote_rate_value: z.optional(z.number()), - max_head_vote_rate_value: z.optional(z.number()), - p05_head_vote_rate_value: z.optional(z.number()), - p50_head_vote_rate_value: z.optional(z.number()), - p95_head_vote_rate_value: z.optional(z.number()), - stddev_head_vote_rate_value: z.optional(z.number()), - upper_band_head_vote_rate_value: z.optional(z.number()), - lower_band_head_vote_rate_value: z.optional(z.number()), - moving_avg_head_vote_rate_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_head_vote_rate_value: z.optional(z.number()), + min_head_vote_rate_value: z.optional(z.number()), + max_head_vote_rate_value: z.optional(z.number()), + p05_head_vote_rate_value: z.optional(z.number()), + p50_head_vote_rate_value: z.optional(z.number()), + p95_head_vote_rate_value: z.optional(z.number()), + stddev_head_vote_rate_value: z.optional(z.number()), + upper_band_head_vote_rate_value: z.optional(z.number()), + lower_band_head_vote_rate_value: z.optional(z.number()), + moving_avg_head_vote_rate_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -17591,11 +77087,16 @@ export const zFctHeadVoteCorrectnessRateHourlyServiceListData = z.object({ export const zFctHeadVoteCorrectnessRateHourlyServiceListResponse = zListFctHeadVoteCorrectnessRateHourlyResponse; export const zFctHeadVoteCorrectnessRateHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -17604,82 +77105,427 @@ export const zFctHeadVoteCorrectnessRateHourlyServiceGetData = z.object({ export const zFctHeadVoteCorrectnessRateHourlyServiceGetResponse = zGetFctHeadVoteCorrectnessRateHourlyResponse; export const zFctMevBidCountByBuilderServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - builder_pubkey_eq: z.optional(z.string()), - builder_pubkey_ne: z.optional(z.string()), - builder_pubkey_contains: z.optional(z.string()), - builder_pubkey_starts_with: z.optional(z.string()), - builder_pubkey_ends_with: z.optional(z.string()), - builder_pubkey_like: z.optional(z.string()), - builder_pubkey_not_like: z.optional(z.string()), - builder_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - builder_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - bid_total_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - bid_total_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + builder_pubkey_eq: z.optional(z.string()), + builder_pubkey_ne: z.optional(z.string()), + builder_pubkey_contains: z.optional(z.string()), + builder_pubkey_starts_with: z.optional(z.string()), + builder_pubkey_ends_with: z.optional(z.string()), + builder_pubkey_like: z.optional(z.string()), + builder_pubkey_not_like: z.optional(z.string()), + builder_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + bid_total_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + bid_total_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -17688,11 +77534,16 @@ export const zFctMevBidCountByBuilderServiceListData = z.object({ export const zFctMevBidCountByBuilderServiceListResponse = zListFctMevBidCountByBuilderResponse; export const zFctMevBidCountByBuilderServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -17701,82 +77552,427 @@ export const zFctMevBidCountByBuilderServiceGetData = z.object({ export const zFctMevBidCountByBuilderServiceGetResponse = zGetFctMevBidCountByBuilderResponse; export const zFctMevBidCountByRelayServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - relay_name_eq: z.optional(z.string()), - relay_name_ne: z.optional(z.string()), - relay_name_contains: z.optional(z.string()), - relay_name_starts_with: z.optional(z.string()), - relay_name_ends_with: z.optional(z.string()), - relay_name_like: z.optional(z.string()), - relay_name_not_like: z.optional(z.string()), - relay_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - relay_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - bid_total_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - bid_total_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - bid_total_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + relay_name_eq: z.optional(z.string()), + relay_name_ne: z.optional(z.string()), + relay_name_contains: z.optional(z.string()), + relay_name_starts_with: z.optional(z.string()), + relay_name_ends_with: z.optional(z.string()), + relay_name_like: z.optional(z.string()), + relay_name_not_like: z.optional(z.string()), + relay_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + relay_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + bid_total_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + bid_total_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + bid_total_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -17785,11 +77981,16 @@ export const zFctMevBidCountByRelayServiceListData = z.object({ export const zFctMevBidCountByRelayServiceListResponse = zListFctMevBidCountByRelayResponse; export const zFctMevBidCountByRelayServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -17798,187 +77999,839 @@ export const zFctMevBidCountByRelayServiceGetData = z.object({ export const zFctMevBidCountByRelayServiceGetResponse = zGetFctMevBidCountByRelayResponse; export const zFctMevBidHighestValueByBuilderChunked50MsServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - chunk_slot_start_diff_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - chunk_slot_start_diff_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - chunk_slot_start_diff_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - chunk_slot_start_diff_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - chunk_slot_start_diff_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - chunk_slot_start_diff_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - chunk_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - chunk_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - chunk_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - chunk_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - builder_pubkey_eq: z.optional(z.string()), - builder_pubkey_ne: z.optional(z.string()), - builder_pubkey_contains: z.optional(z.string()), - builder_pubkey_starts_with: z.optional(z.string()), - builder_pubkey_ends_with: z.optional(z.string()), - builder_pubkey_like: z.optional(z.string()), - builder_pubkey_not_like: z.optional(z.string()), - builder_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - builder_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - earliest_bid_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - earliest_bid_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - relay_names_has: z.optional(z.string()), - relay_names_has_all_values: z.optional(z.array(z.string())), - relay_names_has_any_values: z.optional(z.array(z.string())), - relay_names_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_hash_eq: z.optional(z.string()), - block_hash_ne: z.optional(z.string()), - block_hash_contains: z.optional(z.string()), - block_hash_starts_with: z.optional(z.string()), - block_hash_ends_with: z.optional(z.string()), - block_hash_like: z.optional(z.string()), - block_hash_not_like: z.optional(z.string()), - block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - value_eq: z.optional(z.string()), - value_ne: z.optional(z.string()), - value_contains: z.optional(z.string()), - value_starts_with: z.optional(z.string()), - value_ends_with: z.optional(z.string()), - value_like: z.optional(z.string()), - value_not_like: z.optional(z.string()), - value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctMevBidHighestValueByBuilderChunked50MsServiceListResponse = zListFctMevBidHighestValueByBuilderChunked50MsResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + chunk_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + chunk_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + builder_pubkey_eq: z.optional(z.string()), + builder_pubkey_ne: z.optional(z.string()), + builder_pubkey_contains: z.optional(z.string()), + builder_pubkey_starts_with: z.optional(z.string()), + builder_pubkey_ends_with: z.optional(z.string()), + builder_pubkey_like: z.optional(z.string()), + builder_pubkey_not_like: z.optional(z.string()), + builder_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + earliest_bid_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + earliest_bid_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + relay_names_has: z.optional(z.string()), + relay_names_has_all_values: z.optional(z.array(z.string())), + relay_names_has_any_values: z.optional(z.array(z.string())), + relay_names_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_eq: z.optional(z.string()), + value_ne: z.optional(z.string()), + value_contains: z.optional(z.string()), + value_starts_with: z.optional(z.string()), + value_ends_with: z.optional(z.string()), + value_like: z.optional(z.string()), + value_not_like: z.optional(z.string()), + value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctMevBidHighestValueByBuilderChunked50MsServiceListResponse = + zListFctMevBidHighestValueByBuilderChunked50MsResponse; export const zFctMevBidHighestValueByBuilderChunked50MsServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctMevBidHighestValueByBuilderChunked50MsServiceGetResponse = zGetFctMevBidHighestValueByBuilderChunked50MsResponse; +export const zFctMevBidHighestValueByBuilderChunked50MsServiceGetResponse = + zGetFctMevBidHighestValueByBuilderChunked50MsResponse; export const zFctMissedSlotRateDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_rate_value: z.optional(z.number()), - moving_avg_missed_rate_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_rate_value: z.optional(z.number()), + moving_avg_missed_rate_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -17987,11 +78840,11 @@ export const zFctMissedSlotRateDailyServiceListData = z.object({ export const zFctMissedSlotRateDailyServiceListResponse = zListFctMissedSlotRateDailyResponse; export const zFctMissedSlotRateDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -18000,55 +78853,288 @@ export const zFctMissedSlotRateDailyServiceGetData = z.object({ export const zFctMissedSlotRateDailyServiceGetResponse = zGetFctMissedSlotRateDailyResponse; export const zFctMissedSlotRateHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_rate_value: z.optional(z.number()), - moving_avg_missed_rate_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_rate_value: z.optional(z.number()), + moving_avg_missed_rate_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -18057,11 +79143,16 @@ export const zFctMissedSlotRateHourlyServiceListData = z.object({ export const zFctMissedSlotRateHourlyServiceListResponse = zListFctMissedSlotRateHourlyResponse; export const zFctMissedSlotRateHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -18070,162 +79161,343 @@ export const zFctMissedSlotRateHourlyServiceGetData = z.object({ export const zFctMissedSlotRateHourlyServiceGetResponse = zGetFctMissedSlotRateHourlyResponse; export const zFctNodeActiveLast24hServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - last_seen_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_seen_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_seen_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_seen_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_seen_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_seen_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_seen_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_seen_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_seen_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - last_seen_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - username_eq: z.optional(z.string()), - username_ne: z.optional(z.string()), - username_contains: z.optional(z.string()), - username_starts_with: z.optional(z.string()), - username_ends_with: z.optional(z.string()), - username_like: z.optional(z.string()), - username_not_like: z.optional(z.string()), - username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_eq: z.optional(z.string()), - node_id_ne: z.optional(z.string()), - node_id_contains: z.optional(z.string()), - node_id_starts_with: z.optional(z.string()), - node_id_ends_with: z.optional(z.string()), - node_id_like: z.optional(z.string()), - node_id_not_like: z.optional(z.string()), - node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_eq: z.optional(z.string()), - classification_ne: z.optional(z.string()), - classification_contains: z.optional(z.string()), - classification_starts_with: z.optional(z.string()), - classification_ends_with: z.optional(z.string()), - classification_like: z.optional(z.string()), - classification_not_like: z.optional(z.string()), - classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_eq: z.optional(z.string()), - meta_client_geo_continent_code_ne: z.optional(z.string()), - meta_client_geo_continent_code_contains: z.optional(z.string()), - meta_client_geo_continent_code_starts_with: z.optional(z.string()), - meta_client_geo_continent_code_ends_with: z.optional(z.string()), - meta_client_geo_continent_code_like: z.optional(z.string()), - meta_client_geo_continent_code_not_like: z.optional(z.string()), - meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_longitude_value: z.optional(z.number()), - meta_client_geo_latitude_value: z.optional(z.number()), - meta_client_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_eq: z.optional(z.string()), - meta_consensus_version_ne: z.optional(z.string()), - meta_consensus_version_contains: z.optional(z.string()), - meta_consensus_version_starts_with: z.optional(z.string()), - meta_consensus_version_ends_with: z.optional(z.string()), - meta_consensus_version_like: z.optional(z.string()), - meta_consensus_version_not_like: z.optional(z.string()), - meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_eq: z.optional(z.string()), - meta_consensus_implementation_ne: z.optional(z.string()), - meta_consensus_implementation_contains: z.optional(z.string()), - meta_consensus_implementation_starts_with: z.optional(z.string()), - meta_consensus_implementation_ends_with: z.optional(z.string()), - meta_consensus_implementation_like: z.optional(z.string()), - meta_consensus_implementation_not_like: z.optional(z.string()), - meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + last_seen_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_seen_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + last_seen_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + username_eq: z.optional(z.string()), + username_ne: z.optional(z.string()), + username_contains: z.optional(z.string()), + username_starts_with: z.optional(z.string()), + username_ends_with: z.optional(z.string()), + username_like: z.optional(z.string()), + username_not_like: z.optional(z.string()), + username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_eq: z.optional(z.string()), + node_id_ne: z.optional(z.string()), + node_id_contains: z.optional(z.string()), + node_id_starts_with: z.optional(z.string()), + node_id_ends_with: z.optional(z.string()), + node_id_like: z.optional(z.string()), + node_id_not_like: z.optional(z.string()), + node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_eq: z.optional(z.string()), + classification_ne: z.optional(z.string()), + classification_contains: z.optional(z.string()), + classification_starts_with: z.optional(z.string()), + classification_ends_with: z.optional(z.string()), + classification_like: z.optional(z.string()), + classification_not_like: z.optional(z.string()), + classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_consensus_version_eq: z.optional(z.string()), + meta_consensus_version_ne: z.optional(z.string()), + meta_consensus_version_contains: z.optional(z.string()), + meta_consensus_version_starts_with: z.optional(z.string()), + meta_consensus_version_ends_with: z.optional(z.string()), + meta_consensus_version_like: z.optional(z.string()), + meta_consensus_version_not_like: z.optional(z.string()), + meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_eq: z.optional(z.string()), + meta_consensus_implementation_ne: z.optional(z.string()), + meta_consensus_implementation_contains: z.optional(z.string()), + meta_consensus_implementation_starts_with: z.optional(z.string()), + meta_consensus_implementation_ends_with: z.optional(z.string()), + meta_consensus_implementation_like: z.optional(z.string()), + meta_consensus_implementation_not_like: z.optional(z.string()), + meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -18234,11 +79506,11 @@ export const zFctNodeActiveLast24hServiceListData = z.object({ export const zFctNodeActiveLast24hServiceListResponse = zListFctNodeActiveLast24hResponse; export const zFctNodeActiveLast24hServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - meta_client_name: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + meta_client_name: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -18247,112 +79519,521 @@ export const zFctNodeActiveLast24hServiceGetData = z.object({ export const zFctNodeActiveLast24hServiceGetResponse = zGetFctNodeActiveLast24hResponse; export const zFctNodeCpuUtilizationByProcessServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - wallclock_slot_start_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - wallclock_slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - client_type_eq: z.optional(z.string()), - client_type_ne: z.optional(z.string()), - client_type_contains: z.optional(z.string()), - client_type_starts_with: z.optional(z.string()), - client_type_ends_with: z.optional(z.string()), - client_type_like: z.optional(z.string()), - client_type_not_like: z.optional(z.string()), - client_type_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - client_type_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - pid_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - pid_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - window_start_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - window_start_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_network_name_eq: z.optional(z.string()), - meta_network_name_ne: z.optional(z.string()), - meta_network_name_contains: z.optional(z.string()), - meta_network_name_starts_with: z.optional(z.string()), - meta_network_name_ends_with: z.optional(z.string()), - meta_network_name_like: z.optional(z.string()), - meta_network_name_not_like: z.optional(z.string()), - meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - system_cores_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - system_cores_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - system_cores_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - system_cores_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - system_cores_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - system_cores_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - system_cores_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - system_cores_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - system_cores_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - system_cores_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - mean_core_pct_value: z.optional(z.number()), - min_core_pct_value: z.optional(z.number()), - max_core_pct_value: z.optional(z.number()), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + wallclock_slot_start_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + wallclock_slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + client_type_eq: z.optional(z.string()), + client_type_ne: z.optional(z.string()), + client_type_contains: z.optional(z.string()), + client_type_starts_with: z.optional(z.string()), + client_type_ends_with: z.optional(z.string()), + client_type_like: z.optional(z.string()), + client_type_not_like: z.optional(z.string()), + client_type_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + client_type_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + pid_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + pid_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + window_start_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + window_start_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_network_name_eq: z.optional(z.string()), + meta_network_name_ne: z.optional(z.string()), + meta_network_name_contains: z.optional(z.string()), + meta_network_name_starts_with: z.optional(z.string()), + meta_network_name_ends_with: z.optional(z.string()), + meta_network_name_like: z.optional(z.string()), + meta_network_name_not_like: z.optional(z.string()), + meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + system_cores_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + system_cores_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + system_cores_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + system_cores_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + system_cores_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + system_cores_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + system_cores_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + system_cores_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + system_cores_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + system_cores_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + mean_core_pct_value: z.optional(z.number()), + min_core_pct_value: z.optional(z.number()), + max_core_pct_value: z.optional(z.number()), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -18361,11 +80042,20 @@ export const zFctNodeCpuUtilizationByProcessServiceListData = z.object({ export const zFctNodeCpuUtilizationByProcessServiceListResponse = zListFctNodeCpuUtilizationByProcessResponse; export const zFctNodeCpuUtilizationByProcessServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - wallclock_slot_start_date_time: z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + wallclock_slot_start_date_time: z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -18374,119 +80064,528 @@ export const zFctNodeCpuUtilizationByProcessServiceGetData = z.object({ export const zFctNodeCpuUtilizationByProcessServiceGetResponse = zGetFctNodeCpuUtilizationByProcessResponse; export const zFctNodeDiskIoByProcessServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - wallclock_slot_start_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - wallclock_slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - client_type_eq: z.optional(z.string()), - client_type_ne: z.optional(z.string()), - client_type_contains: z.optional(z.string()), - client_type_starts_with: z.optional(z.string()), - client_type_ends_with: z.optional(z.string()), - client_type_like: z.optional(z.string()), - client_type_not_like: z.optional(z.string()), - client_type_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - client_type_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - pid_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - pid_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - rw_eq: z.optional(z.string()), - rw_ne: z.optional(z.string()), - rw_contains: z.optional(z.string()), - rw_starts_with: z.optional(z.string()), - rw_ends_with: z.optional(z.string()), - rw_like: z.optional(z.string()), - rw_not_like: z.optional(z.string()), - rw_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - rw_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - window_start_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - window_start_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_network_name_eq: z.optional(z.string()), - meta_network_name_ne: z.optional(z.string()), - meta_network_name_contains: z.optional(z.string()), - meta_network_name_starts_with: z.optional(z.string()), - meta_network_name_ends_with: z.optional(z.string()), - meta_network_name_like: z.optional(z.string()), - meta_network_name_not_like: z.optional(z.string()), - meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - io_bytes_value: z.optional(z.number()), - io_ops_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_ops_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_ops_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_ops_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_ops_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_ops_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_ops_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_ops_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_ops_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - io_ops_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + wallclock_slot_start_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + wallclock_slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + client_type_eq: z.optional(z.string()), + client_type_ne: z.optional(z.string()), + client_type_contains: z.optional(z.string()), + client_type_starts_with: z.optional(z.string()), + client_type_ends_with: z.optional(z.string()), + client_type_like: z.optional(z.string()), + client_type_not_like: z.optional(z.string()), + client_type_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + client_type_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + pid_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + pid_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + rw_eq: z.optional(z.string()), + rw_ne: z.optional(z.string()), + rw_contains: z.optional(z.string()), + rw_starts_with: z.optional(z.string()), + rw_ends_with: z.optional(z.string()), + rw_like: z.optional(z.string()), + rw_not_like: z.optional(z.string()), + rw_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + rw_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + window_start_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + window_start_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_network_name_eq: z.optional(z.string()), + meta_network_name_ne: z.optional(z.string()), + meta_network_name_contains: z.optional(z.string()), + meta_network_name_starts_with: z.optional(z.string()), + meta_network_name_ends_with: z.optional(z.string()), + meta_network_name_like: z.optional(z.string()), + meta_network_name_not_like: z.optional(z.string()), + meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + io_bytes_value: z.optional(z.number()), + io_ops_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_ops_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_ops_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_ops_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_ops_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_ops_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_ops_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_ops_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_ops_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + io_ops_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -18495,11 +80594,20 @@ export const zFctNodeDiskIoByProcessServiceListData = z.object({ export const zFctNodeDiskIoByProcessServiceListResponse = zListFctNodeDiskIoByProcessResponse; export const zFctNodeDiskIoByProcessServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - wallclock_slot_start_date_time: z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + wallclock_slot_start_date_time: z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -18508,139 +80616,780 @@ export const zFctNodeDiskIoByProcessServiceGetData = z.object({ export const zFctNodeDiskIoByProcessServiceGetResponse = zGetFctNodeDiskIoByProcessResponse; export const zFctNodeMemoryUsageByProcessServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - wallclock_slot_start_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - wallclock_slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - client_type_eq: z.optional(z.string()), - client_type_ne: z.optional(z.string()), - client_type_contains: z.optional(z.string()), - client_type_starts_with: z.optional(z.string()), - client_type_ends_with: z.optional(z.string()), - client_type_like: z.optional(z.string()), - client_type_not_like: z.optional(z.string()), - client_type_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - client_type_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - pid_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - pid_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - window_start_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - window_start_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_network_name_eq: z.optional(z.string()), - meta_network_name_ne: z.optional(z.string()), - meta_network_name_contains: z.optional(z.string()), - meta_network_name_starts_with: z.optional(z.string()), - meta_network_name_ends_with: z.optional(z.string()), - meta_network_name_like: z.optional(z.string()), - meta_network_name_not_like: z.optional(z.string()), - meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - vm_rss_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_rss_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_rss_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_rss_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_rss_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_rss_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_rss_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_rss_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_rss_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - vm_rss_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - rss_anon_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_anon_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_anon_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_anon_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_anon_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_anon_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_anon_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_anon_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_anon_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - rss_anon_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - rss_file_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_file_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_file_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_file_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_file_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_file_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_file_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_file_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - rss_file_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - rss_file_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - vm_swap_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_swap_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_swap_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_swap_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_swap_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_swap_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_swap_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_swap_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - vm_swap_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - vm_swap_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + wallclock_slot_start_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + wallclock_slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + client_type_eq: z.optional(z.string()), + client_type_ne: z.optional(z.string()), + client_type_contains: z.optional(z.string()), + client_type_starts_with: z.optional(z.string()), + client_type_ends_with: z.optional(z.string()), + client_type_like: z.optional(z.string()), + client_type_not_like: z.optional(z.string()), + client_type_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + client_type_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + pid_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + pid_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + window_start_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + window_start_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_network_name_eq: z.optional(z.string()), + meta_network_name_ne: z.optional(z.string()), + meta_network_name_contains: z.optional(z.string()), + meta_network_name_starts_with: z.optional(z.string()), + meta_network_name_ends_with: z.optional(z.string()), + meta_network_name_like: z.optional(z.string()), + meta_network_name_not_like: z.optional(z.string()), + meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + vm_rss_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_rss_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_rss_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_rss_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_rss_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_rss_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_rss_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_rss_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_rss_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + vm_rss_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + rss_anon_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_anon_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_anon_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_anon_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_anon_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_anon_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_anon_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_anon_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_anon_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + rss_anon_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + rss_file_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_file_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_file_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_file_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_file_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_file_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_file_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_file_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + rss_file_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + rss_file_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + vm_swap_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_swap_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_swap_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_swap_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_swap_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_swap_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_swap_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_swap_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + vm_swap_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + vm_swap_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -18649,11 +81398,20 @@ export const zFctNodeMemoryUsageByProcessServiceListData = z.object({ export const zFctNodeMemoryUsageByProcessServiceListResponse = zListFctNodeMemoryUsageByProcessResponse; export const zFctNodeMemoryUsageByProcessServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - wallclock_slot_start_date_time: z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + wallclock_slot_start_date_time: z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -18662,128 +81420,537 @@ export const zFctNodeMemoryUsageByProcessServiceGetData = z.object({ export const zFctNodeMemoryUsageByProcessServiceGetResponse = zGetFctNodeMemoryUsageByProcessResponse; export const zFctNodeNetworkIoByProcessServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - wallclock_slot_start_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - wallclock_slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - wallclock_slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - client_type_eq: z.optional(z.string()), - client_type_ne: z.optional(z.string()), - client_type_contains: z.optional(z.string()), - client_type_starts_with: z.optional(z.string()), - client_type_ends_with: z.optional(z.string()), - client_type_like: z.optional(z.string()), - client_type_not_like: z.optional(z.string()), - client_type_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - client_type_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - pid_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - pid_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - pid_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - port_label_eq: z.optional(z.string()), - port_label_ne: z.optional(z.string()), - port_label_contains: z.optional(z.string()), - port_label_starts_with: z.optional(z.string()), - port_label_ends_with: z.optional(z.string()), - port_label_like: z.optional(z.string()), - port_label_not_like: z.optional(z.string()), - port_label_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - port_label_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - direction_eq: z.optional(z.string()), - direction_ne: z.optional(z.string()), - direction_contains: z.optional(z.string()), - direction_starts_with: z.optional(z.string()), - direction_ends_with: z.optional(z.string()), - direction_like: z.optional(z.string()), - direction_not_like: z.optional(z.string()), - direction_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - direction_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - window_start_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - window_start_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - window_start_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - wallclock_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - wallclock_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_network_name_eq: z.optional(z.string()), - meta_network_name_ne: z.optional(z.string()), - meta_network_name_contains: z.optional(z.string()), - meta_network_name_starts_with: z.optional(z.string()), - meta_network_name_ends_with: z.optional(z.string()), - meta_network_name_like: z.optional(z.string()), - meta_network_name_not_like: z.optional(z.string()), - meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - io_bytes_value: z.optional(z.number()), - io_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - io_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - io_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + wallclock_slot_start_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + wallclock_slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + wallclock_slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + client_type_eq: z.optional(z.string()), + client_type_ne: z.optional(z.string()), + client_type_contains: z.optional(z.string()), + client_type_starts_with: z.optional(z.string()), + client_type_ends_with: z.optional(z.string()), + client_type_like: z.optional(z.string()), + client_type_not_like: z.optional(z.string()), + client_type_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + client_type_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + pid_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + pid_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + pid_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + port_label_eq: z.optional(z.string()), + port_label_ne: z.optional(z.string()), + port_label_contains: z.optional(z.string()), + port_label_starts_with: z.optional(z.string()), + port_label_ends_with: z.optional(z.string()), + port_label_like: z.optional(z.string()), + port_label_not_like: z.optional(z.string()), + port_label_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + port_label_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + direction_eq: z.optional(z.string()), + direction_ne: z.optional(z.string()), + direction_contains: z.optional(z.string()), + direction_starts_with: z.optional(z.string()), + direction_ends_with: z.optional(z.string()), + direction_like: z.optional(z.string()), + direction_not_like: z.optional(z.string()), + direction_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + direction_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + window_start_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + window_start_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + window_start_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + wallclock_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + wallclock_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_network_name_eq: z.optional(z.string()), + meta_network_name_ne: z.optional(z.string()), + meta_network_name_contains: z.optional(z.string()), + meta_network_name_starts_with: z.optional(z.string()), + meta_network_name_ends_with: z.optional(z.string()), + meta_network_name_like: z.optional(z.string()), + meta_network_name_not_like: z.optional(z.string()), + meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + io_bytes_value: z.optional(z.number()), + io_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + io_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + io_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -18792,11 +81959,20 @@ export const zFctNodeNetworkIoByProcessServiceListData = z.object({ export const zFctNodeNetworkIoByProcessServiceListResponse = zListFctNodeNetworkIoByProcessResponse; export const zFctNodeNetworkIoByProcessServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - wallclock_slot_start_date_time: z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + wallclock_slot_start_date_time: z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -18805,84 +81981,421 @@ export const zFctNodeNetworkIoByProcessServiceGetData = z.object({ export const zFctNodeNetworkIoByProcessServiceGetResponse = zGetFctNodeNetworkIoByProcessResponse; export const zFctOpcodeGasByOpcodeDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - opcode_eq: z.optional(z.string()), - opcode_ne: z.optional(z.string()), - opcode_contains: z.optional(z.string()), - opcode_starts_with: z.optional(z.string()), - opcode_ends_with: z.optional(z.string()), - opcode_like: z.optional(z.string()), - opcode_not_like: z.optional(z.string()), - opcode_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - opcode_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_error_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_count_per_block_value: z.optional(z.number()), - avg_gas_per_block_value: z.optional(z.number()), - avg_gas_per_execution_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + opcode_eq: z.optional(z.string()), + opcode_ne: z.optional(z.string()), + opcode_contains: z.optional(z.string()), + opcode_starts_with: z.optional(z.string()), + opcode_ends_with: z.optional(z.string()), + opcode_like: z.optional(z.string()), + opcode_not_like: z.optional(z.string()), + opcode_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + opcode_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_error_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_count_per_block_value: z.optional(z.number()), + avg_gas_per_block_value: z.optional(z.number()), + avg_gas_per_execution_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -18891,11 +82404,11 @@ export const zFctOpcodeGasByOpcodeDailyServiceListData = z.object({ export const zFctOpcodeGasByOpcodeDailyServiceListResponse = zListFctOpcodeGasByOpcodeDailyResponse; export const zFctOpcodeGasByOpcodeDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -18904,85 +82417,478 @@ export const zFctOpcodeGasByOpcodeDailyServiceGetData = z.object({ export const zFctOpcodeGasByOpcodeDailyServiceGetResponse = zGetFctOpcodeGasByOpcodeDailyResponse; export const zFctOpcodeGasByOpcodeHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - opcode_eq: z.optional(z.string()), - opcode_ne: z.optional(z.string()), - opcode_contains: z.optional(z.string()), - opcode_starts_with: z.optional(z.string()), - opcode_ends_with: z.optional(z.string()), - opcode_like: z.optional(z.string()), - opcode_not_like: z.optional(z.string()), - opcode_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - opcode_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_error_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_count_per_block_value: z.optional(z.number()), - avg_gas_per_block_value: z.optional(z.number()), - avg_gas_per_execution_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + opcode_eq: z.optional(z.string()), + opcode_ne: z.optional(z.string()), + opcode_contains: z.optional(z.string()), + opcode_starts_with: z.optional(z.string()), + opcode_ends_with: z.optional(z.string()), + opcode_like: z.optional(z.string()), + opcode_not_like: z.optional(z.string()), + opcode_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + opcode_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_error_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_count_per_block_value: z.optional(z.number()), + avg_gas_per_block_value: z.optional(z.number()), + avg_gas_per_execution_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -18991,11 +82897,16 @@ export const zFctOpcodeGasByOpcodeHourlyServiceListData = z.object({ export const zFctOpcodeGasByOpcodeHourlyServiceListResponse = zListFctOpcodeGasByOpcodeHourlyResponse; export const zFctOpcodeGasByOpcodeHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -19004,82 +82915,403 @@ export const zFctOpcodeGasByOpcodeHourlyServiceGetData = z.object({ export const zFctOpcodeGasByOpcodeHourlyServiceGetResponse = zGetFctOpcodeGasByOpcodeHourlyResponse; export const zFctOpcodeOpsDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_opcode_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_opcode_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_seconds_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_seconds_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_ops_value: z.optional(z.number()), - min_ops_value: z.optional(z.number()), - max_ops_value: z.optional(z.number()), - p05_ops_value: z.optional(z.number()), - p50_ops_value: z.optional(z.number()), - p95_ops_value: z.optional(z.number()), - stddev_ops_value: z.optional(z.number()), - upper_band_ops_value: z.optional(z.number()), - lower_band_ops_value: z.optional(z.number()), - moving_avg_ops_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_opcode_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_opcode_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_seconds_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_seconds_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_ops_value: z.optional(z.number()), + min_ops_value: z.optional(z.number()), + max_ops_value: z.optional(z.number()), + p05_ops_value: z.optional(z.number()), + p50_ops_value: z.optional(z.number()), + p95_ops_value: z.optional(z.number()), + stddev_ops_value: z.optional(z.number()), + upper_band_ops_value: z.optional(z.number()), + lower_band_ops_value: z.optional(z.number()), + moving_avg_ops_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -19088,11 +83320,11 @@ export const zFctOpcodeOpsDailyServiceListData = z.object({ export const zFctOpcodeOpsDailyServiceListResponse = zListFctOpcodeOpsDailyResponse; export const zFctOpcodeOpsDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -19101,83 +83333,460 @@ export const zFctOpcodeOpsDailyServiceGetData = z.object({ export const zFctOpcodeOpsDailyServiceGetResponse = zGetFctOpcodeOpsDailyResponse; export const zFctOpcodeOpsHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_opcode_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_opcode_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_opcode_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - total_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_seconds_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_seconds_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_seconds_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_ops_value: z.optional(z.number()), - min_ops_value: z.optional(z.number()), - max_ops_value: z.optional(z.number()), - p05_ops_value: z.optional(z.number()), - p50_ops_value: z.optional(z.number()), - p95_ops_value: z.optional(z.number()), - stddev_ops_value: z.optional(z.number()), - upper_band_ops_value: z.optional(z.number()), - lower_band_ops_value: z.optional(z.number()), - moving_avg_ops_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_opcode_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_opcode_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_opcode_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + total_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_seconds_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_seconds_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_seconds_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_ops_value: z.optional(z.number()), + min_ops_value: z.optional(z.number()), + max_ops_value: z.optional(z.number()), + p05_ops_value: z.optional(z.number()), + p50_ops_value: z.optional(z.number()), + p95_ops_value: z.optional(z.number()), + stddev_ops_value: z.optional(z.number()), + upper_band_ops_value: z.optional(z.number()), + lower_band_ops_value: z.optional(z.number()), + moving_avg_ops_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -19186,11 +83795,16 @@ export const zFctOpcodeOpsHourlyServiceListData = z.object({ export const zFctOpcodeOpsHourlyServiceListResponse = zListFctOpcodeOpsHourlyResponse; export const zFctOpcodeOpsHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -19198,223 +83812,1536 @@ export const zFctOpcodeOpsHourlyServiceGetData = z.object({ */ export const zFctOpcodeOpsHourlyServiceGetResponse = zGetFctOpcodeOpsHourlyResponse; +export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + chunk_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + chunk_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + builder_index_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + builder_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + earliest_bid_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + earliest_bid_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_eq: z.optional(z.string()), + value_ne: z.optional(z.string()), + value_contains: z.optional(z.string()), + value_starts_with: z.optional(z.string()), + value_ends_with: z.optional(z.string()), + value_like: z.optional(z.string()), + value_not_like: z.optional(z.string()), + value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payment_eq: z.optional(z.string()), + execution_payment_ne: z.optional(z.string()), + execution_payment_contains: z.optional(z.string()), + execution_payment_starts_with: z.optional(z.string()), + execution_payment_ends_with: z.optional(z.string()), + execution_payment_like: z.optional(z.string()), + execution_payment_not_like: z.optional(z.string()), + execution_payment_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payment_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + fee_recipient_eq: z.optional(z.string()), + fee_recipient_ne: z.optional(z.string()), + fee_recipient_contains: z.optional(z.string()), + fee_recipient_starts_with: z.optional(z.string()), + fee_recipient_ends_with: z.optional(z.string()), + fee_recipient_like: z.optional(z.string()), + fee_recipient_not_like: z.optional(z.string()), + fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse = + zListFctPayloadBidHighestValueByBuilderChunked50MsResponse; + +export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse = + zGetFctPayloadBidHighestValueByBuilderChunked50MsResponse; + export const zFctPreparedBlockServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - event_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - event_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_eq: z.optional(z.string()), - meta_consensus_implementation_ne: z.optional(z.string()), - meta_consensus_implementation_contains: z.optional(z.string()), - meta_consensus_implementation_starts_with: z.optional(z.string()), - meta_consensus_implementation_ends_with: z.optional(z.string()), - meta_consensus_implementation_like: z.optional(z.string()), - meta_consensus_implementation_not_like: z.optional(z.string()), - meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_eq: z.optional(z.string()), - meta_consensus_version_ne: z.optional(z.string()), - meta_consensus_version_contains: z.optional(z.string()), - meta_consensus_version_starts_with: z.optional(z.string()), - meta_consensus_version_ends_with: z.optional(z.string()), - meta_consensus_version_like: z.optional(z.string()), - meta_consensus_version_not_like: z.optional(z.string()), - meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_version_eq: z.optional(z.string()), - block_version_ne: z.optional(z.string()), - block_version_contains: z.optional(z.string()), - block_version_starts_with: z.optional(z.string()), - block_version_ends_with: z.optional(z.string()), - block_version_like: z.optional(z.string()), - block_version_not_like: z.optional(z.string()), - block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_total_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_compressed_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_value_eq: z.optional(z.string()), - execution_payload_value_ne: z.optional(z.string()), - execution_payload_value_contains: z.optional(z.string()), - execution_payload_value_starts_with: z.optional(z.string()), - execution_payload_value_ends_with: z.optional(z.string()), - execution_payload_value_like: z.optional(z.string()), - execution_payload_value_not_like: z.optional(z.string()), - execution_payload_value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - consensus_payload_value_eq: z.optional(z.string()), - consensus_payload_value_ne: z.optional(z.string()), - consensus_payload_value_contains: z.optional(z.string()), - consensus_payload_value_starts_with: z.optional(z.string()), - consensus_payload_value_ends_with: z.optional(z.string()), - consensus_payload_value_like: z.optional(z.string()), - consensus_payload_value_not_like: z.optional(z.string()), - consensus_payload_value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - consensus_payload_value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + event_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + event_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_eq: z.optional(z.string()), + meta_consensus_implementation_ne: z.optional(z.string()), + meta_consensus_implementation_contains: z.optional(z.string()), + meta_consensus_implementation_starts_with: z.optional(z.string()), + meta_consensus_implementation_ends_with: z.optional(z.string()), + meta_consensus_implementation_like: z.optional(z.string()), + meta_consensus_implementation_not_like: z.optional(z.string()), + meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_version_eq: z.optional(z.string()), + meta_consensus_version_ne: z.optional(z.string()), + meta_consensus_version_contains: z.optional(z.string()), + meta_consensus_version_starts_with: z.optional(z.string()), + meta_consensus_version_ends_with: z.optional(z.string()), + meta_consensus_version_like: z.optional(z.string()), + meta_consensus_version_not_like: z.optional(z.string()), + meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_version_eq: z.optional(z.string()), + block_version_ne: z.optional(z.string()), + block_version_contains: z.optional(z.string()), + block_version_starts_with: z.optional(z.string()), + block_version_ends_with: z.optional(z.string()), + block_version_like: z.optional(z.string()), + block_version_not_like: z.optional(z.string()), + block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_total_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_compressed_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_value_eq: z.optional(z.string()), + execution_payload_value_ne: z.optional(z.string()), + execution_payload_value_contains: z.optional(z.string()), + execution_payload_value_starts_with: z.optional(z.string()), + execution_payload_value_ends_with: z.optional(z.string()), + execution_payload_value_like: z.optional(z.string()), + execution_payload_value_not_like: z.optional(z.string()), + execution_payload_value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + consensus_payload_value_eq: z.optional(z.string()), + consensus_payload_value_ne: z.optional(z.string()), + consensus_payload_value_contains: z.optional(z.string()), + consensus_payload_value_starts_with: z.optional(z.string()), + consensus_payload_value_ends_with: z.optional(z.string()), + consensus_payload_value_like: z.optional(z.string()), + consensus_payload_value_not_like: z.optional(z.string()), + consensus_payload_value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + consensus_payload_value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_total_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -19423,11 +85350,16 @@ export const zFctPreparedBlockServiceListData = z.object({ export const zFctPreparedBlockServiceListResponse = zListFctPreparedBlockResponse; export const zFctPreparedBlockServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -19436,53 +85368,174 @@ export const zFctPreparedBlockServiceGetData = z.object({ export const zFctPreparedBlockServiceGetResponse = zGetFctPreparedBlockResponse; export const zFctProposerRewardDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_reward_eth_value: z.optional(z.number()), - avg_reward_eth_value: z.optional(z.number()), - min_reward_eth_value: z.optional(z.number()), - max_reward_eth_value: z.optional(z.number()), - p05_reward_eth_value: z.optional(z.number()), - p50_reward_eth_value: z.optional(z.number()), - p95_reward_eth_value: z.optional(z.number()), - stddev_reward_eth_value: z.optional(z.number()), - upper_band_reward_eth_value: z.optional(z.number()), - lower_band_reward_eth_value: z.optional(z.number()), - moving_avg_reward_eth_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_reward_eth_value: z.optional(z.number()), + avg_reward_eth_value: z.optional(z.number()), + min_reward_eth_value: z.optional(z.number()), + max_reward_eth_value: z.optional(z.number()), + p05_reward_eth_value: z.optional(z.number()), + p50_reward_eth_value: z.optional(z.number()), + p95_reward_eth_value: z.optional(z.number()), + stddev_reward_eth_value: z.optional(z.number()), + upper_band_reward_eth_value: z.optional(z.number()), + lower_band_reward_eth_value: z.optional(z.number()), + moving_avg_reward_eth_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -19491,11 +85544,11 @@ export const zFctProposerRewardDailyServiceListData = z.object({ export const zFctProposerRewardDailyServiceListResponse = zListFctProposerRewardDailyResponse; export const zFctProposerRewardDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -19504,54 +85557,231 @@ export const zFctProposerRewardDailyServiceGetData = z.object({ export const zFctProposerRewardDailyServiceGetResponse = zGetFctProposerRewardDailyResponse; export const zFctProposerRewardHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_reward_eth_value: z.optional(z.number()), - avg_reward_eth_value: z.optional(z.number()), - min_reward_eth_value: z.optional(z.number()), - max_reward_eth_value: z.optional(z.number()), - p05_reward_eth_value: z.optional(z.number()), - p50_reward_eth_value: z.optional(z.number()), - p95_reward_eth_value: z.optional(z.number()), - stddev_reward_eth_value: z.optional(z.number()), - upper_band_reward_eth_value: z.optional(z.number()), - lower_band_reward_eth_value: z.optional(z.number()), - moving_avg_reward_eth_value: z.optional(z.number()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_reward_eth_value: z.optional(z.number()), + avg_reward_eth_value: z.optional(z.number()), + min_reward_eth_value: z.optional(z.number()), + max_reward_eth_value: z.optional(z.number()), + p05_reward_eth_value: z.optional(z.number()), + p50_reward_eth_value: z.optional(z.number()), + p95_reward_eth_value: z.optional(z.number()), + stddev_reward_eth_value: z.optional(z.number()), + upper_band_reward_eth_value: z.optional(z.number()), + lower_band_reward_eth_value: z.optional(z.number()), + moving_avg_reward_eth_value: z.optional(z.number()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -19560,11 +85790,16 @@ export const zFctProposerRewardHourlyServiceListData = z.object({ export const zFctProposerRewardHourlyServiceListResponse = zListFctProposerRewardHourlyResponse; export const zFctProposerRewardHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -19573,52 +85808,229 @@ export const zFctProposerRewardHourlyServiceGetData = z.object({ export const zFctProposerRewardHourlyServiceGetResponse = zGetFctProposerRewardHourlyResponse; export const zFctReorgDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - depth_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - depth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - reorg_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - reorg_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + depth_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + depth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + reorg_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + reorg_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -19627,11 +86039,11 @@ export const zFctReorgDailyServiceListData = z.object({ export const zFctReorgDailyServiceListResponse = zListFctReorgDailyResponse; export const zFctReorgDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -19640,53 +86052,286 @@ export const zFctReorgDailyServiceGetData = z.object({ export const zFctReorgDailyServiceGetResponse = zGetFctReorgDailyResponse; export const zFctReorgHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - depth_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - depth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - reorg_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - reorg_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - reorg_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + depth_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + depth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + reorg_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + reorg_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + reorg_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -19695,11 +86340,16 @@ export const zFctReorgHourlyServiceListData = z.object({ export const zFctReorgHourlyServiceListResponse = zListFctReorgHourlyResponse; export const zFctReorgHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -19708,79 +86358,256 @@ export const zFctReorgHourlyServiceGetData = z.object({ export const zFctReorgHourlyServiceGetResponse = zGetFctReorgHourlyResponse; export const zFctRocketpoolValidatorServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - pubkey_eq: z.optional(z.string()), - pubkey_ne: z.optional(z.string()), - pubkey_contains: z.optional(z.string()), - pubkey_starts_with: z.optional(z.string()), - pubkey_ends_with: z.optional(z.string()), - pubkey_like: z.optional(z.string()), - pubkey_not_like: z.optional(z.string()), - pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_operator_eq: z.optional(z.string()), - node_operator_ne: z.optional(z.string()), - node_operator_contains: z.optional(z.string()), - node_operator_starts_with: z.optional(z.string()), - node_operator_ends_with: z.optional(z.string()), - node_operator_like: z.optional(z.string()), - node_operator_not_like: z.optional(z.string()), - node_operator_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_operator_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - pool_type_eq: z.optional(z.string()), - pool_type_ne: z.optional(z.string()), - pool_type_contains: z.optional(z.string()), - pool_type_starts_with: z.optional(z.string()), - pool_type_ends_with: z.optional(z.string()), - pool_type_like: z.optional(z.string()), - pool_type_not_like: z.optional(z.string()), - pool_type_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - pool_type_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - pool_address_eq: z.optional(z.string()), - pool_address_ne: z.optional(z.string()), - pool_address_contains: z.optional(z.string()), - pool_address_starts_with: z.optional(z.string()), - pool_address_ends_with: z.optional(z.string()), - pool_address_like: z.optional(z.string()), - pool_address_not_like: z.optional(z.string()), - pool_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - pool_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - created_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - created_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + pubkey_eq: z.optional(z.string()), + pubkey_ne: z.optional(z.string()), + pubkey_contains: z.optional(z.string()), + pubkey_starts_with: z.optional(z.string()), + pubkey_ends_with: z.optional(z.string()), + pubkey_like: z.optional(z.string()), + pubkey_not_like: z.optional(z.string()), + pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_operator_eq: z.optional(z.string()), + node_operator_ne: z.optional(z.string()), + node_operator_contains: z.optional(z.string()), + node_operator_starts_with: z.optional(z.string()), + node_operator_ends_with: z.optional(z.string()), + node_operator_like: z.optional(z.string()), + node_operator_not_like: z.optional(z.string()), + node_operator_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_operator_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + pool_type_eq: z.optional(z.string()), + pool_type_ne: z.optional(z.string()), + pool_type_contains: z.optional(z.string()), + pool_type_starts_with: z.optional(z.string()), + pool_type_ends_with: z.optional(z.string()), + pool_type_like: z.optional(z.string()), + pool_type_not_like: z.optional(z.string()), + pool_type_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + pool_type_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + pool_address_eq: z.optional(z.string()), + pool_address_ne: z.optional(z.string()), + pool_address_contains: z.optional(z.string()), + pool_address_starts_with: z.optional(z.string()), + pool_address_ends_with: z.optional(z.string()), + pool_address_like: z.optional(z.string()), + pool_address_not_like: z.optional(z.string()), + pool_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + pool_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + created_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + created_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -19789,11 +86616,16 @@ export const zFctRocketpoolValidatorServiceListData = z.object({ export const zFctRocketpoolValidatorServiceListResponse = zListFctRocketpoolValidatorResponse; export const zFctRocketpoolValidatorServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -19802,61 +86634,302 @@ export const zFctRocketpoolValidatorServiceGetData = z.object({ export const zFctRocketpoolValidatorServiceGetResponse = zGetFctRocketpoolValidatorResponse; export const zFctStorageSlotStateByAddressDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -19865,11 +86938,11 @@ export const zFctStorageSlotStateByAddressDailyServiceListData = z.object({ export const zFctStorageSlotStateByAddressDailyServiceListResponse = zListFctStorageSlotStateByAddressDailyResponse; export const zFctStorageSlotStateByAddressDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -19878,62 +86951,359 @@ export const zFctStorageSlotStateByAddressDailyServiceGetData = z.object({ export const zFctStorageSlotStateByAddressDailyServiceGetResponse = zGetFctStorageSlotStateByAddressDailyResponse; export const zFctStorageSlotStateByAddressHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -19942,11 +87312,11 @@ export const zFctStorageSlotStateByAddressHourlyServiceListData = z.object({ export const zFctStorageSlotStateByAddressHourlyServiceListResponse = zListFctStorageSlotStateByAddressHourlyResponse; export const zFctStorageSlotStateByAddressHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -19955,52 +87325,293 @@ export const zFctStorageSlotStateByAddressHourlyServiceGetData = z.object({ export const zFctStorageSlotStateByAddressHourlyServiceGetResponse = zGetFctStorageSlotStateByAddressHourlyResponse; export const zFctStorageSlotStateByBlockDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -20009,11 +87620,11 @@ export const zFctStorageSlotStateByBlockDailyServiceListData = z.object({ export const zFctStorageSlotStateByBlockDailyServiceListResponse = zListFctStorageSlotStateByBlockDailyResponse; export const zFctStorageSlotStateByBlockDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -20022,53 +87633,350 @@ export const zFctStorageSlotStateByBlockDailyServiceGetData = z.object({ export const zFctStorageSlotStateByBlockDailyServiceGetResponse = zGetFctStorageSlotStateByBlockDailyResponse; export const zFctStorageSlotStateByBlockHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -20077,11 +87985,16 @@ export const zFctStorageSlotStateByBlockHourlyServiceListData = z.object({ export const zFctStorageSlotStateByBlockHourlyServiceListResponse = zListFctStorageSlotStateByBlockHourlyResponse; export const zFctStorageSlotStateByBlockHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - hour_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -20090,439 +88003,1855 @@ export const zFctStorageSlotStateByBlockHourlyServiceGetData = z.object({ export const zFctStorageSlotStateByBlockHourlyServiceGetResponse = zGetFctStorageSlotStateByBlockHourlyResponse; export const zFctStorageSlotStateWithExpiryByAddressDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctStorageSlotStateWithExpiryByAddressDailyServiceListResponse = zListFctStorageSlotStateWithExpiryByAddressDailyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctStorageSlotStateWithExpiryByAddressDailyServiceListResponse = + zListFctStorageSlotStateWithExpiryByAddressDailyResponse; export const zFctStorageSlotStateWithExpiryByAddressDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse = zGetFctStorageSlotStateWithExpiryByAddressDailyResponse; +export const zFctStorageSlotStateWithExpiryByAddressDailyServiceGetResponse = + zGetFctStorageSlotStateWithExpiryByAddressDailyResponse; export const zFctStorageSlotStateWithExpiryByAddressHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse = zListFctStorageSlotStateWithExpiryByAddressHourlyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctStorageSlotStateWithExpiryByAddressHourlyServiceListResponse = + zListFctStorageSlotStateWithExpiryByAddressHourlyResponse; export const zFctStorageSlotStateWithExpiryByAddressHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse = zGetFctStorageSlotStateWithExpiryByAddressHourlyResponse; +export const zFctStorageSlotStateWithExpiryByAddressHourlyServiceGetResponse = + zGetFctStorageSlotStateWithExpiryByAddressHourlyResponse; export const zFctStorageSlotStateWithExpiryByBlockDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctStorageSlotStateWithExpiryByBlockDailyServiceListResponse = zListFctStorageSlotStateWithExpiryByBlockDailyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctStorageSlotStateWithExpiryByBlockDailyServiceListResponse = + zListFctStorageSlotStateWithExpiryByBlockDailyResponse; export const zFctStorageSlotStateWithExpiryByBlockDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - expiry_policy: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + expiry_policy: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse = zGetFctStorageSlotStateWithExpiryByBlockDailyResponse; +export const zFctStorageSlotStateWithExpiryByBlockDailyServiceGetResponse = + zGetFctStorageSlotStateWithExpiryByBlockDailyResponse; export const zFctStorageSlotStateWithExpiryByBlockHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse = zListFctStorageSlotStateWithExpiryByBlockHourlyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctStorageSlotStateWithExpiryByBlockHourlyServiceListResponse = + zListFctStorageSlotStateWithExpiryByBlockHourlyResponse; export const zFctStorageSlotStateWithExpiryByBlockHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - expiry_policy: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + expiry_policy: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse = zGetFctStorageSlotStateWithExpiryByBlockHourlyResponse; +export const zFctStorageSlotStateWithExpiryByBlockHourlyServiceGetResponse = + zGetFctStorageSlotStateWithExpiryByBlockHourlyResponse; export const zFctStorageSlotTop100ByBytesServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - rank_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - rank_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_address_eq: z.optional(z.string()), - contract_address_ne: z.optional(z.string()), - contract_address_contains: z.optional(z.string()), - contract_address_starts_with: z.optional(z.string()), - contract_address_ends_with: z.optional(z.string()), - contract_address_like: z.optional(z.string()), - contract_address_not_like: z.optional(z.string()), - contract_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - owner_key_eq: z.optional(z.string()), - owner_key_ne: z.optional(z.string()), - owner_key_contains: z.optional(z.string()), - owner_key_starts_with: z.optional(z.string()), - owner_key_ends_with: z.optional(z.string()), - owner_key_like: z.optional(z.string()), - owner_key_not_like: z.optional(z.string()), - owner_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - owner_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - account_owner_eq: z.optional(z.string()), - account_owner_ne: z.optional(z.string()), - account_owner_contains: z.optional(z.string()), - account_owner_starts_with: z.optional(z.string()), - account_owner_ends_with: z.optional(z.string()), - account_owner_like: z.optional(z.string()), - account_owner_not_like: z.optional(z.string()), - account_owner_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - account_owner_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_name_eq: z.optional(z.string()), - contract_name_ne: z.optional(z.string()), - contract_name_contains: z.optional(z.string()), - contract_name_starts_with: z.optional(z.string()), - contract_name_ends_with: z.optional(z.string()), - contract_name_like: z.optional(z.string()), - contract_name_not_like: z.optional(z.string()), - contract_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - factory_contract_eq: z.optional(z.string()), - factory_contract_ne: z.optional(z.string()), - factory_contract_contains: z.optional(z.string()), - factory_contract_starts_with: z.optional(z.string()), - factory_contract_ends_with: z.optional(z.string()), - factory_contract_like: z.optional(z.string()), - factory_contract_not_like: z.optional(z.string()), - factory_contract_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - factory_contract_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - labels_has: z.optional(z.string()), - labels_has_all_values: z.optional(z.array(z.string())), - labels_has_any_values: z.optional(z.array(z.string())), - labels_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - labels_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - labels_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - labels_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - labels_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + rank_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + rank_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_address_eq: z.optional(z.string()), + contract_address_ne: z.optional(z.string()), + contract_address_contains: z.optional(z.string()), + contract_address_starts_with: z.optional(z.string()), + contract_address_ends_with: z.optional(z.string()), + contract_address_like: z.optional(z.string()), + contract_address_not_like: z.optional(z.string()), + contract_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + owner_key_eq: z.optional(z.string()), + owner_key_ne: z.optional(z.string()), + owner_key_contains: z.optional(z.string()), + owner_key_starts_with: z.optional(z.string()), + owner_key_ends_with: z.optional(z.string()), + owner_key_like: z.optional(z.string()), + owner_key_not_like: z.optional(z.string()), + owner_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + owner_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + account_owner_eq: z.optional(z.string()), + account_owner_ne: z.optional(z.string()), + account_owner_contains: z.optional(z.string()), + account_owner_starts_with: z.optional(z.string()), + account_owner_ends_with: z.optional(z.string()), + account_owner_like: z.optional(z.string()), + account_owner_not_like: z.optional(z.string()), + account_owner_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + account_owner_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_name_eq: z.optional(z.string()), + contract_name_ne: z.optional(z.string()), + contract_name_contains: z.optional(z.string()), + contract_name_starts_with: z.optional(z.string()), + contract_name_ends_with: z.optional(z.string()), + contract_name_like: z.optional(z.string()), + contract_name_not_like: z.optional(z.string()), + contract_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + factory_contract_eq: z.optional(z.string()), + factory_contract_ne: z.optional(z.string()), + factory_contract_contains: z.optional(z.string()), + factory_contract_starts_with: z.optional(z.string()), + factory_contract_ends_with: z.optional(z.string()), + factory_contract_like: z.optional(z.string()), + factory_contract_not_like: z.optional(z.string()), + factory_contract_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + factory_contract_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + labels_has: z.optional(z.string()), + labels_has_all_values: z.optional(z.array(z.string())), + labels_has_any_values: z.optional(z.array(z.string())), + labels_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + labels_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + labels_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + labels_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + labels_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -20531,11 +89860,16 @@ export const zFctStorageSlotTop100ByBytesServiceListData = z.object({ export const zFctStorageSlotTop100ByBytesServiceListResponse = zListFctStorageSlotTop100ByBytesResponse; export const zFctStorageSlotTop100ByBytesServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - rank: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + rank: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -20544,115 +89878,447 @@ export const zFctStorageSlotTop100ByBytesServiceGetData = z.object({ export const zFctStorageSlotTop100ByBytesServiceGetResponse = zGetFctStorageSlotTop100ByBytesResponse; export const zFctStorageSlotTop100BySlotsServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - rank_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - rank_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - rank_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_address_eq: z.optional(z.string()), - contract_address_ne: z.optional(z.string()), - contract_address_contains: z.optional(z.string()), - contract_address_starts_with: z.optional(z.string()), - contract_address_ends_with: z.optional(z.string()), - contract_address_like: z.optional(z.string()), - contract_address_not_like: z.optional(z.string()), - contract_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - owner_key_eq: z.optional(z.string()), - owner_key_ne: z.optional(z.string()), - owner_key_contains: z.optional(z.string()), - owner_key_starts_with: z.optional(z.string()), - owner_key_ends_with: z.optional(z.string()), - owner_key_like: z.optional(z.string()), - owner_key_not_like: z.optional(z.string()), - owner_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - owner_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - account_owner_eq: z.optional(z.string()), - account_owner_ne: z.optional(z.string()), - account_owner_contains: z.optional(z.string()), - account_owner_starts_with: z.optional(z.string()), - account_owner_ends_with: z.optional(z.string()), - account_owner_like: z.optional(z.string()), - account_owner_not_like: z.optional(z.string()), - account_owner_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - account_owner_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_name_eq: z.optional(z.string()), - contract_name_ne: z.optional(z.string()), - contract_name_contains: z.optional(z.string()), - contract_name_starts_with: z.optional(z.string()), - contract_name_ends_with: z.optional(z.string()), - contract_name_like: z.optional(z.string()), - contract_name_not_like: z.optional(z.string()), - contract_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - factory_contract_eq: z.optional(z.string()), - factory_contract_ne: z.optional(z.string()), - factory_contract_contains: z.optional(z.string()), - factory_contract_starts_with: z.optional(z.string()), - factory_contract_ends_with: z.optional(z.string()), - factory_contract_like: z.optional(z.string()), - factory_contract_not_like: z.optional(z.string()), - factory_contract_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - factory_contract_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - labels_has: z.optional(z.string()), - labels_has_all_values: z.optional(z.array(z.string())), - labels_has_any_values: z.optional(z.array(z.string())), - labels_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - labels_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - labels_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - labels_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - labels_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + rank_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + rank_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + rank_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_address_eq: z.optional(z.string()), + contract_address_ne: z.optional(z.string()), + contract_address_contains: z.optional(z.string()), + contract_address_starts_with: z.optional(z.string()), + contract_address_ends_with: z.optional(z.string()), + contract_address_like: z.optional(z.string()), + contract_address_not_like: z.optional(z.string()), + contract_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + owner_key_eq: z.optional(z.string()), + owner_key_ne: z.optional(z.string()), + owner_key_contains: z.optional(z.string()), + owner_key_starts_with: z.optional(z.string()), + owner_key_ends_with: z.optional(z.string()), + owner_key_like: z.optional(z.string()), + owner_key_not_like: z.optional(z.string()), + owner_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + owner_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + account_owner_eq: z.optional(z.string()), + account_owner_ne: z.optional(z.string()), + account_owner_contains: z.optional(z.string()), + account_owner_starts_with: z.optional(z.string()), + account_owner_ends_with: z.optional(z.string()), + account_owner_like: z.optional(z.string()), + account_owner_not_like: z.optional(z.string()), + account_owner_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + account_owner_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_name_eq: z.optional(z.string()), + contract_name_ne: z.optional(z.string()), + contract_name_contains: z.optional(z.string()), + contract_name_starts_with: z.optional(z.string()), + contract_name_ends_with: z.optional(z.string()), + contract_name_like: z.optional(z.string()), + contract_name_not_like: z.optional(z.string()), + contract_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + factory_contract_eq: z.optional(z.string()), + factory_contract_ne: z.optional(z.string()), + factory_contract_contains: z.optional(z.string()), + factory_contract_starts_with: z.optional(z.string()), + factory_contract_ends_with: z.optional(z.string()), + factory_contract_like: z.optional(z.string()), + factory_contract_not_like: z.optional(z.string()), + factory_contract_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + factory_contract_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + labels_has: z.optional(z.string()), + labels_has_all_values: z.optional(z.array(z.string())), + labels_has_any_values: z.optional(z.array(z.string())), + labels_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + labels_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + labels_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + labels_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + labels_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -20661,11 +90327,16 @@ export const zFctStorageSlotTop100BySlotsServiceListData = z.object({ export const zFctStorageSlotTop100BySlotsServiceListResponse = zListFctStorageSlotTop100BySlotsResponse; export const zFctStorageSlotTop100BySlotsServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - rank: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + rank: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -20674,395 +90345,1831 @@ export const zFctStorageSlotTop100BySlotsServiceGetData = z.object({ export const zFctStorageSlotTop100BySlotsServiceGetResponse = zGetFctStorageSlotTop100BySlotsResponse; export const zFctSyncCommitteeParticipationByValidatorServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - participated_eq: z.optional(z.boolean()), - participated_ne: z.optional(z.boolean()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctSyncCommitteeParticipationByValidatorServiceListResponse = zListFctSyncCommitteeParticipationByValidatorResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + participated_eq: z.optional(z.boolean()), + participated_ne: z.optional(z.boolean()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctSyncCommitteeParticipationByValidatorServiceListResponse = + zListFctSyncCommitteeParticipationByValidatorResponse; export const zFctSyncCommitteeParticipationByValidatorServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctSyncCommitteeParticipationByValidatorServiceGetResponse = zGetFctSyncCommitteeParticipationByValidatorResponse; +export const zFctSyncCommitteeParticipationByValidatorServiceGetResponse = + zGetFctSyncCommitteeParticipationByValidatorResponse; export const zFctSyncCommitteeParticipationByValidatorDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_slots_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - participated_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - participated_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctSyncCommitteeParticipationByValidatorDailyServiceListResponse = zListFctSyncCommitteeParticipationByValidatorDailyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_slots_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + participated_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + participated_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctSyncCommitteeParticipationByValidatorDailyServiceListResponse = + zListFctSyncCommitteeParticipationByValidatorDailyResponse; export const zFctSyncCommitteeParticipationByValidatorDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctSyncCommitteeParticipationByValidatorDailyServiceGetResponse = zGetFctSyncCommitteeParticipationByValidatorDailyResponse; +export const zFctSyncCommitteeParticipationByValidatorDailyServiceGetResponse = + zGetFctSyncCommitteeParticipationByValidatorDailyResponse; export const zFctSyncCommitteeParticipationByValidatorHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_slots_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - total_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - total_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - participated_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - participated_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - participated_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctSyncCommitteeParticipationByValidatorHourlyServiceListResponse = zListFctSyncCommitteeParticipationByValidatorHourlyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_slots_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + total_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + total_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + participated_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + participated_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + participated_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + missed_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + missed_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctSyncCommitteeParticipationByValidatorHourlyServiceListResponse = + zListFctSyncCommitteeParticipationByValidatorHourlyResponse; export const zFctSyncCommitteeParticipationByValidatorHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse = zGetFctSyncCommitteeParticipationByValidatorHourlyResponse; +export const zFctSyncCommitteeParticipationByValidatorHourlyServiceGetResponse = + zGetFctSyncCommitteeParticipationByValidatorHourlyResponse; export const zFctTokenContractStorageStateByBlockDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - token_standard_eq: z.optional(z.string()), - token_standard_ne: z.optional(z.string()), - token_standard_contains: z.optional(z.string()), - token_standard_starts_with: z.optional(z.string()), - token_standard_ends_with: z.optional(z.string()), - token_standard_like: z.optional(z.string()), - token_standard_not_like: z.optional(z.string()), - token_standard_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - token_standard_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctTokenContractStorageStateByBlockDailyServiceListResponse = zListFctTokenContractStorageStateByBlockDailyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + token_standard_eq: z.optional(z.string()), + token_standard_ne: z.optional(z.string()), + token_standard_contains: z.optional(z.string()), + token_standard_starts_with: z.optional(z.string()), + token_standard_ends_with: z.optional(z.string()), + token_standard_like: z.optional(z.string()), + token_standard_not_like: z.optional(z.string()), + token_standard_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + token_standard_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctTokenContractStorageStateByBlockDailyServiceListResponse = + zListFctTokenContractStorageStateByBlockDailyResponse; export const zFctTokenContractStorageStateByBlockDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zFctTokenContractStorageStateByBlockDailyServiceGetResponse = zGetFctTokenContractStorageStateByBlockDailyResponse; +export const zFctTokenContractStorageStateByBlockDailyServiceGetResponse = + zGetFctTokenContractStorageStateByBlockDailyResponse; export const zFctValidatorBalanceServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - balance_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - balance_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - balance_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - balance_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - balance_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - balance_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - balance_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - balance_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_balance_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slashed_eq: z.optional(z.boolean()), - slashed_ne: z.optional(z.boolean()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + balance_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + balance_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + balance_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + balance_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + balance_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + balance_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + balance_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + balance_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_balance_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slashed_eq: z.optional(z.boolean()), + slashed_ne: z.optional(z.boolean()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -21071,11 +92178,16 @@ export const zFctValidatorBalanceServiceListData = z.object({ export const zFctValidatorBalanceServiceListResponse = zListFctValidatorBalanceResponse; export const zFctValidatorBalanceServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -21084,123 +92196,716 @@ export const zFctValidatorBalanceServiceGetData = z.object({ export const zFctValidatorBalanceServiceGetResponse = zGetFctValidatorBalanceResponse; export const zFctValidatorBalanceDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - start_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - start_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - end_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - end_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - start_balance_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - start_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - end_balance_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - end_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_balance_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_balance_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_balance_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slashed_eq: z.optional(z.boolean()), - slashed_ne: z.optional(z.boolean()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + start_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + start_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + end_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + end_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + start_balance_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + start_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + end_balance_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + end_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_balance_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_balance_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_balance_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slashed_eq: z.optional(z.boolean()), + slashed_ne: z.optional(z.boolean()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -21209,11 +92914,16 @@ export const zFctValidatorBalanceDailyServiceListData = z.object({ export const zFctValidatorBalanceDailyServiceListResponse = zListFctValidatorBalanceDailyResponse; export const zFctValidatorBalanceDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -21222,124 +92932,773 @@ export const zFctValidatorBalanceDailyServiceGetData = z.object({ export const zFctValidatorBalanceDailyServiceGetResponse = zGetFctValidatorBalanceDailyResponse; export const zFctValidatorBalanceHourlyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - start_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - start_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - start_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - end_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - end_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - end_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - start_balance_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - start_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - start_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - end_balance_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - end_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - end_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_balance_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - min_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - min_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_balance_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_balance_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slashed_eq: z.optional(z.boolean()), - slashed_ne: z.optional(z.boolean()), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + start_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + start_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + start_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + end_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + end_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + end_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + start_balance_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + start_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + start_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + end_balance_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + end_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + end_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_balance_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + min_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + min_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_balance_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_balance_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_balance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_balance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slashed_eq: z.optional(z.boolean()), + slashed_ne: z.optional(z.boolean()), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -21348,11 +93707,16 @@ export const zFctValidatorBalanceHourlyServiceListData = z.object({ export const zFctValidatorBalanceHourlyServiceListResponse = zListFctValidatorBalanceHourlyResponse; export const zFctValidatorBalanceHourlyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - validator_index: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + validator_index: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -21361,225 +93725,1834 @@ export const zFctValidatorBalanceHourlyServiceGetData = z.object({ export const zFctValidatorBalanceHourlyServiceGetResponse = zGetFctValidatorBalanceHourlyResponse; export const zFctValidatorCountByEntityByStatusDailyServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - day_start_date_eq: z.optional(z.string()), - day_start_date_ne: z.optional(z.string()), - day_start_date_contains: z.optional(z.string()), - day_start_date_starts_with: z.optional(z.string()), - day_start_date_ends_with: z.optional(z.string()), - day_start_date_like: z.optional(z.string()), - day_start_date_not_like: z.optional(z.string()), - day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - entity_eq: z.optional(z.string()), - entity_ne: z.optional(z.string()), - entity_contains: z.optional(z.string()), - entity_starts_with: z.optional(z.string()), - entity_ends_with: z.optional(z.string()), - entity_like: z.optional(z.string()), - entity_not_like: z.optional(z.string()), - entity_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - entity_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validator_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validator_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zFctValidatorCountByEntityByStatusDailyServiceListResponse = zListFctValidatorCountByEntityByStatusDailyResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + day_start_date_eq: z.optional(z.string()), + day_start_date_ne: z.optional(z.string()), + day_start_date_contains: z.optional(z.string()), + day_start_date_starts_with: z.optional(z.string()), + day_start_date_ends_with: z.optional(z.string()), + day_start_date_like: z.optional(z.string()), + day_start_date_not_like: z.optional(z.string()), + day_start_date_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + day_start_date_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + entity_eq: z.optional(z.string()), + entity_ne: z.optional(z.string()), + entity_contains: z.optional(z.string()), + entity_starts_with: z.optional(z.string()), + entity_ends_with: z.optional(z.string()), + entity_like: z.optional(z.string()), + entity_not_like: z.optional(z.string()), + entity_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + entity_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validator_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validator_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctValidatorCountByEntityByStatusDailyServiceListResponse = + zListFctValidatorCountByEntityByStatusDailyResponse; export const zFctValidatorCountByEntityByStatusDailyServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - day_start_date: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + day_start_date: z.string(), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctValidatorCountByEntityByStatusDailyServiceGetResponse = + zGetFctValidatorCountByEntityByStatusDailyResponse; + +export const zIntAttestationAttestedServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + attesting_validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_root_eq: z.optional(z.string()), + source_root_ne: z.optional(z.string()), + source_root_contains: z.optional(z.string()), + source_root_starts_with: z.optional(z.string()), + source_root_ends_with: z.optional(z.string()), + source_root_like: z.optional(z.string()), + source_root_not_like: z.optional(z.string()), + source_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_root_eq: z.optional(z.string()), + target_root_ne: z.optional(z.string()), + target_root_contains: z.optional(z.string()), + target_root_starts_with: z.optional(z.string()), + target_root_ends_with: z.optional(z.string()), + target_root_like: z.optional(z.string()), + target_root_not_like: z.optional(z.string()), + target_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + inclusion_distance_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + inclusion_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + propagation_distance_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + propagation_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** * OK */ -export const zFctValidatorCountByEntityByStatusDailyServiceGetResponse = zGetFctValidatorCountByEntityByStatusDailyResponse; +export const zIntAttestationAttestedServiceListResponse = zListIntAttestationAttestedResponse; + +export const zIntAttestationAttestedServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zIntAttestationAttestedServiceGetResponse = zGetIntAttestationAttestedResponse; export const zIntAttestationAttestedCanonicalServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - attesting_validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_root_eq: z.optional(z.string()), - source_root_ne: z.optional(z.string()), - source_root_contains: z.optional(z.string()), - source_root_starts_with: z.optional(z.string()), - source_root_ends_with: z.optional(z.string()), - source_root_like: z.optional(z.string()), - source_root_not_like: z.optional(z.string()), - source_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - target_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_root_eq: z.optional(z.string()), - target_root_ne: z.optional(z.string()), - target_root_contains: z.optional(z.string()), - target_root_starts_with: z.optional(z.string()), - target_root_ends_with: z.optional(z.string()), - target_root_like: z.optional(z.string()), - target_root_not_like: z.optional(z.string()), - target_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - target_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - inclusion_distance_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - inclusion_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - inclusion_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + attesting_validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_root_eq: z.optional(z.string()), + source_root_ne: z.optional(z.string()), + source_root_contains: z.optional(z.string()), + source_root_starts_with: z.optional(z.string()), + source_root_ends_with: z.optional(z.string()), + source_root_like: z.optional(z.string()), + source_root_not_like: z.optional(z.string()), + source_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_root_eq: z.optional(z.string()), + target_root_ne: z.optional(z.string()), + target_root_contains: z.optional(z.string()), + target_root_starts_with: z.optional(z.string()), + target_root_ends_with: z.optional(z.string()), + target_root_like: z.optional(z.string()), + target_root_not_like: z.optional(z.string()), + target_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + inclusion_distance_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + inclusion_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + inclusion_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -21588,11 +95561,16 @@ export const zIntAttestationAttestedCanonicalServiceListData = z.object({ export const zIntAttestationAttestedCanonicalServiceListResponse = zListIntAttestationAttestedCanonicalResponse; export const zIntAttestationAttestedCanonicalServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -21601,150 +95579,775 @@ export const zIntAttestationAttestedCanonicalServiceGetData = z.object({ export const zIntAttestationAttestedCanonicalServiceGetResponse = zGetIntAttestationAttestedCanonicalResponse; export const zIntAttestationAttestedHeadServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - attesting_validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_root_eq: z.optional(z.string()), - source_root_ne: z.optional(z.string()), - source_root_contains: z.optional(z.string()), - source_root_starts_with: z.optional(z.string()), - source_root_ends_with: z.optional(z.string()), - source_root_like: z.optional(z.string()), - source_root_not_like: z.optional(z.string()), - source_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - target_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_root_eq: z.optional(z.string()), - target_root_ne: z.optional(z.string()), - target_root_contains: z.optional(z.string()), - target_root_starts_with: z.optional(z.string()), - target_root_ends_with: z.optional(z.string()), - target_root_like: z.optional(z.string()), - target_root_not_like: z.optional(z.string()), - target_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - target_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - propagation_distance_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - propagation_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - propagation_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + attesting_validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_root_eq: z.optional(z.string()), + source_root_ne: z.optional(z.string()), + source_root_contains: z.optional(z.string()), + source_root_starts_with: z.optional(z.string()), + source_root_ends_with: z.optional(z.string()), + source_root_like: z.optional(z.string()), + source_root_not_like: z.optional(z.string()), + source_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_root_eq: z.optional(z.string()), + target_root_ne: z.optional(z.string()), + target_root_contains: z.optional(z.string()), + target_root_starts_with: z.optional(z.string()), + target_root_ends_with: z.optional(z.string()), + target_root_like: z.optional(z.string()), + target_root_not_like: z.optional(z.string()), + target_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + propagation_distance_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + propagation_distance_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + propagation_distance_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -21753,11 +96356,16 @@ export const zIntAttestationAttestedHeadServiceListData = z.object({ export const zIntAttestationAttestedHeadServiceListResponse = zListIntAttestationAttestedHeadResponse; export const zIntAttestationAttestedHeadServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -21766,277 +96374,850 @@ export const zIntAttestationAttestedHeadServiceGetData = z.object({ export const zIntAttestationAttestedHeadServiceGetResponse = zGetIntAttestationAttestedHeadResponse; export const zIntAttestationFirstSeenServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attesting_validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_eq: z.optional(z.string()), - source_ne: z.optional(z.string()), - source_contains: z.optional(z.string()), - source_starts_with: z.optional(z.string()), - source_ends_with: z.optional(z.string()), - source_like: z.optional(z.string()), - source_not_like: z.optional(z.string()), - source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - attesting_validator_committee_index_eq: z.optional(z.string()), - attesting_validator_committee_index_ne: z.optional(z.string()), - attesting_validator_committee_index_contains: z.optional(z.string()), - attesting_validator_committee_index_starts_with: z.optional(z.string()), - attesting_validator_committee_index_ends_with: z.optional(z.string()), - attesting_validator_committee_index_like: z.optional(z.string()), - attesting_validator_committee_index_not_like: z.optional(z.string()), - attesting_validator_committee_index_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - attesting_validator_committee_index_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_root_eq: z.optional(z.string()), - source_root_ne: z.optional(z.string()), - source_root_contains: z.optional(z.string()), - source_root_starts_with: z.optional(z.string()), - source_root_ends_with: z.optional(z.string()), - source_root_like: z.optional(z.string()), - source_root_not_like: z.optional(z.string()), - source_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - target_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_root_eq: z.optional(z.string()), - target_root_ne: z.optional(z.string()), - target_root_contains: z.optional(z.string()), - target_root_starts_with: z.optional(z.string()), - target_root_ends_with: z.optional(z.string()), - target_root_like: z.optional(z.string()), - target_root_not_like: z.optional(z.string()), - target_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - target_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - username_eq: z.optional(z.string()), - username_ne: z.optional(z.string()), - username_contains: z.optional(z.string()), - username_starts_with: z.optional(z.string()), - username_ends_with: z.optional(z.string()), - username_like: z.optional(z.string()), - username_not_like: z.optional(z.string()), - username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_eq: z.optional(z.string()), - node_id_ne: z.optional(z.string()), - node_id_contains: z.optional(z.string()), - node_id_starts_with: z.optional(z.string()), - node_id_ends_with: z.optional(z.string()), - node_id_like: z.optional(z.string()), - node_id_not_like: z.optional(z.string()), - node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_eq: z.optional(z.string()), - classification_ne: z.optional(z.string()), - classification_contains: z.optional(z.string()), - classification_starts_with: z.optional(z.string()), - classification_ends_with: z.optional(z.string()), - classification_like: z.optional(z.string()), - classification_not_like: z.optional(z.string()), - classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_eq: z.optional(z.string()), - meta_client_geo_continent_code_ne: z.optional(z.string()), - meta_client_geo_continent_code_contains: z.optional(z.string()), - meta_client_geo_continent_code_starts_with: z.optional(z.string()), - meta_client_geo_continent_code_ends_with: z.optional(z.string()), - meta_client_geo_continent_code_like: z.optional(z.string()), - meta_client_geo_continent_code_not_like: z.optional(z.string()), - meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_longitude_value: z.optional(z.number()), - meta_client_geo_latitude_value: z.optional(z.number()), - meta_client_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_eq: z.optional(z.string()), - meta_consensus_version_ne: z.optional(z.string()), - meta_consensus_version_contains: z.optional(z.string()), - meta_consensus_version_starts_with: z.optional(z.string()), - meta_consensus_version_ends_with: z.optional(z.string()), - meta_consensus_version_like: z.optional(z.string()), - meta_consensus_version_not_like: z.optional(z.string()), - meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_eq: z.optional(z.string()), - meta_consensus_implementation_ne: z.optional(z.string()), - meta_consensus_implementation_contains: z.optional(z.string()), - meta_consensus_implementation_starts_with: z.optional(z.string()), - meta_consensus_implementation_ends_with: z.optional(z.string()), - meta_consensus_implementation_like: z.optional(z.string()), - meta_consensus_implementation_not_like: z.optional(z.string()), - meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_eq: z.optional(z.string()), + source_ne: z.optional(z.string()), + source_contains: z.optional(z.string()), + source_starts_with: z.optional(z.string()), + source_ends_with: z.optional(z.string()), + source_like: z.optional(z.string()), + source_not_like: z.optional(z.string()), + source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + attesting_validator_committee_index_eq: z.optional(z.string()), + attesting_validator_committee_index_ne: z.optional(z.string()), + attesting_validator_committee_index_contains: z.optional(z.string()), + attesting_validator_committee_index_starts_with: z.optional(z.string()), + attesting_validator_committee_index_ends_with: z.optional(z.string()), + attesting_validator_committee_index_like: z.optional(z.string()), + attesting_validator_committee_index_not_like: z.optional(z.string()), + attesting_validator_committee_index_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + attesting_validator_committee_index_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_root_eq: z.optional(z.string()), + source_root_ne: z.optional(z.string()), + source_root_contains: z.optional(z.string()), + source_root_starts_with: z.optional(z.string()), + source_root_ends_with: z.optional(z.string()), + source_root_like: z.optional(z.string()), + source_root_not_like: z.optional(z.string()), + source_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_root_eq: z.optional(z.string()), + target_root_ne: z.optional(z.string()), + target_root_contains: z.optional(z.string()), + target_root_starts_with: z.optional(z.string()), + target_root_ends_with: z.optional(z.string()), + target_root_like: z.optional(z.string()), + target_root_not_like: z.optional(z.string()), + target_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_eq: z.optional(z.string()), + username_ne: z.optional(z.string()), + username_contains: z.optional(z.string()), + username_starts_with: z.optional(z.string()), + username_ends_with: z.optional(z.string()), + username_like: z.optional(z.string()), + username_not_like: z.optional(z.string()), + username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_eq: z.optional(z.string()), + node_id_ne: z.optional(z.string()), + node_id_contains: z.optional(z.string()), + node_id_starts_with: z.optional(z.string()), + node_id_ends_with: z.optional(z.string()), + node_id_like: z.optional(z.string()), + node_id_not_like: z.optional(z.string()), + node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_eq: z.optional(z.string()), + classification_ne: z.optional(z.string()), + classification_contains: z.optional(z.string()), + classification_starts_with: z.optional(z.string()), + classification_ends_with: z.optional(z.string()), + classification_like: z.optional(z.string()), + classification_not_like: z.optional(z.string()), + classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_consensus_version_eq: z.optional(z.string()), + meta_consensus_version_ne: z.optional(z.string()), + meta_consensus_version_contains: z.optional(z.string()), + meta_consensus_version_starts_with: z.optional(z.string()), + meta_consensus_version_ends_with: z.optional(z.string()), + meta_consensus_version_like: z.optional(z.string()), + meta_consensus_version_not_like: z.optional(z.string()), + meta_consensus_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_eq: z.optional(z.string()), + meta_consensus_implementation_ne: z.optional(z.string()), + meta_consensus_implementation_contains: z.optional(z.string()), + meta_consensus_implementation_starts_with: z.optional(z.string()), + meta_consensus_implementation_ends_with: z.optional(z.string()), + meta_consensus_implementation_like: z.optional(z.string()), + meta_consensus_implementation_not_like: z.optional(z.string()), + meta_consensus_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_consensus_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -22045,11 +97226,16 @@ export const zIntAttestationFirstSeenServiceListData = z.object({ export const zIntAttestationFirstSeenServiceListResponse = zListIntAttestationFirstSeenResponse; export const zIntAttestationFirstSeenServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -22058,148 +97244,661 @@ export const zIntAttestationFirstSeenServiceGetData = z.object({ export const zIntAttestationFirstSeenServiceGetResponse = zGetIntAttestationFirstSeenResponse; export const zIntAttestationFirstSeenAggregateServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attesting_validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - source_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_root_eq: z.optional(z.string()), - source_root_ne: z.optional(z.string()), - source_root_contains: z.optional(z.string()), - source_root_starts_with: z.optional(z.string()), - source_root_ends_with: z.optional(z.string()), - source_root_like: z.optional(z.string()), - source_root_not_like: z.optional(z.string()), - source_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - target_epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - target_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_root_eq: z.optional(z.string()), - target_root_ne: z.optional(z.string()), - target_root_contains: z.optional(z.string()), - target_root_starts_with: z.optional(z.string()), - target_root_ends_with: z.optional(z.string()), - target_root_like: z.optional(z.string()), - target_root_not_like: z.optional(z.string()), - target_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - target_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - committee_index_eq: z.optional(z.string()), - committee_index_ne: z.optional(z.string()), - committee_index_contains: z.optional(z.string()), - committee_index_starts_with: z.optional(z.string()), - committee_index_ends_with: z.optional(z.string()), - committee_index_like: z.optional(z.string()), - committee_index_not_like: z.optional(z.string()), - committee_index_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - committee_index_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - seen_slot_start_diff_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - source_eq: z.optional(z.string()), - source_ne: z.optional(z.string()), - source_contains: z.optional(z.string()), - source_starts_with: z.optional(z.string()), - source_ends_with: z.optional(z.string()), - source_like: z.optional(z.string()), - source_not_like: z.optional(z.string()), - source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attesting_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attesting_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + source_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_root_eq: z.optional(z.string()), + source_root_ne: z.optional(z.string()), + source_root_contains: z.optional(z.string()), + source_root_starts_with: z.optional(z.string()), + source_root_ends_with: z.optional(z.string()), + source_root_like: z.optional(z.string()), + source_root_not_like: z.optional(z.string()), + source_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + target_epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_root_eq: z.optional(z.string()), + target_root_ne: z.optional(z.string()), + target_root_contains: z.optional(z.string()), + target_root_starts_with: z.optional(z.string()), + target_root_ends_with: z.optional(z.string()), + target_root_like: z.optional(z.string()), + target_root_not_like: z.optional(z.string()), + target_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + committee_index_eq: z.optional(z.string()), + committee_index_ne: z.optional(z.string()), + committee_index_contains: z.optional(z.string()), + committee_index_starts_with: z.optional(z.string()), + committee_index_ends_with: z.optional(z.string()), + committee_index_like: z.optional(z.string()), + committee_index_not_like: z.optional(z.string()), + committee_index_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + committee_index_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + seen_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + seen_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + seen_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + source_eq: z.optional(z.string()), + source_ne: z.optional(z.string()), + source_contains: z.optional(z.string()), + source_starts_with: z.optional(z.string()), + source_ends_with: z.optional(z.string()), + source_like: z.optional(z.string()), + source_not_like: z.optional(z.string()), + source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -22208,11 +97907,16 @@ export const zIntAttestationFirstSeenAggregateServiceListData = z.object({ export const zIntAttestationFirstSeenAggregateServiceListResponse = zListIntAttestationFirstSeenAggregateResponse; export const zIntAttestationFirstSeenAggregateServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -22220,81 +97924,879 @@ export const zIntAttestationFirstSeenAggregateServiceGetData = z.object({ */ export const zIntAttestationFirstSeenAggregateServiceGetResponse = zGetIntAttestationFirstSeenAggregateResponse; +export const zIntBeaconCommitteeServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + committee_index_eq: z.optional(z.string()), + committee_index_ne: z.optional(z.string()), + committee_index_contains: z.optional(z.string()), + committee_index_starts_with: z.optional(z.string()), + committee_index_ends_with: z.optional(z.string()), + committee_index_like: z.optional(z.string()), + committee_index_not_like: z.optional(z.string()), + committee_index_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + committee_index_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validators_has: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validators_has_all_values: z.optional( + z.array( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ) + ), + validators_has_any_values: z.optional( + z.array( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ) + ), + validators_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validators_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validators_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validators_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validators_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zIntBeaconCommitteeServiceListResponse = zListIntBeaconCommitteeResponse; + +export const zIntBeaconCommitteeServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zIntBeaconCommitteeServiceGetResponse = zGetIntBeaconCommitteeResponse; + export const zIntBeaconCommitteeHeadServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - committee_index_eq: z.optional(z.string()), - committee_index_ne: z.optional(z.string()), - committee_index_contains: z.optional(z.string()), - committee_index_starts_with: z.optional(z.string()), - committee_index_ends_with: z.optional(z.string()), - committee_index_like: z.optional(z.string()), - committee_index_not_like: z.optional(z.string()), - committee_index_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - committee_index_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - validators_has: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validators_has_all_values: z.optional(z.array(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })))), - validators_has_any_values: z.optional(z.array(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })))), - validators_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validators_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validators_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validators_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - validators_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + committee_index_eq: z.optional(z.string()), + committee_index_ne: z.optional(z.string()), + committee_index_contains: z.optional(z.string()), + committee_index_starts_with: z.optional(z.string()), + committee_index_ends_with: z.optional(z.string()), + committee_index_like: z.optional(z.string()), + committee_index_not_like: z.optional(z.string()), + committee_index_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + committee_index_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + validators_has: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validators_has_all_values: z.optional( + z.array( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ) + ), + validators_has_any_values: z.optional( + z.array( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ) + ), + validators_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validators_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validators_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validators_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + validators_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -22303,11 +98805,16 @@ export const zIntBeaconCommitteeHeadServiceListData = z.object({ export const zIntBeaconCommitteeHeadServiceListResponse = zListIntBeaconCommitteeHeadResponse; export const zIntBeaconCommitteeHeadServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -22316,82 +98823,427 @@ export const zIntBeaconCommitteeHeadServiceGetData = z.object({ export const zIntBeaconCommitteeHeadServiceGetResponse = zGetIntBeaconCommitteeHeadResponse; export const zIntBlockBlobCountCanonicalServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -22400,11 +99252,16 @@ export const zIntBlockBlobCountCanonicalServiceListData = z.object({ export const zIntBlockBlobCountCanonicalServiceListResponse = zListIntBlockBlobCountCanonicalResponse; export const zIntBlockBlobCountCanonicalServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -22413,272 +99270,1245 @@ export const zIntBlockBlobCountCanonicalServiceGetData = z.object({ export const zIntBlockBlobCountCanonicalServiceGetResponse = zGetIntBlockBlobCountCanonicalResponse; export const zIntBlockCanonicalServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_version_eq: z.optional(z.string()), - block_version_ne: z.optional(z.string()), - block_version_contains: z.optional(z.string()), - block_version_starts_with: z.optional(z.string()), - block_version_ends_with: z.optional(z.string()), - block_version_like: z.optional(z.string()), - block_version_not_like: z.optional(z.string()), - block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_total_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_compressed_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - parent_root_eq: z.optional(z.string()), - parent_root_ne: z.optional(z.string()), - parent_root_contains: z.optional(z.string()), - parent_root_starts_with: z.optional(z.string()), - parent_root_ends_with: z.optional(z.string()), - parent_root_like: z.optional(z.string()), - parent_root_not_like: z.optional(z.string()), - parent_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - parent_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - state_root_eq: z.optional(z.string()), - state_root_ne: z.optional(z.string()), - state_root_contains: z.optional(z.string()), - state_root_starts_with: z.optional(z.string()), - state_root_ends_with: z.optional(z.string()), - state_root_like: z.optional(z.string()), - state_root_not_like: z.optional(z.string()), - state_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - state_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - eth1_data_block_hash_eq: z.optional(z.string()), - eth1_data_block_hash_ne: z.optional(z.string()), - eth1_data_block_hash_contains: z.optional(z.string()), - eth1_data_block_hash_starts_with: z.optional(z.string()), - eth1_data_block_hash_ends_with: z.optional(z.string()), - eth1_data_block_hash_like: z.optional(z.string()), - eth1_data_block_hash_not_like: z.optional(z.string()), - eth1_data_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - eth1_data_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - eth1_data_deposit_root_eq: z.optional(z.string()), - eth1_data_deposit_root_ne: z.optional(z.string()), - eth1_data_deposit_root_contains: z.optional(z.string()), - eth1_data_deposit_root_starts_with: z.optional(z.string()), - eth1_data_deposit_root_ends_with: z.optional(z.string()), - eth1_data_deposit_root_like: z.optional(z.string()), - eth1_data_deposit_root_not_like: z.optional(z.string()), - eth1_data_deposit_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - eth1_data_deposit_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_block_hash_eq: z.optional(z.string()), - execution_payload_block_hash_ne: z.optional(z.string()), - execution_payload_block_hash_contains: z.optional(z.string()), - execution_payload_block_hash_starts_with: z.optional(z.string()), - execution_payload_block_hash_ends_with: z.optional(z.string()), - execution_payload_block_hash_like: z.optional(z.string()), - execution_payload_block_hash_not_like: z.optional(z.string()), - execution_payload_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_fee_recipient_eq: z.optional(z.string()), - execution_payload_fee_recipient_ne: z.optional(z.string()), - execution_payload_fee_recipient_contains: z.optional(z.string()), - execution_payload_fee_recipient_starts_with: z.optional(z.string()), - execution_payload_fee_recipient_ends_with: z.optional(z.string()), - execution_payload_fee_recipient_like: z.optional(z.string()), - execution_payload_fee_recipient_not_like: z.optional(z.string()), - execution_payload_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_base_fee_per_gas_eq: z.optional(z.string()), - execution_payload_base_fee_per_gas_ne: z.optional(z.string()), - execution_payload_base_fee_per_gas_contains: z.optional(z.string()), - execution_payload_base_fee_per_gas_starts_with: z.optional(z.string()), - execution_payload_base_fee_per_gas_ends_with: z.optional(z.string()), - execution_payload_base_fee_per_gas_like: z.optional(z.string()), - execution_payload_base_fee_per_gas_not_like: z.optional(z.string()), - execution_payload_base_fee_per_gas_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_base_fee_per_gas_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_blob_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_blob_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_blob_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_excess_blob_gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_excess_blob_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_excess_blob_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - execution_payload_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_state_root_eq: z.optional(z.string()), - execution_payload_state_root_ne: z.optional(z.string()), - execution_payload_state_root_contains: z.optional(z.string()), - execution_payload_state_root_starts_with: z.optional(z.string()), - execution_payload_state_root_ends_with: z.optional(z.string()), - execution_payload_state_root_like: z.optional(z.string()), - execution_payload_state_root_not_like: z.optional(z.string()), - execution_payload_state_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_state_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_parent_hash_eq: z.optional(z.string()), - execution_payload_parent_hash_ne: z.optional(z.string()), - execution_payload_parent_hash_contains: z.optional(z.string()), - execution_payload_parent_hash_starts_with: z.optional(z.string()), - execution_payload_parent_hash_ends_with: z.optional(z.string()), - execution_payload_parent_hash_like: z.optional(z.string()), - execution_payload_parent_hash_not_like: z.optional(z.string()), - execution_payload_parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payload_transactions_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_compressed_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - execution_payload_transactions_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - execution_payload_transactions_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_version_eq: z.optional(z.string()), + block_version_ne: z.optional(z.string()), + block_version_contains: z.optional(z.string()), + block_version_starts_with: z.optional(z.string()), + block_version_ends_with: z.optional(z.string()), + block_version_like: z.optional(z.string()), + block_version_not_like: z.optional(z.string()), + block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_total_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_compressed_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + parent_root_eq: z.optional(z.string()), + parent_root_ne: z.optional(z.string()), + parent_root_contains: z.optional(z.string()), + parent_root_starts_with: z.optional(z.string()), + parent_root_ends_with: z.optional(z.string()), + parent_root_like: z.optional(z.string()), + parent_root_not_like: z.optional(z.string()), + parent_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + state_root_eq: z.optional(z.string()), + state_root_ne: z.optional(z.string()), + state_root_contains: z.optional(z.string()), + state_root_starts_with: z.optional(z.string()), + state_root_ends_with: z.optional(z.string()), + state_root_like: z.optional(z.string()), + state_root_not_like: z.optional(z.string()), + state_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + state_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + eth1_data_block_hash_eq: z.optional(z.string()), + eth1_data_block_hash_ne: z.optional(z.string()), + eth1_data_block_hash_contains: z.optional(z.string()), + eth1_data_block_hash_starts_with: z.optional(z.string()), + eth1_data_block_hash_ends_with: z.optional(z.string()), + eth1_data_block_hash_like: z.optional(z.string()), + eth1_data_block_hash_not_like: z.optional(z.string()), + eth1_data_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + eth1_data_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + eth1_data_deposit_root_eq: z.optional(z.string()), + eth1_data_deposit_root_ne: z.optional(z.string()), + eth1_data_deposit_root_contains: z.optional(z.string()), + eth1_data_deposit_root_starts_with: z.optional(z.string()), + eth1_data_deposit_root_ends_with: z.optional(z.string()), + eth1_data_deposit_root_like: z.optional(z.string()), + eth1_data_deposit_root_not_like: z.optional(z.string()), + eth1_data_deposit_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + eth1_data_deposit_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_block_hash_eq: z.optional(z.string()), + execution_payload_block_hash_ne: z.optional(z.string()), + execution_payload_block_hash_contains: z.optional(z.string()), + execution_payload_block_hash_starts_with: z.optional(z.string()), + execution_payload_block_hash_ends_with: z.optional(z.string()), + execution_payload_block_hash_like: z.optional(z.string()), + execution_payload_block_hash_not_like: z.optional(z.string()), + execution_payload_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_fee_recipient_eq: z.optional(z.string()), + execution_payload_fee_recipient_ne: z.optional(z.string()), + execution_payload_fee_recipient_contains: z.optional(z.string()), + execution_payload_fee_recipient_starts_with: z.optional(z.string()), + execution_payload_fee_recipient_ends_with: z.optional(z.string()), + execution_payload_fee_recipient_like: z.optional(z.string()), + execution_payload_fee_recipient_not_like: z.optional(z.string()), + execution_payload_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_base_fee_per_gas_eq: z.optional(z.string()), + execution_payload_base_fee_per_gas_ne: z.optional(z.string()), + execution_payload_base_fee_per_gas_contains: z.optional(z.string()), + execution_payload_base_fee_per_gas_starts_with: z.optional(z.string()), + execution_payload_base_fee_per_gas_ends_with: z.optional(z.string()), + execution_payload_base_fee_per_gas_like: z.optional(z.string()), + execution_payload_base_fee_per_gas_not_like: z.optional(z.string()), + execution_payload_base_fee_per_gas_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_base_fee_per_gas_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_blob_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_blob_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_blob_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_excess_blob_gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_excess_blob_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_excess_blob_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + execution_payload_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_state_root_eq: z.optional(z.string()), + execution_payload_state_root_ne: z.optional(z.string()), + execution_payload_state_root_contains: z.optional(z.string()), + execution_payload_state_root_starts_with: z.optional(z.string()), + execution_payload_state_root_ends_with: z.optional(z.string()), + execution_payload_state_root_like: z.optional(z.string()), + execution_payload_state_root_not_like: z.optional(z.string()), + execution_payload_state_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_state_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_parent_hash_eq: z.optional(z.string()), + execution_payload_parent_hash_ne: z.optional(z.string()), + execution_payload_parent_hash_contains: z.optional(z.string()), + execution_payload_parent_hash_starts_with: z.optional(z.string()), + execution_payload_parent_hash_ends_with: z.optional(z.string()), + execution_payload_parent_hash_like: z.optional(z.string()), + execution_payload_parent_hash_not_like: z.optional(z.string()), + execution_payload_parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payload_transactions_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_total_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + execution_payload_transactions_total_bytes_compressed_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + execution_payload_transactions_total_bytes_compressed_in_values: z.optional( + z.string().check(z.regex(/^\d+(,\d+)*$/)) + ), + execution_payload_transactions_total_bytes_compressed_not_in_values: z.optional( + z.string().check(z.regex(/^\d+(,\d+)*$/)) + ), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -22687,11 +100517,16 @@ export const zIntBlockCanonicalServiceListData = z.object({ export const zIntBlockCanonicalServiceListResponse = zListIntBlockCanonicalResponse; export const zIntBlockCanonicalServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -22700,184 +100535,868 @@ export const zIntBlockCanonicalServiceGetData = z.object({ export const zIntBlockCanonicalServiceGetResponse = zGetIntBlockCanonicalResponse; export const zIntBlockMevCanonicalServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - earliest_bid_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - earliest_bid_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - earliest_bid_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - relay_names_has: z.optional(z.string()), - relay_names_has_all_values: z.optional(z.array(z.string())), - relay_names_has_any_values: z.optional(z.array(z.string())), - relay_names_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - relay_names_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - parent_hash_eq: z.optional(z.string()), - parent_hash_ne: z.optional(z.string()), - parent_hash_contains: z.optional(z.string()), - parent_hash_starts_with: z.optional(z.string()), - parent_hash_ends_with: z.optional(z.string()), - parent_hash_like: z.optional(z.string()), - parent_hash_not_like: z.optional(z.string()), - parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_hash_eq: z.optional(z.string()), - block_hash_ne: z.optional(z.string()), - block_hash_contains: z.optional(z.string()), - block_hash_starts_with: z.optional(z.string()), - block_hash_ends_with: z.optional(z.string()), - block_hash_like: z.optional(z.string()), - block_hash_not_like: z.optional(z.string()), - block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - builder_pubkey_eq: z.optional(z.string()), - builder_pubkey_ne: z.optional(z.string()), - builder_pubkey_contains: z.optional(z.string()), - builder_pubkey_starts_with: z.optional(z.string()), - builder_pubkey_ends_with: z.optional(z.string()), - builder_pubkey_like: z.optional(z.string()), - builder_pubkey_not_like: z.optional(z.string()), - builder_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - builder_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_pubkey_eq: z.optional(z.string()), - proposer_pubkey_ne: z.optional(z.string()), - proposer_pubkey_contains: z.optional(z.string()), - proposer_pubkey_starts_with: z.optional(z.string()), - proposer_pubkey_ends_with: z.optional(z.string()), - proposer_pubkey_like: z.optional(z.string()), - proposer_pubkey_not_like: z.optional(z.string()), - proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_fee_recipient_eq: z.optional(z.string()), - proposer_fee_recipient_ne: z.optional(z.string()), - proposer_fee_recipient_contains: z.optional(z.string()), - proposer_fee_recipient_starts_with: z.optional(z.string()), - proposer_fee_recipient_ends_with: z.optional(z.string()), - proposer_fee_recipient_like: z.optional(z.string()), - proposer_fee_recipient_not_like: z.optional(z.string()), - proposer_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - value_eq: z.optional(z.string()), - value_ne: z.optional(z.string()), - value_contains: z.optional(z.string()), - value_starts_with: z.optional(z.string()), - value_ends_with: z.optional(z.string()), - value_like: z.optional(z.string()), - value_not_like: z.optional(z.string()), - value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + earliest_bid_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + earliest_bid_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + relay_names_has: z.optional(z.string()), + relay_names_has_all_values: z.optional(z.array(z.string())), + relay_names_has_any_values: z.optional(z.array(z.string())), + relay_names_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + parent_hash_eq: z.optional(z.string()), + parent_hash_ne: z.optional(z.string()), + parent_hash_contains: z.optional(z.string()), + parent_hash_starts_with: z.optional(z.string()), + parent_hash_ends_with: z.optional(z.string()), + parent_hash_like: z.optional(z.string()), + parent_hash_not_like: z.optional(z.string()), + parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_pubkey_eq: z.optional(z.string()), + builder_pubkey_ne: z.optional(z.string()), + builder_pubkey_contains: z.optional(z.string()), + builder_pubkey_starts_with: z.optional(z.string()), + builder_pubkey_ends_with: z.optional(z.string()), + builder_pubkey_like: z.optional(z.string()), + builder_pubkey_not_like: z.optional(z.string()), + builder_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_pubkey_eq: z.optional(z.string()), + proposer_pubkey_ne: z.optional(z.string()), + proposer_pubkey_contains: z.optional(z.string()), + proposer_pubkey_starts_with: z.optional(z.string()), + proposer_pubkey_ends_with: z.optional(z.string()), + proposer_pubkey_like: z.optional(z.string()), + proposer_pubkey_not_like: z.optional(z.string()), + proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_fee_recipient_eq: z.optional(z.string()), + proposer_fee_recipient_ne: z.optional(z.string()), + proposer_fee_recipient_contains: z.optional(z.string()), + proposer_fee_recipient_starts_with: z.optional(z.string()), + proposer_fee_recipient_ends_with: z.optional(z.string()), + proposer_fee_recipient_like: z.optional(z.string()), + proposer_fee_recipient_not_like: z.optional(z.string()), + proposer_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + value_eq: z.optional(z.string()), + value_ne: z.optional(z.string()), + value_contains: z.optional(z.string()), + value_starts_with: z.optional(z.string()), + value_ends_with: z.optional(z.string()), + value_like: z.optional(z.string()), + value_not_like: z.optional(z.string()), + value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -22886,11 +101405,16 @@ export const zIntBlockMevCanonicalServiceListData = z.object({ export const zIntBlockMevCanonicalServiceListResponse = zListIntBlockMevCanonicalResponse; export const zIntBlockMevCanonicalServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -22899,81 +101423,434 @@ export const zIntBlockMevCanonicalServiceGetData = z.object({ export const zIntBlockMevCanonicalServiceGetResponse = zGetIntBlockMevCanonicalResponse; export const zIntBlockOpcodeGasServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - opcode_eq: z.optional(z.string()), - opcode_ne: z.optional(z.string()), - opcode_contains: z.optional(z.string()), - opcode_starts_with: z.optional(z.string()), - opcode_ends_with: z.optional(z.string()), - opcode_like: z.optional(z.string()), - opcode_not_like: z.optional(z.string()), - opcode_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - opcode_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_eq: z.optional(z.string()), - meta_network_name_ne: z.optional(z.string()), - meta_network_name_contains: z.optional(z.string()), - meta_network_name_starts_with: z.optional(z.string()), - meta_network_name_ends_with: z.optional(z.string()), - meta_network_name_like: z.optional(z.string()), - meta_network_name_not_like: z.optional(z.string()), - meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - error_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + opcode_eq: z.optional(z.string()), + opcode_ne: z.optional(z.string()), + opcode_contains: z.optional(z.string()), + opcode_starts_with: z.optional(z.string()), + opcode_ends_with: z.optional(z.string()), + opcode_like: z.optional(z.string()), + opcode_not_like: z.optional(z.string()), + opcode_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + opcode_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_eq: z.optional(z.string()), + meta_network_name_ne: z.optional(z.string()), + meta_network_name_contains: z.optional(z.string()), + meta_network_name_starts_with: z.optional(z.string()), + meta_network_name_ends_with: z.optional(z.string()), + meta_network_name_like: z.optional(z.string()), + meta_network_name_not_like: z.optional(z.string()), + meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + error_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -22982,11 +101859,18 @@ export const zIntBlockOpcodeGasServiceListData = z.object({ export const zIntBlockOpcodeGasServiceListResponse = zListIntBlockOpcodeGasResponse; export const zIntBlockOpcodeGasServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -22994,92 +101878,1100 @@ export const zIntBlockOpcodeGasServiceGetData = z.object({ */ export const zIntBlockOpcodeGasServiceGetResponse = zGetIntBlockOpcodeGasResponse; +export const zIntBlockPayloadPtcVoteCanonicalServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_version_eq: z.optional(z.string()), + block_version_ne: z.optional(z.string()), + block_version_contains: z.optional(z.string()), + block_version_starts_with: z.optional(z.string()), + block_version_ends_with: z.optional(z.string()), + block_version_like: z.optional(z.string()), + block_version_not_like: z.optional(z.string()), + block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + included_in_slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + included_in_slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + included_in_slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + included_in_block_root_eq: z.optional(z.string()), + included_in_block_root_ne: z.optional(z.string()), + included_in_block_root_contains: z.optional(z.string()), + included_in_block_root_starts_with: z.optional(z.string()), + included_in_block_root_ends_with: z.optional(z.string()), + included_in_block_root_like: z.optional(z.string()), + included_in_block_root_not_like: z.optional(z.string()), + included_in_block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + included_in_block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + ptc_validators_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + ptc_validators_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + ptc_validators_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + payload_present_votes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + payload_present_votes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + payload_present_votes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_data_available_votes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_data_available_votes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_data_available_votes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zIntBlockPayloadPtcVoteCanonicalServiceListResponse = zListIntBlockPayloadPtcVoteCanonicalResponse; + +export const zIntBlockPayloadPtcVoteCanonicalServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zIntBlockPayloadPtcVoteCanonicalServiceGetResponse = zGetIntBlockPayloadPtcVoteCanonicalResponse; + export const zIntBlockProposerCanonicalServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_validator_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_pubkey_eq: z.optional(z.string()), - proposer_pubkey_ne: z.optional(z.string()), - proposer_pubkey_contains: z.optional(z.string()), - proposer_pubkey_starts_with: z.optional(z.string()), - proposer_pubkey_ends_with: z.optional(z.string()), - proposer_pubkey_like: z.optional(z.string()), - proposer_pubkey_not_like: z.optional(z.string()), - proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_validator_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_validator_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_validator_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_pubkey_eq: z.optional(z.string()), + proposer_pubkey_ne: z.optional(z.string()), + proposer_pubkey_contains: z.optional(z.string()), + proposer_pubkey_starts_with: z.optional(z.string()), + proposer_pubkey_ends_with: z.optional(z.string()), + proposer_pubkey_like: z.optional(z.string()), + proposer_pubkey_not_like: z.optional(z.string()), + proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -23088,11 +102980,16 @@ export const zIntBlockProposerCanonicalServiceListData = z.object({ export const zIntBlockProposerCanonicalServiceListResponse = zListIntBlockProposerCanonicalResponse; export const zIntBlockProposerCanonicalServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -23101,123 +102998,788 @@ export const zIntBlockProposerCanonicalServiceGetData = z.object({ export const zIntBlockProposerCanonicalServiceGetResponse = zGetIntBlockProposerCanonicalResponse; export const zIntBlockReceiptSizeServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_network_name_eq: z.optional(z.string()), - meta_network_name_ne: z.optional(z.string()), - meta_network_name_contains: z.optional(z.string()), - meta_network_name_starts_with: z.optional(z.string()), - meta_network_name_ends_with: z.optional(z.string()), - meta_network_name_like: z.optional(z.string()), - meta_network_name_not_like: z.optional(z.string()), - meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - receipt_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - receipt_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_data_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_data_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_topic_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_topic_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - avg_receipt_bytes_per_transaction_value: z.optional(z.number()), - max_receipt_bytes_per_transaction_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_transaction_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_transaction_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_transaction_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_transaction_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_transaction_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_transaction_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_transaction_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - max_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - max_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_receipt_bytes_per_transaction_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p50_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p50_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_receipt_bytes_per_transaction_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - p95_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - p95_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_network_name_eq: z.optional(z.string()), + meta_network_name_ne: z.optional(z.string()), + meta_network_name_contains: z.optional(z.string()), + meta_network_name_starts_with: z.optional(z.string()), + meta_network_name_ends_with: z.optional(z.string()), + meta_network_name_like: z.optional(z.string()), + meta_network_name_not_like: z.optional(z.string()), + meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + receipt_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + receipt_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_data_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_data_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_topic_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_topic_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + avg_receipt_bytes_per_transaction_value: z.optional(z.number()), + max_receipt_bytes_per_transaction_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_transaction_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_transaction_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_transaction_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_transaction_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_transaction_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_transaction_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_transaction_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + max_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + max_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_receipt_bytes_per_transaction_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p50_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p50_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_receipt_bytes_per_transaction_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + p95_receipt_bytes_per_transaction_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + p95_receipt_bytes_per_transaction_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -23226,11 +103788,18 @@ export const zIntBlockReceiptSizeServiceListData = z.object({ export const zIntBlockReceiptSizeServiceListResponse = zListIntBlockReceiptSizeResponse; export const zIntBlockReceiptSizeServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -23239,122 +103808,835 @@ export const zIntBlockReceiptSizeServiceGetData = z.object({ export const zIntBlockReceiptSizeServiceGetResponse = zGetIntBlockReceiptSizeResponse; export const zIntBlockResourceGasServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_network_name_eq: z.optional(z.string()), - meta_network_name_ne: z.optional(z.string()), - meta_network_name_contains: z.optional(z.string()), - meta_network_name_starts_with: z.optional(z.string()), - meta_network_name_ends_with: z.optional(z.string()), - meta_network_name_like: z.optional(z.string()), - meta_network_name_not_like: z.optional(z.string()), - meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_compute_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_compute_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_memory_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_memory_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_address_access_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_address_access_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_state_growth_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_state_growth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_history_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_history_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_bloom_topics_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_bloom_topics_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_block_size_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_block_size_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_refund_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_refund_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_network_name_eq: z.optional(z.string()), + meta_network_name_ne: z.optional(z.string()), + meta_network_name_contains: z.optional(z.string()), + meta_network_name_starts_with: z.optional(z.string()), + meta_network_name_ends_with: z.optional(z.string()), + meta_network_name_like: z.optional(z.string()), + meta_network_name_not_like: z.optional(z.string()), + meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_compute_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_compute_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_memory_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_memory_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_address_access_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_address_access_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_state_growth_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_state_growth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_history_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_history_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_bloom_topics_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_bloom_topics_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_block_size_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_block_size_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_refund_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_refund_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -23363,11 +104645,18 @@ export const zIntBlockResourceGasServiceListData = z.object({ export const zIntBlockResourceGasServiceListResponse = zListIntBlockResourceGasResponse; export const zIntBlockResourceGasServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -23376,98 +104665,331 @@ export const zIntBlockResourceGasServiceGetData = z.object({ export const zIntBlockResourceGasServiceGetResponse = zGetIntBlockResourceGasResponse; export const zIntContractCreationServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_address_eq: z.optional(z.string()), - contract_address_ne: z.optional(z.string()), - contract_address_contains: z.optional(z.string()), - contract_address_starts_with: z.optional(z.string()), - contract_address_ends_with: z.optional(z.string()), - contract_address_like: z.optional(z.string()), - contract_address_not_like: z.optional(z.string()), - contract_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - contract_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_eq: z.optional(z.string()), - transaction_hash_ne: z.optional(z.string()), - transaction_hash_contains: z.optional(z.string()), - transaction_hash_starts_with: z.optional(z.string()), - transaction_hash_ends_with: z.optional(z.string()), - transaction_hash_like: z.optional(z.string()), - transaction_hash_not_like: z.optional(z.string()), - transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - internal_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - internal_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - deployer_eq: z.optional(z.string()), - deployer_ne: z.optional(z.string()), - deployer_contains: z.optional(z.string()), - deployer_starts_with: z.optional(z.string()), - deployer_ends_with: z.optional(z.string()), - deployer_like: z.optional(z.string()), - deployer_not_like: z.optional(z.string()), - deployer_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - deployer_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - factory_eq: z.optional(z.string()), - factory_ne: z.optional(z.string()), - factory_contains: z.optional(z.string()), - factory_starts_with: z.optional(z.string()), - factory_ends_with: z.optional(z.string()), - factory_like: z.optional(z.string()), - factory_not_like: z.optional(z.string()), - factory_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - factory_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - init_code_hash_eq: z.optional(z.string()), - init_code_hash_ne: z.optional(z.string()), - init_code_hash_contains: z.optional(z.string()), - init_code_hash_starts_with: z.optional(z.string()), - init_code_hash_ends_with: z.optional(z.string()), - init_code_hash_like: z.optional(z.string()), - init_code_hash_not_like: z.optional(z.string()), - init_code_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - init_code_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_address_eq: z.optional(z.string()), + contract_address_ne: z.optional(z.string()), + contract_address_contains: z.optional(z.string()), + contract_address_starts_with: z.optional(z.string()), + contract_address_ends_with: z.optional(z.string()), + contract_address_like: z.optional(z.string()), + contract_address_not_like: z.optional(z.string()), + contract_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + contract_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_eq: z.optional(z.string()), + transaction_hash_ne: z.optional(z.string()), + transaction_hash_contains: z.optional(z.string()), + transaction_hash_starts_with: z.optional(z.string()), + transaction_hash_ends_with: z.optional(z.string()), + transaction_hash_like: z.optional(z.string()), + transaction_hash_not_like: z.optional(z.string()), + transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + internal_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + internal_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + deployer_eq: z.optional(z.string()), + deployer_ne: z.optional(z.string()), + deployer_contains: z.optional(z.string()), + deployer_starts_with: z.optional(z.string()), + deployer_ends_with: z.optional(z.string()), + deployer_like: z.optional(z.string()), + deployer_not_like: z.optional(z.string()), + deployer_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + deployer_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + factory_eq: z.optional(z.string()), + factory_ne: z.optional(z.string()), + factory_contains: z.optional(z.string()), + factory_starts_with: z.optional(z.string()), + factory_ends_with: z.optional(z.string()), + factory_like: z.optional(z.string()), + factory_not_like: z.optional(z.string()), + factory_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + factory_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + init_code_hash_eq: z.optional(z.string()), + init_code_hash_ne: z.optional(z.string()), + init_code_hash_contains: z.optional(z.string()), + init_code_hash_starts_with: z.optional(z.string()), + init_code_hash_ends_with: z.optional(z.string()), + init_code_hash_like: z.optional(z.string()), + init_code_hash_not_like: z.optional(z.string()), + init_code_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + init_code_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -23476,11 +104998,16 @@ export const zIntContractCreationServiceListData = z.object({ export const zIntContractCreationServiceListResponse = zListIntContractCreationResponse; export const zIntContractCreationServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -23489,112 +105016,401 @@ export const zIntContractCreationServiceGetData = z.object({ export const zIntContractCreationServiceGetResponse = zGetIntContractCreationResponse; export const zIntContractSelfdestructServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - internal_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - internal_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_hash_eq: z.optional(z.string()), - transaction_hash_ne: z.optional(z.string()), - transaction_hash_contains: z.optional(z.string()), - transaction_hash_starts_with: z.optional(z.string()), - transaction_hash_ends_with: z.optional(z.string()), - transaction_hash_like: z.optional(z.string()), - transaction_hash_not_like: z.optional(z.string()), - transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - beneficiary_eq: z.optional(z.string()), - beneficiary_ne: z.optional(z.string()), - beneficiary_contains: z.optional(z.string()), - beneficiary_starts_with: z.optional(z.string()), - beneficiary_ends_with: z.optional(z.string()), - beneficiary_like: z.optional(z.string()), - beneficiary_not_like: z.optional(z.string()), - beneficiary_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - beneficiary_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - value_transferred_eq: z.optional(z.string()), - value_transferred_ne: z.optional(z.string()), - value_transferred_contains: z.optional(z.string()), - value_transferred_starts_with: z.optional(z.string()), - value_transferred_ends_with: z.optional(z.string()), - value_transferred_like: z.optional(z.string()), - value_transferred_not_like: z.optional(z.string()), - value_transferred_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - value_transferred_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - ephemeral_eq: z.optional(z.boolean()), - ephemeral_ne: z.optional(z.boolean()), - storage_cleared_eq: z.optional(z.boolean()), - storage_cleared_ne: z.optional(z.boolean()), - creation_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - creation_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - creation_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - creation_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - creation_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - creation_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - creation_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - creation_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - creation_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - creation_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - creation_transaction_hash_eq: z.optional(z.string()), - creation_transaction_hash_ne: z.optional(z.string()), - creation_transaction_hash_contains: z.optional(z.string()), - creation_transaction_hash_starts_with: z.optional(z.string()), - creation_transaction_hash_ends_with: z.optional(z.string()), - creation_transaction_hash_like: z.optional(z.string()), - creation_transaction_hash_not_like: z.optional(z.string()), - creation_transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - creation_transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + internal_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + internal_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_hash_eq: z.optional(z.string()), + transaction_hash_ne: z.optional(z.string()), + transaction_hash_contains: z.optional(z.string()), + transaction_hash_starts_with: z.optional(z.string()), + transaction_hash_ends_with: z.optional(z.string()), + transaction_hash_like: z.optional(z.string()), + transaction_hash_not_like: z.optional(z.string()), + transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + beneficiary_eq: z.optional(z.string()), + beneficiary_ne: z.optional(z.string()), + beneficiary_contains: z.optional(z.string()), + beneficiary_starts_with: z.optional(z.string()), + beneficiary_ends_with: z.optional(z.string()), + beneficiary_like: z.optional(z.string()), + beneficiary_not_like: z.optional(z.string()), + beneficiary_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + beneficiary_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_transferred_eq: z.optional(z.string()), + value_transferred_ne: z.optional(z.string()), + value_transferred_contains: z.optional(z.string()), + value_transferred_starts_with: z.optional(z.string()), + value_transferred_ends_with: z.optional(z.string()), + value_transferred_like: z.optional(z.string()), + value_transferred_not_like: z.optional(z.string()), + value_transferred_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_transferred_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + ephemeral_eq: z.optional(z.boolean()), + ephemeral_ne: z.optional(z.boolean()), + storage_cleared_eq: z.optional(z.boolean()), + storage_cleared_ne: z.optional(z.boolean()), + creation_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + creation_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + creation_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + creation_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + creation_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + creation_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + creation_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + creation_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + creation_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + creation_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + creation_transaction_hash_eq: z.optional(z.string()), + creation_transaction_hash_ne: z.optional(z.string()), + creation_transaction_hash_contains: z.optional(z.string()), + creation_transaction_hash_starts_with: z.optional(z.string()), + creation_transaction_hash_ends_with: z.optional(z.string()), + creation_transaction_hash_like: z.optional(z.string()), + creation_transaction_hash_not_like: z.optional(z.string()), + creation_transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + creation_transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -23603,11 +105419,16 @@ export const zIntContractSelfdestructServiceListData = z.object({ export const zIntContractSelfdestructServiceListResponse = zListIntContractSelfdestructResponse; export const zIntContractSelfdestructServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -23616,72 +105437,393 @@ export const zIntContractSelfdestructServiceGetData = z.object({ export const zIntContractSelfdestructServiceGetResponse = zGetIntContractSelfdestructResponse; export const zIntContractStorageExpiry1mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -23690,11 +105832,16 @@ export const zIntContractStorageExpiry1mServiceListData = z.object({ export const zIntContractStorageExpiry1mServiceListResponse = zListIntContractStorageExpiry1mResponse; export const zIntContractStorageExpiry1mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -23703,72 +105850,393 @@ export const zIntContractStorageExpiry1mServiceGetData = z.object({ export const zIntContractStorageExpiry1mServiceGetResponse = zGetIntContractStorageExpiry1mResponse; export const zIntContractStorageExpiry6mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -23777,11 +106245,16 @@ export const zIntContractStorageExpiry6mServiceListData = z.object({ export const zIntContractStorageExpiry6mServiceListResponse = zListIntContractStorageExpiry6mResponse; export const zIntContractStorageExpiry6mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -23790,72 +106263,393 @@ export const zIntContractStorageExpiry6mServiceGetData = z.object({ export const zIntContractStorageExpiry6mServiceGetResponse = zGetIntContractStorageExpiry6mResponse; export const zIntContractStorageExpiry12mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -23864,11 +106658,16 @@ export const zIntContractStorageExpiry12mServiceListData = z.object({ export const zIntContractStorageExpiry12mServiceListResponse = zListIntContractStorageExpiry12mResponse; export const zIntContractStorageExpiry12mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -23877,72 +106676,393 @@ export const zIntContractStorageExpiry12mServiceGetData = z.object({ export const zIntContractStorageExpiry12mServiceGetResponse = zGetIntContractStorageExpiry12mResponse; export const zIntContractStorageExpiry18mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -23951,11 +107071,16 @@ export const zIntContractStorageExpiry18mServiceListData = z.object({ export const zIntContractStorageExpiry18mServiceListResponse = zListIntContractStorageExpiry18mResponse; export const zIntContractStorageExpiry18mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -23964,72 +107089,393 @@ export const zIntContractStorageExpiry18mServiceGetData = z.object({ export const zIntContractStorageExpiry18mServiceGetResponse = zGetIntContractStorageExpiry18mResponse; export const zIntContractStorageExpiry24mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -24038,11 +107484,16 @@ export const zIntContractStorageExpiry24mServiceListData = z.object({ export const zIntContractStorageExpiry24mServiceListResponse = zListIntContractStorageExpiry24mResponse; export const zIntContractStorageExpiry24mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -24051,52 +107502,229 @@ export const zIntContractStorageExpiry24mServiceGetData = z.object({ export const zIntContractStorageExpiry24mServiceGetResponse = zGetIntContractStorageExpiry24mResponse; export const zIntContractStorageNextTouchServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - next_touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - next_touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + next_touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + next_touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -24105,11 +107733,16 @@ export const zIntContractStorageNextTouchServiceListData = z.object({ export const zIntContractStorageNextTouchServiceListResponse = zListIntContractStorageNextTouchResponse; export const zIntContractStorageNextTouchServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -24118,72 +107751,393 @@ export const zIntContractStorageNextTouchServiceGetData = z.object({ export const zIntContractStorageNextTouchServiceGetResponse = zGetIntContractStorageNextTouchResponse; export const zIntContractStorageReactivation1mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -24192,11 +108146,16 @@ export const zIntContractStorageReactivation1mServiceListData = z.object({ export const zIntContractStorageReactivation1mServiceListResponse = zListIntContractStorageReactivation1mResponse; export const zIntContractStorageReactivation1mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -24205,72 +108164,393 @@ export const zIntContractStorageReactivation1mServiceGetData = z.object({ export const zIntContractStorageReactivation1mServiceGetResponse = zGetIntContractStorageReactivation1mResponse; export const zIntContractStorageReactivation6mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -24279,11 +108559,16 @@ export const zIntContractStorageReactivation6mServiceListData = z.object({ export const zIntContractStorageReactivation6mServiceListResponse = zListIntContractStorageReactivation6mResponse; export const zIntContractStorageReactivation6mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -24292,72 +108577,393 @@ export const zIntContractStorageReactivation6mServiceGetData = z.object({ export const zIntContractStorageReactivation6mServiceGetResponse = zGetIntContractStorageReactivation6mResponse; export const zIntContractStorageReactivation12mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -24366,11 +108972,16 @@ export const zIntContractStorageReactivation12mServiceListData = z.object({ export const zIntContractStorageReactivation12mServiceListResponse = zListIntContractStorageReactivation12mResponse; export const zIntContractStorageReactivation12mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -24379,72 +108990,393 @@ export const zIntContractStorageReactivation12mServiceGetData = z.object({ export const zIntContractStorageReactivation12mServiceGetResponse = zGetIntContractStorageReactivation12mResponse; export const zIntContractStorageReactivation18mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -24453,11 +109385,16 @@ export const zIntContractStorageReactivation18mServiceListData = z.object({ export const zIntContractStorageReactivation18mServiceListResponse = zListIntContractStorageReactivation18mResponse; export const zIntContractStorageReactivation18mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -24466,72 +109403,393 @@ export const zIntContractStorageReactivation18mServiceGetData = z.object({ export const zIntContractStorageReactivation18mServiceGetResponse = zGetIntContractStorageReactivation18mResponse; export const zIntContractStorageReactivation24mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -24540,11 +109798,16 @@ export const zIntContractStorageReactivation24mServiceListData = z.object({ export const zIntContractStorageReactivation24mServiceListResponse = zListIntContractStorageReactivation24mResponse; export const zIntContractStorageReactivation24mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -24553,82 +109816,523 @@ export const zIntContractStorageReactivation24mServiceGetData = z.object({ export const zIntContractStorageReactivation24mServiceGetResponse = zGetIntContractStorageReactivation24mResponse; export const zIntContractStorageStateServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slots_delta_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - bytes_delta_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slots_delta_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + bytes_delta_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -24637,11 +110341,16 @@ export const zIntContractStorageStateServiceListData = z.object({ export const zIntContractStorageStateServiceListResponse = zListIntContractStorageStateResponse; export const zIntContractStorageStateServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -24650,82 +110359,523 @@ export const zIntContractStorageStateServiceGetData = z.object({ export const zIntContractStorageStateServiceGetResponse = zGetIntContractStorageStateResponse; export const zIntContractStorageStateByAddressServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slots_delta_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - bytes_delta_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slots_delta_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + bytes_delta_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -24734,11 +110884,11 @@ export const zIntContractStorageStateByAddressServiceListData = z.object({ export const zIntContractStorageStateByAddressServiceListResponse = zListIntContractStorageStateByAddressResponse; export const zIntContractStorageStateByAddressServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -24747,93 +110897,678 @@ export const zIntContractStorageStateByAddressServiceGetData = z.object({ export const zIntContractStorageStateByAddressServiceGetResponse = zGetIntContractStorageStateByAddressResponse; export const zIntContractStorageStateByBlockServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slots_delta_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - bytes_delta_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - contracts_delta_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - contracts_delta_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - contracts_delta_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - contracts_delta_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - contracts_delta_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - contracts_delta_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - contracts_delta_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - contracts_delta_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - contracts_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - contracts_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_contracts_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_contracts_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slots_delta_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + bytes_delta_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + contracts_delta_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + contracts_delta_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + contracts_delta_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + contracts_delta_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + contracts_delta_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + contracts_delta_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + contracts_delta_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + contracts_delta_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + contracts_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + contracts_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_contracts_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_contracts_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -24842,11 +111577,16 @@ export const zIntContractStorageStateByBlockServiceListData = z.object({ export const zIntContractStorageStateByBlockServiceListResponse = zListIntContractStorageStateByBlockResponse; export const zIntContractStorageStateByBlockServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -24855,131 +111595,924 @@ export const zIntContractStorageStateByBlockServiceGetData = z.object({ export const zIntContractStorageStateByBlockServiceGetResponse = zGetIntContractStorageStateByBlockResponse; export const zIntContractStorageStateWithExpiryServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - net_slots_delta_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - net_slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - net_bytes_delta_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - net_bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - prev_active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - prev_active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - prev_effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - prev_effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - prev_effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + net_slots_delta_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + net_slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + net_bytes_delta_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + net_bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + prev_active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + prev_active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + prev_effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + prev_effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + prev_effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -24988,11 +112521,11 @@ export const zIntContractStorageStateWithExpiryServiceListData = z.object({ export const zIntContractStorageStateWithExpiryServiceListResponse = zListIntContractStorageStateWithExpiryResponse; export const zIntContractStorageStateWithExpiryServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - expiry_policy: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + expiry_policy: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -25001,475 +112534,1757 @@ export const zIntContractStorageStateWithExpiryServiceGetData = z.object({ export const zIntContractStorageStateWithExpiryServiceGetResponse = zGetIntContractStorageStateWithExpiryResponse; export const zIntContractStorageStateWithExpiryByAddressServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zIntContractStorageStateWithExpiryByAddressServiceListResponse = zListIntContractStorageStateWithExpiryByAddressResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zIntContractStorageStateWithExpiryByAddressServiceListResponse = + zListIntContractStorageStateWithExpiryByAddressResponse; export const zIntContractStorageStateWithExpiryByAddressServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zIntContractStorageStateWithExpiryByAddressServiceGetResponse = zGetIntContractStorageStateWithExpiryByAddressResponse; +export const zIntContractStorageStateWithExpiryByAddressServiceGetResponse = + zGetIntContractStorageStateWithExpiryByAddressResponse; export const zIntContractStorageStateWithExpiryByBlockServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_contracts_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_contracts_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_contracts_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zIntContractStorageStateWithExpiryByBlockServiceListResponse = zListIntContractStorageStateWithExpiryByBlockResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_contracts_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_contracts_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_contracts_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zIntContractStorageStateWithExpiryByBlockServiceListResponse = + zListIntContractStorageStateWithExpiryByBlockResponse; export const zIntContractStorageStateWithExpiryByBlockServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - expiry_policy: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + expiry_policy: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zIntContractStorageStateWithExpiryByBlockServiceGetResponse = zGetIntContractStorageStateWithExpiryByBlockResponse; +export const zIntContractStorageStateWithExpiryByBlockServiceGetResponse = + zGetIntContractStorageStateWithExpiryByBlockResponse; export const zIntCustodyProbeServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - probe_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - probe_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - peer_id_unique_key_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - peer_id_unique_key_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - result_eq: z.optional(z.string()), - result_ne: z.optional(z.string()), - result_contains: z.optional(z.string()), - result_starts_with: z.optional(z.string()), - result_ends_with: z.optional(z.string()), - result_like: z.optional(z.string()), - result_not_like: z.optional(z.string()), - result_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - result_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - error_eq: z.optional(z.string()), - error_ne: z.optional(z.string()), - error_contains: z.optional(z.string()), - error_starts_with: z.optional(z.string()), - error_ends_with: z.optional(z.string()), - error_like: z.optional(z.string()), - error_not_like: z.optional(z.string()), - error_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - error_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_indices_has: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_indices_has_all_values: z.optional(z.array(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })))), - column_indices_has_any_values: z.optional(z.array(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })))), - column_indices_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_indices_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_indices_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_indices_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_indices_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_submitters_has: z.optional(z.string()), - blob_submitters_has_all_values: z.optional(z.array(z.string())), - blob_submitters_has_any_values: z.optional(z.array(z.string())), - blob_submitters_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_submitters_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_submitters_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_submitters_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_submitters_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - response_time_ms_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - username_eq: z.optional(z.string()), - username_ne: z.optional(z.string()), - username_contains: z.optional(z.string()), - username_starts_with: z.optional(z.string()), - username_ends_with: z.optional(z.string()), - username_like: z.optional(z.string()), - username_not_like: z.optional(z.string()), - username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_eq: z.optional(z.string()), - node_id_ne: z.optional(z.string()), - node_id_contains: z.optional(z.string()), - node_id_starts_with: z.optional(z.string()), - node_id_ends_with: z.optional(z.string()), - node_id_like: z.optional(z.string()), - node_id_not_like: z.optional(z.string()), - node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_eq: z.optional(z.string()), - classification_ne: z.optional(z.string()), - classification_contains: z.optional(z.string()), - classification_starts_with: z.optional(z.string()), - classification_ends_with: z.optional(z.string()), - classification_like: z.optional(z.string()), - classification_not_like: z.optional(z.string()), - classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_os_eq: z.optional(z.string()), - meta_client_os_ne: z.optional(z.string()), - meta_client_os_contains: z.optional(z.string()), - meta_client_os_starts_with: z.optional(z.string()), - meta_client_os_ends_with: z.optional(z.string()), - meta_client_os_like: z.optional(z.string()), - meta_client_os_not_like: z.optional(z.string()), - meta_client_os_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_os_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_eq: z.optional(z.string()), - meta_client_geo_continent_code_ne: z.optional(z.string()), - meta_client_geo_continent_code_contains: z.optional(z.string()), - meta_client_geo_continent_code_starts_with: z.optional(z.string()), - meta_client_geo_continent_code_ends_with: z.optional(z.string()), - meta_client_geo_continent_code_like: z.optional(z.string()), - meta_client_geo_continent_code_not_like: z.optional(z.string()), - meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_longitude_value: z.optional(z.number()), - meta_client_geo_latitude_value: z.optional(z.number()), - meta_client_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_implementation_eq: z.optional(z.string()), - meta_peer_implementation_ne: z.optional(z.string()), - meta_peer_implementation_contains: z.optional(z.string()), - meta_peer_implementation_starts_with: z.optional(z.string()), - meta_peer_implementation_ends_with: z.optional(z.string()), - meta_peer_implementation_like: z.optional(z.string()), - meta_peer_implementation_not_like: z.optional(z.string()), - meta_peer_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_version_eq: z.optional(z.string()), - meta_peer_version_ne: z.optional(z.string()), - meta_peer_version_contains: z.optional(z.string()), - meta_peer_version_starts_with: z.optional(z.string()), - meta_peer_version_ends_with: z.optional(z.string()), - meta_peer_version_like: z.optional(z.string()), - meta_peer_version_not_like: z.optional(z.string()), - meta_peer_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_platform_eq: z.optional(z.string()), - meta_peer_platform_ne: z.optional(z.string()), - meta_peer_platform_contains: z.optional(z.string()), - meta_peer_platform_starts_with: z.optional(z.string()), - meta_peer_platform_ends_with: z.optional(z.string()), - meta_peer_platform_like: z.optional(z.string()), - meta_peer_platform_not_like: z.optional(z.string()), - meta_peer_platform_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_platform_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_city_eq: z.optional(z.string()), - meta_peer_geo_city_ne: z.optional(z.string()), - meta_peer_geo_city_contains: z.optional(z.string()), - meta_peer_geo_city_starts_with: z.optional(z.string()), - meta_peer_geo_city_ends_with: z.optional(z.string()), - meta_peer_geo_city_like: z.optional(z.string()), - meta_peer_geo_city_not_like: z.optional(z.string()), - meta_peer_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_country_eq: z.optional(z.string()), - meta_peer_geo_country_ne: z.optional(z.string()), - meta_peer_geo_country_contains: z.optional(z.string()), - meta_peer_geo_country_starts_with: z.optional(z.string()), - meta_peer_geo_country_ends_with: z.optional(z.string()), - meta_peer_geo_country_like: z.optional(z.string()), - meta_peer_geo_country_not_like: z.optional(z.string()), - meta_peer_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_country_code_eq: z.optional(z.string()), - meta_peer_geo_country_code_ne: z.optional(z.string()), - meta_peer_geo_country_code_contains: z.optional(z.string()), - meta_peer_geo_country_code_starts_with: z.optional(z.string()), - meta_peer_geo_country_code_ends_with: z.optional(z.string()), - meta_peer_geo_country_code_like: z.optional(z.string()), - meta_peer_geo_country_code_not_like: z.optional(z.string()), - meta_peer_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_continent_code_eq: z.optional(z.string()), - meta_peer_geo_continent_code_ne: z.optional(z.string()), - meta_peer_geo_continent_code_contains: z.optional(z.string()), - meta_peer_geo_continent_code_starts_with: z.optional(z.string()), - meta_peer_geo_continent_code_ends_with: z.optional(z.string()), - meta_peer_geo_continent_code_like: z.optional(z.string()), - meta_peer_geo_continent_code_not_like: z.optional(z.string()), - meta_peer_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_longitude_value: z.optional(z.number()), - meta_peer_geo_latitude_value: z.optional(z.number()), - meta_peer_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_peer_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_peer_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + probe_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + probe_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + peer_id_unique_key_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + peer_id_unique_key_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + result_eq: z.optional(z.string()), + result_ne: z.optional(z.string()), + result_contains: z.optional(z.string()), + result_starts_with: z.optional(z.string()), + result_ends_with: z.optional(z.string()), + result_like: z.optional(z.string()), + result_not_like: z.optional(z.string()), + result_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + result_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + error_eq: z.optional(z.string()), + error_ne: z.optional(z.string()), + error_contains: z.optional(z.string()), + error_starts_with: z.optional(z.string()), + error_ends_with: z.optional(z.string()), + error_like: z.optional(z.string()), + error_not_like: z.optional(z.string()), + error_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + error_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_indices_has: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_indices_has_all_values: z.optional( + z.array( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ) + ), + column_indices_has_any_values: z.optional( + z.array( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ) + ), + column_indices_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_indices_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_indices_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_indices_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_indices_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_submitters_has: z.optional(z.string()), + blob_submitters_has_all_values: z.optional(z.array(z.string())), + blob_submitters_has_any_values: z.optional(z.array(z.string())), + blob_submitters_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_submitters_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_submitters_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_submitters_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_submitters_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + username_eq: z.optional(z.string()), + username_ne: z.optional(z.string()), + username_contains: z.optional(z.string()), + username_starts_with: z.optional(z.string()), + username_ends_with: z.optional(z.string()), + username_like: z.optional(z.string()), + username_not_like: z.optional(z.string()), + username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_eq: z.optional(z.string()), + node_id_ne: z.optional(z.string()), + node_id_contains: z.optional(z.string()), + node_id_starts_with: z.optional(z.string()), + node_id_ends_with: z.optional(z.string()), + node_id_like: z.optional(z.string()), + node_id_not_like: z.optional(z.string()), + node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_eq: z.optional(z.string()), + classification_ne: z.optional(z.string()), + classification_contains: z.optional(z.string()), + classification_starts_with: z.optional(z.string()), + classification_ends_with: z.optional(z.string()), + classification_like: z.optional(z.string()), + classification_not_like: z.optional(z.string()), + classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_os_eq: z.optional(z.string()), + meta_client_os_ne: z.optional(z.string()), + meta_client_os_contains: z.optional(z.string()), + meta_client_os_starts_with: z.optional(z.string()), + meta_client_os_ends_with: z.optional(z.string()), + meta_client_os_like: z.optional(z.string()), + meta_client_os_not_like: z.optional(z.string()), + meta_client_os_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_os_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_peer_implementation_eq: z.optional(z.string()), + meta_peer_implementation_ne: z.optional(z.string()), + meta_peer_implementation_contains: z.optional(z.string()), + meta_peer_implementation_starts_with: z.optional(z.string()), + meta_peer_implementation_ends_with: z.optional(z.string()), + meta_peer_implementation_like: z.optional(z.string()), + meta_peer_implementation_not_like: z.optional(z.string()), + meta_peer_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_version_eq: z.optional(z.string()), + meta_peer_version_ne: z.optional(z.string()), + meta_peer_version_contains: z.optional(z.string()), + meta_peer_version_starts_with: z.optional(z.string()), + meta_peer_version_ends_with: z.optional(z.string()), + meta_peer_version_like: z.optional(z.string()), + meta_peer_version_not_like: z.optional(z.string()), + meta_peer_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_platform_eq: z.optional(z.string()), + meta_peer_platform_ne: z.optional(z.string()), + meta_peer_platform_contains: z.optional(z.string()), + meta_peer_platform_starts_with: z.optional(z.string()), + meta_peer_platform_ends_with: z.optional(z.string()), + meta_peer_platform_like: z.optional(z.string()), + meta_peer_platform_not_like: z.optional(z.string()), + meta_peer_platform_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_platform_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_city_eq: z.optional(z.string()), + meta_peer_geo_city_ne: z.optional(z.string()), + meta_peer_geo_city_contains: z.optional(z.string()), + meta_peer_geo_city_starts_with: z.optional(z.string()), + meta_peer_geo_city_ends_with: z.optional(z.string()), + meta_peer_geo_city_like: z.optional(z.string()), + meta_peer_geo_city_not_like: z.optional(z.string()), + meta_peer_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_country_eq: z.optional(z.string()), + meta_peer_geo_country_ne: z.optional(z.string()), + meta_peer_geo_country_contains: z.optional(z.string()), + meta_peer_geo_country_starts_with: z.optional(z.string()), + meta_peer_geo_country_ends_with: z.optional(z.string()), + meta_peer_geo_country_like: z.optional(z.string()), + meta_peer_geo_country_not_like: z.optional(z.string()), + meta_peer_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_country_code_eq: z.optional(z.string()), + meta_peer_geo_country_code_ne: z.optional(z.string()), + meta_peer_geo_country_code_contains: z.optional(z.string()), + meta_peer_geo_country_code_starts_with: z.optional(z.string()), + meta_peer_geo_country_code_ends_with: z.optional(z.string()), + meta_peer_geo_country_code_like: z.optional(z.string()), + meta_peer_geo_country_code_not_like: z.optional(z.string()), + meta_peer_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_continent_code_eq: z.optional(z.string()), + meta_peer_geo_continent_code_ne: z.optional(z.string()), + meta_peer_geo_continent_code_contains: z.optional(z.string()), + meta_peer_geo_continent_code_starts_with: z.optional(z.string()), + meta_peer_geo_continent_code_ends_with: z.optional(z.string()), + meta_peer_geo_continent_code_like: z.optional(z.string()), + meta_peer_geo_continent_code_not_like: z.optional(z.string()), + meta_peer_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_longitude_value: z.optional(z.number()), + meta_peer_geo_latitude_value: z.optional(z.number()), + meta_peer_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_peer_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_peer_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -25478,11 +114293,16 @@ export const zIntCustodyProbeServiceListData = z.object({ export const zIntCustodyProbeServiceListResponse = zListIntCustodyProbeResponse; export const zIntCustodyProbeServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - probe_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + probe_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -25491,302 +114311,898 @@ export const zIntCustodyProbeServiceGetData = z.object({ export const zIntCustodyProbeServiceGetResponse = zGetIntCustodyProbeResponse; export const zIntCustodyProbeOrderBySlotServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - peer_id_unique_key_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - peer_id_unique_key_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - peer_id_unique_key_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - result_eq: z.optional(z.string()), - result_ne: z.optional(z.string()), - result_contains: z.optional(z.string()), - result_starts_with: z.optional(z.string()), - result_ends_with: z.optional(z.string()), - result_like: z.optional(z.string()), - result_not_like: z.optional(z.string()), - result_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - result_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - error_eq: z.optional(z.string()), - error_ne: z.optional(z.string()), - error_contains: z.optional(z.string()), - error_starts_with: z.optional(z.string()), - error_ends_with: z.optional(z.string()), - error_like: z.optional(z.string()), - error_not_like: z.optional(z.string()), - error_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - error_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - probe_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - probe_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - probe_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - column_indices_has: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - column_indices_has_all_values: z.optional(z.array(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })))), - column_indices_has_any_values: z.optional(z.array(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })))), - column_indices_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_indices_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_indices_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_indices_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - column_indices_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_submitters_has: z.optional(z.string()), - blob_submitters_has_all_values: z.optional(z.array(z.string())), - blob_submitters_has_any_values: z.optional(z.array(z.string())), - blob_submitters_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_submitters_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_submitters_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_submitters_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_submitters_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - response_time_ms_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - response_time_ms_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - username_eq: z.optional(z.string()), - username_ne: z.optional(z.string()), - username_contains: z.optional(z.string()), - username_starts_with: z.optional(z.string()), - username_ends_with: z.optional(z.string()), - username_like: z.optional(z.string()), - username_not_like: z.optional(z.string()), - username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_eq: z.optional(z.string()), - node_id_ne: z.optional(z.string()), - node_id_contains: z.optional(z.string()), - node_id_starts_with: z.optional(z.string()), - node_id_ends_with: z.optional(z.string()), - node_id_like: z.optional(z.string()), - node_id_not_like: z.optional(z.string()), - node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_eq: z.optional(z.string()), - classification_ne: z.optional(z.string()), - classification_contains: z.optional(z.string()), - classification_starts_with: z.optional(z.string()), - classification_ends_with: z.optional(z.string()), - classification_like: z.optional(z.string()), - classification_not_like: z.optional(z.string()), - classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_os_eq: z.optional(z.string()), - meta_client_os_ne: z.optional(z.string()), - meta_client_os_contains: z.optional(z.string()), - meta_client_os_starts_with: z.optional(z.string()), - meta_client_os_ends_with: z.optional(z.string()), - meta_client_os_like: z.optional(z.string()), - meta_client_os_not_like: z.optional(z.string()), - meta_client_os_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_os_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_eq: z.optional(z.string()), - meta_client_geo_continent_code_ne: z.optional(z.string()), - meta_client_geo_continent_code_contains: z.optional(z.string()), - meta_client_geo_continent_code_starts_with: z.optional(z.string()), - meta_client_geo_continent_code_ends_with: z.optional(z.string()), - meta_client_geo_continent_code_like: z.optional(z.string()), - meta_client_geo_continent_code_not_like: z.optional(z.string()), - meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_longitude_value: z.optional(z.number()), - meta_client_geo_latitude_value: z.optional(z.number()), - meta_client_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_implementation_eq: z.optional(z.string()), - meta_peer_implementation_ne: z.optional(z.string()), - meta_peer_implementation_contains: z.optional(z.string()), - meta_peer_implementation_starts_with: z.optional(z.string()), - meta_peer_implementation_ends_with: z.optional(z.string()), - meta_peer_implementation_like: z.optional(z.string()), - meta_peer_implementation_not_like: z.optional(z.string()), - meta_peer_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_version_eq: z.optional(z.string()), - meta_peer_version_ne: z.optional(z.string()), - meta_peer_version_contains: z.optional(z.string()), - meta_peer_version_starts_with: z.optional(z.string()), - meta_peer_version_ends_with: z.optional(z.string()), - meta_peer_version_like: z.optional(z.string()), - meta_peer_version_not_like: z.optional(z.string()), - meta_peer_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_platform_eq: z.optional(z.string()), - meta_peer_platform_ne: z.optional(z.string()), - meta_peer_platform_contains: z.optional(z.string()), - meta_peer_platform_starts_with: z.optional(z.string()), - meta_peer_platform_ends_with: z.optional(z.string()), - meta_peer_platform_like: z.optional(z.string()), - meta_peer_platform_not_like: z.optional(z.string()), - meta_peer_platform_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_platform_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_city_eq: z.optional(z.string()), - meta_peer_geo_city_ne: z.optional(z.string()), - meta_peer_geo_city_contains: z.optional(z.string()), - meta_peer_geo_city_starts_with: z.optional(z.string()), - meta_peer_geo_city_ends_with: z.optional(z.string()), - meta_peer_geo_city_like: z.optional(z.string()), - meta_peer_geo_city_not_like: z.optional(z.string()), - meta_peer_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_country_eq: z.optional(z.string()), - meta_peer_geo_country_ne: z.optional(z.string()), - meta_peer_geo_country_contains: z.optional(z.string()), - meta_peer_geo_country_starts_with: z.optional(z.string()), - meta_peer_geo_country_ends_with: z.optional(z.string()), - meta_peer_geo_country_like: z.optional(z.string()), - meta_peer_geo_country_not_like: z.optional(z.string()), - meta_peer_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_country_code_eq: z.optional(z.string()), - meta_peer_geo_country_code_ne: z.optional(z.string()), - meta_peer_geo_country_code_contains: z.optional(z.string()), - meta_peer_geo_country_code_starts_with: z.optional(z.string()), - meta_peer_geo_country_code_ends_with: z.optional(z.string()), - meta_peer_geo_country_code_like: z.optional(z.string()), - meta_peer_geo_country_code_not_like: z.optional(z.string()), - meta_peer_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_continent_code_eq: z.optional(z.string()), - meta_peer_geo_continent_code_ne: z.optional(z.string()), - meta_peer_geo_continent_code_contains: z.optional(z.string()), - meta_peer_geo_continent_code_starts_with: z.optional(z.string()), - meta_peer_geo_continent_code_ends_with: z.optional(z.string()), - meta_peer_geo_continent_code_like: z.optional(z.string()), - meta_peer_geo_continent_code_not_like: z.optional(z.string()), - meta_peer_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_longitude_value: z.optional(z.number()), - meta_peer_geo_latitude_value: z.optional(z.number()), - meta_peer_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_peer_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_peer_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_peer_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_peer_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_peer_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + peer_id_unique_key_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + peer_id_unique_key_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + peer_id_unique_key_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + result_eq: z.optional(z.string()), + result_ne: z.optional(z.string()), + result_contains: z.optional(z.string()), + result_starts_with: z.optional(z.string()), + result_ends_with: z.optional(z.string()), + result_like: z.optional(z.string()), + result_not_like: z.optional(z.string()), + result_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + result_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + error_eq: z.optional(z.string()), + error_ne: z.optional(z.string()), + error_contains: z.optional(z.string()), + error_starts_with: z.optional(z.string()), + error_ends_with: z.optional(z.string()), + error_like: z.optional(z.string()), + error_not_like: z.optional(z.string()), + error_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + error_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + probe_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + probe_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + probe_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + column_indices_has: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + column_indices_has_all_values: z.optional( + z.array( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ) + ), + column_indices_has_any_values: z.optional( + z.array( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ) + ), + column_indices_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_indices_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_indices_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_indices_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + column_indices_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_submitters_has: z.optional(z.string()), + blob_submitters_has_all_values: z.optional(z.array(z.string())), + blob_submitters_has_any_values: z.optional(z.array(z.string())), + blob_submitters_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_submitters_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_submitters_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_submitters_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_submitters_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + response_time_ms_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + response_time_ms_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + response_time_ms_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + username_eq: z.optional(z.string()), + username_ne: z.optional(z.string()), + username_contains: z.optional(z.string()), + username_starts_with: z.optional(z.string()), + username_ends_with: z.optional(z.string()), + username_like: z.optional(z.string()), + username_not_like: z.optional(z.string()), + username_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + username_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_eq: z.optional(z.string()), + node_id_ne: z.optional(z.string()), + node_id_contains: z.optional(z.string()), + node_id_starts_with: z.optional(z.string()), + node_id_ends_with: z.optional(z.string()), + node_id_like: z.optional(z.string()), + node_id_not_like: z.optional(z.string()), + node_id_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_id_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_eq: z.optional(z.string()), + classification_ne: z.optional(z.string()), + classification_contains: z.optional(z.string()), + classification_starts_with: z.optional(z.string()), + classification_ends_with: z.optional(z.string()), + classification_like: z.optional(z.string()), + classification_not_like: z.optional(z.string()), + classification_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + classification_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_os_eq: z.optional(z.string()), + meta_client_os_ne: z.optional(z.string()), + meta_client_os_contains: z.optional(z.string()), + meta_client_os_starts_with: z.optional(z.string()), + meta_client_os_ends_with: z.optional(z.string()), + meta_client_os_like: z.optional(z.string()), + meta_client_os_not_like: z.optional(z.string()), + meta_client_os_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_os_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_peer_implementation_eq: z.optional(z.string()), + meta_peer_implementation_ne: z.optional(z.string()), + meta_peer_implementation_contains: z.optional(z.string()), + meta_peer_implementation_starts_with: z.optional(z.string()), + meta_peer_implementation_ends_with: z.optional(z.string()), + meta_peer_implementation_like: z.optional(z.string()), + meta_peer_implementation_not_like: z.optional(z.string()), + meta_peer_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_version_eq: z.optional(z.string()), + meta_peer_version_ne: z.optional(z.string()), + meta_peer_version_contains: z.optional(z.string()), + meta_peer_version_starts_with: z.optional(z.string()), + meta_peer_version_ends_with: z.optional(z.string()), + meta_peer_version_like: z.optional(z.string()), + meta_peer_version_not_like: z.optional(z.string()), + meta_peer_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_platform_eq: z.optional(z.string()), + meta_peer_platform_ne: z.optional(z.string()), + meta_peer_platform_contains: z.optional(z.string()), + meta_peer_platform_starts_with: z.optional(z.string()), + meta_peer_platform_ends_with: z.optional(z.string()), + meta_peer_platform_like: z.optional(z.string()), + meta_peer_platform_not_like: z.optional(z.string()), + meta_peer_platform_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_platform_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_city_eq: z.optional(z.string()), + meta_peer_geo_city_ne: z.optional(z.string()), + meta_peer_geo_city_contains: z.optional(z.string()), + meta_peer_geo_city_starts_with: z.optional(z.string()), + meta_peer_geo_city_ends_with: z.optional(z.string()), + meta_peer_geo_city_like: z.optional(z.string()), + meta_peer_geo_city_not_like: z.optional(z.string()), + meta_peer_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_country_eq: z.optional(z.string()), + meta_peer_geo_country_ne: z.optional(z.string()), + meta_peer_geo_country_contains: z.optional(z.string()), + meta_peer_geo_country_starts_with: z.optional(z.string()), + meta_peer_geo_country_ends_with: z.optional(z.string()), + meta_peer_geo_country_like: z.optional(z.string()), + meta_peer_geo_country_not_like: z.optional(z.string()), + meta_peer_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_country_code_eq: z.optional(z.string()), + meta_peer_geo_country_code_ne: z.optional(z.string()), + meta_peer_geo_country_code_contains: z.optional(z.string()), + meta_peer_geo_country_code_starts_with: z.optional(z.string()), + meta_peer_geo_country_code_ends_with: z.optional(z.string()), + meta_peer_geo_country_code_like: z.optional(z.string()), + meta_peer_geo_country_code_not_like: z.optional(z.string()), + meta_peer_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_continent_code_eq: z.optional(z.string()), + meta_peer_geo_continent_code_ne: z.optional(z.string()), + meta_peer_geo_continent_code_contains: z.optional(z.string()), + meta_peer_geo_continent_code_starts_with: z.optional(z.string()), + meta_peer_geo_continent_code_ends_with: z.optional(z.string()), + meta_peer_geo_continent_code_like: z.optional(z.string()), + meta_peer_geo_continent_code_not_like: z.optional(z.string()), + meta_peer_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_longitude_value: z.optional(z.number()), + meta_peer_geo_latitude_value: z.optional(z.number()), + meta_peer_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_peer_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_peer_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_peer_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_peer_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_peer_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -25795,11 +115211,16 @@ export const zIntCustodyProbeOrderBySlotServiceListData = z.object({ export const zIntCustodyProbeOrderBySlotServiceListResponse = zListIntCustodyProbeOrderBySlotResponse; export const zIntCustodyProbeOrderBySlotServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -25808,304 +115229,1148 @@ export const zIntCustodyProbeOrderBySlotServiceGetData = z.object({ export const zIntCustodyProbeOrderBySlotServiceGetResponse = zGetIntCustodyProbeOrderBySlotResponse; export const zIntEngineGetBlobsServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - event_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - event_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - requested_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - requested_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - duration_ms_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - duration_ms_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - duration_ms_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - duration_ms_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - duration_ms_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - duration_ms_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - duration_ms_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - duration_ms_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_parent_root_eq: z.optional(z.string()), - block_parent_root_ne: z.optional(z.string()), - block_parent_root_contains: z.optional(z.string()), - block_parent_root_starts_with: z.optional(z.string()), - block_parent_root_ends_with: z.optional(z.string()), - block_parent_root_like: z.optional(z.string()), - block_parent_root_not_like: z.optional(z.string()), - block_parent_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_parent_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - requested_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - requested_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - requested_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - requested_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - requested_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - requested_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - requested_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - requested_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - requested_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - requested_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - versioned_hashes_has: z.optional(z.string()), - versioned_hashes_has_all_values: z.optional(z.array(z.string())), - versioned_hashes_has_any_values: z.optional(z.array(z.string())), - versioned_hashes_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - versioned_hashes_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - versioned_hashes_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - versioned_hashes_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - versioned_hashes_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - returned_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - returned_blob_indexes_has: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_blob_indexes_has_all_values: z.optional(z.array(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })))), - returned_blob_indexes_has_any_values: z.optional(z.array(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })))), - returned_blob_indexes_length_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_blob_indexes_length_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_blob_indexes_length_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_blob_indexes_length_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - returned_blob_indexes_length_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - error_message_eq: z.optional(z.string()), - error_message_ne: z.optional(z.string()), - error_message_contains: z.optional(z.string()), - error_message_starts_with: z.optional(z.string()), - error_message_ends_with: z.optional(z.string()), - error_message_like: z.optional(z.string()), - error_message_not_like: z.optional(z.string()), - error_message_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - error_message_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - method_version_eq: z.optional(z.string()), - method_version_ne: z.optional(z.string()), - method_version_contains: z.optional(z.string()), - method_version_starts_with: z.optional(z.string()), - method_version_ends_with: z.optional(z.string()), - method_version_like: z.optional(z.string()), - method_version_not_like: z.optional(z.string()), - method_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - method_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_eq: z.optional(z.string()), - source_ne: z.optional(z.string()), - source_contains: z.optional(z.string()), - source_starts_with: z.optional(z.string()), - source_ends_with: z.optional(z.string()), - source_like: z.optional(z.string()), - source_not_like: z.optional(z.string()), - source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_eq: z.optional(z.string()), - meta_execution_version_ne: z.optional(z.string()), - meta_execution_version_contains: z.optional(z.string()), - meta_execution_version_starts_with: z.optional(z.string()), - meta_execution_version_ends_with: z.optional(z.string()), - meta_execution_version_like: z.optional(z.string()), - meta_execution_version_not_like: z.optional(z.string()), - meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_eq: z.optional(z.string()), - meta_execution_implementation_ne: z.optional(z.string()), - meta_execution_implementation_contains: z.optional(z.string()), - meta_execution_implementation_starts_with: z.optional(z.string()), - meta_execution_implementation_ends_with: z.optional(z.string()), - meta_execution_implementation_like: z.optional(z.string()), - meta_execution_implementation_not_like: z.optional(z.string()), - meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_eq: z.optional(z.string()), - meta_client_geo_continent_code_ne: z.optional(z.string()), - meta_client_geo_continent_code_contains: z.optional(z.string()), - meta_client_geo_continent_code_starts_with: z.optional(z.string()), - meta_client_geo_continent_code_ends_with: z.optional(z.string()), - meta_client_geo_continent_code_like: z.optional(z.string()), - meta_client_geo_continent_code_not_like: z.optional(z.string()), - meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_latitude_value: z.optional(z.number()), - meta_client_geo_longitude_value: z.optional(z.number()), - meta_client_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + event_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + event_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + requested_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + requested_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + duration_ms_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + duration_ms_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + duration_ms_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + duration_ms_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + duration_ms_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + duration_ms_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + duration_ms_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + duration_ms_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_parent_root_eq: z.optional(z.string()), + block_parent_root_ne: z.optional(z.string()), + block_parent_root_contains: z.optional(z.string()), + block_parent_root_starts_with: z.optional(z.string()), + block_parent_root_ends_with: z.optional(z.string()), + block_parent_root_like: z.optional(z.string()), + block_parent_root_not_like: z.optional(z.string()), + block_parent_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_parent_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + requested_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + requested_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + requested_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + requested_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + requested_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + requested_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + requested_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + requested_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + requested_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + requested_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + versioned_hashes_has: z.optional(z.string()), + versioned_hashes_has_all_values: z.optional(z.array(z.string())), + versioned_hashes_has_any_values: z.optional(z.array(z.string())), + versioned_hashes_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + versioned_hashes_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + versioned_hashes_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + versioned_hashes_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + versioned_hashes_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + returned_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + returned_blob_indexes_has: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_blob_indexes_has_all_values: z.optional( + z.array( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ) + ), + returned_blob_indexes_has_any_values: z.optional( + z.array( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ) + ), + returned_blob_indexes_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_blob_indexes_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_blob_indexes_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_blob_indexes_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + returned_blob_indexes_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + error_message_eq: z.optional(z.string()), + error_message_ne: z.optional(z.string()), + error_message_contains: z.optional(z.string()), + error_message_starts_with: z.optional(z.string()), + error_message_ends_with: z.optional(z.string()), + error_message_like: z.optional(z.string()), + error_message_not_like: z.optional(z.string()), + error_message_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + error_message_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + method_version_eq: z.optional(z.string()), + method_version_ne: z.optional(z.string()), + method_version_contains: z.optional(z.string()), + method_version_starts_with: z.optional(z.string()), + method_version_ends_with: z.optional(z.string()), + method_version_like: z.optional(z.string()), + method_version_not_like: z.optional(z.string()), + method_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + method_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_eq: z.optional(z.string()), + source_ne: z.optional(z.string()), + source_contains: z.optional(z.string()), + source_starts_with: z.optional(z.string()), + source_ends_with: z.optional(z.string()), + source_like: z.optional(z.string()), + source_not_like: z.optional(z.string()), + source_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + source_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_eq: z.optional(z.string()), + meta_execution_version_ne: z.optional(z.string()), + meta_execution_version_contains: z.optional(z.string()), + meta_execution_version_starts_with: z.optional(z.string()), + meta_execution_version_ends_with: z.optional(z.string()), + meta_execution_version_like: z.optional(z.string()), + meta_execution_version_not_like: z.optional(z.string()), + meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_eq: z.optional(z.string()), + meta_execution_implementation_ne: z.optional(z.string()), + meta_execution_implementation_contains: z.optional(z.string()), + meta_execution_implementation_starts_with: z.optional(z.string()), + meta_execution_implementation_ends_with: z.optional(z.string()), + meta_execution_implementation_like: z.optional(z.string()), + meta_execution_implementation_not_like: z.optional(z.string()), + meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -26114,11 +116379,16 @@ export const zIntEngineGetBlobsServiceListData = z.object({ export const zIntEngineGetBlobsServiceListResponse = zListIntEngineGetBlobsResponse; export const zIntEngineGetBlobsServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -26127,365 +116397,1458 @@ export const zIntEngineGetBlobsServiceGetData = z.object({ export const zIntEngineGetBlobsServiceGetResponse = zGetIntEngineGetBlobsResponse; export const zIntEngineNewPayloadServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_hash_eq: z.optional(z.string()), - block_hash_ne: z.optional(z.string()), - block_hash_contains: z.optional(z.string()), - block_hash_starts_with: z.optional(z.string()), - block_hash_ends_with: z.optional(z.string()), - block_hash_like: z.optional(z.string()), - block_hash_not_like: z.optional(z.string()), - block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - event_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - event_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - event_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - requested_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - requested_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - requested_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_root_eq: z.optional(z.string()), - block_root_ne: z.optional(z.string()), - block_root_contains: z.optional(z.string()), - block_root_starts_with: z.optional(z.string()), - block_root_ends_with: z.optional(z.string()), - block_root_like: z.optional(z.string()), - block_root_not_like: z.optional(z.string()), - block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - parent_block_root_eq: z.optional(z.string()), - parent_block_root_ne: z.optional(z.string()), - parent_block_root_contains: z.optional(z.string()), - parent_block_root_starts_with: z.optional(z.string()), - parent_block_root_ends_with: z.optional(z.string()), - parent_block_root_like: z.optional(z.string()), - parent_block_root_not_like: z.optional(z.string()), - parent_block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - parent_block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - parent_hash_eq: z.optional(z.string()), - parent_hash_ne: z.optional(z.string()), - parent_hash_contains: z.optional(z.string()), - parent_hash_starts_with: z.optional(z.string()), - parent_hash_ends_with: z.optional(z.string()), - parent_hash_like: z.optional(z.string()), - parent_hash_not_like: z.optional(z.string()), - parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - proposer_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - proposer_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - tx_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - tx_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - tx_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - status_eq: z.optional(z.string()), - status_ne: z.optional(z.string()), - status_contains: z.optional(z.string()), - status_starts_with: z.optional(z.string()), - status_ends_with: z.optional(z.string()), - status_like: z.optional(z.string()), - status_not_like: z.optional(z.string()), - status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - validation_error_eq: z.optional(z.string()), - validation_error_ne: z.optional(z.string()), - validation_error_contains: z.optional(z.string()), - validation_error_starts_with: z.optional(z.string()), - validation_error_ends_with: z.optional(z.string()), - validation_error_like: z.optional(z.string()), - validation_error_not_like: z.optional(z.string()), - validation_error_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - validation_error_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - latest_valid_hash_eq: z.optional(z.string()), - latest_valid_hash_ne: z.optional(z.string()), - latest_valid_hash_contains: z.optional(z.string()), - latest_valid_hash_starts_with: z.optional(z.string()), - latest_valid_hash_ends_with: z.optional(z.string()), - latest_valid_hash_like: z.optional(z.string()), - latest_valid_hash_not_like: z.optional(z.string()), - latest_valid_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - latest_valid_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - method_version_eq: z.optional(z.string()), - method_version_ne: z.optional(z.string()), - method_version_contains: z.optional(z.string()), - method_version_starts_with: z.optional(z.string()), - method_version_ends_with: z.optional(z.string()), - method_version_like: z.optional(z.string()), - method_version_not_like: z.optional(z.string()), - method_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - method_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_total_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_compressed_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_version_eq: z.optional(z.string()), - block_version_ne: z.optional(z.string()), - block_version_contains: z.optional(z.string()), - block_version_starts_with: z.optional(z.string()), - block_version_ends_with: z.optional(z.string()), - block_version_like: z.optional(z.string()), - block_version_not_like: z.optional(z.string()), - block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_eq: z.optional(z.string()), - meta_execution_version_ne: z.optional(z.string()), - meta_execution_version_contains: z.optional(z.string()), - meta_execution_version_starts_with: z.optional(z.string()), - meta_execution_version_ends_with: z.optional(z.string()), - meta_execution_version_like: z.optional(z.string()), - meta_execution_version_not_like: z.optional(z.string()), - meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_eq: z.optional(z.string()), - meta_execution_implementation_ne: z.optional(z.string()), - meta_execution_implementation_contains: z.optional(z.string()), - meta_execution_implementation_starts_with: z.optional(z.string()), - meta_execution_implementation_ends_with: z.optional(z.string()), - meta_execution_implementation_like: z.optional(z.string()), - meta_execution_implementation_not_like: z.optional(z.string()), - meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_eq: z.optional(z.string()), - meta_client_implementation_ne: z.optional(z.string()), - meta_client_implementation_contains: z.optional(z.string()), - meta_client_implementation_starts_with: z.optional(z.string()), - meta_client_implementation_ends_with: z.optional(z.string()), - meta_client_implementation_like: z.optional(z.string()), - meta_client_implementation_not_like: z.optional(z.string()), - meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_eq: z.optional(z.string()), - meta_client_version_ne: z.optional(z.string()), - meta_client_version_contains: z.optional(z.string()), - meta_client_version_starts_with: z.optional(z.string()), - meta_client_version_ends_with: z.optional(z.string()), - meta_client_version_like: z.optional(z.string()), - meta_client_version_not_like: z.optional(z.string()), - meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_eq: z.optional(z.string()), - meta_client_geo_city_ne: z.optional(z.string()), - meta_client_geo_city_contains: z.optional(z.string()), - meta_client_geo_city_starts_with: z.optional(z.string()), - meta_client_geo_city_ends_with: z.optional(z.string()), - meta_client_geo_city_like: z.optional(z.string()), - meta_client_geo_city_not_like: z.optional(z.string()), - meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_eq: z.optional(z.string()), - meta_client_geo_country_ne: z.optional(z.string()), - meta_client_geo_country_contains: z.optional(z.string()), - meta_client_geo_country_starts_with: z.optional(z.string()), - meta_client_geo_country_ends_with: z.optional(z.string()), - meta_client_geo_country_like: z.optional(z.string()), - meta_client_geo_country_not_like: z.optional(z.string()), - meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_eq: z.optional(z.string()), - meta_client_geo_country_code_ne: z.optional(z.string()), - meta_client_geo_country_code_contains: z.optional(z.string()), - meta_client_geo_country_code_starts_with: z.optional(z.string()), - meta_client_geo_country_code_ends_with: z.optional(z.string()), - meta_client_geo_country_code_like: z.optional(z.string()), - meta_client_geo_country_code_not_like: z.optional(z.string()), - meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_eq: z.optional(z.string()), - meta_client_geo_continent_code_ne: z.optional(z.string()), - meta_client_geo_continent_code_contains: z.optional(z.string()), - meta_client_geo_continent_code_starts_with: z.optional(z.string()), - meta_client_geo_continent_code_ends_with: z.optional(z.string()), - meta_client_geo_continent_code_like: z.optional(z.string()), - meta_client_geo_continent_code_not_like: z.optional(z.string()), - meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_latitude_value: z.optional(z.number()), - meta_client_geo_longitude_value: z.optional(z.number()), - meta_client_geo_autonomous_system_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), - meta_client_geo_autonomous_system_organization_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_geo_autonomous_system_organization_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + event_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + event_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + event_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + requested_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + requested_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + requested_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + parent_block_root_eq: z.optional(z.string()), + parent_block_root_ne: z.optional(z.string()), + parent_block_root_contains: z.optional(z.string()), + parent_block_root_starts_with: z.optional(z.string()), + parent_block_root_ends_with: z.optional(z.string()), + parent_block_root_like: z.optional(z.string()), + parent_block_root_not_like: z.optional(z.string()), + parent_block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_hash_eq: z.optional(z.string()), + parent_hash_ne: z.optional(z.string()), + parent_hash_contains: z.optional(z.string()), + parent_hash_starts_with: z.optional(z.string()), + parent_hash_ends_with: z.optional(z.string()), + parent_hash_like: z.optional(z.string()), + parent_hash_not_like: z.optional(z.string()), + parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + proposer_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + proposer_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + tx_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + tx_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + tx_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + validation_error_eq: z.optional(z.string()), + validation_error_ne: z.optional(z.string()), + validation_error_contains: z.optional(z.string()), + validation_error_starts_with: z.optional(z.string()), + validation_error_ends_with: z.optional(z.string()), + validation_error_like: z.optional(z.string()), + validation_error_not_like: z.optional(z.string()), + validation_error_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + validation_error_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + latest_valid_hash_eq: z.optional(z.string()), + latest_valid_hash_ne: z.optional(z.string()), + latest_valid_hash_contains: z.optional(z.string()), + latest_valid_hash_starts_with: z.optional(z.string()), + latest_valid_hash_ends_with: z.optional(z.string()), + latest_valid_hash_like: z.optional(z.string()), + latest_valid_hash_not_like: z.optional(z.string()), + latest_valid_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + latest_valid_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + method_version_eq: z.optional(z.string()), + method_version_ne: z.optional(z.string()), + method_version_contains: z.optional(z.string()), + method_version_starts_with: z.optional(z.string()), + method_version_ends_with: z.optional(z.string()), + method_version_like: z.optional(z.string()), + method_version_not_like: z.optional(z.string()), + method_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + method_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_total_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_compressed_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_total_bytes_compressed_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_total_bytes_compressed_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_version_eq: z.optional(z.string()), + block_version_ne: z.optional(z.string()), + block_version_contains: z.optional(z.string()), + block_version_starts_with: z.optional(z.string()), + block_version_ends_with: z.optional(z.string()), + block_version_like: z.optional(z.string()), + block_version_not_like: z.optional(z.string()), + block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_eq: z.optional(z.string()), + meta_execution_version_ne: z.optional(z.string()), + meta_execution_version_contains: z.optional(z.string()), + meta_execution_version_starts_with: z.optional(z.string()), + meta_execution_version_ends_with: z.optional(z.string()), + meta_execution_version_like: z.optional(z.string()), + meta_execution_version_not_like: z.optional(z.string()), + meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_eq: z.optional(z.string()), + meta_execution_implementation_ne: z.optional(z.string()), + meta_execution_implementation_contains: z.optional(z.string()), + meta_execution_implementation_starts_with: z.optional(z.string()), + meta_execution_implementation_ends_with: z.optional(z.string()), + meta_execution_implementation_like: z.optional(z.string()), + meta_execution_implementation_not_like: z.optional(z.string()), + meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_eq: z.optional(z.string()), + meta_client_implementation_ne: z.optional(z.string()), + meta_client_implementation_contains: z.optional(z.string()), + meta_client_implementation_starts_with: z.optional(z.string()), + meta_client_implementation_ends_with: z.optional(z.string()), + meta_client_implementation_like: z.optional(z.string()), + meta_client_implementation_not_like: z.optional(z.string()), + meta_client_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_eq: z.optional(z.string()), + meta_client_version_ne: z.optional(z.string()), + meta_client_version_contains: z.optional(z.string()), + meta_client_version_starts_with: z.optional(z.string()), + meta_client_version_ends_with: z.optional(z.string()), + meta_client_version_like: z.optional(z.string()), + meta_client_version_not_like: z.optional(z.string()), + meta_client_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_eq: z.optional(z.string()), + meta_client_geo_city_ne: z.optional(z.string()), + meta_client_geo_city_contains: z.optional(z.string()), + meta_client_geo_city_starts_with: z.optional(z.string()), + meta_client_geo_city_ends_with: z.optional(z.string()), + meta_client_geo_city_like: z.optional(z.string()), + meta_client_geo_city_not_like: z.optional(z.string()), + meta_client_geo_city_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_city_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_eq: z.optional(z.string()), + meta_client_geo_country_ne: z.optional(z.string()), + meta_client_geo_country_contains: z.optional(z.string()), + meta_client_geo_country_starts_with: z.optional(z.string()), + meta_client_geo_country_ends_with: z.optional(z.string()), + meta_client_geo_country_like: z.optional(z.string()), + meta_client_geo_country_not_like: z.optional(z.string()), + meta_client_geo_country_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_eq: z.optional(z.string()), + meta_client_geo_country_code_ne: z.optional(z.string()), + meta_client_geo_country_code_contains: z.optional(z.string()), + meta_client_geo_country_code_starts_with: z.optional(z.string()), + meta_client_geo_country_code_ends_with: z.optional(z.string()), + meta_client_geo_country_code_like: z.optional(z.string()), + meta_client_geo_country_code_not_like: z.optional(z.string()), + meta_client_geo_country_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_country_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_eq: z.optional(z.string()), + meta_client_geo_continent_code_ne: z.optional(z.string()), + meta_client_geo_continent_code_contains: z.optional(z.string()), + meta_client_geo_continent_code_starts_with: z.optional(z.string()), + meta_client_geo_continent_code_ends_with: z.optional(z.string()), + meta_client_geo_continent_code_like: z.optional(z.string()), + meta_client_geo_continent_code_not_like: z.optional(z.string()), + meta_client_geo_continent_code_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_continent_code_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_geo_latitude_value: z.optional(z.number()), + meta_client_geo_longitude_value: z.optional(z.number()), + meta_client_geo_autonomous_system_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + meta_client_geo_autonomous_system_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_client_geo_autonomous_system_organization_eq: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ne: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_contains: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_starts_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_ends_with: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_not_like: z.optional(z.string()), + meta_client_geo_autonomous_system_organization_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + meta_client_geo_autonomous_system_organization_not_in_values: z.optional( + z.string().check(z.regex(/^[^,]+(,[^,]+)*$/)) + ), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -26494,11 +117857,16 @@ export const zIntEngineNewPayloadServiceListData = z.object({ export const zIntEngineNewPayloadServiceListResponse = zListIntEngineNewPayloadResponse; export const zIntEngineNewPayloadServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -26507,176 +117875,769 @@ export const zIntEngineNewPayloadServiceGetData = z.object({ export const zIntEngineNewPayloadServiceGetResponse = zGetIntEngineNewPayloadResponse; export const zIntEngineNewPayloadFastestExecutionByNodeClassServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - slot_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - node_class_eq: z.optional(z.string()), - node_class_ne: z.optional(z.string()), - node_class_contains: z.optional(z.string()), - node_class_starts_with: z.optional(z.string()), - node_class_ends_with: z.optional(z.string()), - node_class_like: z.optional(z.string()), - node_class_not_like: z.optional(z.string()), - node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_hash_eq: z.optional(z.string()), - block_hash_ne: z.optional(z.string()), - block_hash_contains: z.optional(z.string()), - block_hash_starts_with: z.optional(z.string()), - block_hash_ends_with: z.optional(z.string()), - block_hash_like: z.optional(z.string()), - block_hash_not_like: z.optional(z.string()), - block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - duration_ms_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - meta_execution_implementation_eq: z.optional(z.string()), - meta_execution_implementation_ne: z.optional(z.string()), - meta_execution_implementation_contains: z.optional(z.string()), - meta_execution_implementation_starts_with: z.optional(z.string()), - meta_execution_implementation_ends_with: z.optional(z.string()), - meta_execution_implementation_like: z.optional(z.string()), - meta_execution_implementation_not_like: z.optional(z.string()), - meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_eq: z.optional(z.string()), - meta_execution_version_ne: z.optional(z.string()), - meta_execution_version_contains: z.optional(z.string()), - meta_execution_version_starts_with: z.optional(z.string()), - meta_execution_version_ends_with: z.optional(z.string()), - meta_execution_version_like: z.optional(z.string()), - meta_execution_version_not_like: z.optional(z.string()), - meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_eq: z.optional(z.string()), - meta_client_name_ne: z.optional(z.string()), - meta_client_name_contains: z.optional(z.string()), - meta_client_name_starts_with: z.optional(z.string()), - meta_client_name_ends_with: z.optional(z.string()), - meta_client_name_like: z.optional(z.string()), - meta_client_name_not_like: z.optional(z.string()), - meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zIntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse = zListIntEngineNewPayloadFastestExecutionByNodeClassResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + node_class_eq: z.optional(z.string()), + node_class_ne: z.optional(z.string()), + node_class_contains: z.optional(z.string()), + node_class_starts_with: z.optional(z.string()), + node_class_ends_with: z.optional(z.string()), + node_class_like: z.optional(z.string()), + node_class_not_like: z.optional(z.string()), + node_class_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_class_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_eq: z.optional(z.string()), + meta_execution_implementation_ne: z.optional(z.string()), + meta_execution_implementation_contains: z.optional(z.string()), + meta_execution_implementation_starts_with: z.optional(z.string()), + meta_execution_implementation_ends_with: z.optional(z.string()), + meta_execution_implementation_like: z.optional(z.string()), + meta_execution_implementation_not_like: z.optional(z.string()), + meta_execution_implementation_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_implementation_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + duration_ms_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + duration_ms_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + duration_ms_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + meta_execution_version_eq: z.optional(z.string()), + meta_execution_version_ne: z.optional(z.string()), + meta_execution_version_contains: z.optional(z.string()), + meta_execution_version_starts_with: z.optional(z.string()), + meta_execution_version_ends_with: z.optional(z.string()), + meta_execution_version_like: z.optional(z.string()), + meta_execution_version_not_like: z.optional(z.string()), + meta_execution_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_execution_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_eq: z.optional(z.string()), + meta_client_name_ne: z.optional(z.string()), + meta_client_name_contains: z.optional(z.string()), + meta_client_name_starts_with: z.optional(z.string()), + meta_client_name_ends_with: z.optional(z.string()), + meta_client_name_like: z.optional(z.string()), + meta_client_name_not_like: z.optional(z.string()), + meta_client_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_client_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zIntEngineNewPayloadFastestExecutionByNodeClassServiceListResponse = + zListIntEngineNewPayloadFastestExecutionByNodeClassResponse; export const zIntEngineNewPayloadFastestExecutionByNodeClassServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - slot_start_date_time: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zIntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse = zGetIntEngineNewPayloadFastestExecutionByNodeClassResponse; +export const zIntEngineNewPayloadFastestExecutionByNodeClassServiceGetResponse = + zGetIntEngineNewPayloadFastestExecutionByNodeClassResponse; export const zIntExecutionBlockByDateServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_date_time_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_date_time_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_date_time_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_date_time_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_date_time_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_date_time_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_date_time_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_date_time_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - block_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - block_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + block_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + block_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -26685,11 +118646,20 @@ export const zIntExecutionBlockByDateServiceListData = z.object({ export const zIntExecutionBlockByDateServiceListResponse = zListIntExecutionBlockByDateResponse; export const zIntExecutionBlockByDateServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_date_time: z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_date_time: z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -26698,133 +118668,990 @@ export const zIntExecutionBlockByDateServiceGetData = z.object({ export const zIntExecutionBlockByDateServiceGetResponse = zGetIntExecutionBlockByDateResponse; export const zIntExecutionStateSizeByBlockServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - accounts_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - accounts_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - accounts_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_trienodes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienodes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_trienodes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_trienode_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - account_trienode_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - account_trienode_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_codes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_codes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_codes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_code_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - contract_code_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - contract_code_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storages_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storages_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storages_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_trienodes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienodes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_trienodes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_trienode_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - storage_trienode_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - storage_trienode_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + accounts_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + accounts_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + accounts_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_trienodes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienodes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_trienodes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_trienode_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + account_trienode_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + account_trienode_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_codes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_codes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_codes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_code_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + contract_code_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + contract_code_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storages_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storages_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storages_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_trienodes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienodes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_trienodes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_trienode_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + storage_trienode_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + storage_trienode_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -26833,11 +119660,18 @@ export const zIntExecutionStateSizeByBlockServiceListData = z.object({ export const zIntExecutionStateSizeByBlockServiceListResponse = zListIntExecutionStateSizeByBlockResponse; export const zIntExecutionStateSizeByBlockServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -26846,70 +119680,263 @@ export const zIntExecutionStateSizeByBlockServiceGetData = z.object({ export const zIntExecutionStateSizeByBlockServiceGetResponse = zGetIntExecutionStateSizeByBlockResponse; export const zIntRocketpoolMegapoolServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - megapool_address_eq: z.optional(z.string()), - megapool_address_ne: z.optional(z.string()), - megapool_address_contains: z.optional(z.string()), - megapool_address_starts_with: z.optional(z.string()), - megapool_address_ends_with: z.optional(z.string()), - megapool_address_like: z.optional(z.string()), - megapool_address_not_like: z.optional(z.string()), - megapool_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - megapool_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - node_operator_eq: z.optional(z.string()), - node_operator_ne: z.optional(z.string()), - node_operator_contains: z.optional(z.string()), - node_operator_starts_with: z.optional(z.string()), - node_operator_ends_with: z.optional(z.string()), - node_operator_like: z.optional(z.string()), - node_operator_not_like: z.optional(z.string()), - node_operator_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_operator_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - created_block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - created_block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - created_block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - created_block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - created_block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - created_block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - created_block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - created_block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - created_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - created_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - created_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - created_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - created_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_hash_eq: z.optional(z.string()), - transaction_hash_ne: z.optional(z.string()), - transaction_hash_contains: z.optional(z.string()), - transaction_hash_starts_with: z.optional(z.string()), - transaction_hash_ends_with: z.optional(z.string()), - transaction_hash_like: z.optional(z.string()), - transaction_hash_not_like: z.optional(z.string()), - transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + megapool_address_eq: z.optional(z.string()), + megapool_address_ne: z.optional(z.string()), + megapool_address_contains: z.optional(z.string()), + megapool_address_starts_with: z.optional(z.string()), + megapool_address_ends_with: z.optional(z.string()), + megapool_address_like: z.optional(z.string()), + megapool_address_not_like: z.optional(z.string()), + megapool_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + megapool_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + node_operator_eq: z.optional(z.string()), + node_operator_ne: z.optional(z.string()), + node_operator_contains: z.optional(z.string()), + node_operator_starts_with: z.optional(z.string()), + node_operator_ends_with: z.optional(z.string()), + node_operator_like: z.optional(z.string()), + node_operator_not_like: z.optional(z.string()), + node_operator_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_operator_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + created_block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + created_block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + created_block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + created_block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + created_block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + created_block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + created_block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + created_block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + created_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + created_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + created_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + created_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + created_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_hash_eq: z.optional(z.string()), + transaction_hash_ne: z.optional(z.string()), + transaction_hash_contains: z.optional(z.string()), + transaction_hash_starts_with: z.optional(z.string()), + transaction_hash_ends_with: z.optional(z.string()), + transaction_hash_like: z.optional(z.string()), + transaction_hash_not_like: z.optional(z.string()), + transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -26918,11 +119945,11 @@ export const zIntRocketpoolMegapoolServiceListData = z.object({ export const zIntRocketpoolMegapoolServiceListResponse = zListIntRocketpoolMegapoolResponse; export const zIntRocketpoolMegapoolServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - megapool_address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + megapool_address: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -26931,89 +119958,338 @@ export const zIntRocketpoolMegapoolServiceGetData = z.object({ export const zIntRocketpoolMegapoolServiceGetResponse = zGetIntRocketpoolMegapoolResponse; export const zIntRocketpoolMinipoolServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - event_name_eq: z.optional(z.string()), - event_name_ne: z.optional(z.string()), - event_name_contains: z.optional(z.string()), - event_name_starts_with: z.optional(z.string()), - event_name_ends_with: z.optional(z.string()), - event_name_like: z.optional(z.string()), - event_name_not_like: z.optional(z.string()), - event_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - event_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - minipool_address_eq: z.optional(z.string()), - minipool_address_ne: z.optional(z.string()), - minipool_address_contains: z.optional(z.string()), - minipool_address_starts_with: z.optional(z.string()), - minipool_address_ends_with: z.optional(z.string()), - minipool_address_like: z.optional(z.string()), - minipool_address_not_like: z.optional(z.string()), - minipool_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - minipool_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - node_operator_eq: z.optional(z.string()), - node_operator_ne: z.optional(z.string()), - node_operator_contains: z.optional(z.string()), - node_operator_starts_with: z.optional(z.string()), - node_operator_ends_with: z.optional(z.string()), - node_operator_like: z.optional(z.string()), - node_operator_not_like: z.optional(z.string()), - node_operator_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_operator_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - event_block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - event_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - event_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - event_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_hash_eq: z.optional(z.string()), - transaction_hash_ne: z.optional(z.string()), - transaction_hash_contains: z.optional(z.string()), - transaction_hash_starts_with: z.optional(z.string()), - transaction_hash_ends_with: z.optional(z.string()), - transaction_hash_like: z.optional(z.string()), - transaction_hash_not_like: z.optional(z.string()), - transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - log_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + event_name_eq: z.optional(z.string()), + event_name_ne: z.optional(z.string()), + event_name_contains: z.optional(z.string()), + event_name_starts_with: z.optional(z.string()), + event_name_ends_with: z.optional(z.string()), + event_name_like: z.optional(z.string()), + event_name_not_like: z.optional(z.string()), + event_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + event_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + minipool_address_eq: z.optional(z.string()), + minipool_address_ne: z.optional(z.string()), + minipool_address_contains: z.optional(z.string()), + minipool_address_starts_with: z.optional(z.string()), + minipool_address_ends_with: z.optional(z.string()), + minipool_address_like: z.optional(z.string()), + minipool_address_not_like: z.optional(z.string()), + minipool_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + minipool_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + node_operator_eq: z.optional(z.string()), + node_operator_ne: z.optional(z.string()), + node_operator_contains: z.optional(z.string()), + node_operator_starts_with: z.optional(z.string()), + node_operator_ends_with: z.optional(z.string()), + node_operator_like: z.optional(z.string()), + node_operator_not_like: z.optional(z.string()), + node_operator_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_operator_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + event_block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + event_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + event_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + event_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_hash_eq: z.optional(z.string()), + transaction_hash_ne: z.optional(z.string()), + transaction_hash_contains: z.optional(z.string()), + transaction_hash_starts_with: z.optional(z.string()), + transaction_hash_ends_with: z.optional(z.string()), + transaction_hash_like: z.optional(z.string()), + transaction_hash_not_like: z.optional(z.string()), + transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + log_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -27022,11 +120298,11 @@ export const zIntRocketpoolMinipoolServiceListData = z.object({ export const zIntRocketpoolMinipoolServiceListResponse = zListIntRocketpoolMinipoolResponse; export const zIntRocketpoolMinipoolServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - event_name: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + event_name: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -27035,82 +120311,331 @@ export const zIntRocketpoolMinipoolServiceGetData = z.object({ export const zIntRocketpoolMinipoolServiceGetResponse = zGetIntRocketpoolMinipoolResponse; export const zIntRocketpoolNodeEventServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - event_name_eq: z.optional(z.string()), - event_name_ne: z.optional(z.string()), - event_name_contains: z.optional(z.string()), - event_name_starts_with: z.optional(z.string()), - event_name_ends_with: z.optional(z.string()), - event_name_like: z.optional(z.string()), - event_name_not_like: z.optional(z.string()), - event_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - event_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_address_eq: z.optional(z.string()), - node_address_ne: z.optional(z.string()), - node_address_contains: z.optional(z.string()), - node_address_starts_with: z.optional(z.string()), - node_address_ends_with: z.optional(z.string()), - node_address_like: z.optional(z.string()), - node_address_not_like: z.optional(z.string()), - node_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - event_block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - event_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - event_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - rpl_amount_wei_eq: z.optional(z.string()), - rpl_amount_wei_ne: z.optional(z.string()), - rpl_amount_wei_contains: z.optional(z.string()), - rpl_amount_wei_starts_with: z.optional(z.string()), - rpl_amount_wei_ends_with: z.optional(z.string()), - rpl_amount_wei_like: z.optional(z.string()), - rpl_amount_wei_not_like: z.optional(z.string()), - rpl_amount_wei_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - rpl_amount_wei_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - smoothing_state_eq: z.optional(z.boolean()), - smoothing_state_ne: z.optional(z.boolean()), - event_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - event_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - event_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + event_name_eq: z.optional(z.string()), + event_name_ne: z.optional(z.string()), + event_name_contains: z.optional(z.string()), + event_name_starts_with: z.optional(z.string()), + event_name_ends_with: z.optional(z.string()), + event_name_like: z.optional(z.string()), + event_name_not_like: z.optional(z.string()), + event_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + event_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_address_eq: z.optional(z.string()), + node_address_ne: z.optional(z.string()), + node_address_contains: z.optional(z.string()), + node_address_starts_with: z.optional(z.string()), + node_address_ends_with: z.optional(z.string()), + node_address_like: z.optional(z.string()), + node_address_not_like: z.optional(z.string()), + node_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + event_block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + event_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + event_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + rpl_amount_wei_eq: z.optional(z.string()), + rpl_amount_wei_ne: z.optional(z.string()), + rpl_amount_wei_contains: z.optional(z.string()), + rpl_amount_wei_starts_with: z.optional(z.string()), + rpl_amount_wei_ends_with: z.optional(z.string()), + rpl_amount_wei_like: z.optional(z.string()), + rpl_amount_wei_not_like: z.optional(z.string()), + rpl_amount_wei_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + rpl_amount_wei_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + smoothing_state_eq: z.optional(z.boolean()), + smoothing_state_ne: z.optional(z.boolean()), + event_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + event_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + event_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -27119,11 +120644,11 @@ export const zIntRocketpoolNodeEventServiceListData = z.object({ export const zIntRocketpoolNodeEventServiceListResponse = zListIntRocketpoolNodeEventResponse; export const zIntRocketpoolNodeEventServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - event_name: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + event_name: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -27132,61 +120657,254 @@ export const zIntRocketpoolNodeEventServiceGetData = z.object({ export const zIntRocketpoolNodeEventServiceGetResponse = zGetIntRocketpoolNodeEventResponse; export const zIntRocketpoolNodeTimezoneServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - node_address_eq: z.optional(z.string()), - node_address_ne: z.optional(z.string()), - node_address_contains: z.optional(z.string()), - node_address_starts_with: z.optional(z.string()), - node_address_ends_with: z.optional(z.string()), - node_address_like: z.optional(z.string()), - node_address_not_like: z.optional(z.string()), - node_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - node_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - set_block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - set_block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - set_block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - set_block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - set_block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - set_block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - set_block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - set_block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - set_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - set_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - timezone_eq: z.optional(z.string()), - timezone_ne: z.optional(z.string()), - timezone_contains: z.optional(z.string()), - timezone_starts_with: z.optional(z.string()), - timezone_ends_with: z.optional(z.string()), - timezone_like: z.optional(z.string()), - timezone_not_like: z.optional(z.string()), - timezone_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - timezone_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - set_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - set_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - set_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - set_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - set_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - set_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - set_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - set_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - set_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - set_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + node_address_eq: z.optional(z.string()), + node_address_ne: z.optional(z.string()), + node_address_contains: z.optional(z.string()), + node_address_starts_with: z.optional(z.string()), + node_address_ends_with: z.optional(z.string()), + node_address_like: z.optional(z.string()), + node_address_not_like: z.optional(z.string()), + node_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + node_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + set_block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + set_block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + set_block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + set_block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + set_block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + set_block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + set_block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + set_block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + set_block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + set_block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + timezone_eq: z.optional(z.string()), + timezone_ne: z.optional(z.string()), + timezone_contains: z.optional(z.string()), + timezone_starts_with: z.optional(z.string()), + timezone_ends_with: z.optional(z.string()), + timezone_like: z.optional(z.string()), + timezone_not_like: z.optional(z.string()), + timezone_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + timezone_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + set_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + set_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + set_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + set_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + set_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + set_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + set_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + set_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + set_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + set_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -27195,11 +120913,11 @@ export const zIntRocketpoolNodeTimezoneServiceListData = z.object({ export const zIntRocketpoolNodeTimezoneServiceListResponse = zListIntRocketpoolNodeTimezoneResponse; export const zIntRocketpoolNodeTimezoneServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - node_address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + node_address: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -27208,98 +120926,331 @@ export const zIntRocketpoolNodeTimezoneServiceGetData = z.object({ export const zIntRocketpoolNodeTimezoneServiceGetResponse = zGetIntRocketpoolNodeTimezoneResponse; export const zIntStorageSelfdestructDiffsServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_hash_eq: z.optional(z.string()), - transaction_hash_ne: z.optional(z.string()), - transaction_hash_contains: z.optional(z.string()), - transaction_hash_starts_with: z.optional(z.string()), - transaction_hash_ends_with: z.optional(z.string()), - transaction_hash_like: z.optional(z.string()), - transaction_hash_not_like: z.optional(z.string()), - transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - internal_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - internal_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - internal_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slot_eq: z.optional(z.string()), - slot_ne: z.optional(z.string()), - slot_contains: z.optional(z.string()), - slot_starts_with: z.optional(z.string()), - slot_ends_with: z.optional(z.string()), - slot_like: z.optional(z.string()), - slot_not_like: z.optional(z.string()), - slot_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - from_value_eq: z.optional(z.string()), - from_value_ne: z.optional(z.string()), - from_value_contains: z.optional(z.string()), - from_value_starts_with: z.optional(z.string()), - from_value_ends_with: z.optional(z.string()), - from_value_like: z.optional(z.string()), - from_value_not_like: z.optional(z.string()), - from_value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - from_value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - to_value_eq: z.optional(z.string()), - to_value_ne: z.optional(z.string()), - to_value_contains: z.optional(z.string()), - to_value_starts_with: z.optional(z.string()), - to_value_ends_with: z.optional(z.string()), - to_value_like: z.optional(z.string()), - to_value_not_like: z.optional(z.string()), - to_value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - to_value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_hash_eq: z.optional(z.string()), + transaction_hash_ne: z.optional(z.string()), + transaction_hash_contains: z.optional(z.string()), + transaction_hash_starts_with: z.optional(z.string()), + transaction_hash_ends_with: z.optional(z.string()), + transaction_hash_like: z.optional(z.string()), + transaction_hash_not_like: z.optional(z.string()), + transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + internal_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + internal_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + internal_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional(z.string()), + slot_ne: z.optional(z.string()), + slot_contains: z.optional(z.string()), + slot_starts_with: z.optional(z.string()), + slot_ends_with: z.optional(z.string()), + slot_like: z.optional(z.string()), + slot_not_like: z.optional(z.string()), + slot_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + from_value_eq: z.optional(z.string()), + from_value_ne: z.optional(z.string()), + from_value_contains: z.optional(z.string()), + from_value_starts_with: z.optional(z.string()), + from_value_ends_with: z.optional(z.string()), + from_value_like: z.optional(z.string()), + from_value_not_like: z.optional(z.string()), + from_value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + from_value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + to_value_eq: z.optional(z.string()), + to_value_ne: z.optional(z.string()), + to_value_contains: z.optional(z.string()), + to_value_starts_with: z.optional(z.string()), + to_value_ends_with: z.optional(z.string()), + to_value_like: z.optional(z.string()), + to_value_not_like: z.optional(z.string()), + to_value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + to_value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -27308,11 +121259,16 @@ export const zIntStorageSelfdestructDiffsServiceListData = z.object({ export const zIntStorageSelfdestructDiffsServiceListResponse = zListIntStorageSelfdestructDiffsResponse; export const zIntStorageSelfdestructDiffsServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -27321,71 +121277,304 @@ export const zIntStorageSelfdestructDiffsServiceGetData = z.object({ export const zIntStorageSelfdestructDiffsServiceGetResponse = zGetIntStorageSelfdestructDiffsResponse; export const zIntStorageSlotDiffServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_from_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_from_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_to_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_to_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_from_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_from_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_to_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_to_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -27394,11 +121583,16 @@ export const zIntStorageSlotDiffServiceListData = z.object({ export const zIntStorageSlotDiffServiceListResponse = zListIntStorageSlotDiffResponse; export const zIntStorageSlotDiffServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -27407,71 +121601,304 @@ export const zIntStorageSlotDiffServiceGetData = z.object({ export const zIntStorageSlotDiffServiceGetResponse = zGetIntStorageSlotDiffResponse; export const zIntStorageSlotDiffByAddressSlotServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_from_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_from_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_from_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_to_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_to_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_to_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_from_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_from_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_from_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_to_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_to_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_to_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -27480,11 +121907,11 @@ export const zIntStorageSlotDiffByAddressSlotServiceListData = z.object({ export const zIntStorageSlotDiffByAddressSlotServiceListResponse = zListIntStorageSlotDiffByAddressSlotResponse; export const zIntStorageSlotDiffByAddressSlotServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -27493,71 +121920,304 @@ export const zIntStorageSlotDiffByAddressSlotServiceGetData = z.object({ export const zIntStorageSlotDiffByAddressSlotServiceGetResponse = zGetIntStorageSlotDiffByAddressSlotResponse; export const zIntStorageSlotExpiry1mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -27566,11 +122226,16 @@ export const zIntStorageSlotExpiry1mServiceListData = z.object({ export const zIntStorageSlotExpiry1mServiceListResponse = zListIntStorageSlotExpiry1mResponse; export const zIntStorageSlotExpiry1mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -27579,71 +122244,304 @@ export const zIntStorageSlotExpiry1mServiceGetData = z.object({ export const zIntStorageSlotExpiry1mServiceGetResponse = zGetIntStorageSlotExpiry1mResponse; export const zIntStorageSlotExpiry6mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -27652,11 +122550,16 @@ export const zIntStorageSlotExpiry6mServiceListData = z.object({ export const zIntStorageSlotExpiry6mServiceListResponse = zListIntStorageSlotExpiry6mResponse; export const zIntStorageSlotExpiry6mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -27665,71 +122568,304 @@ export const zIntStorageSlotExpiry6mServiceGetData = z.object({ export const zIntStorageSlotExpiry6mServiceGetResponse = zGetIntStorageSlotExpiry6mResponse; export const zIntStorageSlotExpiry12mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -27738,11 +122874,16 @@ export const zIntStorageSlotExpiry12mServiceListData = z.object({ export const zIntStorageSlotExpiry12mServiceListResponse = zListIntStorageSlotExpiry12mResponse; export const zIntStorageSlotExpiry12mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -27751,71 +122892,304 @@ export const zIntStorageSlotExpiry12mServiceGetData = z.object({ export const zIntStorageSlotExpiry12mServiceGetResponse = zGetIntStorageSlotExpiry12mResponse; export const zIntStorageSlotExpiry18mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -27824,11 +123198,16 @@ export const zIntStorageSlotExpiry18mServiceListData = z.object({ export const zIntStorageSlotExpiry18mServiceListResponse = zListIntStorageSlotExpiry18mResponse; export const zIntStorageSlotExpiry18mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -27837,71 +123216,304 @@ export const zIntStorageSlotExpiry18mServiceGetData = z.object({ export const zIntStorageSlotExpiry18mServiceGetResponse = zGetIntStorageSlotExpiry18mResponse; export const zIntStorageSlotExpiry24mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -27910,11 +123522,16 @@ export const zIntStorageSlotExpiry24mServiceListData = z.object({ export const zIntStorageSlotExpiry24mServiceListResponse = zListIntStorageSlotExpiry24mResponse; export const zIntStorageSlotExpiry24mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -27923,161 +123540,914 @@ export const zIntStorageSlotExpiry24mServiceGetData = z.object({ export const zIntStorageSlotExpiry24mServiceGetResponse = zGetIntStorageSlotExpiry24mResponse; export const zIntStorageSlotLifecycleServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - lifecycle_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - lifecycle_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - birth_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - birth_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - death_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - death_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - lifespan_blocks_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifespan_blocks_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifespan_blocks_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifespan_blocks_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifespan_blocks_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifespan_blocks_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifespan_blocks_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifespan_blocks_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifespan_blocks_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - lifespan_blocks_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_birth_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_birth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_peak_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_peak_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_peak_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_peak_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_peak_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_peak_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_peak_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_peak_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_peak_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_peak_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_death_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_death_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - last_touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - last_touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - last_touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - interval_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - interval_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - interval_sum_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_sum_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_sum_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_sum_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_sum_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_sum_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_sum_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_sum_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - interval_sum_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - interval_sum_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - interval_max_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_max_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_max_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_max_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_max_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_max_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_max_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_max_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - interval_max_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - interval_max_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + lifecycle_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + lifecycle_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + birth_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + birth_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + death_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + death_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + lifespan_blocks_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifespan_blocks_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifespan_blocks_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifespan_blocks_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifespan_blocks_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifespan_blocks_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifespan_blocks_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifespan_blocks_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifespan_blocks_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + lifespan_blocks_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_birth_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_birth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_peak_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_peak_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_peak_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_peak_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_peak_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_peak_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_peak_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_peak_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_peak_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_peak_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_death_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_death_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + last_touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + last_touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + last_touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + interval_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + interval_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + interval_sum_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_sum_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_sum_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_sum_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_sum_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_sum_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_sum_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_sum_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + interval_sum_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + interval_sum_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + interval_max_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_max_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_max_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_max_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_max_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_max_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_max_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_max_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + interval_max_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + interval_max_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -28086,11 +124456,11 @@ export const zIntStorageSlotLifecycleServiceListData = z.object({ export const zIntStorageSlotLifecycleServiceListResponse = zListIntStorageSlotLifecycleResponse; export const zIntStorageSlotLifecycleServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -28099,91 +124469,436 @@ export const zIntStorageSlotLifecycleServiceGetData = z.object({ export const zIntStorageSlotLifecycleServiceGetResponse = zGetIntStorageSlotLifecycleResponse; export const zIntStorageSlotLifecycleBoundaryServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - lifecycle_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - lifecycle_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - lifecycle_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - birth_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - birth_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - birth_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - death_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - death_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - death_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_birth_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_birth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_birth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_death_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_death_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_death_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + lifecycle_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + lifecycle_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + lifecycle_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + birth_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + birth_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + birth_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + death_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + death_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + death_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_birth_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_birth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_birth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_death_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_death_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_death_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -28192,11 +124907,11 @@ export const zIntStorageSlotLifecycleBoundaryServiceListData = z.object({ export const zIntStorageSlotLifecycleBoundaryServiceListResponse = zListIntStorageSlotLifecycleBoundaryResponse; export const zIntStorageSlotLifecycleBoundaryServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -28205,61 +124920,238 @@ export const zIntStorageSlotLifecycleBoundaryServiceGetData = z.object({ export const zIntStorageSlotLifecycleBoundaryServiceGetResponse = zGetIntStorageSlotLifecycleBoundaryResponse; export const zIntStorageSlotNextTouchServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - next_touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - next_touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - next_touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + next_touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + next_touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + next_touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -28268,11 +125160,16 @@ export const zIntStorageSlotNextTouchServiceListData = z.object({ export const zIntStorageSlotNextTouchServiceListResponse = zListIntStorageSlotNextTouchResponse; export const zIntStorageSlotNextTouchServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -28281,71 +125178,304 @@ export const zIntStorageSlotNextTouchServiceGetData = z.object({ export const zIntStorageSlotNextTouchServiceGetResponse = zGetIntStorageSlotNextTouchResponse; export const zIntStorageSlotReactivation1mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -28354,11 +125484,16 @@ export const zIntStorageSlotReactivation1mServiceListData = z.object({ export const zIntStorageSlotReactivation1mServiceListResponse = zListIntStorageSlotReactivation1mResponse; export const zIntStorageSlotReactivation1mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -28367,71 +125502,304 @@ export const zIntStorageSlotReactivation1mServiceGetData = z.object({ export const zIntStorageSlotReactivation1mServiceGetResponse = zGetIntStorageSlotReactivation1mResponse; export const zIntStorageSlotReactivation6mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -28440,11 +125808,16 @@ export const zIntStorageSlotReactivation6mServiceListData = z.object({ export const zIntStorageSlotReactivation6mServiceListResponse = zListIntStorageSlotReactivation6mResponse; export const zIntStorageSlotReactivation6mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -28453,71 +125826,304 @@ export const zIntStorageSlotReactivation6mServiceGetData = z.object({ export const zIntStorageSlotReactivation6mServiceGetResponse = zGetIntStorageSlotReactivation6mResponse; export const zIntStorageSlotReactivation12mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -28526,11 +126132,16 @@ export const zIntStorageSlotReactivation12mServiceListData = z.object({ export const zIntStorageSlotReactivation12mServiceListResponse = zListIntStorageSlotReactivation12mResponse; export const zIntStorageSlotReactivation12mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -28539,71 +126150,304 @@ export const zIntStorageSlotReactivation12mServiceGetData = z.object({ export const zIntStorageSlotReactivation12mServiceGetResponse = zGetIntStorageSlotReactivation12mResponse; export const zIntStorageSlotReactivation18mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -28612,11 +126456,16 @@ export const zIntStorageSlotReactivation18mServiceListData = z.object({ export const zIntStorageSlotReactivation18mServiceListResponse = zListIntStorageSlotReactivation18mResponse; export const zIntStorageSlotReactivation18mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -28625,71 +126474,304 @@ export const zIntStorageSlotReactivation18mServiceGetData = z.object({ export const zIntStorageSlotReactivation18mServiceGetResponse = zGetIntStorageSlotReactivation18mResponse; export const zIntStorageSlotReactivation24mServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - touch_block_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + touch_block_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + touch_block_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + touch_block_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -28698,11 +126780,16 @@ export const zIntStorageSlotReactivation24mServiceListData = z.object({ export const zIntStorageSlotReactivation24mServiceListResponse = zListIntStorageSlotReactivation24mResponse; export const zIntStorageSlotReactivation24mServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -28711,51 +126798,172 @@ export const zIntStorageSlotReactivation24mServiceGetData = z.object({ export const zIntStorageSlotReactivation24mServiceGetResponse = zGetIntStorageSlotReactivation24mResponse; export const zIntStorageSlotReadServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_eq: z.optional(z.string()), - slot_key_ne: z.optional(z.string()), - slot_key_contains: z.optional(z.string()), - slot_key_starts_with: z.optional(z.string()), - slot_key_ends_with: z.optional(z.string()), - slot_key_like: z.optional(z.string()), - slot_key_not_like: z.optional(z.string()), - slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_eq: z.optional(z.string()), + slot_key_ne: z.optional(z.string()), + slot_key_contains: z.optional(z.string()), + slot_key_starts_with: z.optional(z.string()), + slot_key_ends_with: z.optional(z.string()), + slot_key_like: z.optional(z.string()), + slot_key_not_like: z.optional(z.string()), + slot_key_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + slot_key_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -28764,11 +126972,16 @@ export const zIntStorageSlotReadServiceListData = z.object({ export const zIntStorageSlotReadServiceListResponse = zListIntStorageSlotReadResponse; export const zIntStorageSlotReadServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -28777,82 +126990,523 @@ export const zIntStorageSlotReadServiceGetData = z.object({ export const zIntStorageSlotReadServiceGetResponse = zGetIntStorageSlotReadResponse; export const zIntStorageSlotStateServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slots_delta_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - bytes_delta_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slots_delta_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + bytes_delta_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -28861,11 +127515,16 @@ export const zIntStorageSlotStateServiceListData = z.object({ export const zIntStorageSlotStateServiceListResponse = zListIntStorageSlotStateResponse; export const zIntStorageSlotStateServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -28874,82 +127533,523 @@ export const zIntStorageSlotStateServiceGetData = z.object({ export const zIntStorageSlotStateServiceGetResponse = zGetIntStorageSlotStateResponse; export const zIntStorageSlotStateByAddressServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slots_delta_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - bytes_delta_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slots_delta_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + bytes_delta_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -28958,11 +128058,11 @@ export const zIntStorageSlotStateByAddressServiceListData = z.object({ export const zIntStorageSlotStateByAddressServiceListResponse = zListIntStorageSlotStateByAddressResponse; export const zIntStorageSlotStateByAddressServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -28971,73 +128071,514 @@ export const zIntStorageSlotStateByAddressServiceGetData = z.object({ export const zIntStorageSlotStateByAddressServiceGetResponse = zGetIntStorageSlotStateByAddressResponse; export const zIntStorageSlotStateByBlockServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slots_delta_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - bytes_delta_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slots_delta_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + bytes_delta_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -29046,11 +128587,16 @@ export const zIntStorageSlotStateByBlockServiceListData = z.object({ export const zIntStorageSlotStateByBlockServiceListResponse = zListIntStorageSlotStateByBlockResponse; export const zIntStorageSlotStateByBlockServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -29059,111 +128605,728 @@ export const zIntStorageSlotStateByBlockServiceGetData = z.object({ export const zIntStorageSlotStateByBlockServiceGetResponse = zGetIntStorageSlotStateByBlockResponse; export const zIntStorageSlotStateWithExpiryServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - net_slots_delta_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - net_slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - net_bytes_delta_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - net_bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + net_slots_delta_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + net_slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + net_bytes_delta_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + net_bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -29172,11 +129335,11 @@ export const zIntStorageSlotStateWithExpiryServiceListData = z.object({ export const zIntStorageSlotStateWithExpiryServiceListResponse = zListIntStorageSlotStateWithExpiryResponse; export const zIntStorageSlotStateWithExpiryServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - expiry_policy: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + expiry_policy: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -29185,241 +129348,1478 @@ export const zIntStorageSlotStateWithExpiryServiceGetData = z.object({ export const zIntStorageSlotStateWithExpiryServiceGetResponse = zGetIntStorageSlotStateWithExpiryResponse; export const zIntStorageSlotStateWithExpiryByAddressServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - address_eq: z.optional(z.string()), - address_ne: z.optional(z.string()), - address_contains: z.optional(z.string()), - address_starts_with: z.optional(z.string()), - address_ends_with: z.optional(z.string()), - address_like: z.optional(z.string()), - address_not_like: z.optional(z.string()), - address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - net_slots_delta_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - net_slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - net_bytes_delta_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - net_bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zIntStorageSlotStateWithExpiryByAddressServiceListResponse = zListIntStorageSlotStateWithExpiryByAddressResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + address_eq: z.optional(z.string()), + address_ne: z.optional(z.string()), + address_contains: z.optional(z.string()), + address_starts_with: z.optional(z.string()), + address_ends_with: z.optional(z.string()), + address_like: z.optional(z.string()), + address_not_like: z.optional(z.string()), + address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + net_slots_delta_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + net_slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + net_bytes_delta_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + net_bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zIntStorageSlotStateWithExpiryByAddressServiceListResponse = + zListIntStorageSlotStateWithExpiryByAddressResponse; export const zIntStorageSlotStateWithExpiryByAddressServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - address: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + address: z.string(), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zIntStorageSlotStateWithExpiryByAddressServiceGetResponse = zGetIntStorageSlotStateWithExpiryByAddressResponse; +export const zIntStorageSlotStateWithExpiryByAddressServiceGetResponse = + zGetIntStorageSlotStateWithExpiryByAddressResponse; export const zIntStorageSlotStateWithExpiryByBlockServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - expiry_policy_eq: z.optional(z.string()), - expiry_policy_ne: z.optional(z.string()), - expiry_policy_contains: z.optional(z.string()), - expiry_policy_starts_with: z.optional(z.string()), - expiry_policy_ends_with: z.optional(z.string()), - expiry_policy_like: z.optional(z.string()), - expiry_policy_not_like: z.optional(z.string()), - expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - net_slots_delta_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - net_slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - net_slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - net_bytes_delta_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - net_bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - net_bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - cumulative_net_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - cumulative_net_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zIntStorageSlotStateWithExpiryByBlockServiceListResponse = zListIntStorageSlotStateWithExpiryByBlockResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + expiry_policy_eq: z.optional(z.string()), + expiry_policy_ne: z.optional(z.string()), + expiry_policy_contains: z.optional(z.string()), + expiry_policy_starts_with: z.optional(z.string()), + expiry_policy_ends_with: z.optional(z.string()), + expiry_policy_like: z.optional(z.string()), + expiry_policy_not_like: z.optional(z.string()), + expiry_policy_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + expiry_policy_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + net_slots_delta_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + net_slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + net_slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + net_bytes_delta_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + net_bytes_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + net_bytes_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + cumulative_net_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + cumulative_net_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + effective_bytes_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + effective_bytes_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zIntStorageSlotStateWithExpiryByBlockServiceListResponse = + zListIntStorageSlotStateWithExpiryByBlockResponse; export const zIntStorageSlotStateWithExpiryByBlockServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - expiry_policy: z.string() - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + expiry_policy: z.string(), + }), + query: z.optional(z.never()), }); /** @@ -29428,62 +130828,327 @@ export const zIntStorageSlotStateWithExpiryByBlockServiceGetData = z.object({ export const zIntStorageSlotStateWithExpiryByBlockServiceGetResponse = zGetIntStorageSlotStateWithExpiryByBlockResponse; export const zIntTokenContractStorageStateByBlockServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - token_standard_eq: z.optional(z.string()), - token_standard_ne: z.optional(z.string()), - token_standard_contains: z.optional(z.string()), - token_standard_starts_with: z.optional(z.string()), - token_standard_ends_with: z.optional(z.string()), - token_standard_like: z.optional(z.string()), - token_standard_not_like: z.optional(z.string()), - token_standard_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - token_standard_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - slots_delta_eq: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_ne: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_lte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gt: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_gte: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_min: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_between_max_value: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('-9223372036854775808'), { error: 'Invalid value: Expected int64 to be >= -9223372036854775808' }), z.maximum(BigInt('9223372036854775807'), { error: 'Invalid value: Expected int64 to be <= 9223372036854775807' }))), - active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + token_standard_eq: z.optional(z.string()), + token_standard_ne: z.optional(z.string()), + token_standard_contains: z.optional(z.string()), + token_standard_starts_with: z.optional(z.string()), + token_standard_ends_with: z.optional(z.string()), + token_standard_like: z.optional(z.string()), + token_standard_not_like: z.optional(z.string()), + token_standard_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + token_standard_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slots_delta_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + slots_delta_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + slots_delta_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + active_slots_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + active_slots_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -29492,11 +131157,16 @@ export const zIntTokenContractStorageStateByBlockServiceListData = z.object({ export const zIntTokenContractStorageStateByBlockServiceListResponse = zListIntTokenContractStorageStateByBlockResponse; export const zIntTokenContractStorageStateByBlockServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), }); /** @@ -29505,179 +131175,1044 @@ export const zIntTokenContractStorageStateByBlockServiceGetData = z.object({ export const zIntTokenContractStorageStateByBlockServiceGetResponse = zGetIntTokenContractStorageStateByBlockResponse; export const zIntTransactionCallFrameServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_hash_eq: z.optional(z.string()), - transaction_hash_ne: z.optional(z.string()), - transaction_hash_contains: z.optional(z.string()), - transaction_hash_starts_with: z.optional(z.string()), - transaction_hash_ends_with: z.optional(z.string()), - transaction_hash_like: z.optional(z.string()), - transaction_hash_not_like: z.optional(z.string()), - transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - call_frame_id_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - call_frame_id_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - parent_call_frame_id_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - parent_call_frame_id_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - parent_call_frame_id_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - parent_call_frame_id_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - parent_call_frame_id_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - parent_call_frame_id_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - parent_call_frame_id_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - parent_call_frame_id_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - parent_call_frame_id_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - parent_call_frame_id_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - depth_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - depth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - depth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - target_address_eq: z.optional(z.string()), - target_address_ne: z.optional(z.string()), - target_address_contains: z.optional(z.string()), - target_address_starts_with: z.optional(z.string()), - target_address_ends_with: z.optional(z.string()), - target_address_like: z.optional(z.string()), - target_address_not_like: z.optional(z.string()), - target_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - target_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - call_type_eq: z.optional(z.string()), - call_type_ne: z.optional(z.string()), - call_type_contains: z.optional(z.string()), - call_type_starts_with: z.optional(z.string()), - call_type_ends_with: z.optional(z.string()), - call_type_like: z.optional(z.string()), - call_type_not_like: z.optional(z.string()), - call_type_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - call_type_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - function_selector_eq: z.optional(z.string()), - function_selector_ne: z.optional(z.string()), - function_selector_contains: z.optional(z.string()), - function_selector_starts_with: z.optional(z.string()), - function_selector_ends_with: z.optional(z.string()), - function_selector_like: z.optional(z.string()), - function_selector_not_like: z.optional(z.string()), - function_selector_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - function_selector_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - opcode_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - opcode_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - opcode_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - opcode_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - opcode_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - opcode_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - opcode_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - opcode_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - opcode_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - opcode_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - error_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_cumulative_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_cumulative_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_refund_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_refund_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - intrinsic_gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - intrinsic_gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - intrinsic_gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - intrinsic_gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - intrinsic_gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - intrinsic_gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - intrinsic_gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - intrinsic_gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - intrinsic_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - intrinsic_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - receipt_gas_used_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_gas_used_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_gas_used_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_gas_used_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_gas_used_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_gas_used_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_gas_used_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_gas_used_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - receipt_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_hash_eq: z.optional(z.string()), + transaction_hash_ne: z.optional(z.string()), + transaction_hash_contains: z.optional(z.string()), + transaction_hash_starts_with: z.optional(z.string()), + transaction_hash_ends_with: z.optional(z.string()), + transaction_hash_like: z.optional(z.string()), + transaction_hash_not_like: z.optional(z.string()), + transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + call_frame_id_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + call_frame_id_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + parent_call_frame_id_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + parent_call_frame_id_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + parent_call_frame_id_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + parent_call_frame_id_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + parent_call_frame_id_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + parent_call_frame_id_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + parent_call_frame_id_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + parent_call_frame_id_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + parent_call_frame_id_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + parent_call_frame_id_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + depth_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + depth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + depth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + target_address_eq: z.optional(z.string()), + target_address_ne: z.optional(z.string()), + target_address_contains: z.optional(z.string()), + target_address_starts_with: z.optional(z.string()), + target_address_ends_with: z.optional(z.string()), + target_address_like: z.optional(z.string()), + target_address_not_like: z.optional(z.string()), + target_address_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + target_address_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + call_type_eq: z.optional(z.string()), + call_type_ne: z.optional(z.string()), + call_type_contains: z.optional(z.string()), + call_type_starts_with: z.optional(z.string()), + call_type_ends_with: z.optional(z.string()), + call_type_like: z.optional(z.string()), + call_type_not_like: z.optional(z.string()), + call_type_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + call_type_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + function_selector_eq: z.optional(z.string()), + function_selector_ne: z.optional(z.string()), + function_selector_contains: z.optional(z.string()), + function_selector_starts_with: z.optional(z.string()), + function_selector_ends_with: z.optional(z.string()), + function_selector_like: z.optional(z.string()), + function_selector_not_like: z.optional(z.string()), + function_selector_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + function_selector_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + opcode_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + opcode_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + opcode_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + opcode_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + opcode_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + opcode_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + opcode_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + opcode_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + opcode_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + opcode_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + error_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_cumulative_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_cumulative_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_refund_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_refund_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + intrinsic_gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + intrinsic_gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + intrinsic_gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + intrinsic_gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + intrinsic_gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + intrinsic_gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + intrinsic_gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + intrinsic_gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + intrinsic_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + intrinsic_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + receipt_gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + receipt_gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -29686,11 +132221,18 @@ export const zIntTransactionCallFrameServiceListData = z.object({ export const zIntTransactionCallFrameServiceListResponse = zListIntTransactionCallFrameResponse; export const zIntTransactionCallFrameServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -29699,180 +132241,1149 @@ export const zIntTransactionCallFrameServiceGetData = z.object({ export const zIntTransactionCallFrameServiceGetResponse = zGetIntTransactionCallFrameResponse; export const zIntTransactionCallFrameOpcodeGasServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_hash_eq: z.optional(z.string()), - transaction_hash_ne: z.optional(z.string()), - transaction_hash_contains: z.optional(z.string()), - transaction_hash_starts_with: z.optional(z.string()), - transaction_hash_ends_with: z.optional(z.string()), - transaction_hash_like: z.optional(z.string()), - transaction_hash_not_like: z.optional(z.string()), - transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - call_frame_id_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - call_frame_id_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - opcode_eq: z.optional(z.string()), - opcode_ne: z.optional(z.string()), - opcode_contains: z.optional(z.string()), - opcode_starts_with: z.optional(z.string()), - opcode_ends_with: z.optional(z.string()), - opcode_like: z.optional(z.string()), - opcode_not_like: z.optional(z.string()), - opcode_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - opcode_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_eq: z.optional(z.string()), - meta_network_name_ne: z.optional(z.string()), - meta_network_name_contains: z.optional(z.string()), - meta_network_name_starts_with: z.optional(z.string()), - meta_network_name_ends_with: z.optional(z.string()), - meta_network_name_like: z.optional(z.string()), - meta_network_name_not_like: z.optional(z.string()), - meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_cumulative_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_cumulative_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - memory_words_sum_before_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_before_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_before_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_before_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_before_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_before_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_before_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_before_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_before_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - memory_words_sum_before_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - memory_words_sum_after_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_after_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_after_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_after_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_after_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_after_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_after_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_after_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sum_after_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - memory_words_sum_after_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - memory_words_sq_sum_before_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_before_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_before_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_before_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_before_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_before_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_before_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_before_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_before_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - memory_words_sq_sum_before_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - memory_words_sq_sum_after_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_after_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_after_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_after_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_after_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_after_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_after_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_after_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_words_sq_sum_after_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - memory_words_sq_sum_after_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - memory_expansion_gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_expansion_gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_expansion_gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_expansion_gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_expansion_gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_expansion_gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_expansion_gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_expansion_gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - memory_expansion_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - memory_expansion_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - cold_access_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cold_access_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cold_access_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cold_access_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cold_access_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cold_access_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cold_access_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cold_access_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - cold_access_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - cold_access_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - error_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_hash_eq: z.optional(z.string()), + transaction_hash_ne: z.optional(z.string()), + transaction_hash_contains: z.optional(z.string()), + transaction_hash_starts_with: z.optional(z.string()), + transaction_hash_ends_with: z.optional(z.string()), + transaction_hash_like: z.optional(z.string()), + transaction_hash_not_like: z.optional(z.string()), + transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + call_frame_id_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + call_frame_id_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + opcode_eq: z.optional(z.string()), + opcode_ne: z.optional(z.string()), + opcode_contains: z.optional(z.string()), + opcode_starts_with: z.optional(z.string()), + opcode_ends_with: z.optional(z.string()), + opcode_like: z.optional(z.string()), + opcode_not_like: z.optional(z.string()), + opcode_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + opcode_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_eq: z.optional(z.string()), + meta_network_name_ne: z.optional(z.string()), + meta_network_name_contains: z.optional(z.string()), + meta_network_name_starts_with: z.optional(z.string()), + meta_network_name_ends_with: z.optional(z.string()), + meta_network_name_like: z.optional(z.string()), + meta_network_name_not_like: z.optional(z.string()), + meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_cumulative_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_cumulative_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + memory_words_sum_before_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_before_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_before_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_before_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_before_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_before_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_before_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_before_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_before_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + memory_words_sum_before_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + memory_words_sum_after_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_after_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_after_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_after_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_after_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_after_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_after_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_after_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sum_after_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + memory_words_sum_after_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + memory_words_sq_sum_before_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_before_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_before_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_before_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_before_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_before_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_before_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_before_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_before_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + memory_words_sq_sum_before_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + memory_words_sq_sum_after_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_after_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_after_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_after_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_after_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_after_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_after_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_after_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_words_sq_sum_after_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + memory_words_sq_sum_after_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + memory_expansion_gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_expansion_gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_expansion_gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_expansion_gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_expansion_gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_expansion_gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_expansion_gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_expansion_gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + memory_expansion_gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + memory_expansion_gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + cold_access_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cold_access_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cold_access_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cold_access_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cold_access_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cold_access_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cold_access_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cold_access_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + cold_access_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + cold_access_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + error_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -29881,11 +133392,18 @@ export const zIntTransactionCallFrameOpcodeGasServiceListData = z.object({ export const zIntTransactionCallFrameOpcodeGasServiceListResponse = zListIntTransactionCallFrameOpcodeGasResponse; export const zIntTransactionCallFrameOpcodeGasServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -29894,295 +133412,1682 @@ export const zIntTransactionCallFrameOpcodeGasServiceGetData = z.object({ export const zIntTransactionCallFrameOpcodeGasServiceGetResponse = zGetIntTransactionCallFrameOpcodeGasResponse; export const zIntTransactionCallFrameOpcodeResourceGasServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_hash_eq: z.optional(z.string()), - transaction_hash_ne: z.optional(z.string()), - transaction_hash_contains: z.optional(z.string()), - transaction_hash_starts_with: z.optional(z.string()), - transaction_hash_ends_with: z.optional(z.string()), - transaction_hash_like: z.optional(z.string()), - transaction_hash_not_like: z.optional(z.string()), - transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - call_frame_id_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - call_frame_id_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - call_frame_id_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - opcode_eq: z.optional(z.string()), - opcode_ne: z.optional(z.string()), - opcode_contains: z.optional(z.string()), - opcode_starts_with: z.optional(z.string()), - opcode_ends_with: z.optional(z.string()), - opcode_like: z.optional(z.string()), - opcode_not_like: z.optional(z.string()), - opcode_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - opcode_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_eq: z.optional(z.string()), - meta_network_name_ne: z.optional(z.string()), - meta_network_name_contains: z.optional(z.string()), - meta_network_name_starts_with: z.optional(z.string()), - meta_network_name_ends_with: z.optional(z.string()), - meta_network_name_like: z.optional(z.string()), - meta_network_name_not_like: z.optional(z.string()), - meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_compute_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_compute_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_memory_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_memory_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_address_access_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_address_access_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_state_growth_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_state_growth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_history_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_history_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_bloom_topics_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_bloom_topics_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_block_size_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_block_size_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) -}); - -/** - * OK - */ -export const zIntTransactionCallFrameOpcodeResourceGasServiceListResponse = zListIntTransactionCallFrameOpcodeResourceGasResponse; + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_hash_eq: z.optional(z.string()), + transaction_hash_ne: z.optional(z.string()), + transaction_hash_contains: z.optional(z.string()), + transaction_hash_starts_with: z.optional(z.string()), + transaction_hash_ends_with: z.optional(z.string()), + transaction_hash_like: z.optional(z.string()), + transaction_hash_not_like: z.optional(z.string()), + transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + call_frame_id_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + call_frame_id_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + call_frame_id_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + opcode_eq: z.optional(z.string()), + opcode_ne: z.optional(z.string()), + opcode_contains: z.optional(z.string()), + opcode_starts_with: z.optional(z.string()), + opcode_ends_with: z.optional(z.string()), + opcode_like: z.optional(z.string()), + opcode_not_like: z.optional(z.string()), + opcode_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + opcode_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_eq: z.optional(z.string()), + meta_network_name_ne: z.optional(z.string()), + meta_network_name_contains: z.optional(z.string()), + meta_network_name_starts_with: z.optional(z.string()), + meta_network_name_ends_with: z.optional(z.string()), + meta_network_name_like: z.optional(z.string()), + meta_network_name_not_like: z.optional(z.string()), + meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_compute_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_compute_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_memory_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_memory_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_address_access_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_address_access_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_state_growth_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_state_growth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_history_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_history_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_bloom_topics_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_bloom_topics_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_block_size_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_block_size_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zIntTransactionCallFrameOpcodeResourceGasServiceListResponse = + zListIntTransactionCallFrameOpcodeResourceGasResponse; export const zIntTransactionCallFrameOpcodeResourceGasServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + }), + query: z.optional(z.never()), }); /** * OK */ -export const zIntTransactionCallFrameOpcodeResourceGasServiceGetResponse = zGetIntTransactionCallFrameOpcodeResourceGasResponse; +export const zIntTransactionCallFrameOpcodeResourceGasServiceGetResponse = + zGetIntTransactionCallFrameOpcodeResourceGasResponse; export const zIntTransactionOpcodeGasServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_hash_eq: z.optional(z.string()), - transaction_hash_ne: z.optional(z.string()), - transaction_hash_contains: z.optional(z.string()), - transaction_hash_starts_with: z.optional(z.string()), - transaction_hash_ends_with: z.optional(z.string()), - transaction_hash_like: z.optional(z.string()), - transaction_hash_not_like: z.optional(z.string()), - transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - opcode_eq: z.optional(z.string()), - opcode_ne: z.optional(z.string()), - opcode_contains: z.optional(z.string()), - opcode_starts_with: z.optional(z.string()), - opcode_ends_with: z.optional(z.string()), - opcode_like: z.optional(z.string()), - opcode_not_like: z.optional(z.string()), - opcode_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - opcode_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_eq: z.optional(z.string()), - meta_network_name_ne: z.optional(z.string()), - meta_network_name_contains: z.optional(z.string()), - meta_network_name_starts_with: z.optional(z.string()), - meta_network_name_ends_with: z.optional(z.string()), - meta_network_name_like: z.optional(z.string()), - meta_network_name_not_like: z.optional(z.string()), - meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_cumulative_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_cumulative_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_cumulative_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - error_count_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_hash_eq: z.optional(z.string()), + transaction_hash_ne: z.optional(z.string()), + transaction_hash_contains: z.optional(z.string()), + transaction_hash_starts_with: z.optional(z.string()), + transaction_hash_ends_with: z.optional(z.string()), + transaction_hash_like: z.optional(z.string()), + transaction_hash_not_like: z.optional(z.string()), + transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + opcode_eq: z.optional(z.string()), + opcode_ne: z.optional(z.string()), + opcode_contains: z.optional(z.string()), + opcode_starts_with: z.optional(z.string()), + opcode_ends_with: z.optional(z.string()), + opcode_like: z.optional(z.string()), + opcode_not_like: z.optional(z.string()), + opcode_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + opcode_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_eq: z.optional(z.string()), + meta_network_name_ne: z.optional(z.string()), + meta_network_name_contains: z.optional(z.string()), + meta_network_name_starts_with: z.optional(z.string()), + meta_network_name_ends_with: z.optional(z.string()), + meta_network_name_like: z.optional(z.string()), + meta_network_name_not_like: z.optional(z.string()), + meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_cumulative_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_cumulative_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_cumulative_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + error_count_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + error_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + error_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -30191,11 +135096,18 @@ export const zIntTransactionOpcodeGasServiceListData = z.object({ export const zIntTransactionOpcodeGasServiceListResponse = zListIntTransactionOpcodeGasResponse; export const zIntTransactionOpcodeGasServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -30204,101 +135116,550 @@ export const zIntTransactionOpcodeGasServiceGetData = z.object({ export const zIntTransactionOpcodeGasServiceGetResponse = zGetIntTransactionOpcodeGasResponse; export const zIntTransactionReceiptSizeServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_hash_eq: z.optional(z.string()), - transaction_hash_ne: z.optional(z.string()), - transaction_hash_contains: z.optional(z.string()), - transaction_hash_starts_with: z.optional(z.string()), - transaction_hash_ends_with: z.optional(z.string()), - transaction_hash_like: z.optional(z.string()), - transaction_hash_not_like: z.optional(z.string()), - transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_eq: z.optional(z.string()), - meta_network_name_ne: z.optional(z.string()), - meta_network_name_contains: z.optional(z.string()), - meta_network_name_starts_with: z.optional(z.string()), - meta_network_name_ends_with: z.optional(z.string()), - meta_network_name_like: z.optional(z.string()), - meta_network_name_not_like: z.optional(z.string()), - meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - receipt_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - receipt_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - receipt_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_data_bytes_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - log_data_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_data_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_topic_count_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - log_topic_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - log_topic_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_hash_eq: z.optional(z.string()), + transaction_hash_ne: z.optional(z.string()), + transaction_hash_contains: z.optional(z.string()), + transaction_hash_starts_with: z.optional(z.string()), + transaction_hash_ends_with: z.optional(z.string()), + transaction_hash_like: z.optional(z.string()), + transaction_hash_not_like: z.optional(z.string()), + transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_eq: z.optional(z.string()), + meta_network_name_ne: z.optional(z.string()), + meta_network_name_contains: z.optional(z.string()), + meta_network_name_starts_with: z.optional(z.string()), + meta_network_name_ends_with: z.optional(z.string()), + meta_network_name_like: z.optional(z.string()), + meta_network_name_not_like: z.optional(z.string()), + meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + receipt_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + receipt_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + receipt_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_data_bytes_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + log_data_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_data_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_topic_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + log_topic_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + log_topic_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -30307,11 +135668,18 @@ export const zIntTransactionReceiptSizeServiceListData = z.object({ export const zIntTransactionReceiptSizeServiceListResponse = zListIntTransactionReceiptSizeResponse; export const zIntTransactionReceiptSizeServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + }), + query: z.optional(z.never()), }); /** @@ -30320,141 +135688,910 @@ export const zIntTransactionReceiptSizeServiceGetData = z.object({ export const zIntTransactionReceiptSizeServiceGetResponse = zGetIntTransactionReceiptSizeResponse; export const zIntTransactionResourceGasServiceListData = z.object({ - body: z.optional(z.never()), - path: z.optional(z.never()), - query: z.optional(z.object({ - block_number_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_hash_eq: z.optional(z.string()), - transaction_hash_ne: z.optional(z.string()), - transaction_hash_contains: z.optional(z.string()), - transaction_hash_starts_with: z.optional(z.string()), - transaction_hash_ends_with: z.optional(z.string()), - transaction_hash_like: z.optional(z.string()), - transaction_hash_not_like: z.optional(z.string()), - transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_eq: z.optional(z.string()), - meta_network_name_ne: z.optional(z.string()), - meta_network_name_contains: z.optional(z.string()), - meta_network_name_starts_with: z.optional(z.string()), - meta_network_name_ends_with: z.optional(z.string()), - meta_network_name_like: z.optional(z.string()), - meta_network_name_not_like: z.optional(z.string()), - meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - updated_date_time_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_eq: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_ne: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_lte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gt: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_gte: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_min: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_between_max_value: z.optional(z.int().check(z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }))), - transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_compute_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_compute_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_compute_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_memory_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_memory_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_memory_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_address_access_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_address_access_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_address_access_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_state_growth_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_state_growth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_state_growth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_history_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_history_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_history_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_bloom_topics_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_bloom_topics_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_bloom_topics_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_block_size_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_block_size_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_block_size_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_refund_eq: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_ne: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_lt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_lte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_gt: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_gte: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_between_min: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_between_max_value: z.optional(z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' }))), - gas_refund_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_refund_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - page_size: z.optional(z.int().check(z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }))), - page_token: z.optional(z.string()), - order_by: z.optional(z.string()) - })) + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_hash_eq: z.optional(z.string()), + transaction_hash_ne: z.optional(z.string()), + transaction_hash_contains: z.optional(z.string()), + transaction_hash_starts_with: z.optional(z.string()), + transaction_hash_ends_with: z.optional(z.string()), + transaction_hash_like: z.optional(z.string()), + transaction_hash_not_like: z.optional(z.string()), + transaction_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_eq: z.optional(z.string()), + meta_network_name_ne: z.optional(z.string()), + meta_network_name_contains: z.optional(z.string()), + meta_network_name_starts_with: z.optional(z.string()), + meta_network_name_ends_with: z.optional(z.string()), + meta_network_name_like: z.optional(z.string()), + meta_network_name_not_like: z.optional(z.string()), + meta_network_name_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + meta_network_name_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_compute_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_compute_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_compute_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_memory_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_memory_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_memory_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_address_access_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_address_access_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_address_access_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_state_growth_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_state_growth_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_state_growth_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_history_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_history_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_history_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_bloom_topics_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_bloom_topics_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_bloom_topics_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_block_size_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_block_size_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_block_size_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_refund_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_refund_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_refund_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), }); /** @@ -30463,11 +136600,18 @@ export const zIntTransactionResourceGasServiceListData = z.object({ export const zIntTransactionResourceGasServiceListResponse = zListIntTransactionResourceGasResponse; export const zIntTransactionResourceGasServiceGetData = z.object({ - body: z.optional(z.never()), - path: z.object({ - block_number: z.coerce.bigint().check(z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), z.maximum(BigInt('18446744073709551615'), { error: 'Invalid value: Expected uint64 to be <= 18446744073709551615' })) - }), - query: z.optional(z.never()) + body: z.optional(z.never()), + path: z.object({ + block_number: z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ), + }), + query: z.optional(z.never()), }); /** From c6528ea53520c3b13e8600a734757f035e60a24b Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 15:38:03 +1000 Subject: [PATCH 03/24] feat(slots): ePBS payload lifecycle card on slot detail Gloas slots get a Payload card showing the winning builder bid, when sentries first saw the revealed envelope, when payload+blobs verified locally, and the PTC verdict. derivePayloadStatus classifies the slot (payload delivered / late / withheld) from PTC majority with sentry sightings breaking the late-vs-withheld tie; self-builds are detected by builder index == proposer index. Renders nothing before gloas. --- src/pages/ethereum/slots/DetailPage.tsx | 9 ++ .../SlotPayloadCard/SlotPayloadCard.tsx | 103 ++++++++++++++++++ .../SlotPayloadCard/SlotPayloadCard.types.ts | 8 ++ .../slots/components/SlotPayloadCard/index.ts | 2 + .../slots/hooks/useSlotPayloadData/index.ts | 2 + .../useSlotPayloadData/useSlotPayloadData.ts | 84 ++++++++++++++ src/utils/epbs.ts | 88 +++++++++++++++ 7 files changed, 296 insertions(+) create mode 100644 src/pages/ethereum/slots/components/SlotPayloadCard/SlotPayloadCard.tsx create mode 100644 src/pages/ethereum/slots/components/SlotPayloadCard/SlotPayloadCard.types.ts create mode 100644 src/pages/ethereum/slots/components/SlotPayloadCard/index.ts create mode 100644 src/pages/ethereum/slots/hooks/useSlotPayloadData/index.ts create mode 100644 src/pages/ethereum/slots/hooks/useSlotPayloadData/useSlotPayloadData.ts create mode 100644 src/utils/epbs.ts diff --git a/src/pages/ethereum/slots/DetailPage.tsx b/src/pages/ethereum/slots/DetailPage.tsx index aa446cc2d..967104bb0 100644 --- a/src/pages/ethereum/slots/DetailPage.tsx +++ b/src/pages/ethereum/slots/DetailPage.tsx @@ -29,6 +29,7 @@ import { import { useSlotDetailData } from './hooks/useSlotDetailData'; import { useAllAttestationVotes } from './hooks/useAllAttestationVotes'; import { SlotBasicInfoCard } from './components/SlotBasicInfoCard'; +import { SlotPayloadCard } from './components/SlotPayloadCard'; import { SlotDownloadModal } from './components/SlotDownloadModal'; import { AttestationArrivalsChart } from './components/AttestationArrivalsChart'; import { AttestationVotesBreakdownTable } from './components/AttestationVotesBreakdownTable'; @@ -433,6 +434,14 @@ export function DetailPage(): JSX.Element { +
+ +
+ {/* Tabbed Content */}
diff --git a/src/pages/ethereum/slots/components/SlotPayloadCard/SlotPayloadCard.tsx b/src/pages/ethereum/slots/components/SlotPayloadCard/SlotPayloadCard.tsx new file mode 100644 index 000000000..02a1e7c05 --- /dev/null +++ b/src/pages/ethereum/slots/components/SlotPayloadCard/SlotPayloadCard.tsx @@ -0,0 +1,103 @@ +import type { JSX } from 'react'; +import { PopoutCard } from '@/components/Layout/PopoutCard'; +import { MiniStat } from '@/components/DataDisplay/MiniStat'; +import { Badge } from '@/components/Elements/Badge'; +import { useNetwork } from '@/hooks/useNetwork'; +import { getForkForSlot, isForkAtOrAfter } from '@/utils/beacon'; +import { derivePayloadStatus, isSelfBuiltPayload, formatWeiAsEth, type PayloadStatus } from '@/utils/epbs'; +import { useSlotPayloadData } from '../../hooks/useSlotPayloadData'; +import type { SlotPayloadCardProps } from './SlotPayloadCard.types'; + +const STATUS_LABELS: Record = { + payload_present: 'Payload delivered', + payload_late: 'Payload late', + payload_withheld: 'Payload withheld', + pending: 'Awaiting data', +}; + +const STATUS_COLORS: Record = { + payload_present: 'green', + payload_late: 'yellow', + payload_withheld: 'red', + pending: 'gray', +}; + +/** + * SlotPayloadCard - The gloas (ePBS) payload lifecycle for a slot. + * + * Shows the winning builder bid committed in the block, when sentries first + * saw the revealed payload envelope, when it became fully available, and the + * Payload Timeliness Committee's verdict. Renders nothing before gloas. + */ +export function SlotPayloadCard({ slot, proposerIndex, hasBlock }: SlotPayloadCardProps): JSX.Element | null { + const { currentNetwork } = useNetwork(); + const fork = getForkForSlot(slot, currentNetwork); + const isGloas = isForkAtOrAfter(fork, 'gloas'); + + const { data, isLoading } = useSlotPayloadData(slot, isGloas); + + if (!isGloas) { + return null; + } + + const { bid, payloadFirstSeen, payloadAvailable, ptcVote } = data; + const { status, firstSeenMs, seenByNodes, presentVotes, ptcVotesSeen } = derivePayloadStatus({ + hasBlock, + payloadFirstSeen, + ptcVote, + }); + + const selfBuilt = isSelfBuiltPayload(bid, proposerIndex); + const bidEth = formatWeiAsEth(bid?.value); + const firstAvailableMs = + payloadAvailable.length > 0 + ? Math.min(...payloadAvailable.map(node => node.available_slot_start_diff ?? Number.POSITIVE_INFINITY)) + : undefined; + const presentPercentage = ptcVotesSeen > 0 ? (presentVotes / ptcVotesSeen) * 100 : undefined; + const blobVotes = ptcVote?.blob_data_available_votes; + + return ( + + {() => ( +
+
+ + {STATUS_LABELS[isLoading ? 'pending' : status]} + + {selfBuilt && Self-built} + {bid && !selfBuilt && Builder #{bid.builder_index}} +
+
+ + 0 ? `${seenByNodes} nodes` : undefined} + /> + 0 ? `${payloadAvailable.length} nodes` : undefined} + /> + 0 ? presentVotes.toLocaleString() : '—'} + secondaryText={ + ptcVotesSeen > 0 + ? `/ ${ptcVotesSeen.toLocaleString()} seen${blobVotes !== undefined ? `, ${blobVotes.toLocaleString()} blob-available` : ''}` + : undefined + } + percentage={presentPercentage} + /> +
+
+ )} +
+ ); +} diff --git a/src/pages/ethereum/slots/components/SlotPayloadCard/SlotPayloadCard.types.ts b/src/pages/ethereum/slots/components/SlotPayloadCard/SlotPayloadCard.types.ts new file mode 100644 index 000000000..af4da7363 --- /dev/null +++ b/src/pages/ethereum/slots/components/SlotPayloadCard/SlotPayloadCard.types.ts @@ -0,0 +1,8 @@ +export interface SlotPayloadCardProps { + /** Slot number being displayed */ + slot: number; + /** Proposer validator index for the slot, used to detect self-built payloads */ + proposerIndex?: number; + /** Whether a beacon block exists for the slot */ + hasBlock: boolean; +} diff --git a/src/pages/ethereum/slots/components/SlotPayloadCard/index.ts b/src/pages/ethereum/slots/components/SlotPayloadCard/index.ts new file mode 100644 index 000000000..4db7aa4ac --- /dev/null +++ b/src/pages/ethereum/slots/components/SlotPayloadCard/index.ts @@ -0,0 +1,2 @@ +export { SlotPayloadCard } from './SlotPayloadCard'; +export type { SlotPayloadCardProps } from './SlotPayloadCard.types'; diff --git a/src/pages/ethereum/slots/hooks/useSlotPayloadData/index.ts b/src/pages/ethereum/slots/hooks/useSlotPayloadData/index.ts new file mode 100644 index 000000000..29f040897 --- /dev/null +++ b/src/pages/ethereum/slots/hooks/useSlotPayloadData/index.ts @@ -0,0 +1,2 @@ +export { useSlotPayloadData } from './useSlotPayloadData'; +export type { SlotPayloadData, UseSlotPayloadDataResult } from './useSlotPayloadData'; diff --git a/src/pages/ethereum/slots/hooks/useSlotPayloadData/useSlotPayloadData.ts b/src/pages/ethereum/slots/hooks/useSlotPayloadData/useSlotPayloadData.ts new file mode 100644 index 000000000..a4baf0932 --- /dev/null +++ b/src/pages/ethereum/slots/hooks/useSlotPayloadData/useSlotPayloadData.ts @@ -0,0 +1,84 @@ +import { useQueries } from '@tanstack/react-query'; +import { + fctBlockPayloadBidServiceListOptions, + fctBlockPayloadFirstSeenByNodeServiceListOptions, + fctBlockPayloadPtcVoteHeadServiceListOptions, + fctBlockPayloadAvailableByNodeServiceListOptions, +} from '@/api/@tanstack/react-query.gen'; +import type { + FctBlockPayloadBid, + FctBlockPayloadFirstSeenByNode, + FctBlockPayloadPtcVoteHead, + FctBlockPayloadAvailableByNode, +} from '@/api/types.gen'; +import { useNetwork } from '@/hooks/useNetwork'; +import { slotToTimestamp } from '@/utils/beacon'; + +export interface SlotPayloadData { + /** Winning bid committed in the canonical block (available after finalization pipeline) */ + bid?: FctBlockPayloadBid; + /** Payload envelope sightings per sentry node */ + payloadFirstSeen: FctBlockPayloadFirstSeenByNode[]; + /** Payload + blobs verified locally per sentry node */ + payloadAvailable: FctBlockPayloadAvailableByNode[]; + /** PTC votes observed on the live event stream */ + ptcVote?: FctBlockPayloadPtcVoteHead; +} + +export interface UseSlotPayloadDataResult { + data: SlotPayloadData; + isLoading: boolean; +} + +/** + * Fetch the gloas (ePBS) payload lifecycle data for a slot: the winning bid, + * envelope propagation across sentries, local availability, and PTC votes. + * Callers should gate usage on the slot's fork being gloas or later. + */ +export function useSlotPayloadData(slot: number, enabled = true): UseSlotPayloadDataResult { + const { currentNetwork } = useNetwork(); + + const slotTimestamp = currentNetwork ? slotToTimestamp(slot, currentNetwork.genesis_time) : 0; + const queryEnabled = enabled && !!currentNetwork && slotTimestamp > 0; + + const queries = useQueries({ + queries: [ + { + ...fctBlockPayloadBidServiceListOptions({ + query: { slot_start_date_time_eq: slotTimestamp }, + }), + enabled: queryEnabled, + }, + { + ...fctBlockPayloadFirstSeenByNodeServiceListOptions({ + query: { slot_start_date_time_eq: slotTimestamp, page_size: 10000 }, + }), + enabled: queryEnabled, + }, + { + ...fctBlockPayloadAvailableByNodeServiceListOptions({ + query: { slot_start_date_time_eq: slotTimestamp, page_size: 10000 }, + }), + enabled: queryEnabled, + }, + { + ...fctBlockPayloadPtcVoteHeadServiceListOptions({ + query: { slot_start_date_time_eq: slotTimestamp }, + }), + enabled: queryEnabled, + }, + ], + }); + + const [bidQuery, firstSeenQuery, availableQuery, ptcVoteQuery] = queries; + + return { + data: { + bid: bidQuery.data?.fct_block_payload_bid?.[0], + payloadFirstSeen: firstSeenQuery.data?.fct_block_payload_first_seen_by_node ?? [], + payloadAvailable: availableQuery.data?.fct_block_payload_available_by_node ?? [], + ptcVote: ptcVoteQuery.data?.fct_block_payload_ptc_vote_head?.[0], + }, + isLoading: queryEnabled && queries.some(query => query.isLoading), + }; +} diff --git a/src/utils/epbs.ts b/src/utils/epbs.ts new file mode 100644 index 000000000..2ce194154 --- /dev/null +++ b/src/utils/epbs.ts @@ -0,0 +1,88 @@ +import type { FctBlockPayloadBid, FctBlockPayloadFirstSeenByNode, FctBlockPayloadPtcVoteHead } from '@/api/types.gen'; + +/** + * The lifecycle outcome of a gloas (ePBS) slot's execution payload. + * + * - `payload_present`: the PTC saw the payload in time (majority present votes) + * - `payload_late`: sentries saw the payload but the PTC majority voted absent + * - `payload_withheld`: the block exists but no payload was ever observed + * - `pending`: not enough data yet to judge (live slots, ingestion lag) + */ +export type PayloadStatus = 'payload_present' | 'payload_late' | 'payload_withheld' | 'pending'; + +export interface PayloadStatusInput { + /** Whether a beacon block exists for the slot */ + hasBlock: boolean; + /** Payload envelope sightings across sentry nodes */ + payloadFirstSeen: FctBlockPayloadFirstSeenByNode[]; + /** PTC votes observed on the live event stream */ + ptcVote?: FctBlockPayloadPtcVoteHead; +} + +export interface PayloadStatusResult { + status: PayloadStatus; + /** Earliest time any sentry saw the payload, ms from slot start */ + firstSeenMs?: number; + /** Number of sentries that saw the payload */ + seenByNodes: number; + /** PTC validators voting payload present */ + presentVotes: number; + /** PTC validators observed voting */ + ptcVotesSeen: number; +} + +/** + * Derive the payload outcome for a gloas slot from observed facts. The PTC + * verdict is authoritative when we have votes; sentry sightings break the tie + * between late and withheld. + */ +export function derivePayloadStatus({ hasBlock, payloadFirstSeen, ptcVote }: PayloadStatusInput): PayloadStatusResult { + const seenByNodes = payloadFirstSeen.length; + const firstSeenMs = + seenByNodes > 0 + ? Math.min(...payloadFirstSeen.map(node => node.seen_slot_start_diff ?? Number.POSITIVE_INFINITY)) + : undefined; + const presentVotes = ptcVote?.payload_present_votes ?? 0; + const ptcVotesSeen = ptcVote?.ptc_validators_seen ?? 0; + + let status: PayloadStatus = 'pending'; + + if (hasBlock && ptcVotesSeen > 0) { + const majorityPresent = presentVotes * 2 >= ptcVotesSeen; + + if (majorityPresent) { + status = 'payload_present'; + } else if (seenByNodes > 0) { + status = 'payload_late'; + } else { + status = 'payload_withheld'; + } + } else if (hasBlock && seenByNodes > 0) { + status = 'payload_present'; + } + + return { status, firstSeenMs, seenByNodes, presentVotes, ptcVotesSeen }; +} + +/** + * True when the winning bid was produced by the proposer itself (self-build). + */ +export function isSelfBuiltPayload(bid: FctBlockPayloadBid | undefined, proposerIndex: number | undefined): boolean { + return bid?.builder_index !== undefined && proposerIndex !== undefined && bid.builder_index === proposerIndex; +} + +/** + * Format a wei string as ETH for display, trimming to a sensible precision. + */ +export function formatWeiAsEth(wei: string | undefined): string | undefined { + if (!wei) { + return undefined; + } + + const asNumber = Number(wei) / 1e18; + if (!Number.isFinite(asNumber)) { + return undefined; + } + + return asNumber >= 1 ? asNumber.toFixed(4) : asNumber.toPrecision(3); +} From 6c76be5118d51a3df7ebfe73c2783e844ed23cc1 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 16:08:45 +1000 Subject: [PATCH 04/24] feat(slots): move ePBS payload lifecycle into its own tab with the bid race MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The payload card sat above the tab strip on every gloas slot, crowding the page. Gloas slots now get a dedicated Payload tab (hidden pre-gloas) holding the lifecycle summary and a Builder Bid Race chart — the fct_payload_bid_highest_value_by_builder_chunked_50ms series rendered through MevBiddingTimelineChart, whose title, anchor and y-axis label are now props so it serves both the relay-era and ePBS auctions. --- src/pages/ethereum/slots/DetailPage.tsx | 46 +++++++++++++++---- .../MevBiddingTimelineChart.tsx | 9 ++-- .../MevBiddingTimelineChart.types.ts | 15 ++++++ .../useSlotPayloadData/useSlotPayloadData.ts | 13 +++++- src/routes/ethereum/slots/$slot.tsx | 13 +++++- 5 files changed, 82 insertions(+), 14 deletions(-) diff --git a/src/pages/ethereum/slots/DetailPage.tsx b/src/pages/ethereum/slots/DetailPage.tsx index 967104bb0..167924950 100644 --- a/src/pages/ethereum/slots/DetailPage.tsx +++ b/src/pages/ethereum/slots/DetailPage.tsx @@ -16,7 +16,7 @@ import { Card } from '@/components/Layout/Card'; import { Tab } from '@/components/Navigation/Tab'; import { ScrollableTabs } from '@/components/Navigation/ScrollableTabs'; import { Button } from '@/components/Elements/Button'; -import { SLOTS_PER_EPOCH, slotToTimestamp } from '@/utils/beacon'; +import { SLOTS_PER_EPOCH, slotToTimestamp, getForkForSlot, isForkAtOrAfter } from '@/utils/beacon'; import { formatEpoch } from '@/utils'; import { useNetworkChangeRedirect } from '@/hooks/useNetworkChangeRedirect'; import { useTabState } from '@/hooks/useTabState'; @@ -27,6 +27,7 @@ import { fctBlockBlobHeadServiceListOptions, } from '@/api/@tanstack/react-query.gen'; import { useSlotDetailData } from './hooks/useSlotDetailData'; +import { useSlotPayloadData } from './hooks/useSlotPayloadData'; import { useAllAttestationVotes } from './hooks/useAllAttestationVotes'; import { SlotBasicInfoCard } from './components/SlotBasicInfoCard'; import { SlotPayloadCard } from './components/SlotPayloadCard'; @@ -92,6 +93,16 @@ export function DetailPage(): JSX.Element { // Get current network const { currentNetwork } = useNetwork(); + // Gloas (ePBS) slots get a dedicated Payload tab + const isGloas = isForkAtOrAfter(getForkForSlot(slot, currentNetwork), 'gloas'); + const { data: payloadData } = useSlotPayloadData(slot, isGloas); + const payloadBidRaceData = payloadData.bidRace.map(bid => ({ + chunk_slot_start_diff: bid.chunk_slot_start_diff ?? 0, + value: bid.value ?? '0', + builder_pubkey: `builder-${bid.builder_index ?? 'unknown'}`, + block_hash: bid.block_hash, + })); + // Download modal (beacon block + blob sidecars) const [downloadOpen, setDownloadOpen] = useState(false); @@ -168,6 +179,7 @@ export function DetailPage(): JSX.Element { { id: 'attestations', anchors: ['missed-attestations'] }, { id: 'propagation' }, { id: 'blobs' }, + ...(isGloas ? [{ id: 'payload' }] : []), { id: 'execution' }, { id: 'mev' }, { id: 'resources' }, @@ -434,14 +446,6 @@ export function DetailPage(): JSX.Element { -
- -
- {/* Tabbed Content */}
@@ -452,6 +456,7 @@ export function DetailPage(): JSX.Element { Attestations Propagation Blobs + {isGloas && Payload} Execution MEV Node Resources @@ -1095,6 +1100,29 @@ export function DetailPage(): JSX.Element {
+ {/* Payload Tab - Gloas (ePBS) payload lifecycle, only rendered post-gloas */} + {isGloas && ( + +
+ + {payloadBidRaceData.length > 0 && ( + + )} +
+
+ )} + {/* Execution Tab - Comprehensive execution layer data */}
diff --git a/src/pages/ethereum/slots/components/MevBiddingTimelineChart/MevBiddingTimelineChart.tsx b/src/pages/ethereum/slots/components/MevBiddingTimelineChart/MevBiddingTimelineChart.tsx index bb1b130a1..0e65d054e 100644 --- a/src/pages/ethereum/slots/components/MevBiddingTimelineChart/MevBiddingTimelineChart.tsx +++ b/src/pages/ethereum/slots/components/MevBiddingTimelineChart/MevBiddingTimelineChart.tsx @@ -61,6 +61,9 @@ export function MevBiddingTimelineChart({ biddingData, winningMevValue, winningBuilder, + title = 'MEV Bidding Timeline', + anchorId = 'mev-bidding-timeline', + yAxisTitle = 'MEV Value (ETH)', }: MevBiddingTimelineChartProps): JSX.Element { const themeColors = useThemeColors(); @@ -214,7 +217,7 @@ export function MevBiddingTimelineChart({ // Handle empty data if (biddingData.length === 0) { return ( - + {({ inModal }) => (
+ {({ inModal }) => (
query.isLoading), }; diff --git a/src/routes/ethereum/slots/$slot.tsx b/src/routes/ethereum/slots/$slot.tsx index 0c644f83c..475ed9b3c 100644 --- a/src/routes/ethereum/slots/$slot.tsx +++ b/src/routes/ethereum/slots/$slot.tsx @@ -4,7 +4,18 @@ import { DetailPage } from '@/pages/ethereum/slots'; const slotSearchSchema = z.object({ tab: z - .enum(['overview', 'timeline', 'block', 'attestations', 'propagation', 'blobs', 'execution', 'mev', 'resources']) + .enum([ + 'overview', + 'timeline', + 'block', + 'attestations', + 'propagation', + 'blobs', + 'payload', + 'execution', + 'mev', + 'resources', + ]) .default('overview'), contributor: z.string().optional(), node: z.string().optional(), From 3c74d00bc79ad804dda8f8bf922561d9f1069598 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 16:24:24 +1000 Subject: [PATCH 05/24] feat(live): ePBS payload and bid race in the slot HUD MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On gloas networks the HUD swaps its relay-era MEV and Auction sections for the payload lifecycle: the Auction lane streams the on-chain builder bid race (bid count, distinct builders, best bid, first-bid time — negative when bids beat the slot start), and a Payload section shows envelope reveal timing across sentries, the revealing builder, and PTC votes with a delivered/late/withheld chip driven by derivePayloadStatus. Payload rows fade in as the replay clock crosses the envelope arrival; auction data shows immediately since bidding precedes the slot. --- .../live/components/SlotHud/SlotHud.tsx | 110 +++++++++++++++--- .../live/components/SlotHud/SlotHud.types.ts | 4 +- .../SlotViewLayout/SlotViewLayout.tsx | 1 + .../hooks/useSlotViewData/useSlotViewData.ts | 103 ++++++++++++++++ .../useSlotViewData/useSlotViewData.types.ts | 20 ++++ 5 files changed, 218 insertions(+), 20 deletions(-) diff --git a/src/pages/ethereum/live/components/SlotHud/SlotHud.tsx b/src/pages/ethereum/live/components/SlotHud/SlotHud.tsx index de95f7076..7b7b400a5 100644 --- a/src/pages/ethereum/live/components/SlotHud/SlotHud.tsx +++ b/src/pages/ethereum/live/components/SlotHud/SlotHud.tsx @@ -2,6 +2,7 @@ import { type JSX, type ReactNode } from 'react'; import clsx from 'clsx'; import { ClientLogo } from '@/components/Ethereum/ClientLogo'; import { weiToEth, weiToGwei } from '@/utils'; +import type { PayloadStatus } from '@/utils/epbs'; import type { SlotHudProps } from './SlotHud.types'; const MAX_CLIENTS = 6; @@ -52,6 +53,13 @@ const STATUS_META: Record = { missed: { label: 'Missed', cls: 'border-danger/40 bg-danger/10 text-danger' }, }; +const PAYLOAD_STATUS_META: Record = { + payload_present: { label: 'Delivered', cls: 'border-success/40 bg-success/10 text-success' }, + payload_late: { label: 'Late', cls: 'border-warning/40 bg-warning/10 text-warning' }, + payload_withheld: { label: 'Withheld', cls: 'border-danger/40 bg-danger/10 text-danger' }, + pending: { label: 'Pending', cls: 'border-border bg-surface text-muted' }, +}; + /** Fades content in once its data is active on the slot replay timeline. */ function Fade({ active, @@ -134,6 +142,7 @@ export function SlotHud({ auctionBids, auctionTopRelay, auctionTopBidWei, + epbs, blobCount, dataColumnBlobCount, className, @@ -149,6 +158,10 @@ export function SlotHud({ const baseGwei = gweiOrNull(bd?.baseFeePerGas); const mevEth = formatEth(bd?.mevValue); const topBidEth = formatEth(auctionTopBidWei); + const epbsTopBidEth = formatEth(epbs?.topBidWei); + // Reveal the payload columns as the live clock crosses the envelope arrival. + const payloadActive = epbs?.payloadFirstSeenMs != null && currentTime >= epbs.payloadFirstSeenMs; + const payloadStatusMeta = epbs ? PAYLOAD_STATUS_META[epbs.status] : null; const blobs = dataColumnBlobCount || blobCount; const statusMeta = bd?.status ? STATUS_META[bd.status] : null; const blockType = bd ? (mevEth ? 'mev-boost' : 'self-built') : null; @@ -204,26 +217,85 @@ export function SlotHud({ - {/* MEV outcome */} -
- - - - - - -
+ {/* Payload lifecycle (gloas) or relay-era MEV outcome */} + {epbs ? ( +
0} className="ml-auto"> + + {payloadStatusMeta.label} + + + ) : undefined + } + > + + + + + + 0 ? `${epbs.ptcPresentVotes}/${epbs.ptcVotesSeen}` : '—'} + tone={ + epbs.ptcVotesSeen > 0 && epbs.ptcPresentVotes * 2 >= epbs.ptcVotesSeen + ? 'text-success' + : 'text-foreground' + } + /> + +
+ ) : ( +
+ + + + + + +
+ )} - {/* MEV auction depth (populated even when self-built) */} -
- - - - n.toLocaleString())} /> - - - -
+ {/* Auction depth: on-chain builder bids (gloas) or relay bids */} + {epbs ? ( +
+
+ + n.toLocaleString())} /> + + +
+
+ ) : ( +
+ + + + n.toLocaleString())} /> + + + +
+ )} {/* Execution payload */}
diff --git a/src/pages/ethereum/live/components/SlotHud/SlotHud.types.ts b/src/pages/ethereum/live/components/SlotHud/SlotHud.types.ts index 7c152d181..a6d9fa343 100644 --- a/src/pages/ethereum/live/components/SlotHud/SlotHud.types.ts +++ b/src/pages/ethereum/live/components/SlotHud/SlotHud.types.ts @@ -1,4 +1,4 @@ -import type { ClientValidationRow } from '../../hooks/useSlotViewData/useSlotViewData.types'; +import type { ClientValidationRow, EpbsSlotData } from '../../hooks/useSlotViewData/useSlotViewData.types'; import type { BlockDetailsData } from '../../hooks/useBlockDetailsData/useBlockDetailsData.types'; export interface SlotHudProps { @@ -26,6 +26,8 @@ export interface SlotHudProps { auctionBids: number; auctionTopRelay: string | null; auctionTopBidWei: string | null; + /** Gloas (ePBS) payload lifecycle; null pre-gloas keeps the relay-era layout. */ + epbs: EpbsSlotData | null; /** Blob counts (PeerDAS columns + legacy blob count). */ blobCount: number; dataColumnBlobCount: number; diff --git a/src/pages/ethereum/live/components/SlotViewLayout/SlotViewLayout.tsx b/src/pages/ethereum/live/components/SlotViewLayout/SlotViewLayout.tsx index ed7c03edc..860e05738 100644 --- a/src/pages/ethereum/live/components/SlotViewLayout/SlotViewLayout.tsx +++ b/src/pages/ethereum/live/components/SlotViewLayout/SlotViewLayout.tsx @@ -441,6 +441,7 @@ export function SlotViewLayout({ mode }: SlotViewLayoutProps): JSX.Element { auctionBids={slotData.auctionBids} auctionTopRelay={slotData.auctionTopRelay} auctionTopBidWei={slotData.auctionTopBidWei} + epbs={slotData.epbs} blobCount={slotData.blobCount} dataColumnBlobCount={slotData.dataColumnBlobCount} /> diff --git a/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts b/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts index d62b4ca09..600498754 100644 --- a/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts +++ b/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts @@ -15,7 +15,12 @@ import { fctMevBidHighestValueByBuilderChunked50MsServiceListOptions, fctMevBidCountByRelayServiceListOptions, fctEngineNewPayloadByElClientServiceListOptions, + fctBlockPayloadFirstSeenByNodeServiceListOptions, + fctBlockPayloadPtcVoteHeadServiceListOptions, + fctPayloadBidHighestValueByBuilderChunked50MsServiceListOptions, } from '@/api/@tanstack/react-query.gen'; +import { getForkForSlot, isForkAtOrAfter } from '@/utils/beacon'; +import { derivePayloadStatus } from '@/utils/epbs'; import { EIP7870_REFERENCE_TAG } from '@/constants'; import { slotToTimestamp } from '../../utils'; import { useBlockDetailsData } from '../useBlockDetailsData'; @@ -48,6 +53,9 @@ const SLOT_QUERY_OPTIONS = { export function useSlotViewData(currentSlot: number): SlotViewData { const { currentNetwork } = useNetwork(); + // Gloas (ePBS): the payload lifecycle queries only exist post-gloas. + const isGloas = isForkAtOrAfter(getForkForSlot(currentSlot, currentNetwork), 'gloas'); + // Convert slot to timestamp for API calls const slotStartDateTime = useMemo(() => { if (!currentNetwork || currentSlot === 0) return 0; @@ -211,6 +219,41 @@ export function useSlotViewData(currentSlot: number): SlotViewData { ...SLOT_QUERY_OPTIONS, }); + // API Query 12 (gloas): payload envelope first seen per sentry + const payloadFirstSeenQuery = useQuery({ + ...fctBlockPayloadFirstSeenByNodeServiceListOptions({ + query: { + slot_start_date_time_eq: slotStartDateTime, + page_size: 10000, + }, + }), + enabled: slotStartDateTime > 0 && isGloas, + ...SLOT_QUERY_OPTIONS, + }); + + // API Query 13 (gloas): PTC votes for the slot's block + const ptcVoteQuery = useQuery({ + ...fctBlockPayloadPtcVoteHeadServiceListOptions({ + query: { + slot_start_date_time_eq: slotStartDateTime, + }, + }), + enabled: slotStartDateTime > 0 && isGloas, + ...SLOT_QUERY_OPTIONS, + }); + + // API Query 14 (gloas): the on-chain builder bid race + const payloadBidsQuery = useQuery({ + ...fctPayloadBidHighestValueByBuilderChunked50MsServiceListOptions({ + query: { + slot_start_date_time_eq: slotStartDateTime, + page_size: 10000, + }, + }), + enabled: slotStartDateTime > 0 && isGloas, + ...SLOT_QUERY_OPTIONS, + }); + // Aggregate loading state (critical queries only) // If slotStartDateTime is 0, queries are disabled but we should still show loading const isLoading = @@ -428,6 +471,64 @@ export function useSlotViewData(currentSlot: number): SlotViewData { const proposerEntity = proposerEntityQuery.data?.fct_block_proposer_entity?.[0]?.entity ?? null; + // Gloas (ePBS): the payload lifecycle — bid race depth, envelope propagation, + // and the PTC verdict. Null pre-gloas so the HUD keeps its relay-era layout. + const epbs = useMemo(() => { + if (!isGloas) return null; + + const seenRows = payloadFirstSeenQuery.data?.fct_block_payload_first_seen_by_node ?? []; + const ptcVote = ptcVoteQuery.data?.fct_block_payload_ptc_vote_head?.[0]; + const bidRows = payloadBidsQuery.data?.fct_payload_bid_highest_value_by_builder_chunked_50ms ?? []; + + const seenDiffs = seenRows + .map(node => node.seen_slot_start_diff) + .filter((d): d is number => typeof d === 'number') + .sort((a, b) => a - b); + + let topBidWei: string | null = null; + let topBidValue = -1n; + let firstBidMs: number | null = null; + for (const bid of bidRows) { + if ( + typeof bid.chunk_slot_start_diff === 'number' && + (firstBidMs === null || bid.chunk_slot_start_diff < firstBidMs) + ) { + firstBidMs = bid.chunk_slot_start_diff; + } + if (!bid.value) continue; + try { + const value = BigInt(bid.value); + if (value > topBidValue) { + topBidValue = value; + topBidWei = bid.value; + } + } catch { + // ignore malformed bid values + } + } + + const { status, presentVotes, ptcVotesSeen } = derivePayloadStatus({ + hasBlock: !!blockHeadQuery.data?.fct_block_head?.[0], + payloadFirstSeen: seenRows, + ptcVote, + }); + + return { + payloadFirstSeenMs: seenDiffs[0] ?? null, + payloadP50Ms: seenDiffs.length > 0 ? seenDiffs[Math.floor(0.5 * (seenDiffs.length - 1))] : null, + payloadNodeCount: seenDiffs.length, + builderIndex: seenRows[0]?.builder_index ?? null, + ptcPresentVotes: presentVotes, + ptcVotesSeen, + ptcBlobVotes: ptcVote?.blob_data_available_votes ?? 0, + status, + bidBuilders: new Set(bidRows.map(bid => bid.builder_index).filter(index => index !== undefined)).size, + bidCount: bidRows.length, + topBidWei, + firstBidMs, + }; + }, [isGloas, payloadFirstSeenQuery.data, ptcVoteQuery.data, payloadBidsQuery.data, blockHeadQuery.data]); + // Prepare raw API data for slot progress timeline const rawApiData = useMemo( () => ({ @@ -455,6 +556,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { return useMemo( () => ({ blockDetails, + epbs, mapPoints, sidebarPhases, sidebarItems, @@ -484,6 +586,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }), [ blockDetails, + epbs, mapPoints, sidebarPhases, sidebarItems, diff --git a/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.types.ts b/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.types.ts index 3fed83632..8d1a2243b 100644 --- a/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.types.ts +++ b/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.types.ts @@ -8,6 +8,7 @@ import type { ContinentalPropagationSeries, } from '../../components/BlobDataAvailability/BlobDataAvailability.types'; import type { AttestationDataPoint } from '../../components/AttestationArrivals/AttestationArrivals.types'; +import type { PayloadStatus } from '@/utils/epbs'; import type { FctBlockHead, FctBlockProposer, @@ -29,10 +30,29 @@ export interface ClientValidationRow { observations: number; } +/** Gloas (ePBS) payload lifecycle data for the HUD; null pre-gloas. */ +export interface EpbsSlotData { + payloadFirstSeenMs: number | null; + payloadP50Ms: number | null; + payloadNodeCount: number; + builderIndex: number | null; + ptcPresentVotes: number; + ptcVotesSeen: number; + ptcBlobVotes: number; + status: PayloadStatus; + bidBuilders: number; + bidCount: number; + topBidWei: string | null; + firstBidMs: number | null; +} + export interface SlotViewData { // Block details (for slim card) blockDetails: BlockDetailsData | null; + // Gloas (ePBS) payload lifecycle; null pre-gloas + epbs: EpbsSlotData | null; + // Map visualization - includes timing information for progressive rendering mapPoints: MapPointWithTiming[]; From 8143186332c96f9f38149127efb942d03c8581bd Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 16:45:11 +1000 Subject: [PATCH 06/24] fix(live): clamp playhead to bounds intersection and poll near-head slots MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The playhead derived maxSlot from maxOfMaxes, so the fastest-moving table could drag playback into slots the slower tables had no data for. Use minOfMaxes — the newest slot every table has landed. Per-slot queries also fetched once at slot start and cached for 60s, baking whatever partial state the pipeline had (one node on the map, a lone attestation chunk) into the whole replay. Slots younger than 48s now poll every 5s until settled, then keep the cache-forever behaviour. --- .../hooks/useSlotViewData/useSlotViewData.ts | 55 +++++++++++++------ .../SlotPlayerProvider/SlotPlayerProvider.tsx | 9 ++- 2 files changed, 43 insertions(+), 21 deletions(-) diff --git a/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts b/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts index 600498754..33a1551d0 100644 --- a/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts +++ b/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts @@ -37,8 +37,8 @@ const EMPTY_BLOB_FIRST_SEEN: never[] = []; const EMPTY_DATA_COLUMN_FIRST_SEEN: never[] = []; const EMPTY_ATTESTATION: never[] = []; -// Shared options for the per-slot queries. A given slot's data is essentially -// settled once seen, so cache it and skip the window-focus refetch storm that +// Shared options for the per-slot queries. A settled slot's data never +// changes, so cache it and skip the window-focus refetch storm that // otherwise churns these arrays and flickers the live visualizations. const SLOT_QUERY_OPTIONS = { staleTime: 60_000, @@ -50,6 +50,25 @@ const SLOT_QUERY_OPTIONS = { }, }; +// A slot near the head of the chain is still filling in: the pipeline lands +// events for it over the following seconds, and a one-shot fetch at slot +// start bakes a partial view (e.g. one node on the map) into the cache. +// Poll such slots until they are comfortably settled, then fall back to the +// cache-forever behaviour above. +const NEAR_HEAD_WINDOW_S = 48; + +function slotQueryOptions( + slotStartDateTime: number +): typeof SLOT_QUERY_OPTIONS & { refetchInterval: () => number | false } { + const nearHead = (): boolean => Date.now() / 1000 - slotStartDateTime < NEAR_HEAD_WINDOW_S; + + return { + ...SLOT_QUERY_OPTIONS, + staleTime: nearHead() ? 4_000 : SLOT_QUERY_OPTIONS.staleTime, + refetchInterval: () => (nearHead() ? 5_000 : false), + }; +} + export function useSlotViewData(currentSlot: number): SlotViewData { const { currentNetwork } = useNetwork(); @@ -71,7 +90,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 2: Block Proposer @@ -83,7 +102,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 2b: Proposer Entity (named staker, when known) @@ -95,7 +114,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 3: Block MEV (head table — the canonical fct_block_mev lags and is @@ -108,7 +127,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 4: Blob Count (using _head table for live data) @@ -120,7 +139,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 5: Block First Seen by Node (List) @@ -132,7 +151,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 6: Blob First Seen by Node (List) @@ -144,7 +163,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 6b: Data Column Sidecar First Seen (aggregated per column, not per node) @@ -156,7 +175,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 7: Attestation Chunked 50ms (List) @@ -168,7 +187,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 8: Beacon Committee (List) - for total expected validators @@ -180,7 +199,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 9: MEV Bidding Timeline (chunked 50ms) @@ -192,7 +211,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 10: MEV Bid Count by Relay @@ -203,7 +222,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 11: Engine newPayload validation timing per EL client @@ -216,7 +235,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 12 (gloas): payload envelope first seen per sentry @@ -228,7 +247,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0 && isGloas, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 13 (gloas): PTC votes for the slot's block @@ -239,7 +258,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0 && isGloas, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // API Query 14 (gloas): the on-chain builder bid race @@ -251,7 +270,7 @@ export function useSlotViewData(currentSlot: number): SlotViewData { }, }), enabled: slotStartDateTime > 0 && isGloas, - ...SLOT_QUERY_OPTIONS, + ...slotQueryOptions(slotStartDateTime), }); // Aggregate loading state (critical queries only) diff --git a/src/providers/SlotPlayerProvider/SlotPlayerProvider.tsx b/src/providers/SlotPlayerProvider/SlotPlayerProvider.tsx index b20e8e255..a6ef231ca 100644 --- a/src/providers/SlotPlayerProvider/SlotPlayerProvider.tsx +++ b/src/providers/SlotPlayerProvider/SlotPlayerProvider.tsx @@ -362,10 +362,13 @@ export function SlotPlayerProvider({ }, [boundsData, currentNetwork]); const maxSlot = useMemo(() => { - if (!boundsData?.aggregate?.maxOfMaxes || !currentNetwork) return 0; - const calculated = Math.floor((boundsData.aggregate.maxOfMaxes - currentNetwork.genesis_time) / SECONDS_PER_SLOT); + // minOfMaxes is the intersection: the newest slot EVERY table has data + // for. maxOfMaxes would let the fastest-moving table drag the playhead + // into slots the slower tables haven't landed yet, freezing empty panels. + if (!boundsData?.aggregate?.minOfMaxes || !currentNetwork) return 0; + const calculated = Math.floor((boundsData.aggregate.minOfMaxes - currentNetwork.genesis_time) / SECONDS_PER_SLOT); console.log('[SlotPlayerProvider] maxSlot calculation:', { - maxOfMaxes: boundsData.aggregate.maxOfMaxes, + minOfMaxes: boundsData.aggregate.minOfMaxes, genesisTime: currentNetwork.genesis_time, calculatedMaxSlot: calculated, }); From dafb34150d3bf3365eacedc087a92fbffdfb961d Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 16:59:44 +1000 Subject: [PATCH 07/24] feat(live): PTC arrival stream and payload propagation wave MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The second attestation type gloas introduces — PTC payload attestations — now renders as its own arrivals chart under the committee attestation chart, fed by the new fct_payload_attestation_first_seen_chunked_50ms table and revealed progressively with the replay clock like everything else. Payload envelope sightings also join the map as a second purple-tinted wave, so the payload visibly washes over the sentry network after the block does. API client regenerated with the new endpoint. --- src/api/@tanstack/react-query.gen.ts | 68 ++ src/api/index.ts | 15 + src/api/sdk.gen.ts | 50 ++ src/api/types.gen.ts | 444 +++++++++++++ src/api/zod.gen.ts | 590 ++++++++++++++++++ .../AttestationArrivals.tsx | 37 +- .../AttestationArrivals.types.ts | 2 + .../live/components/BottomBar/BottomBar.tsx | 4 + .../components/BottomBar/BottomBar.types.ts | 2 + .../SlotViewLayout/SlotViewLayout.tsx | 35 +- .../SlotViewLayout/SlotViewLayout.types.ts | 1 + .../hooks/useSlotViewData/useSlotViewData.ts | 34 +- .../useSlotViewData/useSlotViewData.types.ts | 7 + 13 files changed, 1283 insertions(+), 6 deletions(-) diff --git a/src/api/@tanstack/react-query.gen.ts b/src/api/@tanstack/react-query.gen.ts index a3db07916..d9c343852 100644 --- a/src/api/@tanstack/react-query.gen.ts +++ b/src/api/@tanstack/react-query.gen.ts @@ -216,6 +216,8 @@ import { fctOpcodeOpsDailyServiceList, fctOpcodeOpsHourlyServiceGet, fctOpcodeOpsHourlyServiceList, + fctPayloadAttestationFirstSeenChunked50MsServiceGet, + fctPayloadAttestationFirstSeenChunked50MsServiceList, fctPayloadBidHighestValueByBuilderChunked50MsServiceGet, fctPayloadBidHighestValueByBuilderChunked50MsServiceList, fctPreparedBlockServiceGet, @@ -1055,6 +1057,12 @@ import type { FctOpcodeOpsHourlyServiceListData, FctOpcodeOpsHourlyServiceListError, FctOpcodeOpsHourlyServiceListResponse, + FctPayloadAttestationFirstSeenChunked50MsServiceGetData, + FctPayloadAttestationFirstSeenChunked50MsServiceGetError, + FctPayloadAttestationFirstSeenChunked50MsServiceGetResponse, + FctPayloadAttestationFirstSeenChunked50MsServiceListData, + FctPayloadAttestationFirstSeenChunked50MsServiceListError, + FctPayloadAttestationFirstSeenChunked50MsServiceListResponse, FctPayloadBidHighestValueByBuilderChunked50MsServiceGetData, FctPayloadBidHighestValueByBuilderChunked50MsServiceGetError, FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse, @@ -7819,6 +7827,66 @@ export const fctOpcodeOpsHourlyServiceGetOptions = (options: Options +) => createQueryKey('fctPayloadAttestationFirstSeenChunked50MsServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctPayloadAttestationFirstSeenChunked50MsServiceListOptions = ( + options?: Options +) => + queryOptions< + FctPayloadAttestationFirstSeenChunked50MsServiceListResponse, + FctPayloadAttestationFirstSeenChunked50MsServiceListError, + FctPayloadAttestationFirstSeenChunked50MsServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctPayloadAttestationFirstSeenChunked50MsServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctPayloadAttestationFirstSeenChunked50MsServiceListQueryKey(options), + }); + +export const fctPayloadAttestationFirstSeenChunked50MsServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctPayloadAttestationFirstSeenChunked50MsServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctPayloadAttestationFirstSeenChunked50MsServiceGetOptions = ( + options: Options +) => + queryOptions< + FctPayloadAttestationFirstSeenChunked50MsServiceGetResponse, + FctPayloadAttestationFirstSeenChunked50MsServiceGetError, + FctPayloadAttestationFirstSeenChunked50MsServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctPayloadAttestationFirstSeenChunked50MsServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctPayloadAttestationFirstSeenChunked50MsServiceGetQueryKey(options), + }); + export const fctPayloadBidHighestValueByBuilderChunked50MsServiceListQueryKey = ( options?: Options ) => createQueryKey('fctPayloadBidHighestValueByBuilderChunked50MsServiceList', options); diff --git a/src/api/index.ts b/src/api/index.ts index 16c1f8698..0ee458cff 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -213,6 +213,8 @@ export { fctOpcodeOpsDailyServiceList, fctOpcodeOpsHourlyServiceGet, fctOpcodeOpsHourlyServiceList, + fctPayloadAttestationFirstSeenChunked50MsServiceGet, + fctPayloadAttestationFirstSeenChunked50MsServiceList, fctPayloadBidHighestValueByBuilderChunked50MsServiceGet, fctPayloadBidHighestValueByBuilderChunked50MsServiceList, fctPreparedBlockServiceGet, @@ -1583,6 +1585,17 @@ export type { FctOpcodeOpsHourlyServiceListErrors, FctOpcodeOpsHourlyServiceListResponse, FctOpcodeOpsHourlyServiceListResponses, + FctPayloadAttestationFirstSeenChunked50Ms, + FctPayloadAttestationFirstSeenChunked50MsServiceGetData, + FctPayloadAttestationFirstSeenChunked50MsServiceGetError, + FctPayloadAttestationFirstSeenChunked50MsServiceGetErrors, + FctPayloadAttestationFirstSeenChunked50MsServiceGetResponse, + FctPayloadAttestationFirstSeenChunked50MsServiceGetResponses, + FctPayloadAttestationFirstSeenChunked50MsServiceListData, + FctPayloadAttestationFirstSeenChunked50MsServiceListError, + FctPayloadAttestationFirstSeenChunked50MsServiceListErrors, + FctPayloadAttestationFirstSeenChunked50MsServiceListResponse, + FctPayloadAttestationFirstSeenChunked50MsServiceListResponses, FctPayloadBidHighestValueByBuilderChunked50Ms, FctPayloadBidHighestValueByBuilderChunked50MsServiceGetData, FctPayloadBidHighestValueByBuilderChunked50MsServiceGetError, @@ -1964,6 +1977,7 @@ export type { GetFctOpcodeGasByOpcodeHourlyResponse, GetFctOpcodeOpsDailyResponse, GetFctOpcodeOpsHourlyResponse, + GetFctPayloadAttestationFirstSeenChunked50MsResponse, GetFctPayloadBidHighestValueByBuilderChunked50MsResponse, GetFctPreparedBlockResponse, GetFctProposerRewardDailyResponse, @@ -2996,6 +3010,7 @@ export type { ListFctOpcodeGasByOpcodeHourlyResponse, ListFctOpcodeOpsDailyResponse, ListFctOpcodeOpsHourlyResponse, + ListFctPayloadAttestationFirstSeenChunked50MsResponse, ListFctPayloadBidHighestValueByBuilderChunked50MsResponse, ListFctPreparedBlockResponse, ListFctProposerRewardDailyResponse, diff --git a/src/api/sdk.gen.ts b/src/api/sdk.gen.ts index 2124edb97..6e77d75fe 100644 --- a/src/api/sdk.gen.ts +++ b/src/api/sdk.gen.ts @@ -639,6 +639,12 @@ import type { FctOpcodeOpsHourlyServiceListData, FctOpcodeOpsHourlyServiceListErrors, FctOpcodeOpsHourlyServiceListResponses, + FctPayloadAttestationFirstSeenChunked50MsServiceGetData, + FctPayloadAttestationFirstSeenChunked50MsServiceGetErrors, + FctPayloadAttestationFirstSeenChunked50MsServiceGetResponses, + FctPayloadAttestationFirstSeenChunked50MsServiceListData, + FctPayloadAttestationFirstSeenChunked50MsServiceListErrors, + FctPayloadAttestationFirstSeenChunked50MsServiceListResponses, FctPayloadBidHighestValueByBuilderChunked50MsServiceGetData, FctPayloadBidHighestValueByBuilderChunked50MsServiceGetErrors, FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponses, @@ -1665,6 +1671,10 @@ import { zFctOpcodeOpsHourlyServiceGetResponse, zFctOpcodeOpsHourlyServiceListData, zFctOpcodeOpsHourlyServiceListResponse, + zFctPayloadAttestationFirstSeenChunked50MsServiceGetData, + zFctPayloadAttestationFirstSeenChunked50MsServiceGetResponse, + zFctPayloadAttestationFirstSeenChunked50MsServiceListData, + zFctPayloadAttestationFirstSeenChunked50MsServiceListResponse, zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetData, zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse, zFctPayloadBidHighestValueByBuilderChunked50MsServiceListData, @@ -6076,6 +6086,46 @@ export const fctOpcodeOpsHourlyServiceGet = ( + options?: Options +) => + (options?.client ?? client).get< + FctPayloadAttestationFirstSeenChunked50MsServiceListResponses, + FctPayloadAttestationFirstSeenChunked50MsServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctPayloadAttestationFirstSeenChunked50MsServiceListData.parseAsync(data), + responseValidator: async data => + await zFctPayloadAttestationFirstSeenChunked50MsServiceListResponse.parseAsync(data), + url: '/api/v1/fct_payload_attestation_first_seen_chunked_50ms', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctPayloadAttestationFirstSeenChunked50MsServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctPayloadAttestationFirstSeenChunked50MsServiceGetResponses, + FctPayloadAttestationFirstSeenChunked50MsServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctPayloadAttestationFirstSeenChunked50MsServiceGetData.parseAsync(data), + responseValidator: async data => + await zFctPayloadAttestationFirstSeenChunked50MsServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_payload_attestation_first_seen_chunked_50ms/{slot_start_date_time}', + ...options, + }); + /** * List records * diff --git a/src/api/types.gen.ts b/src/api/types.gen.ts index 6750eee3e..4d7379754 100644 --- a/src/api/types.gen.ts +++ b/src/api/types.gen.ts @@ -5720,6 +5720,41 @@ export type FctOpcodeOpsHourly = { upper_band_ops?: number; }; +export type FctPayloadAttestationFirstSeenChunked50Ms = { + /** + * The number of PTC validators first seen in this chunk + */ + attestation_count?: number; + /** + * The beacon block root being attested by the PTC + */ + block_root?: string; + /** + * The difference between the chunk start time and slot_start_date_time. "9000" would mean this chunk contains payload attestations first seen between 9000ms and 9050ms into the slot + */ + chunk_slot_start_diff?: number; + /** + * The epoch number containing the attested slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The attested slot number + */ + slot?: number; + /** + * The wall clock time when the attested slot started + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + export type FctPayloadBidHighestValueByBuilderChunked50Ms = { /** * The execution block hash committed to in the bid @@ -7325,6 +7360,13 @@ export type GetFctOpcodeOpsHourlyResponse = { item?: FctOpcodeOpsHourly; }; +/** + * Response for getting a single fct_payload_attestation_first_seen_chunked_50ms record + */ +export type GetFctPayloadAttestationFirstSeenChunked50MsResponse = { + item?: FctPayloadAttestationFirstSeenChunked50Ms; +}; + /** * Response for getting a single fct_payload_bid_highest_value_by_builder_chunked_50ms record */ @@ -12857,6 +12899,20 @@ export type ListFctOpcodeOpsHourlyResponse = { next_page_token?: string; }; +/** + * Response for listing fct_payload_attestation_first_seen_chunked_50ms records + */ +export type ListFctPayloadAttestationFirstSeenChunked50MsResponse = { + /** + * The list of fct_payload_attestation_first_seen_chunked_50ms. + */ + fct_payload_attestation_first_seen_chunked_50ms?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + /** * Response for listing fct_payload_bid_highest_value_by_builder_chunked_50ms records */ @@ -67567,6 +67623,394 @@ export type FctOpcodeOpsHourlyServiceGetResponses = { export type FctOpcodeOpsHourlyServiceGetResponse = FctOpcodeOpsHourlyServiceGetResponses[keyof FctOpcodeOpsHourlyServiceGetResponses]; +export type FctPayloadAttestationFirstSeenChunked50MsServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the attested slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the attested slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the attested slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the attested slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the attested slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the attested slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the attested slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the attested slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the attested slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the attested slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The beacon block root being attested by the PTC (filter: eq) + */ + block_root_eq?: string; + /** + * The beacon block root being attested by the PTC (filter: ne) + */ + block_root_ne?: string; + /** + * The beacon block root being attested by the PTC (filter: contains) + */ + block_root_contains?: string; + /** + * The beacon block root being attested by the PTC (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The beacon block root being attested by the PTC (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The beacon block root being attested by the PTC (filter: like) + */ + block_root_like?: string; + /** + * The beacon block root being attested by the PTC (filter: not_like) + */ + block_root_not_like?: string; + /** + * The beacon block root being attested by the PTC (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The beacon block root being attested by the PTC (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * The difference between the chunk start time and slot_start_date_time. "9000" would mean this chunk contains payload attestations first seen between 9000ms and 9050ms into the slot (filter: eq) + */ + chunk_slot_start_diff_eq?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "9000" would mean this chunk contains payload attestations first seen between 9000ms and 9050ms into the slot (filter: ne) + */ + chunk_slot_start_diff_ne?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "9000" would mean this chunk contains payload attestations first seen between 9000ms and 9050ms into the slot (filter: lt) + */ + chunk_slot_start_diff_lt?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "9000" would mean this chunk contains payload attestations first seen between 9000ms and 9050ms into the slot (filter: lte) + */ + chunk_slot_start_diff_lte?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "9000" would mean this chunk contains payload attestations first seen between 9000ms and 9050ms into the slot (filter: gt) + */ + chunk_slot_start_diff_gt?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "9000" would mean this chunk contains payload attestations first seen between 9000ms and 9050ms into the slot (filter: gte) + */ + chunk_slot_start_diff_gte?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "9000" would mean this chunk contains payload attestations first seen between 9000ms and 9050ms into the slot (filter: between_min) + */ + chunk_slot_start_diff_between_min?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "9000" would mean this chunk contains payload attestations first seen between 9000ms and 9050ms into the slot (filter: between_max_value) + */ + chunk_slot_start_diff_between_max_value?: number; + /** + * The difference between the chunk start time and slot_start_date_time. "9000" would mean this chunk contains payload attestations first seen between 9000ms and 9050ms into the slot (filter: in_values) (comma-separated list) + */ + chunk_slot_start_diff_in_values?: string; + /** + * The difference between the chunk start time and slot_start_date_time. "9000" would mean this chunk contains payload attestations first seen between 9000ms and 9050ms into the slot (filter: not_in_values) (comma-separated list) + */ + chunk_slot_start_diff_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The attested slot number (filter: eq) + */ + slot_eq?: number; + /** + * The attested slot number (filter: ne) + */ + slot_ne?: number; + /** + * The attested slot number (filter: lt) + */ + slot_lt?: number; + /** + * The attested slot number (filter: lte) + */ + slot_lte?: number; + /** + * The attested slot number (filter: gt) + */ + slot_gt?: number; + /** + * The attested slot number (filter: gte) + */ + slot_gte?: number; + /** + * The attested slot number (filter: between_min) + */ + slot_between_min?: number; + /** + * The attested slot number (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The attested slot number (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The attested slot number (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the attested slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the attested slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the attested slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the attested slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the attested slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the attested slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the attested slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the attested slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the attested slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the attested slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The number of PTC validators first seen in this chunk (filter: eq) + */ + attestation_count_eq?: number; + /** + * The number of PTC validators first seen in this chunk (filter: ne) + */ + attestation_count_ne?: number; + /** + * The number of PTC validators first seen in this chunk (filter: lt) + */ + attestation_count_lt?: number; + /** + * The number of PTC validators first seen in this chunk (filter: lte) + */ + attestation_count_lte?: number; + /** + * The number of PTC validators first seen in this chunk (filter: gt) + */ + attestation_count_gt?: number; + /** + * The number of PTC validators first seen in this chunk (filter: gte) + */ + attestation_count_gte?: number; + /** + * The number of PTC validators first seen in this chunk (filter: between_min) + */ + attestation_count_between_min?: number; + /** + * The number of PTC validators first seen in this chunk (filter: between_max_value) + */ + attestation_count_between_max_value?: number; + /** + * The number of PTC validators first seen in this chunk (filter: in_values) (comma-separated list) + */ + attestation_count_in_values?: string; + /** + * The number of PTC validators first seen in this chunk (filter: not_in_values) (comma-separated list) + */ + attestation_count_not_in_values?: string; + /** + * The maximum number of fct_payload_attestation_first_seen_chunked_50ms to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctPayloadAttestationFirstSeenChunked50ms` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_payload_attestation_first_seen_chunked_50ms'; +}; + +export type FctPayloadAttestationFirstSeenChunked50MsServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctPayloadAttestationFirstSeenChunked50MsServiceListError = + FctPayloadAttestationFirstSeenChunked50MsServiceListErrors[keyof FctPayloadAttestationFirstSeenChunked50MsServiceListErrors]; + +export type FctPayloadAttestationFirstSeenChunked50MsServiceListResponses = { + /** + * OK + */ + 200: ListFctPayloadAttestationFirstSeenChunked50MsResponse; +}; + +export type FctPayloadAttestationFirstSeenChunked50MsServiceListResponse = + FctPayloadAttestationFirstSeenChunked50MsServiceListResponses[keyof FctPayloadAttestationFirstSeenChunked50MsServiceListResponses]; + +export type FctPayloadAttestationFirstSeenChunked50MsServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the attested slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_payload_attestation_first_seen_chunked_50ms/{slot_start_date_time}'; +}; + +export type FctPayloadAttestationFirstSeenChunked50MsServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctPayloadAttestationFirstSeenChunked50MsServiceGetError = + FctPayloadAttestationFirstSeenChunked50MsServiceGetErrors[keyof FctPayloadAttestationFirstSeenChunked50MsServiceGetErrors]; + +export type FctPayloadAttestationFirstSeenChunked50MsServiceGetResponses = { + /** + * OK + */ + 200: GetFctPayloadAttestationFirstSeenChunked50MsResponse; +}; + +export type FctPayloadAttestationFirstSeenChunked50MsServiceGetResponse = + FctPayloadAttestationFirstSeenChunked50MsServiceGetResponses[keyof FctPayloadAttestationFirstSeenChunked50MsServiceGetResponses]; + export type FctPayloadBidHighestValueByBuilderChunked50MsServiceListData = { body?: never; path?: never; diff --git a/src/api/zod.gen.ts b/src/api/zod.gen.ts index 2a4f9f451..98385242b 100644 --- a/src/api/zod.gen.ts +++ b/src/api/zod.gen.ts @@ -8096,6 +8096,66 @@ export const zFctOpcodeOpsHourly = z.object({ upper_band_ops: z.optional(z.number()), }); +export const zFctPayloadAttestationFirstSeenChunked50Ms = z.object({ + attestation_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_root: z.optional(z.string()), + chunk_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), +}); + export const zFctPayloadBidHighestValueByBuilderChunked50Ms = z.object({ block_hash: z.optional(z.string()), builder_index: z.optional( @@ -10076,6 +10136,13 @@ export const zGetFctOpcodeOpsHourlyResponse = z.object({ item: z.optional(zFctOpcodeOpsHourly), }); +/** + * Response for getting a single fct_payload_attestation_first_seen_chunked_50ms record + */ +export const zGetFctPayloadAttestationFirstSeenChunked50MsResponse = z.object({ + item: z.optional(zFctPayloadAttestationFirstSeenChunked50Ms), +}); + /** * Response for getting a single fct_payload_bid_highest_value_by_builder_chunked_50ms record */ @@ -16765,6 +16832,14 @@ export const zListFctOpcodeOpsHourlyResponse = z.object({ next_page_token: z.optional(z.string()), }); +/** + * Response for listing fct_payload_attestation_first_seen_chunked_50ms records + */ +export const zListFctPayloadAttestationFirstSeenChunked50MsResponse = z.object({ + fct_payload_attestation_first_seen_chunked_50ms: z.optional(z.array(zFctPayloadAttestationFirstSeenChunked50Ms)), + next_page_token: z.optional(z.string()), +}); + /** * Response for listing fct_payload_bid_highest_value_by_builder_chunked_50ms records */ @@ -83812,6 +83887,521 @@ export const zFctOpcodeOpsHourlyServiceGetData = z.object({ */ export const zFctOpcodeOpsHourlyServiceGetResponse = zGetFctOpcodeOpsHourlyResponse; +export const zFctPayloadAttestationFirstSeenChunked50MsServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + chunk_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + chunk_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + chunk_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attestation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attestation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctPayloadAttestationFirstSeenChunked50MsServiceListResponse = + zListFctPayloadAttestationFirstSeenChunked50MsResponse; + +export const zFctPayloadAttestationFirstSeenChunked50MsServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctPayloadAttestationFirstSeenChunked50MsServiceGetResponse = + zGetFctPayloadAttestationFirstSeenChunked50MsResponse; + export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceListData = z.object({ body: z.optional(z.never()), path: z.optional(z.never()), diff --git a/src/pages/ethereum/live/components/AttestationArrivals/AttestationArrivals.tsx b/src/pages/ethereum/live/components/AttestationArrivals/AttestationArrivals.tsx index 9d6c03426..ac974616d 100644 --- a/src/pages/ethereum/live/components/AttestationArrivals/AttestationArrivals.tsx +++ b/src/pages/ethereum/live/components/AttestationArrivals/AttestationArrivals.tsx @@ -14,10 +14,14 @@ import type { AttestationArrivalsProps } from './AttestationArrivals.types'; */ function AttestationArrivalsComponent({ attestationChartValues, + payloadAttestationChartValues, totalExpected: _totalExpected, maxCount, className, }: AttestationArrivalsProps): JSX.Element { + // The PTC stream only exists on gloas networks; an all-empty array means + // the fork is active but this slot's votes have not landed yet. + const hasPtcStream = payloadAttestationChartValues !== undefined; // Prepare data for interval arrivals chart from pre-computed values // Convert from milliseconds (0-12000 in 50ms steps) to seconds (0-12 in 0.05s steps) const intervalChartData = useMemo(() => { @@ -50,7 +54,7 @@ function AttestationArrivalsComponent({ return (
- {/* Attestation Arrivals Chart - takes full height */} + {/* Attestation Arrivals Chart - takes full height, splits when the PTC stream exists */}

Attestation Arrivals

@@ -59,7 +63,7 @@ function AttestationArrivalsComponent({
+ {hasPtcStream && ( + <> +
+

PTC Payload Attestations

+
+
+ +
+ + )}
); @@ -80,7 +108,10 @@ function AttestationArrivalsComponent({ // Custom comparison function to prevent re-renders when data hasn't changed const arePropsEqual = (prevProps: AttestationArrivalsProps, nextProps: AttestationArrivalsProps): boolean => { - return prevProps.attestationChartValues === nextProps.attestationChartValues; + return ( + prevProps.attestationChartValues === nextProps.attestationChartValues && + prevProps.payloadAttestationChartValues === nextProps.payloadAttestationChartValues + ); }; export const AttestationArrivals = memo(AttestationArrivalsComponent, arePropsEqual); diff --git a/src/pages/ethereum/live/components/AttestationArrivals/AttestationArrivals.types.ts b/src/pages/ethereum/live/components/AttestationArrivals/AttestationArrivals.types.ts index 314b8efd3..09795b88b 100644 --- a/src/pages/ethereum/live/components/AttestationArrivals/AttestationArrivals.types.ts +++ b/src/pages/ethereum/live/components/AttestationArrivals/AttestationArrivals.types.ts @@ -8,6 +8,8 @@ export interface AttestationDataPoint { export interface AttestationArrivalsProps { /** Pre-computed chart values (241 data points, null for future times) */ attestationChartValues: (number | null)[]; + /** Gloas (ePBS): PTC payload attestation arrivals, rendered as a second chart when present */ + payloadAttestationChartValues?: (number | null)[]; /** Total number of expected attestations (for percentage calculation) */ totalExpected: number; /** Maximum count across all data points (for yMax scaling) */ diff --git a/src/pages/ethereum/live/components/BottomBar/BottomBar.tsx b/src/pages/ethereum/live/components/BottomBar/BottomBar.tsx index d8f7cd91f..575f1c28b 100644 --- a/src/pages/ethereum/live/components/BottomBar/BottomBar.tsx +++ b/src/pages/ethereum/live/components/BottomBar/BottomBar.tsx @@ -17,6 +17,7 @@ function BottomBarComponent({ deduplicatedBlobData, visibleContinentalPropagationData, attestationChartValues, + payloadAttestationChartValues, attestationTotalExpected, attestationMaxCount, mode: _mode, @@ -78,6 +79,7 @@ function BottomBarComponent({
@@ -111,6 +113,7 @@ function BottomBarComponent({ @@ -133,6 +136,7 @@ const arePropsEqual = (prevProps: BottomBarProps, nextProps: BottomBarProps): bo prevProps.deduplicatedBlobData === nextProps.deduplicatedBlobData && prevProps.visibleContinentalPropagationData === nextProps.visibleContinentalPropagationData && prevProps.attestationChartValues === nextProps.attestationChartValues && + prevProps.payloadAttestationChartValues === nextProps.payloadAttestationChartValues && prevProps.attestationTotalExpected === nextProps.attestationTotalExpected && prevProps.attestationMaxCount === nextProps.attestationMaxCount ); diff --git a/src/pages/ethereum/live/components/BottomBar/BottomBar.types.ts b/src/pages/ethereum/live/components/BottomBar/BottomBar.types.ts index f270752da..b1c2d7982 100644 --- a/src/pages/ethereum/live/components/BottomBar/BottomBar.types.ts +++ b/src/pages/ethereum/live/components/BottomBar/BottomBar.types.ts @@ -11,6 +11,8 @@ export interface BottomBarProps { deduplicatedBlobData: Array<{ blobId: string; time: number; color?: string }>; visibleContinentalPropagationData: ContinentalPropagationSeries[]; attestationChartValues: (number | null)[]; + /** Gloas (ePBS): PTC payload attestation arrivals, second stream. */ + payloadAttestationChartValues?: (number | null)[]; attestationTotalExpected: number; attestationMaxCount: number; mode: 'live' | 'static'; diff --git a/src/pages/ethereum/live/components/SlotViewLayout/SlotViewLayout.tsx b/src/pages/ethereum/live/components/SlotViewLayout/SlotViewLayout.tsx index 860e05738..22ea0455d 100644 --- a/src/pages/ethereum/live/components/SlotViewLayout/SlotViewLayout.tsx +++ b/src/pages/ethereum/live/components/SlotViewLayout/SlotViewLayout.tsx @@ -70,6 +70,7 @@ interface SlotLiveDataProviderProps { deduplicatedBlobTimeline: Array<{ blobId: string; time: number; color?: string }>; sortedContinentalSeries: ContinentalPropagationSeries[]; attestationTimeToCount: Map; + ptcTimeToCount: Map; attestationActualCount: number; attestationTotalExpected: number; dataColumnFirstSeenData: DataColumnFirstSeenPoint[]; @@ -82,6 +83,7 @@ function SlotLiveDataProvider({ deduplicatedBlobTimeline, sortedContinentalSeries, attestationTimeToCount, + ptcTimeToCount, attestationActualCount, attestationTotalExpected, dataColumnFirstSeenData, @@ -98,6 +100,7 @@ function SlotLiveDataProvider({ const continentalIndicesRef = useRef([]); const visibleContinentalPropagationDataRef = useRef([]); const attestationChartValuesRef = useRef<(number | null)[]>([]); + const ptcChartValuesRef = useRef<(number | null)[]>([]); const lastChartTimeRef = useRef(-1); const visibleDataColumnsRef = useRef([]); const visibleDataColumnIdsRef = useRef>(new Set()); @@ -109,6 +112,7 @@ function SlotLiveDataProvider({ deduplicatedBlobData: [], visibleContinentalPropagationData: [], attestationChartValues: [], + ptcChartValues: [], dataColumnFirstSeenData: [], }); @@ -121,6 +125,7 @@ function SlotLiveDataProvider({ deduplicatedBlobDataRef.current = []; visibleContinentalPropagationDataRef.current = []; attestationChartValuesRef.current = []; + ptcChartValuesRef.current = []; visibleDataColumnsRef.current = []; visibleDataColumnIdsRef.current = new Set(); timeFilteredDataRef.current = { @@ -130,6 +135,7 @@ function SlotLiveDataProvider({ deduplicatedBlobData: [], visibleContinentalPropagationData: [], attestationChartValues: [], + ptcChartValues: [], dataColumnFirstSeenData: [], }; setDataVersion(prev => prev + 1); @@ -205,8 +211,13 @@ function SlotLiveDataProvider({ if (time > quantizedTime) return null; return attestationTimeToCount.get(time) ?? 0; }); + ptcChartValuesRef.current = TIME_POINTS.map(time => { + if (time > quantizedTime) return null; + return ptcTimeToCount.get(time) ?? 0; + }); lastChartTimeRef.current = roundedTime; timeFilteredDataRef.current.attestationChartValues = attestationChartValuesRef.current; + timeFilteredDataRef.current.ptcChartValues = ptcChartValuesRef.current; mutated = true; } @@ -235,6 +246,7 @@ function SlotLiveDataProvider({ deduplicatedBlobTimeline, sortedContinentalSeries, attestationTimeToCount, + ptcTimeToCount, attestationActualCount, attestationTotalExpected, dataColumnFirstSeenData, @@ -361,6 +373,7 @@ const LiveBottomBar = memo(function LiveBottomBar(props: BottomBarBaseProps) { deduplicatedBlobData={timeFilteredData.deduplicatedBlobData} visibleContinentalPropagationData={timeFilteredData.visibleContinentalPropagationData} attestationChartValues={timeFilteredData.attestationChartValues} + payloadAttestationChartValues={timeFilteredData.ptcChartValues} dataColumnFirstSeenData={timeFilteredData.dataColumnFirstSeenData} /> ); @@ -376,8 +389,17 @@ export function SlotViewLayout({ mode }: SlotViewLayoutProps): JSX.Element { const handleTimeClick = useCallback((timeMs: number) => actions.seekToTime(timeMs), [actions]); const sortedMapPoints = useMemo(() => { - return [...slotData.mapPoints].sort((a, b) => a.earliestSeenTime - b.earliestSeenTime); - }, [slotData.mapPoints]); + // Gloas (ePBS): overlay the payload envelope wave on the block wave. The + // per-point color separates the two, and sorting by arrival keeps the + // progressive reveal working across both. + const payloadWave = slotData.payloadMapPoints.map(point => ({ + ...point, + name: `${point.name} · payload`, + color: 'var(--color-purple-500, #a855f7)', + })); + + return [...slotData.mapPoints, ...payloadWave].sort((a, b) => a.earliestSeenTime - b.earliestSeenTime); + }, [slotData.mapPoints, slotData.payloadMapPoints]); const deduplicatedBlobTimeline = useMemo(() => { const earliestByBlob = new Map(); @@ -409,6 +431,14 @@ export function SlotViewLayout({ mode }: SlotViewLayoutProps): JSX.Element { return map; }, [slotData.attestationData]); + const ptcTimeToCount = useMemo(() => { + const map = new Map(); + for (const point of slotData.ptcArrivalData) { + map.set(point.time, point.count); + } + return map; + }, [slotData.ptcArrivalData]); + return ( ; diff --git a/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts b/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts index 33a1551d0..99d8f3071 100644 --- a/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts +++ b/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts @@ -18,6 +18,7 @@ import { fctBlockPayloadFirstSeenByNodeServiceListOptions, fctBlockPayloadPtcVoteHeadServiceListOptions, fctPayloadBidHighestValueByBuilderChunked50MsServiceListOptions, + fctPayloadAttestationFirstSeenChunked50MsServiceListOptions, } from '@/api/@tanstack/react-query.gen'; import { getForkForSlot, isForkAtOrAfter } from '@/utils/beacon'; import { derivePayloadStatus } from '@/utils/epbs'; @@ -29,6 +30,7 @@ import { useSidebarData } from '../useSidebarData'; import { useBlobAvailabilityData } from '../useBlobAvailabilityData'; import { useDataColumnAvailabilityData } from '../useDataColumnAvailabilityData'; import { useAttestationData } from '../useAttestationData'; +import type { FctBlockFirstSeenByNode } from '@/api/types.gen'; import type { SlotViewData } from './useSlotViewData.types'; // Stable empty arrays to prevent infinite re-renders @@ -261,7 +263,19 @@ export function useSlotViewData(currentSlot: number): SlotViewData { ...slotQueryOptions(slotStartDateTime), }); - // API Query 14 (gloas): the on-chain builder bid race + // API Query 14 (gloas): PTC payload attestation arrivals, chunked 50ms + const ptcArrivalsQuery = useQuery({ + ...fctPayloadAttestationFirstSeenChunked50MsServiceListOptions({ + query: { + slot_start_date_time_eq: slotStartDateTime, + page_size: 10000, + }, + }), + enabled: slotStartDateTime > 0 && isGloas, + ...slotQueryOptions(slotStartDateTime), + }); + + // API Query 15 (gloas): the on-chain builder bid race const payloadBidsQuery = useQuery({ ...fctPayloadBidHighestValueByBuilderChunked50MsServiceListOptions({ query: { @@ -333,6 +347,13 @@ export function useSlotViewData(currentSlot: number): SlotViewData { const mapPoints = useMapData(blockFirstSeenQuery.data?.fct_block_first_seen_by_node ?? EMPTY_BLOCK_FIRST_SEEN); + // Gloas (ePBS): payload envelope sightings share the sentry geo shape, so + // they reuse the map aggregation and render as a second wave of dots. + const payloadMapPoints = useMapData( + (payloadFirstSeenQuery.data?.fct_block_payload_first_seen_by_node ?? + EMPTY_BLOCK_FIRST_SEEN) as unknown as FctBlockFirstSeenByNode[] + ); + const { phases: sidebarPhases, items: sidebarItems } = useSidebarData({ blockNodes: blockFirstSeenQuery.data?.fct_block_first_seen_by_node ?? EMPTY_BLOCK_FIRST_SEEN, blobNodes: blobFirstSeenQuery.data?.fct_block_blob_first_seen_by_node ?? EMPTY_BLOB_FIRST_SEEN, @@ -368,6 +389,11 @@ export function useSlotViewData(currentSlot: number): SlotViewData { totalExpectedValidators ); + const { data: ptcArrivalData, maxCount: ptcArrivalMaxCount } = useAttestationData( + ptcArrivalsQuery.data?.fct_payload_attestation_first_seen_chunked_50ms ?? EMPTY_ATTESTATION, + 0 + ); + const blobCount = blobCountQuery.data?.fct_block_blob_count_head?.[0]?.blob_count ?? 0; // TODO: Fix attestation actual count @@ -576,7 +602,10 @@ export function useSlotViewData(currentSlot: number): SlotViewData { () => ({ blockDetails, epbs, + ptcArrivalData, + ptcArrivalMaxCount, mapPoints, + payloadMapPoints, sidebarPhases, sidebarItems, blobCount, @@ -606,7 +635,10 @@ export function useSlotViewData(currentSlot: number): SlotViewData { [ blockDetails, epbs, + ptcArrivalData, + ptcArrivalMaxCount, mapPoints, + payloadMapPoints, sidebarPhases, sidebarItems, blobCount, diff --git a/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.types.ts b/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.types.ts index 8d1a2243b..93127838b 100644 --- a/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.types.ts +++ b/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.types.ts @@ -56,6 +56,9 @@ export interface SlotViewData { // Map visualization - includes timing information for progressive rendering mapPoints: MapPointWithTiming[]; + // Gloas (ePBS): payload envelope arrivals as a second map wave + payloadMapPoints: MapPointWithTiming[]; + // Sidebar sidebarPhases: SlotPhase[]; sidebarItems: TimelineItem[]; @@ -70,6 +73,10 @@ export interface SlotViewData { dataColumnBlobCount: number; dataColumnFirstSeenData: Array<{ columnId: number; time: number; color?: string }>; + // Gloas (ePBS): PTC payload attestation arrivals (second attestation stream) + ptcArrivalData: AttestationDataPoint[]; + ptcArrivalMaxCount: number; + // Attestation arrivals attestationData: AttestationDataPoint[]; attestationTotalExpected: number; From 54958047632ff97d174057f0077562100f09de43 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 17:09:47 +1000 Subject: [PATCH 08/24] feat(live): merge PTC stream into the arrivals chart and sidebar timeline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The stacked mini-chart treatment for PTC payload attestations was cramped and unreadable. Both vote streams now share one MultiLine chart with a legend; the PTC series appears once votes actually exist, so pre-gloas networks and the first seconds of a slot stay single-series. The sidebar timeline gains the gloas events it was missing: payload envelope sightings (grouped by city like blocks) and PTC vote arrivals. Devnet sentries all sit in one datacenter city, which the sidebar rendered as a single anonymous Block row — city rows now carry their node count so one location no longer reads as one node. --- .../AttestationArrivals.tsx | 115 +++++++----------- .../hooks/useSidebarData/useSidebarData.tsx | 77 +++++++++++- .../hooks/useSlotViewData/useSlotViewData.ts | 2 + 3 files changed, 115 insertions(+), 79 deletions(-) diff --git a/src/pages/ethereum/live/components/AttestationArrivals/AttestationArrivals.tsx b/src/pages/ethereum/live/components/AttestationArrivals/AttestationArrivals.tsx index ac974616d..b3e650e6e 100644 --- a/src/pages/ethereum/live/components/AttestationArrivals/AttestationArrivals.tsx +++ b/src/pages/ethereum/live/components/AttestationArrivals/AttestationArrivals.tsx @@ -1,14 +1,14 @@ import type { JSX } from 'react'; import { useMemo, memo } from 'react'; import clsx from 'clsx'; -import { LineChart } from '@/components/Charts/Line'; +import { MultiLineChart } from '@/components/Charts/MultiLine'; +import type { SeriesData } from '@/components/Charts/MultiLine/MultiLine.types'; import type { AttestationArrivalsProps } from './AttestationArrivals.types'; /** - * AttestationArrivals - A page-specific component for showing attestation arrival data. - * - * Displays attestation arrivals over time with a line chart showing attestations - * received at each time interval. + * AttestationArrivals - attestation arrival counts over the slot as a line + * chart. On gloas networks the PTC payload attestation stream renders as a + * second series in the same chart, so both vote types share one timeline. * * Charts only render data up to the current slot time, simulating live progression. */ @@ -16,91 +16,58 @@ function AttestationArrivalsComponent({ attestationChartValues, payloadAttestationChartValues, totalExpected: _totalExpected, - maxCount, + maxCount: _maxCount, className, }: AttestationArrivalsProps): JSX.Element { - // The PTC stream only exists on gloas networks; an all-empty array means - // the fork is active but this slot's votes have not landed yet. - const hasPtcStream = payloadAttestationChartValues !== undefined; - // Prepare data for interval arrivals chart from pre-computed values - // Convert from milliseconds (0-12000 in 50ms steps) to seconds (0-12 in 0.05s steps) - const intervalChartData = useMemo(() => { - // Create labels for 0-12s in 0.05s steps (241 points) - const timePoints = Array.from({ length: 241 }, (_, i) => (i * 50) / 1000); // Convert ms to seconds - // Format as "0s", "4s", "8s", "12s" without decimal places - const labels = timePoints.map(time => { - const seconds = Math.round(time); - return `${seconds}s`; - }); + // Chart values are 241 points at 50ms; plot against seconds so both series + // share a numeric axis with ticks on whole seconds. + const series = useMemo(() => { + const toPoints = (values: (number | null)[]): Array<[number, number | null]> => + values.map((value, i) => [(i * 50) / 1000, value]); - // Calculate interval to show labels at 0s, 4s, 8s, 12s - // 4s = 80 data points (4s / 0.05s), so show every 80th label - const labelInterval = 79; // Skip 79, show every 80th (0, 80, 160, 240 = 0s, 4s, 8s, 12s) + const result: SeriesData[] = [ + { + name: 'Attestations', + data: toPoints(attestationChartValues), + showArea: true, + }, + ]; - return { labels, values: attestationChartValues, labelInterval, timePoints }; - }, [attestationChartValues]); + // Only surface the PTC stream once votes actually exist — pre-gloas + // networks (and the first seconds of a gloas slot) stay single-series. + const hasPtcVotes = payloadAttestationChartValues?.some(value => (value ?? 0) > 0) ?? false; - // Custom tooltip formatter to show precise time with 2 decimal places - const tooltipFormatter = useMemo( - () => (params: { dataIndex: number; value: number | null }[]) => { - if (params.length === 0) return ''; - const param = params[0]; - const time = intervalChartData.timePoints[param.dataIndex]; - const count = param.value ?? 0; - return `Time: ${time.toFixed(2)}s
Count: ${count}`; - }, - [intervalChartData.timePoints] - ); + if (payloadAttestationChartValues !== undefined && hasPtcVotes) { + result.push({ + name: 'PTC payload', + data: toPoints(payloadAttestationChartValues), + color: '#a855f7', + showArea: true, + }); + } + + return result; + }, [attestationChartValues, payloadAttestationChartValues]); return (
- {/* Attestation Arrivals Chart - takes full height, splits when the PTC stream exists */}

Attestation Arrivals

- `${Number(value).toFixed(0)}s`, + }} height="100%" - smooth={false} - showArea={true} - yMax={maxCount} - connectNulls={false} - animationDuration={0} - xAxisLabelInterval={intervalChartData.labelInterval} - showGridlines={false} - showYAxisLine={true} - tooltipFormatter={tooltipFormatter} />
- {hasPtcStream && ( - <> -
-

PTC Payload Attestations

-
-
- -
- - )}
); diff --git a/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx b/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx index ac1aa4179..9dd82c83c 100644 --- a/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx +++ b/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx @@ -3,6 +3,8 @@ import type { FctBlockFirstSeenByNode, FctBlockBlobFirstSeenByNode, FctAttestationFirstSeenChunked50Ms, + FctBlockPayloadFirstSeenByNode, + FctPayloadAttestationFirstSeenChunked50Ms, FctBlockProposer, } from '@/api/types.gen'; import type { SlotPhase } from '@/utils/beacon'; @@ -23,6 +25,10 @@ export interface UseSidebarDataParams { blockNodes: FctBlockFirstSeenByNode[]; blobNodes: FctBlockBlobFirstSeenByNode[]; attestationChunks: FctAttestationFirstSeenChunked50Ms[]; + /** Gloas (ePBS): payload envelope sightings per sentry */ + payloadNodes?: FctBlockPayloadFirstSeenByNode[]; + /** Gloas (ePBS): PTC payload attestation arrivals, chunked */ + ptcChunks?: FctPayloadAttestationFirstSeenChunked50Ms[]; proposer: FctBlockProposer | undefined; currentSlot: number; } @@ -31,6 +37,8 @@ export function useSidebarData({ blockNodes, blobNodes, attestationChunks, + payloadNodes, + ptcChunks, proposer: _proposer, currentSlot, }: UseSidebarDataParams): { @@ -44,7 +52,7 @@ export function useSidebarData({ const allItems: TimelineItem[] = []; // 2. Block seen in locations - Group by city and take earliest - const cityFirstSeen = new Map(); + const cityFirstSeen = new Map(); blockNodes.forEach(node => { const city = node.meta_client_geo_city; const country = node.meta_client_geo_country ?? 'Unknown'; @@ -53,8 +61,12 @@ export function useSidebarData({ // Format location: "City, Country" or just "Country" if city is missing const location = city ? `${city}, ${country}` : country; - if (!cityFirstSeen.has(location) || timestamp < cityFirstSeen.get(location)!.timestamp) { - cityFirstSeen.set(location, { timestamp, location }); + const existing = cityFirstSeen.get(location); + if (!existing) { + cityFirstSeen.set(location, { timestamp, location, nodes: 1 }); + } else { + existing.nodes += 1; + if (timestamp < existing.timestamp) existing.timestamp = timestamp; } }); @@ -67,7 +79,39 @@ export function useSidebarData({ Block - {location} + {data.nodes > 1 ? `${location} · ${data.nodes} nodes` : location} +
+ ), + }); + }); + + // 2b. Gloas (ePBS): payload envelope sightings, grouped like blocks + const payloadCityFirstSeen = new Map(); + (payloadNodes ?? []).forEach(node => { + const city = node.meta_client_geo_city; + const country = node.meta_client_geo_country ?? 'Unknown'; + const timestamp = node.seen_slot_start_diff ?? 0; + const location = city ? `${city}, ${country}` : country; + + const existing = payloadCityFirstSeen.get(location); + if (!existing) { + payloadCityFirstSeen.set(location, { timestamp, nodes: 1 }); + } else { + existing.nodes += 1; + if (timestamp < existing.timestamp) existing.timestamp = timestamp; + } + }); + + payloadCityFirstSeen.forEach((data, location) => { + allItems.push({ + id: `${currentSlot}-payload-seen-${location}-${data.timestamp}`, + timestamp: data.timestamp, + content: ( +
+ + Payload + + {data.nodes > 1 ? `${location} · ${data.nodes} nodes` : location}
), }); @@ -96,6 +140,29 @@ export function useSidebarData({ } }); + // 3b. Gloas (ePBS): PTC payload attestation arrivals, chunked + (ptcChunks ?? []).forEach((chunk, index) => { + const count = chunk.attestation_count ?? 0; + const timestamp = chunk.chunk_slot_start_diff ?? 0; + + if (count > 0) { + allItems.push({ + id: `${currentSlot}-ptc-${timestamp}-${index}`, + timestamp, + content: ( +
+ + PTC + + + {count} validator{count > 1 ? 's' : ''} + +
+ ), + }); + } + }); + // 4. Data available in continents - Calculate when ALL blobs are available per continent const continentBlobAvailability = new Map< string, @@ -178,7 +245,7 @@ export function useSidebarData({ // Sort all items by timestamp return allItems.sort((a, b) => a.timestamp - b.timestamp); - }, [blockNodes, blobNodes, attestationChunks, currentSlot]); + }, [blockNodes, blobNodes, attestationChunks, payloadNodes, ptcChunks, currentSlot]); return { phases, items }; } diff --git a/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts b/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts index 99d8f3071..29b361385 100644 --- a/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts +++ b/src/pages/ethereum/live/hooks/useSlotViewData/useSlotViewData.ts @@ -358,6 +358,8 @@ export function useSlotViewData(currentSlot: number): SlotViewData { blockNodes: blockFirstSeenQuery.data?.fct_block_first_seen_by_node ?? EMPTY_BLOCK_FIRST_SEEN, blobNodes: blobFirstSeenQuery.data?.fct_block_blob_first_seen_by_node ?? EMPTY_BLOB_FIRST_SEEN, attestationChunks: attestationQuery.data?.fct_attestation_first_seen_chunked_50ms ?? EMPTY_ATTESTATION, + payloadNodes: payloadFirstSeenQuery.data?.fct_block_payload_first_seen_by_node, + ptcChunks: ptcArrivalsQuery.data?.fct_payload_attestation_first_seen_chunked_50ms, proposer: blockProposerQuery.data?.fct_block_proposer?.[0], currentSlot, }); From 2568b3e8622da0b4a41e0c7829869f0470ef34ce Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 17:13:53 +1000 Subject: [PATCH 09/24] fix(live): cap how far one lagging table holds playback behind head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pure minOfMaxes froze the playhead entirely when a single table's bounds trailed by minutes. Prefer the intersection but never fall more than three slots behind the freshest table — near-head slots poll and backfill as the lagging table lands. --- .../SlotPlayerProvider/SlotPlayerProvider.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/providers/SlotPlayerProvider/SlotPlayerProvider.tsx b/src/providers/SlotPlayerProvider/SlotPlayerProvider.tsx index a6ef231ca..9498af5c6 100644 --- a/src/providers/SlotPlayerProvider/SlotPlayerProvider.tsx +++ b/src/providers/SlotPlayerProvider/SlotPlayerProvider.tsx @@ -363,12 +363,17 @@ export function SlotPlayerProvider({ const maxSlot = useMemo(() => { // minOfMaxes is the intersection: the newest slot EVERY table has data - // for. maxOfMaxes would let the fastest-moving table drag the playhead - // into slots the slower tables haven't landed yet, freezing empty panels. - if (!boundsData?.aggregate?.minOfMaxes || !currentNetwork) return 0; - const calculated = Math.floor((boundsData.aggregate.minOfMaxes - currentNetwork.genesis_time) / SECONDS_PER_SLOT); + // for. Prefer it so playback doesn't run ahead into slots the slower + // tables haven't landed — but cap how far a single lagging table can + // hold playback behind the freshest one, since near-head slots keep + // polling and fill in as their data arrives. + if (!boundsData?.aggregate?.minOfMaxes || !boundsData?.aggregate?.maxOfMaxes || !currentNetwork) return 0; + const maxLagSeconds = 3 * SECONDS_PER_SLOT; + const effectiveMax = Math.max(boundsData.aggregate.minOfMaxes, boundsData.aggregate.maxOfMaxes - maxLagSeconds); + const calculated = Math.floor((effectiveMax - currentNetwork.genesis_time) / SECONDS_PER_SLOT); console.log('[SlotPlayerProvider] maxSlot calculation:', { minOfMaxes: boundsData.aggregate.minOfMaxes, + maxOfMaxes: boundsData.aggregate.maxOfMaxes, genesisTime: currentNetwork.genesis_time, calculatedMaxSlot: calculated, }); From c5d7546c99761d0b700dc0613369301bce1b72b5 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 17:33:40 +1000 Subject: [PATCH 10/24] feat(live): per-node block and payload rows in the sidebar timeline City aggregation collapsed every sentry in a datacenter into one anonymous row, which on devnets meant the whole fleet read as a single node. Block and payload sightings are now one row per node with the city as secondary text, on every network. --- .../hooks/useSidebarData/useSidebarData.tsx | 54 +++++-------------- 1 file changed, 14 insertions(+), 40 deletions(-) diff --git a/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx b/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx index 9dd82c83c..c56eb25e6 100644 --- a/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx +++ b/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx @@ -51,67 +51,41 @@ export function useSidebarData({ const items = useMemo(() => { const allItems: TimelineItem[] = []; - // 2. Block seen in locations - Group by city and take earliest - const cityFirstSeen = new Map(); - blockNodes.forEach(node => { + // 2. Block sightings - one row per sentry node + blockNodes.forEach((node, index) => { const city = node.meta_client_geo_city; - const country = node.meta_client_geo_country ?? 'Unknown'; - const timestamp = node.seen_slot_start_diff ?? 0; - - // Format location: "City, Country" or just "Country" if city is missing - const location = city ? `${city}, ${country}` : country; - - const existing = cityFirstSeen.get(location); - if (!existing) { - cityFirstSeen.set(location, { timestamp, location, nodes: 1 }); - } else { - existing.nodes += 1; - if (timestamp < existing.timestamp) existing.timestamp = timestamp; - } - }); + const label = node.node_id ?? node.meta_client_name ?? 'unknown'; - cityFirstSeen.forEach((data, location) => { allItems.push({ - id: `${currentSlot}-block-seen-${location}-${data.timestamp}`, - timestamp: data.timestamp, + id: `${currentSlot}-block-seen-${label}-${index}`, + timestamp: node.seen_slot_start_diff ?? 0, content: (
Block - {data.nodes > 1 ? `${location} · ${data.nodes} nodes` : location} + {label} + {city && {city}}
), }); }); - // 2b. Gloas (ePBS): payload envelope sightings, grouped like blocks - const payloadCityFirstSeen = new Map(); - (payloadNodes ?? []).forEach(node => { + // 2b. Gloas (ePBS): payload envelope sightings - one row per sentry node + (payloadNodes ?? []).forEach((node, index) => { const city = node.meta_client_geo_city; - const country = node.meta_client_geo_country ?? 'Unknown'; - const timestamp = node.seen_slot_start_diff ?? 0; - const location = city ? `${city}, ${country}` : country; - - const existing = payloadCityFirstSeen.get(location); - if (!existing) { - payloadCityFirstSeen.set(location, { timestamp, nodes: 1 }); - } else { - existing.nodes += 1; - if (timestamp < existing.timestamp) existing.timestamp = timestamp; - } - }); + const label = node.node_id ?? node.meta_client_name ?? 'unknown'; - payloadCityFirstSeen.forEach((data, location) => { allItems.push({ - id: `${currentSlot}-payload-seen-${location}-${data.timestamp}`, - timestamp: data.timestamp, + id: `${currentSlot}-payload-seen-${label}-${index}`, + timestamp: node.seen_slot_start_diff ?? 0, content: (
Payload - {data.nodes > 1 ? `${location} · ${data.nodes} nodes` : location} + {label} + {city && {city}}
), }); From 39bde614b30f6c78001a9193d43382822cce1625 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 17:36:02 +1000 Subject: [PATCH 11/24] fix(live): location-first labels on per-node sidebar rows Per-node rows kept, but the visible label is the node's location, matching the established mainnet rendering; the node id rides along muted. --- .../hooks/useSidebarData/useSidebarData.tsx | 26 ++++++++++++------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx b/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx index c56eb25e6..2cd70e6ce 100644 --- a/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx +++ b/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx @@ -51,21 +51,28 @@ export function useSidebarData({ const items = useMemo(() => { const allItems: TimelineItem[] = []; + // Location is the display convention (matching the map); node id rides + // along muted so identical locations stay distinguishable. + const nodeLocation = (node: { meta_client_geo_city?: string; meta_client_geo_country?: string }): string => { + const city = node.meta_client_geo_city; + const country = node.meta_client_geo_country ?? 'Unknown'; + return city ? `${city}, ${country}` : country; + }; + // 2. Block sightings - one row per sentry node blockNodes.forEach((node, index) => { - const city = node.meta_client_geo_city; - const label = node.node_id ?? node.meta_client_name ?? 'unknown'; + const nodeId = node.node_id ?? node.meta_client_name; allItems.push({ - id: `${currentSlot}-block-seen-${label}-${index}`, + id: `${currentSlot}-block-seen-${nodeId ?? index}-${index}`, timestamp: node.seen_slot_start_diff ?? 0, content: (
Block - {label} - {city && {city}} + {nodeLocation(node)} + {nodeId && {nodeId}}
), }); @@ -73,19 +80,18 @@ export function useSidebarData({ // 2b. Gloas (ePBS): payload envelope sightings - one row per sentry node (payloadNodes ?? []).forEach((node, index) => { - const city = node.meta_client_geo_city; - const label = node.node_id ?? node.meta_client_name ?? 'unknown'; + const nodeId = node.node_id ?? node.meta_client_name; allItems.push({ - id: `${currentSlot}-payload-seen-${label}-${index}`, + id: `${currentSlot}-payload-seen-${nodeId ?? index}-${index}`, timestamp: node.seen_slot_start_diff ?? 0, content: (
Payload - {label} - {city && {city}} + {nodeLocation(node)} + {nodeId && {nodeId}}
), }); From a066575b03b383252985b882f794fcaba42e0125 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 17:39:27 +1000 Subject: [PATCH 12/24] fix(live): keep per-node sidebar rows inside the row width Node ids repeated the network name and nothing in the row could shrink, so content ran off the page. The network prefix is stripped, the location stays visible, and the node id truncates with the full value on hover. --- .../hooks/useSidebarData/useSidebarData.tsx | 33 ++++++++++++++----- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx b/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx index 2cd70e6ce..d045e26dc 100644 --- a/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx +++ b/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx @@ -11,6 +11,7 @@ import type { SlotPhase } from '@/utils/beacon'; import type { TimelineItem } from '@/components/Lists/ScrollingTimeline/ScrollingTimeline.types'; import { getSlotPhases } from '@/utils/beacon'; import { useForks } from '@/hooks/useForks'; +import { useNetwork } from '@/hooks/useNetwork'; import { Badge } from '@/components/Elements/Badge'; /** @@ -46,7 +47,9 @@ export function useSidebarData({ items: TimelineItem[]; } { const { activeFork } = useForks(); + const { currentNetwork } = useNetwork(); const phases = useMemo(() => getSlotPhases(activeFork?.name), [activeFork?.name]); + const networkName = currentNetwork?.name; const items = useMemo(() => { const allItems: TimelineItem[] = []; @@ -59,20 +62,28 @@ export function useSidebarData({ return city ? `${city}, ${country}` : country; }; + // Internal node ids repeat the network name; strip it so rows fit. + const shortNodeId = (nodeId: string | undefined): string | undefined => + networkName && nodeId?.startsWith(`${networkName}-`) ? nodeId.slice(networkName.length + 1) : nodeId; + // 2. Block sightings - one row per sentry node blockNodes.forEach((node, index) => { - const nodeId = node.node_id ?? node.meta_client_name; + const nodeId = shortNodeId(node.node_id ?? node.meta_client_name); allItems.push({ id: `${currentSlot}-block-seen-${nodeId ?? index}-${index}`, timestamp: node.seen_slot_start_diff ?? 0, content: ( -
+
Block - {nodeLocation(node)} - {nodeId && {nodeId}} + {nodeLocation(node)} + {nodeId && ( + + {nodeId} + + )}
), }); @@ -80,18 +91,22 @@ export function useSidebarData({ // 2b. Gloas (ePBS): payload envelope sightings - one row per sentry node (payloadNodes ?? []).forEach((node, index) => { - const nodeId = node.node_id ?? node.meta_client_name; + const nodeId = shortNodeId(node.node_id ?? node.meta_client_name); allItems.push({ id: `${currentSlot}-payload-seen-${nodeId ?? index}-${index}`, timestamp: node.seen_slot_start_diff ?? 0, content: ( -
+
Payload - {nodeLocation(node)} - {nodeId && {nodeId}} + {nodeLocation(node)} + {nodeId && ( + + {nodeId} + + )}
), }); @@ -225,7 +240,7 @@ export function useSidebarData({ // Sort all items by timestamp return allItems.sort((a, b) => a.timestamp - b.timestamp); - }, [blockNodes, blobNodes, attestationChunks, payloadNodes, ptcChunks, currentSlot]); + }, [blockNodes, blobNodes, attestationChunks, payloadNodes, ptcChunks, currentSlot, networkName]); return { phases, items }; } From 0f1ee2bf08133f920386313ef3bbf6dab60f4ada Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 17:42:06 +1000 Subject: [PATCH 13/24] fix(live): render sidebar rows exactly as master does Back to the city-grouped location rows master ships. The only sidebar changes left are additive: payload envelope rows in the identical shape, and PTC vote rows in the attestation-row shape. --- .../hooks/useSidebarData/useSidebarData.tsx | 69 +++++++++---------- 1 file changed, 33 insertions(+), 36 deletions(-) diff --git a/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx b/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx index d045e26dc..841f692e3 100644 --- a/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx +++ b/src/pages/ethereum/live/hooks/useSidebarData/useSidebarData.tsx @@ -11,7 +11,6 @@ import type { SlotPhase } from '@/utils/beacon'; import type { TimelineItem } from '@/components/Lists/ScrollingTimeline/ScrollingTimeline.types'; import { getSlotPhases } from '@/utils/beacon'; import { useForks } from '@/hooks/useForks'; -import { useNetwork } from '@/hooks/useNetwork'; import { Badge } from '@/components/Elements/Badge'; /** @@ -47,66 +46,64 @@ export function useSidebarData({ items: TimelineItem[]; } { const { activeFork } = useForks(); - const { currentNetwork } = useNetwork(); const phases = useMemo(() => getSlotPhases(activeFork?.name), [activeFork?.name]); - const networkName = currentNetwork?.name; const items = useMemo(() => { const allItems: TimelineItem[] = []; - // Location is the display convention (matching the map); node id rides - // along muted so identical locations stay distinguishable. - const nodeLocation = (node: { meta_client_geo_city?: string; meta_client_geo_country?: string }): string => { + // 2. Block seen in locations - Group by city and take earliest + const cityFirstSeen = new Map(); + blockNodes.forEach(node => { const city = node.meta_client_geo_city; const country = node.meta_client_geo_country ?? 'Unknown'; - return city ? `${city}, ${country}` : country; - }; + const timestamp = node.seen_slot_start_diff ?? 0; - // Internal node ids repeat the network name; strip it so rows fit. - const shortNodeId = (nodeId: string | undefined): string | undefined => - networkName && nodeId?.startsWith(`${networkName}-`) ? nodeId.slice(networkName.length + 1) : nodeId; + // Format location: "City, Country" or just "Country" if city is missing + const location = city ? `${city}, ${country}` : country; - // 2. Block sightings - one row per sentry node - blockNodes.forEach((node, index) => { - const nodeId = shortNodeId(node.node_id ?? node.meta_client_name); + if (!cityFirstSeen.has(location) || timestamp < cityFirstSeen.get(location)!.timestamp) { + cityFirstSeen.set(location, { timestamp, location }); + } + }); + cityFirstSeen.forEach((data, location) => { allItems.push({ - id: `${currentSlot}-block-seen-${nodeId ?? index}-${index}`, - timestamp: node.seen_slot_start_diff ?? 0, + id: `${currentSlot}-block-seen-${location}-${data.timestamp}`, + timestamp: data.timestamp, content: ( -
+
Block - {nodeLocation(node)} - {nodeId && ( - - {nodeId} - - )} + {location}
), }); }); - // 2b. Gloas (ePBS): payload envelope sightings - one row per sentry node - (payloadNodes ?? []).forEach((node, index) => { - const nodeId = shortNodeId(node.node_id ?? node.meta_client_name); + // 2b. Gloas (ePBS): payload envelope seen in locations - same shape as blocks + const payloadCityFirstSeen = new Map(); + (payloadNodes ?? []).forEach(node => { + const city = node.meta_client_geo_city; + const country = node.meta_client_geo_country ?? 'Unknown'; + const timestamp = node.seen_slot_start_diff ?? 0; + const location = city ? `${city}, ${country}` : country; + + if (!payloadCityFirstSeen.has(location) || timestamp < payloadCityFirstSeen.get(location)!.timestamp) { + payloadCityFirstSeen.set(location, { timestamp, location }); + } + }); + payloadCityFirstSeen.forEach((data, location) => { allItems.push({ - id: `${currentSlot}-payload-seen-${nodeId ?? index}-${index}`, - timestamp: node.seen_slot_start_diff ?? 0, + id: `${currentSlot}-payload-seen-${location}-${data.timestamp}`, + timestamp: data.timestamp, content: ( -
+
Payload - {nodeLocation(node)} - {nodeId && ( - - {nodeId} - - )} + {location}
), }); @@ -240,7 +237,7 @@ export function useSidebarData({ // Sort all items by timestamp return allItems.sort((a, b) => a.timestamp - b.timestamp); - }, [blockNodes, blobNodes, attestationChunks, payloadNodes, ptcChunks, currentSlot, networkName]); + }, [blockNodes, blobNodes, attestationChunks, payloadNodes, ptcChunks, currentSlot]); return { phases, items }; } From 09ed9f6c054466837a19954e8f45faf5c8bc628d Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Thu, 16 Jul 2026 17:45:03 +1000 Subject: [PATCH 14/24] fix(forks): drop the FOCIL claim from gloas metadata MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit EIP-7805 is not part of Glamsterdam — ePBS took the consensus headliner slot. A few leftover inclusion-list constants in the devnet config presets misled the description; the devnets expose no inclusion-list surface. --- src/utils/beacon.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils/beacon.ts b/src/utils/beacon.ts index 9043b355d..a6e69236d 100644 --- a/src/utils/beacon.ts +++ b/src/utils/beacon.ts @@ -77,7 +77,7 @@ const PRE_GLOAS_PHASE_SPECS: SlotPhaseSpec[] = [ * bid; the execution payload is revealed separately and judged by the Payload * Timeliness Committee. Deadlines from the consensus config: * ATTESTATION_DUE_BPS_GLOAS 2500, AGGREGATE_DUE_BPS_GLOAS 5000, - * INCLUSION_LIST_DUE_BPS 6667, PAYLOAD_DUE_BPS / PAYLOAD_ATTESTATION_DUE_BPS 7500. + * PAYLOAD_DUE_BPS / PAYLOAD_ATTESTATION_DUE_BPS 7500. */ const GLOAS_PHASE_SPECS: SlotPhaseSpec[] = [ { @@ -99,7 +99,7 @@ const GLOAS_PHASE_SPECS: SlotPhaseSpec[] = [ endBps: 7500, className: 'bg-surface border-b-4 border-b-purple-500/50', textClassName: 'text-purple-600 dark:text-purple-400 font-bold', - description: 'Builder reveals the execution payload, inclusion lists due', + description: 'Builder reveals the execution payload', }, { label: 'PTC', @@ -370,7 +370,7 @@ export const FORK_METADATA: Record = { emoji: '🐋', color: 'bg-amber-100 text-amber-700 dark:bg-amber-400/10 dark:text-amber-400', description: - 'Glamsterdam - Enshrines proposer-builder separation, splitting the execution payload from the block with a Payload Timeliness Committee (EIP-7732), and adds fork-choice enforced inclusion lists (EIP-7805)', + 'Glamsterdam - Enshrines proposer-builder separation, splitting the execution payload from the block with a Payload Timeliness Committee (EIP-7732)', executionName: 'amsterdam', combinedName: 'glamsterdam', }, From 9d9309f1af0e053fcb8959bf714addfb71046bc9 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Fri, 17 Jul 2026 11:56:16 +1000 Subject: [PATCH 15/24] feat(slots): real gloas execution data and payload verdicts in the list The Execution tab rendered zero-filled values on gloas slots because the beacon block no longer carries the payload. Payload facts from the new fct_block_payload table (bid commitment joined with envelope contents) overlay the block's execution columns, and fields that genuinely no longer exist CL-side (gas used, base fee, block number) are hidden rather than shown as zeros. The slots list gains a Payload column on gloas networks: the PTC's verdict per slot, Delivered or Absent, with the vote tally on hover. --- src/api/@tanstack/react-query.gen.ts | 62 + src/api/index.ts | 15 + src/api/sdk.gen.ts | 40 + src/api/types.gen.ts | 822 ++++++++++ src/api/zod.gen.ts | 1450 ++++++++++++++--- src/pages/ethereum/slots/DetailPage.tsx | 25 +- src/pages/ethereum/slots/IndexPage.tsx | 31 +- .../SlotBasicInfoCard/SlotBasicInfoCard.tsx | 17 +- .../slots/hooks/useInfiniteSlotsData.ts | 96 +- .../useSlotPayloadData/useSlotPayloadData.ts | 13 +- .../slots/hooks/useSlotsData.types.ts | 4 + 11 files changed, 2339 insertions(+), 236 deletions(-) diff --git a/src/api/@tanstack/react-query.gen.ts b/src/api/@tanstack/react-query.gen.ts index d9c343852..0e97fbd46 100644 --- a/src/api/@tanstack/react-query.gen.ts +++ b/src/api/@tanstack/react-query.gen.ts @@ -94,6 +94,8 @@ import { fctBlockPayloadPtcVoteHeadServiceList, fctBlockPayloadPtcVoteServiceGet, fctBlockPayloadPtcVoteServiceList, + fctBlockPayloadServiceGet, + fctBlockPayloadServiceList, fctBlockProposalStatusDailyServiceGet, fctBlockProposalStatusDailyServiceList, fctBlockProposalStatusHourlyServiceGet, @@ -691,6 +693,12 @@ import type { FctBlockPayloadPtcVoteServiceListData, FctBlockPayloadPtcVoteServiceListError, FctBlockPayloadPtcVoteServiceListResponse, + FctBlockPayloadServiceGetData, + FctBlockPayloadServiceGetError, + FctBlockPayloadServiceGetResponse, + FctBlockPayloadServiceListData, + FctBlockPayloadServiceListError, + FctBlockPayloadServiceListResponse, FctBlockProposalStatusDailyServiceGetData, FctBlockProposalStatusDailyServiceGetError, FctBlockProposalStatusDailyServiceGetResponse, @@ -4042,6 +4050,60 @@ export const fctBlockMevHeadServiceGetOptions = (options: Options) => + createQueryKey('fctBlockPayloadServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockPayloadServiceListOptions = (options?: Options) => + queryOptions< + FctBlockPayloadServiceListResponse, + FctBlockPayloadServiceListError, + FctBlockPayloadServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockPayloadServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockPayloadServiceListQueryKey(options), + }); + +export const fctBlockPayloadServiceGetQueryKey = (options: Options) => + createQueryKey('fctBlockPayloadServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctBlockPayloadServiceGetOptions = (options: Options) => + queryOptions< + FctBlockPayloadServiceGetResponse, + FctBlockPayloadServiceGetError, + FctBlockPayloadServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockPayloadServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockPayloadServiceGetQueryKey(options), + }); + export const fctBlockPayloadAvailableByNodeServiceListQueryKey = ( options?: Options ) => createQueryKey('fctBlockPayloadAvailableByNodeServiceList', options); diff --git a/src/api/index.ts b/src/api/index.ts index 0ee458cff..2d856246e 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -91,6 +91,8 @@ export { fctBlockPayloadPtcVoteHeadServiceList, fctBlockPayloadPtcVoteServiceGet, fctBlockPayloadPtcVoteServiceList, + fctBlockPayloadServiceGet, + fctBlockPayloadServiceList, fctBlockProposalStatusDailyServiceGet, fctBlockProposalStatusDailyServiceList, fctBlockProposalStatusHourlyServiceGet, @@ -860,6 +862,7 @@ export type { FctBlockMevServiceListErrors, FctBlockMevServiceListResponse, FctBlockMevServiceListResponses, + FctBlockPayload, FctBlockPayloadAvailableByNode, FctBlockPayloadAvailableByNodeServiceGetData, FctBlockPayloadAvailableByNodeServiceGetError, @@ -915,6 +918,16 @@ export type { FctBlockPayloadPtcVoteServiceListErrors, FctBlockPayloadPtcVoteServiceListResponse, FctBlockPayloadPtcVoteServiceListResponses, + FctBlockPayloadServiceGetData, + FctBlockPayloadServiceGetError, + FctBlockPayloadServiceGetErrors, + FctBlockPayloadServiceGetResponse, + FctBlockPayloadServiceGetResponses, + FctBlockPayloadServiceListData, + FctBlockPayloadServiceListError, + FctBlockPayloadServiceListErrors, + FctBlockPayloadServiceListResponse, + FctBlockPayloadServiceListResponses, FctBlockProposalStatusDaily, FctBlockProposalStatusDailyServiceGetData, FctBlockProposalStatusDailyServiceGetError, @@ -1916,6 +1929,7 @@ export type { GetFctBlockPayloadFirstSeenByNodeResponse, GetFctBlockPayloadPtcVoteHeadResponse, GetFctBlockPayloadPtcVoteResponse, + GetFctBlockPayloadResponse, GetFctBlockProposalStatusDailyResponse, GetFctBlockProposalStatusHourlyResponse, GetFctBlockProposerByValidatorResponse, @@ -2949,6 +2963,7 @@ export type { ListFctBlockPayloadFirstSeenByNodeResponse, ListFctBlockPayloadPtcVoteHeadResponse, ListFctBlockPayloadPtcVoteResponse, + ListFctBlockPayloadResponse, ListFctBlockProposalStatusDailyResponse, ListFctBlockProposalStatusHourlyResponse, ListFctBlockProposerByValidatorResponse, diff --git a/src/api/sdk.gen.ts b/src/api/sdk.gen.ts index 6e77d75fe..dd29afe17 100644 --- a/src/api/sdk.gen.ts +++ b/src/api/sdk.gen.ts @@ -273,6 +273,12 @@ import type { FctBlockPayloadPtcVoteServiceListData, FctBlockPayloadPtcVoteServiceListErrors, FctBlockPayloadPtcVoteServiceListResponses, + FctBlockPayloadServiceGetData, + FctBlockPayloadServiceGetErrors, + FctBlockPayloadServiceGetResponses, + FctBlockPayloadServiceListData, + FctBlockPayloadServiceListErrors, + FctBlockPayloadServiceListResponses, FctBlockProposalStatusDailyServiceGetData, FctBlockProposalStatusDailyServiceGetErrors, FctBlockProposalStatusDailyServiceGetResponses, @@ -1427,6 +1433,10 @@ import { zFctBlockPayloadPtcVoteServiceGetResponse, zFctBlockPayloadPtcVoteServiceListData, zFctBlockPayloadPtcVoteServiceListResponse, + zFctBlockPayloadServiceGetData, + zFctBlockPayloadServiceGetResponse, + zFctBlockPayloadServiceListData, + zFctBlockPayloadServiceListResponse, zFctBlockProposalStatusDailyServiceGetData, zFctBlockProposalStatusDailyServiceGetResponse, zFctBlockProposalStatusDailyServiceListData, @@ -3605,6 +3615,36 @@ export const fctBlockMevHeadServiceGet = ( ...options, }); +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockPayloadServiceList = ( + options?: Options +) => + (options?.client ?? client).get({ + requestValidator: async data => await zFctBlockPayloadServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadServiceListResponse.parseAsync(data), + url: '/api/v1/fct_block_payload', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctBlockPayloadServiceGet = ( + options: Options +) => + (options.client ?? client).get({ + requestValidator: async data => await zFctBlockPayloadServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_block_payload/{slot_start_date_time}', + ...options, + }); + /** * List records * diff --git a/src/api/types.gen.ts b/src/api/types.gen.ts index 4d7379754..26652c83b 100644 --- a/src/api/types.gen.ts +++ b/src/api/types.gen.ts @@ -2183,6 +2183,77 @@ export type FctBlockMevHead = { value?: string | null; }; +export type FctBlockPayload = { + /** + * Number of blob KZG commitments in the bid + */ + blob_kzg_commitment_count?: number; + /** + * Number of type-3 blob transactions in the revealed payload + */ + blob_transactions_count?: number; + /** + * The execution block hash of the payload + */ + block_hash?: string; + /** + * The root of the beacon block the payload belongs to + */ + block_root?: string; + /** + * The beacon block version, e.g. gloas + */ + block_version?: string; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads + */ + builder_index?: number; + /** + * The epoch number containing the slot + */ + epoch?: number; + /** + * The wall clock time when the epoch started + */ + epoch_start_date_time?: number; + /** + * The gas limit committed to in the bid + */ + gas_limit?: number; + /** + * The parent execution block hash + */ + parent_block_hash?: string; + /** + * The slot number of the block the payload belongs to + */ + slot?: number; + /** + * The wall clock time when the slot started + */ + slot_start_date_time?: number; + /** + * Number of transactions in the revealed payload + */ + transactions_count?: number; + /** + * Total bytes of transactions in the revealed payload + */ + transactions_total_bytes?: number; + /** + * Sum of per-transaction gas limits in the revealed payload + */ + transactions_total_gas_limit?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The winning bid value in wei + */ + value?: string; +}; + export type FctBlockPayloadAvailableByNode = { /** * The time from slot start for the node to have the payload and its blobs locally verified @@ -6933,6 +7004,13 @@ export type GetFctBlockPayloadPtcVoteResponse = { item?: FctBlockPayloadPtcVote; }; +/** + * Response for getting a single fct_block_payload record + */ +export type GetFctBlockPayloadResponse = { + item?: FctBlockPayload; +}; + /** * Response for getting a single fct_block_proposal_status_daily record */ @@ -12045,6 +12123,20 @@ export type ListFctBlockPayloadPtcVoteResponse = { next_page_token?: string; }; +/** + * Response for listing fct_block_payload records + */ +export type ListFctBlockPayloadResponse = { + /** + * The list of fct_block_payload. + */ + fct_block_payload?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + /** * Response for listing fct_block_proposal_status_daily records */ @@ -34490,6 +34582,736 @@ export type FctBlockMevHeadServiceGetResponses = { export type FctBlockMevHeadServiceGetResponse = FctBlockMevHeadServiceGetResponses[keyof FctBlockMevHeadServiceGetResponses]; +export type FctBlockPayloadServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time when the slot started (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The wall clock time when the slot started (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The wall clock time when the slot started (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The wall clock time when the slot started (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The wall clock time when the slot started (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The wall clock time when the slot started (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The wall clock time when the slot started (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The wall clock time when the slot started (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The wall clock time when the slot started (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The wall clock time when the slot started (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The root of the beacon block the payload belongs to (filter: eq) + */ + block_root_eq?: string; + /** + * The root of the beacon block the payload belongs to (filter: ne) + */ + block_root_ne?: string; + /** + * The root of the beacon block the payload belongs to (filter: contains) + */ + block_root_contains?: string; + /** + * The root of the beacon block the payload belongs to (filter: starts_with) + */ + block_root_starts_with?: string; + /** + * The root of the beacon block the payload belongs to (filter: ends_with) + */ + block_root_ends_with?: string; + /** + * The root of the beacon block the payload belongs to (filter: like) + */ + block_root_like?: string; + /** + * The root of the beacon block the payload belongs to (filter: not_like) + */ + block_root_not_like?: string; + /** + * The root of the beacon block the payload belongs to (filter: in_values) (comma-separated list) + */ + block_root_in_values?: string; + /** + * The root of the beacon block the payload belongs to (filter: not_in_values) (comma-separated list) + */ + block_root_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * The slot number of the block the payload belongs to (filter: eq) + */ + slot_eq?: number; + /** + * The slot number of the block the payload belongs to (filter: ne) + */ + slot_ne?: number; + /** + * The slot number of the block the payload belongs to (filter: lt) + */ + slot_lt?: number; + /** + * The slot number of the block the payload belongs to (filter: lte) + */ + slot_lte?: number; + /** + * The slot number of the block the payload belongs to (filter: gt) + */ + slot_gt?: number; + /** + * The slot number of the block the payload belongs to (filter: gte) + */ + slot_gte?: number; + /** + * The slot number of the block the payload belongs to (filter: between_min) + */ + slot_between_min?: number; + /** + * The slot number of the block the payload belongs to (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * The slot number of the block the payload belongs to (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * The slot number of the block the payload belongs to (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * The epoch number containing the slot (filter: eq) + */ + epoch_eq?: number; + /** + * The epoch number containing the slot (filter: ne) + */ + epoch_ne?: number; + /** + * The epoch number containing the slot (filter: lt) + */ + epoch_lt?: number; + /** + * The epoch number containing the slot (filter: lte) + */ + epoch_lte?: number; + /** + * The epoch number containing the slot (filter: gt) + */ + epoch_gt?: number; + /** + * The epoch number containing the slot (filter: gte) + */ + epoch_gte?: number; + /** + * The epoch number containing the slot (filter: between_min) + */ + epoch_between_min?: number; + /** + * The epoch number containing the slot (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * The epoch number containing the slot (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * The epoch number containing the slot (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The wall clock time when the epoch started (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The wall clock time when the epoch started (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The wall clock time when the epoch started (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The wall clock time when the epoch started (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The wall clock time when the epoch started (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The wall clock time when the epoch started (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The wall clock time when the epoch started (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The wall clock time when the epoch started (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The wall clock time when the epoch started (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The wall clock time when the epoch started (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The beacon block version, e.g. gloas (filter: eq) + */ + block_version_eq?: string; + /** + * The beacon block version, e.g. gloas (filter: ne) + */ + block_version_ne?: string; + /** + * The beacon block version, e.g. gloas (filter: contains) + */ + block_version_contains?: string; + /** + * The beacon block version, e.g. gloas (filter: starts_with) + */ + block_version_starts_with?: string; + /** + * The beacon block version, e.g. gloas (filter: ends_with) + */ + block_version_ends_with?: string; + /** + * The beacon block version, e.g. gloas (filter: like) + */ + block_version_like?: string; + /** + * The beacon block version, e.g. gloas (filter: not_like) + */ + block_version_not_like?: string; + /** + * The beacon block version, e.g. gloas (filter: in_values) (comma-separated list) + */ + block_version_in_values?: string; + /** + * The beacon block version, e.g. gloas (filter: not_in_values) (comma-separated list) + */ + block_version_not_in_values?: string; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: eq) + */ + builder_index_eq?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: ne) + */ + builder_index_ne?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: lt) + */ + builder_index_lt?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: lte) + */ + builder_index_lte?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: gt) + */ + builder_index_gt?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: gte) + */ + builder_index_gte?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: between_min) + */ + builder_index_between_min?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: between_max_value) + */ + builder_index_between_max_value?: number; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: in_values) (comma-separated list) + */ + builder_index_in_values?: string; + /** + * Validator index of the builder, equal to the block proposer index for self-built payloads (filter: not_in_values) (comma-separated list) + */ + builder_index_not_in_values?: string; + /** + * The execution block hash of the payload (filter: eq) + */ + block_hash_eq?: string; + /** + * The execution block hash of the payload (filter: ne) + */ + block_hash_ne?: string; + /** + * The execution block hash of the payload (filter: contains) + */ + block_hash_contains?: string; + /** + * The execution block hash of the payload (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * The execution block hash of the payload (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * The execution block hash of the payload (filter: like) + */ + block_hash_like?: string; + /** + * The execution block hash of the payload (filter: not_like) + */ + block_hash_not_like?: string; + /** + * The execution block hash of the payload (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * The execution block hash of the payload (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * The parent execution block hash (filter: eq) + */ + parent_block_hash_eq?: string; + /** + * The parent execution block hash (filter: ne) + */ + parent_block_hash_ne?: string; + /** + * The parent execution block hash (filter: contains) + */ + parent_block_hash_contains?: string; + /** + * The parent execution block hash (filter: starts_with) + */ + parent_block_hash_starts_with?: string; + /** + * The parent execution block hash (filter: ends_with) + */ + parent_block_hash_ends_with?: string; + /** + * The parent execution block hash (filter: like) + */ + parent_block_hash_like?: string; + /** + * The parent execution block hash (filter: not_like) + */ + parent_block_hash_not_like?: string; + /** + * The parent execution block hash (filter: in_values) (comma-separated list) + */ + parent_block_hash_in_values?: string; + /** + * The parent execution block hash (filter: not_in_values) (comma-separated list) + */ + parent_block_hash_not_in_values?: string; + /** + * The winning bid value in wei (filter: eq) + */ + value_eq?: string; + /** + * The winning bid value in wei (filter: ne) + */ + value_ne?: string; + /** + * The winning bid value in wei (filter: contains) + */ + value_contains?: string; + /** + * The winning bid value in wei (filter: starts_with) + */ + value_starts_with?: string; + /** + * The winning bid value in wei (filter: ends_with) + */ + value_ends_with?: string; + /** + * The winning bid value in wei (filter: like) + */ + value_like?: string; + /** + * The winning bid value in wei (filter: not_like) + */ + value_not_like?: string; + /** + * The winning bid value in wei (filter: in_values) (comma-separated list) + */ + value_in_values?: string; + /** + * The winning bid value in wei (filter: not_in_values) (comma-separated list) + */ + value_not_in_values?: string; + /** + * The gas limit committed to in the bid (filter: eq) + */ + gas_limit_eq?: number; + /** + * The gas limit committed to in the bid (filter: ne) + */ + gas_limit_ne?: number; + /** + * The gas limit committed to in the bid (filter: lt) + */ + gas_limit_lt?: number; + /** + * The gas limit committed to in the bid (filter: lte) + */ + gas_limit_lte?: number; + /** + * The gas limit committed to in the bid (filter: gt) + */ + gas_limit_gt?: number; + /** + * The gas limit committed to in the bid (filter: gte) + */ + gas_limit_gte?: number; + /** + * The gas limit committed to in the bid (filter: between_min) + */ + gas_limit_between_min?: number; + /** + * The gas limit committed to in the bid (filter: between_max_value) + */ + gas_limit_between_max_value?: number; + /** + * The gas limit committed to in the bid (filter: in_values) (comma-separated list) + */ + gas_limit_in_values?: string; + /** + * The gas limit committed to in the bid (filter: not_in_values) (comma-separated list) + */ + gas_limit_not_in_values?: string; + /** + * Number of blob KZG commitments in the bid (filter: eq) + */ + blob_kzg_commitment_count_eq?: number; + /** + * Number of blob KZG commitments in the bid (filter: ne) + */ + blob_kzg_commitment_count_ne?: number; + /** + * Number of blob KZG commitments in the bid (filter: lt) + */ + blob_kzg_commitment_count_lt?: number; + /** + * Number of blob KZG commitments in the bid (filter: lte) + */ + blob_kzg_commitment_count_lte?: number; + /** + * Number of blob KZG commitments in the bid (filter: gt) + */ + blob_kzg_commitment_count_gt?: number; + /** + * Number of blob KZG commitments in the bid (filter: gte) + */ + blob_kzg_commitment_count_gte?: number; + /** + * Number of blob KZG commitments in the bid (filter: between_min) + */ + blob_kzg_commitment_count_between_min?: number; + /** + * Number of blob KZG commitments in the bid (filter: between_max_value) + */ + blob_kzg_commitment_count_between_max_value?: number; + /** + * Number of blob KZG commitments in the bid (filter: in_values) (comma-separated list) + */ + blob_kzg_commitment_count_in_values?: string; + /** + * Number of blob KZG commitments in the bid (filter: not_in_values) (comma-separated list) + */ + blob_kzg_commitment_count_not_in_values?: string; + /** + * Number of transactions in the revealed payload (filter: eq) + */ + transactions_count_eq?: number; + /** + * Number of transactions in the revealed payload (filter: ne) + */ + transactions_count_ne?: number; + /** + * Number of transactions in the revealed payload (filter: lt) + */ + transactions_count_lt?: number; + /** + * Number of transactions in the revealed payload (filter: lte) + */ + transactions_count_lte?: number; + /** + * Number of transactions in the revealed payload (filter: gt) + */ + transactions_count_gt?: number; + /** + * Number of transactions in the revealed payload (filter: gte) + */ + transactions_count_gte?: number; + /** + * Number of transactions in the revealed payload (filter: between_min) + */ + transactions_count_between_min?: number; + /** + * Number of transactions in the revealed payload (filter: between_max_value) + */ + transactions_count_between_max_value?: number; + /** + * Number of transactions in the revealed payload (filter: in_values) (comma-separated list) + */ + transactions_count_in_values?: string; + /** + * Number of transactions in the revealed payload (filter: not_in_values) (comma-separated list) + */ + transactions_count_not_in_values?: string; + /** + * Total bytes of transactions in the revealed payload (filter: eq) + */ + transactions_total_bytes_eq?: number; + /** + * Total bytes of transactions in the revealed payload (filter: ne) + */ + transactions_total_bytes_ne?: number; + /** + * Total bytes of transactions in the revealed payload (filter: lt) + */ + transactions_total_bytes_lt?: number; + /** + * Total bytes of transactions in the revealed payload (filter: lte) + */ + transactions_total_bytes_lte?: number; + /** + * Total bytes of transactions in the revealed payload (filter: gt) + */ + transactions_total_bytes_gt?: number; + /** + * Total bytes of transactions in the revealed payload (filter: gte) + */ + transactions_total_bytes_gte?: number; + /** + * Total bytes of transactions in the revealed payload (filter: between_min) + */ + transactions_total_bytes_between_min?: number; + /** + * Total bytes of transactions in the revealed payload (filter: between_max_value) + */ + transactions_total_bytes_between_max_value?: number; + /** + * Total bytes of transactions in the revealed payload (filter: in_values) (comma-separated list) + */ + transactions_total_bytes_in_values?: string; + /** + * Total bytes of transactions in the revealed payload (filter: not_in_values) (comma-separated list) + */ + transactions_total_bytes_not_in_values?: string; + /** + * Sum of per-transaction gas limits in the revealed payload (filter: eq) + */ + transactions_total_gas_limit_eq?: number; + /** + * Sum of per-transaction gas limits in the revealed payload (filter: ne) + */ + transactions_total_gas_limit_ne?: number; + /** + * Sum of per-transaction gas limits in the revealed payload (filter: lt) + */ + transactions_total_gas_limit_lt?: number; + /** + * Sum of per-transaction gas limits in the revealed payload (filter: lte) + */ + transactions_total_gas_limit_lte?: number; + /** + * Sum of per-transaction gas limits in the revealed payload (filter: gt) + */ + transactions_total_gas_limit_gt?: number; + /** + * Sum of per-transaction gas limits in the revealed payload (filter: gte) + */ + transactions_total_gas_limit_gte?: number; + /** + * Sum of per-transaction gas limits in the revealed payload (filter: between_min) + */ + transactions_total_gas_limit_between_min?: number; + /** + * Sum of per-transaction gas limits in the revealed payload (filter: between_max_value) + */ + transactions_total_gas_limit_between_max_value?: number; + /** + * Sum of per-transaction gas limits in the revealed payload (filter: in_values) (comma-separated list) + */ + transactions_total_gas_limit_in_values?: string; + /** + * Sum of per-transaction gas limits in the revealed payload (filter: not_in_values) (comma-separated list) + */ + transactions_total_gas_limit_not_in_values?: string; + /** + * Number of type-3 blob transactions in the revealed payload (filter: eq) + */ + blob_transactions_count_eq?: number; + /** + * Number of type-3 blob transactions in the revealed payload (filter: ne) + */ + blob_transactions_count_ne?: number; + /** + * Number of type-3 blob transactions in the revealed payload (filter: lt) + */ + blob_transactions_count_lt?: number; + /** + * Number of type-3 blob transactions in the revealed payload (filter: lte) + */ + blob_transactions_count_lte?: number; + /** + * Number of type-3 blob transactions in the revealed payload (filter: gt) + */ + blob_transactions_count_gt?: number; + /** + * Number of type-3 blob transactions in the revealed payload (filter: gte) + */ + blob_transactions_count_gte?: number; + /** + * Number of type-3 blob transactions in the revealed payload (filter: between_min) + */ + blob_transactions_count_between_min?: number; + /** + * Number of type-3 blob transactions in the revealed payload (filter: between_max_value) + */ + blob_transactions_count_between_max_value?: number; + /** + * Number of type-3 blob transactions in the revealed payload (filter: in_values) (comma-separated list) + */ + blob_transactions_count_in_values?: string; + /** + * Number of type-3 blob transactions in the revealed payload (filter: not_in_values) (comma-separated list) + */ + blob_transactions_count_not_in_values?: string; + /** + * The maximum number of fct_block_payload to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockPayload` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_payload'; +}; + +export type FctBlockPayloadServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadServiceListError = FctBlockPayloadServiceListErrors[keyof FctBlockPayloadServiceListErrors]; + +export type FctBlockPayloadServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockPayloadResponse; +}; + +export type FctBlockPayloadServiceListResponse = + FctBlockPayloadServiceListResponses[keyof FctBlockPayloadServiceListResponses]; + +export type FctBlockPayloadServiceGetData = { + body?: never; + path: { + /** + * The wall clock time when the slot started + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_payload/{slot_start_date_time}'; +}; + +export type FctBlockPayloadServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadServiceGetError = FctBlockPayloadServiceGetErrors[keyof FctBlockPayloadServiceGetErrors]; + +export type FctBlockPayloadServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockPayloadResponse; +}; + +export type FctBlockPayloadServiceGetResponse = + FctBlockPayloadServiceGetResponses[keyof FctBlockPayloadServiceGetResponses]; + export type FctBlockPayloadAvailableByNodeServiceListData = { body?: never; path?: never; diff --git a/src/api/zod.gen.ts b/src/api/zod.gen.ts index 98385242b..b7e09b404 100644 --- a/src/api/zod.gen.ts +++ b/src/api/zod.gen.ts @@ -2726,6 +2726,118 @@ export const zFctBlockMevHead = z.object({ value: z.optional(z.union([z.string(), z.null()])), }); +export const zFctBlockPayload = z.object({ + blob_kzg_commitment_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_transactions_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + block_hash: z.optional(z.string()), + block_root: z.optional(z.string()), + block_version: z.optional(z.string()), + builder_index: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + parent_block_hash: z.optional(z.string()), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transactions_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transactions_total_bytes: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + transactions_total_gas_limit: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + value: z.optional(z.string()), +}); + export const zFctBlockPayloadAvailableByNode = z.object({ available_slot_start_diff: z.optional( z @@ -9709,6 +9821,13 @@ export const zGetFctBlockPayloadPtcVoteResponse = z.object({ item: z.optional(zFctBlockPayloadPtcVote), }); +/** + * Response for getting a single fct_block_payload record + */ +export const zGetFctBlockPayloadResponse = z.object({ + item: z.optional(zFctBlockPayload), +}); + /** * Response for getting a single fct_block_proposal_status_daily record */ @@ -16336,6 +16455,14 @@ export const zListFctBlockPayloadPtcVoteResponse = z.object({ next_page_token: z.optional(z.string()), }); +/** + * Response for listing fct_block_payload records + */ +export const zListFctBlockPayloadResponse = z.object({ + fct_block_payload: z.optional(z.array(zFctBlockPayload)), + next_page_token: z.optional(z.string()), +}); + /** * Response for listing fct_block_proposal_status_daily records */ @@ -39002,157 +39129,1013 @@ export const zFctBlockMevHeadServiceListData = z.object({ ), epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - earliest_bid_date_time_eq: z.optional( + earliest_bid_date_time_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + earliest_bid_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + earliest_bid_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + relay_names_has: z.optional(z.string()), + relay_names_has_all_values: z.optional(z.array(z.string())), + relay_names_has_any_values: z.optional(z.array(z.string())), + relay_names_length_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + relay_names_length_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + parent_hash_eq: z.optional(z.string()), + parent_hash_ne: z.optional(z.string()), + parent_hash_contains: z.optional(z.string()), + parent_hash_starts_with: z.optional(z.string()), + parent_hash_ends_with: z.optional(z.string()), + parent_hash_like: z.optional(z.string()), + parent_hash_not_like: z.optional(z.string()), + parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_number_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_pubkey_eq: z.optional(z.string()), + builder_pubkey_ne: z.optional(z.string()), + builder_pubkey_contains: z.optional(z.string()), + builder_pubkey_starts_with: z.optional(z.string()), + builder_pubkey_ends_with: z.optional(z.string()), + builder_pubkey_like: z.optional(z.string()), + builder_pubkey_not_like: z.optional(z.string()), + builder_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_pubkey_eq: z.optional(z.string()), + proposer_pubkey_ne: z.optional(z.string()), + proposer_pubkey_contains: z.optional(z.string()), + proposer_pubkey_starts_with: z.optional(z.string()), + proposer_pubkey_ends_with: z.optional(z.string()), + proposer_pubkey_like: z.optional(z.string()), + proposer_pubkey_not_like: z.optional(z.string()), + proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_fee_recipient_eq: z.optional(z.string()), + proposer_fee_recipient_ne: z.optional(z.string()), + proposer_fee_recipient_contains: z.optional(z.string()), + proposer_fee_recipient_starts_with: z.optional(z.string()), + proposer_fee_recipient_ends_with: z.optional(z.string()), + proposer_fee_recipient_like: z.optional(z.string()), + proposer_fee_recipient_not_like: z.optional(z.string()), + proposer_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + proposer_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + gas_limit_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + value_eq: z.optional(z.string()), + value_ne: z.optional(z.string()), + value_contains: z.optional(z.string()), + value_starts_with: z.optional(z.string()), + value_ends_with: z.optional(z.string()), + value_like: z.optional(z.string()), + value_not_like: z.optional(z.string()), + value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + transaction_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctBlockMevHeadServiceListResponse = zListFctBlockMevHeadResponse; + +export const zFctBlockMevHeadServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctBlockMevHeadServiceGetResponse = zGetFctBlockMevHeadResponse; + +export const zFctBlockPayloadServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_root_eq: z.optional(z.string()), + block_root_ne: z.optional(z.string()), + block_root_contains: z.optional(z.string()), + block_root_starts_with: z.optional(z.string()), + block_root_ends_with: z.optional(z.string()), + block_root_like: z.optional(z.string()), + block_root_not_like: z.optional(z.string()), + block_root_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_root_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_version_eq: z.optional(z.string()), + block_version_ne: z.optional(z.string()), + block_version_contains: z.optional(z.string()), + block_version_starts_with: z.optional(z.string()), + block_version_ends_with: z.optional(z.string()), + block_version_like: z.optional(z.string()), + block_version_not_like: z.optional(z.string()), + block_version_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_version_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_index_eq: z.optional( z.coerce .bigint() .check( - z.minimum(BigInt('-9223372036854775808'), { - error: 'Invalid value: Expected int64 to be >= -9223372036854775808', - }), - z.maximum(BigInt('9223372036854775807'), { - error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', }) ) ), - earliest_bid_date_time_ne: z.optional( + builder_index_ne: z.optional( z.coerce .bigint() .check( - z.minimum(BigInt('-9223372036854775808'), { - error: 'Invalid value: Expected int64 to be >= -9223372036854775808', - }), - z.maximum(BigInt('9223372036854775807'), { - error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', }) ) ), - earliest_bid_date_time_lt: z.optional( + builder_index_lt: z.optional( z.coerce .bigint() .check( - z.minimum(BigInt('-9223372036854775808'), { - error: 'Invalid value: Expected int64 to be >= -9223372036854775808', - }), - z.maximum(BigInt('9223372036854775807'), { - error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', }) ) ), - earliest_bid_date_time_lte: z.optional( + builder_index_lte: z.optional( z.coerce .bigint() .check( - z.minimum(BigInt('-9223372036854775808'), { - error: 'Invalid value: Expected int64 to be >= -9223372036854775808', - }), - z.maximum(BigInt('9223372036854775807'), { - error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', }) ) ), - earliest_bid_date_time_gt: z.optional( + builder_index_gt: z.optional( z.coerce .bigint() .check( - z.minimum(BigInt('-9223372036854775808'), { - error: 'Invalid value: Expected int64 to be >= -9223372036854775808', - }), - z.maximum(BigInt('9223372036854775807'), { - error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', }) ) ), - earliest_bid_date_time_gte: z.optional( + builder_index_gte: z.optional( z.coerce .bigint() .check( - z.minimum(BigInt('-9223372036854775808'), { - error: 'Invalid value: Expected int64 to be >= -9223372036854775808', - }), - z.maximum(BigInt('9223372036854775807'), { - error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', }) ) ), - earliest_bid_date_time_between_min: z.optional( + builder_index_between_min: z.optional( z.coerce .bigint() .check( - z.minimum(BigInt('-9223372036854775808'), { - error: 'Invalid value: Expected int64 to be >= -9223372036854775808', - }), - z.maximum(BigInt('9223372036854775807'), { - error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', }) ) ), - earliest_bid_date_time_between_max_value: z.optional( + builder_index_between_max_value: z.optional( z.coerce .bigint() .check( - z.minimum(BigInt('-9223372036854775808'), { - error: 'Invalid value: Expected int64 to be >= -9223372036854775808', - }), - z.maximum(BigInt('9223372036854775807'), { - error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', }) ) ), - earliest_bid_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - earliest_bid_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - relay_names_has: z.optional(z.string()), - relay_names_has_all_values: z.optional(z.array(z.string())), - relay_names_has_any_values: z.optional(z.array(z.string())), - relay_names_length_eq: z.optional( - z - .int() - .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) - ) - ), - relay_names_length_gt: z.optional( - z - .int() - .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) - ) - ), - relay_names_length_gte: z.optional( - z - .int() - .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) - ) - ), - relay_names_length_lt: z.optional( - z - .int() - .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) - ) - ), - relay_names_length_lte: z.optional( - z - .int() - .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) - ) - ), - parent_hash_eq: z.optional(z.string()), - parent_hash_ne: z.optional(z.string()), - parent_hash_contains: z.optional(z.string()), - parent_hash_starts_with: z.optional(z.string()), - parent_hash_ends_with: z.optional(z.string()), - parent_hash_like: z.optional(z.string()), - parent_hash_not_like: z.optional(z.string()), - parent_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - parent_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_number_eq: z.optional( + builder_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + builder_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_block_hash_eq: z.optional(z.string()), + parent_block_hash_ne: z.optional(z.string()), + parent_block_hash_contains: z.optional(z.string()), + parent_block_hash_starts_with: z.optional(z.string()), + parent_block_hash_ends_with: z.optional(z.string()), + parent_block_hash_like: z.optional(z.string()), + parent_block_hash_not_like: z.optional(z.string()), + parent_block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + parent_block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_eq: z.optional(z.string()), + value_ne: z.optional(z.string()), + value_contains: z.optional(z.string()), + value_starts_with: z.optional(z.string()), + value_ends_with: z.optional(z.string()), + value_like: z.optional(z.string()), + value_not_like: z.optional(z.string()), + value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + gas_limit_eq: z.optional( z.coerce .bigint() .check( @@ -39162,7 +40145,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - block_number_ne: z.optional( + gas_limit_ne: z.optional( z.coerce .bigint() .check( @@ -39172,7 +40155,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - block_number_lt: z.optional( + gas_limit_lt: z.optional( z.coerce .bigint() .check( @@ -39182,7 +40165,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - block_number_lte: z.optional( + gas_limit_lte: z.optional( z.coerce .bigint() .check( @@ -39192,7 +40175,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - block_number_gt: z.optional( + gas_limit_gt: z.optional( z.coerce .bigint() .check( @@ -39202,7 +40185,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - block_number_gte: z.optional( + gas_limit_gte: z.optional( z.coerce .bigint() .check( @@ -39212,7 +40195,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - block_number_between_min: z.optional( + gas_limit_between_min: z.optional( z.coerce .bigint() .check( @@ -39222,7 +40205,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - block_number_between_max_value: z.optional( + gas_limit_between_max_value: z.optional( z.coerce .bigint() .check( @@ -39232,45 +40215,141 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - block_number_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_number_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - block_hash_eq: z.optional(z.string()), - block_hash_ne: z.optional(z.string()), - block_hash_contains: z.optional(z.string()), - block_hash_starts_with: z.optional(z.string()), - block_hash_ends_with: z.optional(z.string()), - block_hash_like: z.optional(z.string()), - block_hash_not_like: z.optional(z.string()), - block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - builder_pubkey_eq: z.optional(z.string()), - builder_pubkey_ne: z.optional(z.string()), - builder_pubkey_contains: z.optional(z.string()), - builder_pubkey_starts_with: z.optional(z.string()), - builder_pubkey_ends_with: z.optional(z.string()), - builder_pubkey_like: z.optional(z.string()), - builder_pubkey_not_like: z.optional(z.string()), - builder_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - builder_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_pubkey_eq: z.optional(z.string()), - proposer_pubkey_ne: z.optional(z.string()), - proposer_pubkey_contains: z.optional(z.string()), - proposer_pubkey_starts_with: z.optional(z.string()), - proposer_pubkey_ends_with: z.optional(z.string()), - proposer_pubkey_like: z.optional(z.string()), - proposer_pubkey_not_like: z.optional(z.string()), - proposer_pubkey_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_pubkey_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_fee_recipient_eq: z.optional(z.string()), - proposer_fee_recipient_ne: z.optional(z.string()), - proposer_fee_recipient_contains: z.optional(z.string()), - proposer_fee_recipient_starts_with: z.optional(z.string()), - proposer_fee_recipient_ends_with: z.optional(z.string()), - proposer_fee_recipient_like: z.optional(z.string()), - proposer_fee_recipient_not_like: z.optional(z.string()), - proposer_fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - proposer_fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - gas_limit_eq: z.optional( + gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_kzg_commitment_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + blob_kzg_commitment_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_kzg_commitment_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transactions_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transactions_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transactions_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transactions_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transactions_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transactions_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transactions_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transactions_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + transactions_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transactions_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transactions_total_bytes_eq: z.optional( z.coerce .bigint() .check( @@ -39280,7 +40359,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_limit_ne: z.optional( + transactions_total_bytes_ne: z.optional( z.coerce .bigint() .check( @@ -39290,7 +40369,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_limit_lt: z.optional( + transactions_total_bytes_lt: z.optional( z.coerce .bigint() .check( @@ -39300,7 +40379,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_limit_lte: z.optional( + transactions_total_bytes_lte: z.optional( z.coerce .bigint() .check( @@ -39310,7 +40389,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_limit_gt: z.optional( + transactions_total_bytes_gt: z.optional( z.coerce .bigint() .check( @@ -39320,7 +40399,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_limit_gte: z.optional( + transactions_total_bytes_gte: z.optional( z.coerce .bigint() .check( @@ -39330,7 +40409,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_limit_between_min: z.optional( + transactions_total_bytes_between_min: z.optional( z.coerce .bigint() .check( @@ -39340,7 +40419,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_limit_between_max_value: z.optional( + transactions_total_bytes_between_max_value: z.optional( z.coerce .bigint() .check( @@ -39350,9 +40429,9 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_eq: z.optional( + transactions_total_bytes_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transactions_total_bytes_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transactions_total_gas_limit_eq: z.optional( z.coerce .bigint() .check( @@ -39362,7 +40441,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_used_ne: z.optional( + transactions_total_gas_limit_ne: z.optional( z.coerce .bigint() .check( @@ -39372,7 +40451,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_used_lt: z.optional( + transactions_total_gas_limit_lt: z.optional( z.coerce .bigint() .check( @@ -39382,7 +40461,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_used_lte: z.optional( + transactions_total_gas_limit_lte: z.optional( z.coerce .bigint() .check( @@ -39392,7 +40471,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_used_gt: z.optional( + transactions_total_gas_limit_gt: z.optional( z.coerce .bigint() .check( @@ -39402,7 +40481,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_used_gte: z.optional( + transactions_total_gas_limit_gte: z.optional( z.coerce .bigint() .check( @@ -39412,7 +40491,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_used_between_min: z.optional( + transactions_total_gas_limit_between_min: z.optional( z.coerce .bigint() .check( @@ -39422,7 +40501,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_used_between_max_value: z.optional( + transactions_total_gas_limit_between_max_value: z.optional( z.coerce .bigint() .check( @@ -39432,18 +40511,9 @@ export const zFctBlockMevHeadServiceListData = z.object({ }) ) ), - gas_used_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - gas_used_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - value_eq: z.optional(z.string()), - value_ne: z.optional(z.string()), - value_contains: z.optional(z.string()), - value_starts_with: z.optional(z.string()), - value_ends_with: z.optional(z.string()), - value_like: z.optional(z.string()), - value_not_like: z.optional(z.string()), - value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - transaction_count_eq: z.optional( + transactions_total_gas_limit_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + transactions_total_gas_limit_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_transactions_count_eq: z.optional( z .int() .check( @@ -39451,7 +40521,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) ) ), - transaction_count_ne: z.optional( + blob_transactions_count_ne: z.optional( z .int() .check( @@ -39459,7 +40529,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) ) ), - transaction_count_lt: z.optional( + blob_transactions_count_lt: z.optional( z .int() .check( @@ -39467,7 +40537,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) ) ), - transaction_count_lte: z.optional( + blob_transactions_count_lte: z.optional( z .int() .check( @@ -39475,7 +40545,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) ) ), - transaction_count_gt: z.optional( + blob_transactions_count_gt: z.optional( z .int() .check( @@ -39483,7 +40553,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) ) ), - transaction_count_gte: z.optional( + blob_transactions_count_gte: z.optional( z .int() .check( @@ -39491,7 +40561,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) ) ), - transaction_count_between_min: z.optional( + blob_transactions_count_between_min: z.optional( z .int() .check( @@ -39499,7 +40569,7 @@ export const zFctBlockMevHeadServiceListData = z.object({ z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) ) ), - transaction_count_between_max_value: z.optional( + blob_transactions_count_between_max_value: z.optional( z .int() .check( @@ -39507,8 +40577,8 @@ export const zFctBlockMevHeadServiceListData = z.object({ z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) ) ), - transaction_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - transaction_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_transactions_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + blob_transactions_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), page_size: z.optional( z .int() @@ -39526,9 +40596,9 @@ export const zFctBlockMevHeadServiceListData = z.object({ /** * OK */ -export const zFctBlockMevHeadServiceListResponse = zListFctBlockMevHeadResponse; +export const zFctBlockPayloadServiceListResponse = zListFctBlockPayloadResponse; -export const zFctBlockMevHeadServiceGetData = z.object({ +export const zFctBlockPayloadServiceGetData = z.object({ body: z.optional(z.never()), path: z.object({ slot_start_date_time: z @@ -39544,7 +40614,7 @@ export const zFctBlockMevHeadServiceGetData = z.object({ /** * OK */ -export const zFctBlockMevHeadServiceGetResponse = zGetFctBlockMevHeadResponse; +export const zFctBlockPayloadServiceGetResponse = zGetFctBlockPayloadResponse; export const zFctBlockPayloadAvailableByNodeServiceListData = z.object({ body: z.optional(z.never()), diff --git a/src/pages/ethereum/slots/DetailPage.tsx b/src/pages/ethereum/slots/DetailPage.tsx index 167924950..e4e5a4310 100644 --- a/src/pages/ethereum/slots/DetailPage.tsx +++ b/src/pages/ethereum/slots/DetailPage.tsx @@ -249,7 +249,30 @@ export function DetailPage(): JSX.Element { // Get the effective block data - prefer canonical (blockHead) but fall back to orphaned block // Will be undefined for missed slots - const effectiveBlockData = data.blockHead[0] ?? data.block[0]; + const rawEffectiveBlockData = data.blockHead[0] ?? data.block[0]; + // Gloas (ePBS): the beacon block no longer carries the payload, so its + // execution_payload_* columns arrive zero-filled. Overlay the real facts + // from fct_block_payload (bid commitment + envelope contents) and null the + // fields that genuinely no longer exist on the CL side. + const effectiveBlockData = + isGloas && rawEffectiveBlockData + ? { + ...rawEffectiveBlockData, + execution_payload_block_hash: payloadData.payload?.block_hash ?? undefined, + execution_payload_parent_hash: payloadData.payload?.parent_block_hash ?? undefined, + execution_payload_transactions_count: payloadData.payload?.transactions_count ?? undefined, + execution_payload_transactions_total_bytes: payloadData.payload?.transactions_total_bytes ?? undefined, + execution_payload_transactions_total_bytes_compressed: undefined, + execution_payload_gas_limit: payloadData.payload?.gas_limit ?? undefined, + execution_payload_gas_used: undefined, + execution_payload_base_fee_per_gas: undefined, + execution_payload_blob_gas_used: undefined, + execution_payload_excess_blob_gas: undefined, + execution_payload_block_number: undefined, + execution_payload_fee_recipient: undefined, + execution_payload_state_root: undefined, + } + : rawEffectiveBlockData; // Get total expected validators from attestation correctness data // This is more accurate than summing committee validators (which would double-count) diff --git a/src/pages/ethereum/slots/IndexPage.tsx b/src/pages/ethereum/slots/IndexPage.tsx index 2728c571e..24ad2b4e8 100644 --- a/src/pages/ethereum/slots/IndexPage.tsx +++ b/src/pages/ethereum/slots/IndexPage.tsx @@ -7,6 +7,8 @@ import { Table } from '@/components/Lists/Table'; import type { Column } from '@/components/Lists/Table/Table.types'; import { Slot } from '@/components/Ethereum/Slot'; import { useInfiniteSlotsData, type SlotData } from './hooks'; +import { useNetwork } from '@/hooks/useNetwork'; +import { getForkEpoch } from '@/utils/forks'; import { Timestamp } from '@/components/DataDisplay/Timestamp'; import { SLOTS_PER_EPOCH } from '@/utils/beacon'; import { formatSlot } from '@/utils'; @@ -31,6 +33,8 @@ import { ArrowPathIcon, ChevronDownIcon } from '@heroicons/react/24/outline'; export function IndexPage(): JSX.Element { const { slots, isLoading, error, hasNextPage, fetchNextPage, isFetchingNextPage, currentSlot } = useInfiniteSlotsData(); + const { currentNetwork } = useNetwork(); + const hasGloas = currentNetwork ? getForkEpoch(currentNetwork, 'gloas') !== null : false; const navigate = useNavigate(); /** @@ -190,6 +194,31 @@ export function IndexPage(): JSX.Element { accessor: row => (row.blobCount !== null ? row.blobCount : '-'), cellClassName: 'text-muted', }, + ...(hasGloas + ? [ + { + header: 'Payload', + accessor: (row: SlotData): ReactNode => { + // The PTC's verdict on whether the builder revealed in time. + if (row.ptcVotesSeen == null || row.ptcVotesSeen === 0) { + return -; + } + + const delivered = (row.ptcPresentVotes ?? 0) * 2 >= row.ptcVotesSeen; + + return ( + + {delivered ? 'Delivered' : 'Absent'} + + ); + }, + cellClassName: 'text-muted', + }, + ] + : []), { header: 'Status', accessor: row => { @@ -209,7 +238,7 @@ export function IndexPage(): JSX.Element { cellClassName: 'text-muted', }, ], - [slotsWithCurrent] + [slotsWithCurrent, hasGloas] ); // Loading state (initial load only) diff --git a/src/pages/ethereum/slots/components/SlotBasicInfoCard/SlotBasicInfoCard.tsx b/src/pages/ethereum/slots/components/SlotBasicInfoCard/SlotBasicInfoCard.tsx index 3f335be15..a19fe9151 100644 --- a/src/pages/ethereum/slots/components/SlotBasicInfoCard/SlotBasicInfoCard.tsx +++ b/src/pages/ethereum/slots/components/SlotBasicInfoCard/SlotBasicInfoCard.tsx @@ -215,13 +215,16 @@ export function SlotBasicInfoCard({ slot, epoch, data, isMissedSlot = false }: S
)} - {/* Execution Block Number */} -
-
Execution Block
-
- {blockHead?.execution_payload_block_number ?? 'N/A'} -
-
+ {/* Execution Block Number - zero means the CL row has no + payload data (gloas blocks carry only the bid), so hide it */} + {!!blockHead?.execution_payload_block_number && ( +
+
Execution Block
+
+ {blockHead.execution_payload_block_number} +
+
+ )} {/* Blob Count - only show if there are blobs */} {actualBlobCount > 0 && ( diff --git a/src/pages/ethereum/slots/hooks/useInfiniteSlotsData.ts b/src/pages/ethereum/slots/hooks/useInfiniteSlotsData.ts index 0921936ea..3ce82426f 100644 --- a/src/pages/ethereum/slots/hooks/useInfiniteSlotsData.ts +++ b/src/pages/ethereum/slots/hooks/useInfiniteSlotsData.ts @@ -8,8 +8,15 @@ import { fctBlockProposerServiceList, fctBlockBlobCountServiceList, fctBlockProposerEntityServiceList, + fctBlockPayloadPtcVoteHeadServiceList, } from '@/api/sdk.gen'; -import type { FctBlockProposer, FctBlockBlobCount, FctBlockHead, FctBlockProposerEntity } from '@/api/types.gen'; +import type { + FctBlockProposer, + FctBlockBlobCount, + FctBlockHead, + FctBlockProposerEntity, + FctBlockPayloadPtcVoteHead, +} from '@/api/types.gen'; import type { SlotData } from './useSlotsData.types'; /** @@ -160,41 +167,53 @@ export function useInfiniteSlotsData(): UseInfiniteSlotsDataReturn { const startTimestamp = slotToTimestamp(startSlot, currentNetwork.genesis_time); const endTimestamp = slotToTimestamp(endSlot, currentNetwork.genesis_time); - // Fetch all four data sources in parallel - const [blockHeadResult, proposerResult, blobCountResult, proposerEntityResult] = await Promise.all([ - fctBlockHeadServiceList({ - query: { - slot_start_date_time_gte: startTimestamp, - slot_start_date_time_lte: endTimestamp, - page_size: SLOTS_PER_PAGE, - order_by: 'slot desc', - }, - }), - fctBlockProposerServiceList({ - query: { - slot_start_date_time_gte: startTimestamp, - slot_start_date_time_lte: endTimestamp, - page_size: SLOTS_PER_PAGE, - order_by: 'slot desc', - }, - }), - fctBlockBlobCountServiceList({ - query: { - slot_start_date_time_gte: startTimestamp, - slot_start_date_time_lte: endTimestamp, - page_size: SLOTS_PER_PAGE, - order_by: 'slot desc', - }, - }), - fctBlockProposerEntityServiceList({ - query: { - slot_start_date_time_gte: startTimestamp, - slot_start_date_time_lte: endTimestamp, - page_size: SLOTS_PER_PAGE, - order_by: 'slot desc', - }, - }), - ]); + // Fetch all data sources in parallel + const [blockHeadResult, proposerResult, blobCountResult, proposerEntityResult, ptcVoteResult] = await Promise.all( + [ + fctBlockHeadServiceList({ + query: { + slot_start_date_time_gte: startTimestamp, + slot_start_date_time_lte: endTimestamp, + page_size: SLOTS_PER_PAGE, + order_by: 'slot desc', + }, + }), + fctBlockProposerServiceList({ + query: { + slot_start_date_time_gte: startTimestamp, + slot_start_date_time_lte: endTimestamp, + page_size: SLOTS_PER_PAGE, + order_by: 'slot desc', + }, + }), + fctBlockBlobCountServiceList({ + query: { + slot_start_date_time_gte: startTimestamp, + slot_start_date_time_lte: endTimestamp, + page_size: SLOTS_PER_PAGE, + order_by: 'slot desc', + }, + }), + fctBlockProposerEntityServiceList({ + query: { + slot_start_date_time_gte: startTimestamp, + slot_start_date_time_lte: endTimestamp, + page_size: SLOTS_PER_PAGE, + order_by: 'slot desc', + }, + }), + // Gloas (ePBS): PTC verdict per slot. Empty pre-gloas, so it costs + // nothing on networks without the fork. + fctBlockPayloadPtcVoteHeadServiceList({ + query: { + slot_start_date_time_gte: startTimestamp, + slot_start_date_time_lte: endTimestamp, + page_size: SLOTS_PER_PAGE, + order_by: 'slot desc', + }, + }).catch(() => undefined), + ] + ); // Combine data from all queries const slots: SlotData[] = []; @@ -208,6 +227,9 @@ export function useInfiniteSlotsData(): UseInfiniteSlotsDataReturn { const entityData = proposerEntityResult.data?.fct_block_proposer_entity?.find( (e: FctBlockProposerEntity) => e.slot === slot ); + const ptcData = ptcVoteResult?.data?.fct_block_payload_ptc_vote_head?.find( + (v: FctBlockPayloadPtcVoteHead) => v.slot === slot + ); // Determine if slot has data const hasData = Boolean(proposerData || blockData); @@ -225,6 +247,8 @@ export function useInfiniteSlotsData(): UseInfiniteSlotsDataReturn { blockRoot: proposerData?.block_root ?? blockData?.block_root ?? null, timestamp, proposerEntity: entityData?.entity ?? null, + ptcPresentVotes: ptcData?.payload_present_votes ?? null, + ptcVotesSeen: ptcData?.ptc_validators_seen ?? null, }); } diff --git a/src/pages/ethereum/slots/hooks/useSlotPayloadData/useSlotPayloadData.ts b/src/pages/ethereum/slots/hooks/useSlotPayloadData/useSlotPayloadData.ts index 157deb54e..9a2b8f027 100644 --- a/src/pages/ethereum/slots/hooks/useSlotPayloadData/useSlotPayloadData.ts +++ b/src/pages/ethereum/slots/hooks/useSlotPayloadData/useSlotPayloadData.ts @@ -5,6 +5,7 @@ import { fctBlockPayloadPtcVoteHeadServiceListOptions, fctBlockPayloadAvailableByNodeServiceListOptions, fctPayloadBidHighestValueByBuilderChunked50MsServiceListOptions, + fctBlockPayloadServiceListOptions, } from '@/api/@tanstack/react-query.gen'; import type { FctBlockPayloadBid, @@ -12,6 +13,7 @@ import type { FctBlockPayloadPtcVoteHead, FctBlockPayloadAvailableByNode, FctPayloadBidHighestValueByBuilderChunked50Ms, + FctBlockPayload, } from '@/api/types.gen'; import { useNetwork } from '@/hooks/useNetwork'; import { slotToTimestamp } from '@/utils/beacon'; @@ -27,6 +29,8 @@ export interface SlotPayloadData { ptcVote?: FctBlockPayloadPtcVoteHead; /** The bid race: highest value per builder per 50ms chunk, from gossip */ bidRace: FctPayloadBidHighestValueByBuilderChunked50Ms[]; + /** Canonical per-block payload facts: bid commitment + envelope contents */ + payload?: FctBlockPayload; } export interface UseSlotPayloadDataResult { @@ -77,10 +81,16 @@ export function useSlotPayloadData(slot: number, enabled = true): UseSlotPayload }), enabled: queryEnabled, }, + { + ...fctBlockPayloadServiceListOptions({ + query: { slot_start_date_time_eq: slotTimestamp }, + }), + enabled: queryEnabled, + }, ], }); - const [bidQuery, firstSeenQuery, availableQuery, ptcVoteQuery, bidRaceQuery] = queries; + const [bidQuery, firstSeenQuery, availableQuery, ptcVoteQuery, bidRaceQuery, payloadQuery] = queries; return { data: { @@ -89,6 +99,7 @@ export function useSlotPayloadData(slot: number, enabled = true): UseSlotPayload payloadAvailable: availableQuery.data?.fct_block_payload_available_by_node ?? [], ptcVote: ptcVoteQuery.data?.fct_block_payload_ptc_vote_head?.[0], bidRace: bidRaceQuery.data?.fct_payload_bid_highest_value_by_builder_chunked_50ms ?? [], + payload: payloadQuery.data?.fct_block_payload?.[0], }, isLoading: queryEnabled && queries.some(query => query.isLoading), }; diff --git a/src/pages/ethereum/slots/hooks/useSlotsData.types.ts b/src/pages/ethereum/slots/hooks/useSlotsData.types.ts index 77bd32ae4..9413321d1 100644 --- a/src/pages/ethereum/slots/hooks/useSlotsData.types.ts +++ b/src/pages/ethereum/slots/hooks/useSlotsData.types.ts @@ -2,6 +2,10 @@ * Data for a single slot in the slots list */ export interface SlotData { + /** Gloas (ePBS): PTC validators voting payload present, null pre-gloas */ + ptcPresentVotes?: number | null; + /** Gloas (ePBS): PTC validators seen voting, null pre-gloas */ + ptcVotesSeen?: number | null; /** * Slot number */ From 23612b1f95ba6042cd28a43c2569bc8ec9c8acce Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Fri, 17 Jul 2026 12:02:56 +1000 Subject: [PATCH 16/24] fix(live): show only real execution facts in the gloas HUD lane The CL block carries no payload post-gloas, so txns/gas/base/block arrive zero-filled at the head. The Execution lane now shows just the blob count on gloas networks instead of misleading zeros. --- .../live/components/SlotHud/SlotHud.tsx | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/src/pages/ethereum/live/components/SlotHud/SlotHud.tsx b/src/pages/ethereum/live/components/SlotHud/SlotHud.tsx index 7b7b400a5..68847698c 100644 --- a/src/pages/ethereum/live/components/SlotHud/SlotHud.tsx +++ b/src/pages/ethereum/live/components/SlotHud/SlotHud.tsx @@ -297,15 +297,23 @@ export function SlotHud({
)} - {/* Execution payload */} + {/* Execution payload. On gloas the beacon block carries no payload, so + the CL-sourced execution fields arrive zero-filled — show only what + is real at the head of the chain. */}
- - - - - - + {epbs ? ( + + ) : ( + <> + + + + + + + + )}
From 66ef1cc4e01e02bd6e11a00ec626a19c57bc5a79 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Fri, 17 Jul 2026 12:54:25 +1000 Subject: [PATCH 17/24] fix(slots): accept PTC votes as block evidence in payload status The proposer pipeline lags the head, so requiring it before judging the payload left slots showing Awaiting data despite a full PTC verdict. Votes and envelope sightings are themselves proof a block existed. --- src/utils/epbs.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/utils/epbs.ts b/src/utils/epbs.ts index 2ce194154..03019218d 100644 --- a/src/utils/epbs.ts +++ b/src/utils/epbs.ts @@ -45,9 +45,13 @@ export function derivePayloadStatus({ hasBlock, payloadFirstSeen, ptcVote }: Pay const presentVotes = ptcVote?.payload_present_votes ?? 0; const ptcVotesSeen = ptcVote?.ptc_validators_seen ?? 0; + // PTC votes and payload sightings are themselves proof a block existed — + // don't wait for the (lagging) proposer pipeline to confirm it. + const blockEvidenced = hasBlock || ptcVotesSeen > 0 || seenByNodes > 0; + let status: PayloadStatus = 'pending'; - if (hasBlock && ptcVotesSeen > 0) { + if (blockEvidenced && ptcVotesSeen > 0) { const majorityPresent = presentVotes * 2 >= ptcVotesSeen; if (majorityPresent) { @@ -57,7 +61,7 @@ export function derivePayloadStatus({ hasBlock, payloadFirstSeen, ptcVote }: Pay } else { status = 'payload_withheld'; } - } else if (hasBlock && seenByNodes > 0) { + } else if (blockEvidenced && seenByNodes > 0) { status = 'payload_present'; } From ed1fba645f821afa03b974f1bc7387e9d3e8fca3 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Fri, 17 Jul 2026 12:58:37 +1000 Subject: [PATCH 18/24] feat(slots): cap the bid race chart at the top ten builders One series per builder stops scaling long before the on-chain auction does. The ten strongest bidders by peak value keep individual series and the remainder collapses into a single field series carrying the best remaining bid per chunk, so hundreds of builders render as eleven lines and the fetch stays within one page. --- src/pages/ethereum/slots/DetailPage.tsx | 72 ++++++++++++++++++++++--- 1 file changed, 65 insertions(+), 7 deletions(-) diff --git a/src/pages/ethereum/slots/DetailPage.tsx b/src/pages/ethereum/slots/DetailPage.tsx index e4e5a4310..9dff715e3 100644 --- a/src/pages/ethereum/slots/DetailPage.tsx +++ b/src/pages/ethereum/slots/DetailPage.tsx @@ -1,4 +1,4 @@ -import { type JSX, useCallback, useEffect, useState } from 'react'; +import { type JSX, useCallback, useEffect, useMemo, useState } from 'react'; import { useParams, useNavigate, useSearch, Link } from '@tanstack/react-router'; import { useQuery } from '@tanstack/react-query'; import { TabGroup, TabPanel, TabPanels } from '@headlessui/react'; @@ -96,12 +96,70 @@ export function DetailPage(): JSX.Element { // Gloas (ePBS) slots get a dedicated Payload tab const isGloas = isForkAtOrAfter(getForkForSlot(slot, currentNetwork), 'gloas'); const { data: payloadData } = useSlotPayloadData(slot, isGloas); - const payloadBidRaceData = payloadData.bidRace.map(bid => ({ - chunk_slot_start_diff: bid.chunk_slot_start_diff ?? 0, - value: bid.value ?? '0', - builder_pubkey: `builder-${bid.builder_index ?? 'unknown'}`, - block_hash: bid.block_hash, - })); + // The chart draws one series per builder, which stops scaling somewhere + // around a dozen. Keep the strongest bidders as individual series and + // collapse the rest into a single "field" series holding the best bid of + // the remainder per chunk. + const payloadBidRaceData = useMemo(() => { + const TOP_BUILDERS = 10; + const peakByBuilder = new Map(); + for (const bid of payloadData.bidRace) { + if (bid.builder_index === undefined || !bid.value) continue; + try { + const value = BigInt(bid.value); + if (value > (peakByBuilder.get(bid.builder_index) ?? -1n)) { + peakByBuilder.set(bid.builder_index, value); + } + } catch { + // ignore malformed values + } + } + const topBuilders = new Set( + [...peakByBuilder.entries()] + .sort((a, b) => (a[1] > b[1] ? -1 : 1)) + .slice(0, TOP_BUILDERS) + .map(([index]) => index) + ); + + const rows: Array<{ chunk_slot_start_diff: number; value: string; builder_pubkey: string; block_hash?: string }> = + []; + const fieldBestByChunk = new Map(); + + for (const bid of payloadData.bidRace) { + const chunk = bid.chunk_slot_start_diff ?? 0; + const row = { + chunk_slot_start_diff: chunk, + value: bid.value ?? '0', + builder_pubkey: + bid.builder_index !== undefined && topBuilders.has(bid.builder_index) + ? `builder-${bid.builder_index}` + : `field (${peakByBuilder.size - topBuilders.size} builders)`, + block_hash: bid.block_hash, + }; + + if (bid.builder_index !== undefined && topBuilders.has(bid.builder_index)) { + rows.push(row); + continue; + } + + // Remainder: keep only the best bid per chunk. + try { + const value = BigInt(bid.value ?? '0'); + const existing = fieldBestByChunk.get(chunk); + if (!existing || value > existing.value) { + fieldBestByChunk.set(chunk, { value, row }); + } + } catch { + // ignore malformed values + } + } + + for (const { row } of fieldBestByChunk.values()) { + rows.push(row); + } + + return rows; + }, [payloadData.bidRace]); // Download modal (beacon block + blob sidecars) const [downloadOpen, setDownloadOpen] = useState(false); From ebcb6b374f0632e3893b3a44a784d02a593c1035 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Fri, 17 Jul 2026 13:10:16 +1000 Subject: [PATCH 19/24] feat(slots): drive the bid race from the auction frontier The frontier table bounds chart data by the 50ms grid regardless of builder count: the ten strongest bidders keep individual series, the frontier renders as the best-bid line when builders were cut from the top list, and if the by_builder fetch ever truncates the chart degrades to the frontier alone instead of silently lying. --- src/api/@tanstack/react-query.gen.ts | 68 ++ src/api/index.ts | 15 + src/api/sdk.gen.ts | 48 + src/api/types.gen.ts | 528 +++++++++ src/api/zod.gen.ts | 1033 ++++++++++++++--- src/pages/ethereum/slots/DetailPage.tsx | 64 +- .../useSlotPayloadData/useSlotPayloadData.ts | 14 +- 7 files changed, 1580 insertions(+), 190 deletions(-) diff --git a/src/api/@tanstack/react-query.gen.ts b/src/api/@tanstack/react-query.gen.ts index 0e97fbd46..da7aa6ac7 100644 --- a/src/api/@tanstack/react-query.gen.ts +++ b/src/api/@tanstack/react-query.gen.ts @@ -222,6 +222,8 @@ import { fctPayloadAttestationFirstSeenChunked50MsServiceList, fctPayloadBidHighestValueByBuilderChunked50MsServiceGet, fctPayloadBidHighestValueByBuilderChunked50MsServiceList, + fctPayloadBidHighestValueChunked50MsServiceGet, + fctPayloadBidHighestValueChunked50MsServiceList, fctPreparedBlockServiceGet, fctPreparedBlockServiceList, fctProposerRewardDailyServiceGet, @@ -1077,6 +1079,12 @@ import type { FctPayloadBidHighestValueByBuilderChunked50MsServiceListData, FctPayloadBidHighestValueByBuilderChunked50MsServiceListError, FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse, + FctPayloadBidHighestValueChunked50MsServiceGetData, + FctPayloadBidHighestValueChunked50MsServiceGetError, + FctPayloadBidHighestValueChunked50MsServiceGetResponse, + FctPayloadBidHighestValueChunked50MsServiceListData, + FctPayloadBidHighestValueChunked50MsServiceListError, + FctPayloadBidHighestValueChunked50MsServiceListResponse, FctPreparedBlockServiceGetData, FctPreparedBlockServiceGetError, FctPreparedBlockServiceGetResponse, @@ -8009,6 +8017,66 @@ export const fctPayloadBidHighestValueByBuilderChunked50MsServiceGetOptions = ( queryKey: fctPayloadBidHighestValueByBuilderChunked50MsServiceGetQueryKey(options), }); +export const fctPayloadBidHighestValueChunked50MsServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctPayloadBidHighestValueChunked50MsServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctPayloadBidHighestValueChunked50MsServiceListOptions = ( + options?: Options +) => + queryOptions< + FctPayloadBidHighestValueChunked50MsServiceListResponse, + FctPayloadBidHighestValueChunked50MsServiceListError, + FctPayloadBidHighestValueChunked50MsServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctPayloadBidHighestValueChunked50MsServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctPayloadBidHighestValueChunked50MsServiceListQueryKey(options), + }); + +export const fctPayloadBidHighestValueChunked50MsServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctPayloadBidHighestValueChunked50MsServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctPayloadBidHighestValueChunked50MsServiceGetOptions = ( + options: Options +) => + queryOptions< + FctPayloadBidHighestValueChunked50MsServiceGetResponse, + FctPayloadBidHighestValueChunked50MsServiceGetError, + FctPayloadBidHighestValueChunked50MsServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctPayloadBidHighestValueChunked50MsServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctPayloadBidHighestValueChunked50MsServiceGetQueryKey(options), + }); + export const fctPreparedBlockServiceListQueryKey = (options?: Options) => createQueryKey('fctPreparedBlockServiceList', options); diff --git a/src/api/index.ts b/src/api/index.ts index 2d856246e..b49dd8c44 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -219,6 +219,8 @@ export { fctPayloadAttestationFirstSeenChunked50MsServiceList, fctPayloadBidHighestValueByBuilderChunked50MsServiceGet, fctPayloadBidHighestValueByBuilderChunked50MsServiceList, + fctPayloadBidHighestValueChunked50MsServiceGet, + fctPayloadBidHighestValueChunked50MsServiceList, fctPreparedBlockServiceGet, fctPreparedBlockServiceList, fctProposerRewardDailyServiceGet, @@ -1620,6 +1622,17 @@ export type { FctPayloadBidHighestValueByBuilderChunked50MsServiceListErrors, FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse, FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponses, + FctPayloadBidHighestValueChunked50Ms, + FctPayloadBidHighestValueChunked50MsServiceGetData, + FctPayloadBidHighestValueChunked50MsServiceGetError, + FctPayloadBidHighestValueChunked50MsServiceGetErrors, + FctPayloadBidHighestValueChunked50MsServiceGetResponse, + FctPayloadBidHighestValueChunked50MsServiceGetResponses, + FctPayloadBidHighestValueChunked50MsServiceListData, + FctPayloadBidHighestValueChunked50MsServiceListError, + FctPayloadBidHighestValueChunked50MsServiceListErrors, + FctPayloadBidHighestValueChunked50MsServiceListResponse, + FctPayloadBidHighestValueChunked50MsServiceListResponses, FctPreparedBlock, FctPreparedBlockServiceGetData, FctPreparedBlockServiceGetError, @@ -1993,6 +2006,7 @@ export type { GetFctOpcodeOpsHourlyResponse, GetFctPayloadAttestationFirstSeenChunked50MsResponse, GetFctPayloadBidHighestValueByBuilderChunked50MsResponse, + GetFctPayloadBidHighestValueChunked50MsResponse, GetFctPreparedBlockResponse, GetFctProposerRewardDailyResponse, GetFctProposerRewardHourlyResponse, @@ -3027,6 +3041,7 @@ export type { ListFctOpcodeOpsHourlyResponse, ListFctPayloadAttestationFirstSeenChunked50MsResponse, ListFctPayloadBidHighestValueByBuilderChunked50MsResponse, + ListFctPayloadBidHighestValueChunked50MsResponse, ListFctPreparedBlockResponse, ListFctProposerRewardDailyResponse, ListFctProposerRewardHourlyResponse, diff --git a/src/api/sdk.gen.ts b/src/api/sdk.gen.ts index dd29afe17..a6800a6a9 100644 --- a/src/api/sdk.gen.ts +++ b/src/api/sdk.gen.ts @@ -657,6 +657,12 @@ import type { FctPayloadBidHighestValueByBuilderChunked50MsServiceListData, FctPayloadBidHighestValueByBuilderChunked50MsServiceListErrors, FctPayloadBidHighestValueByBuilderChunked50MsServiceListResponses, + FctPayloadBidHighestValueChunked50MsServiceGetData, + FctPayloadBidHighestValueChunked50MsServiceGetErrors, + FctPayloadBidHighestValueChunked50MsServiceGetResponses, + FctPayloadBidHighestValueChunked50MsServiceListData, + FctPayloadBidHighestValueChunked50MsServiceListErrors, + FctPayloadBidHighestValueChunked50MsServiceListResponses, FctPreparedBlockServiceGetData, FctPreparedBlockServiceGetErrors, FctPreparedBlockServiceGetResponses, @@ -1689,6 +1695,10 @@ import { zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse, zFctPayloadBidHighestValueByBuilderChunked50MsServiceListData, zFctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse, + zFctPayloadBidHighestValueChunked50MsServiceGetData, + zFctPayloadBidHighestValueChunked50MsServiceGetResponse, + zFctPayloadBidHighestValueChunked50MsServiceListData, + zFctPayloadBidHighestValueChunked50MsServiceListResponse, zFctPreparedBlockServiceGetData, zFctPreparedBlockServiceGetResponse, zFctPreparedBlockServiceListData, @@ -6207,6 +6217,44 @@ export const fctPayloadBidHighestValueByBuilderChunked50MsServiceGet = ( + options?: Options +) => + (options?.client ?? client).get< + FctPayloadBidHighestValueChunked50MsServiceListResponses, + FctPayloadBidHighestValueChunked50MsServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctPayloadBidHighestValueChunked50MsServiceListData.parseAsync(data), + responseValidator: async data => await zFctPayloadBidHighestValueChunked50MsServiceListResponse.parseAsync(data), + url: '/api/v1/fct_payload_bid_highest_value_chunked_50ms', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by slot_start_date_time + */ +export const fctPayloadBidHighestValueChunked50MsServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctPayloadBidHighestValueChunked50MsServiceGetResponses, + FctPayloadBidHighestValueChunked50MsServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctPayloadBidHighestValueChunked50MsServiceGetData.parseAsync(data), + responseValidator: async data => await zFctPayloadBidHighestValueChunked50MsServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_payload_bid_highest_value_chunked_50ms/{slot_start_date_time}', + ...options, + }); + /** * List records * diff --git a/src/api/types.gen.ts b/src/api/types.gen.ts index 26652c83b..36c115d12 100644 --- a/src/api/types.gen.ts +++ b/src/api/types.gen.ts @@ -5877,6 +5877,49 @@ export type FctPayloadBidHighestValueByBuilderChunked50Ms = { value?: string; }; +export type FctPayloadBidHighestValueChunked50Ms = { + /** + * The execution block hash committed to in the leading bid + */ + block_hash?: string; + /** + * Validator index of the builder leading this chunk + */ + builder_index?: number; + /** + * The difference between the chunk start time and slot_start_date_time. Negative values indicate bids received before slot start + */ + chunk_slot_start_diff?: number; + /** + * The timestamp of the earliest observation of the leading bid in this chunk + */ + earliest_bid_date_time?: number; + /** + * Epoch number derived from the slot that the bid is for + */ + epoch?: number; + /** + * The start time for the epoch that the bid is for + */ + epoch_start_date_time?: number; + /** + * Slot number the bid targets + */ + slot?: number; + /** + * The start time for the slot that the bid is for + */ + slot_start_date_time?: number; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; + /** + * The best bid value across all builders in this chunk, in wei + */ + value?: string; +}; + export type FctPreparedBlock = { /** * The total bytes of the beacon block payload @@ -7452,6 +7495,13 @@ export type GetFctPayloadBidHighestValueByBuilderChunked50MsResponse = { item?: FctPayloadBidHighestValueByBuilderChunked50Ms; }; +/** + * Response for getting a single fct_payload_bid_highest_value_chunked_50ms record + */ +export type GetFctPayloadBidHighestValueChunked50MsResponse = { + item?: FctPayloadBidHighestValueChunked50Ms; +}; + /** * Response for getting a single fct_prepared_block record */ @@ -13019,6 +13069,20 @@ export type ListFctPayloadBidHighestValueByBuilderChunked50MsResponse = { next_page_token?: string; }; +/** + * Response for listing fct_payload_bid_highest_value_chunked_50ms records + */ +export type ListFctPayloadBidHighestValueChunked50MsResponse = { + /** + * The list of fct_payload_bid_highest_value_chunked_50ms. + */ + fct_payload_bid_highest_value_chunked_50ms?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + /** * Response for listing fct_prepared_block records */ @@ -69369,6 +69433,470 @@ export type FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponses = { export type FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse = FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponses[keyof FctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponses]; +export type FctPayloadBidHighestValueChunked50MsServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The start time for the slot that the bid is for (filter: eq) + */ + slot_start_date_time_eq?: number; + /** + * The start time for the slot that the bid is for (filter: ne) + */ + slot_start_date_time_ne?: number; + /** + * The start time for the slot that the bid is for (filter: lt) + */ + slot_start_date_time_lt?: number; + /** + * The start time for the slot that the bid is for (filter: lte) + */ + slot_start_date_time_lte?: number; + /** + * The start time for the slot that the bid is for (filter: gt) + */ + slot_start_date_time_gt?: number; + /** + * The start time for the slot that the bid is for (filter: gte) + */ + slot_start_date_time_gte?: number; + /** + * The start time for the slot that the bid is for (filter: between_min) + */ + slot_start_date_time_between_min?: number; + /** + * The start time for the slot that the bid is for (filter: between_max_value) + */ + slot_start_date_time_between_max_value?: number; + /** + * The start time for the slot that the bid is for (filter: in_values) (comma-separated list) + */ + slot_start_date_time_in_values?: string; + /** + * The start time for the slot that the bid is for (filter: not_in_values) (comma-separated list) + */ + slot_start_date_time_not_in_values?: string; + /** + * The difference between the chunk start time and slot_start_date_time. Negative values indicate bids received before slot start (filter: eq) + */ + chunk_slot_start_diff_eq?: number; + /** + * The difference between the chunk start time and slot_start_date_time. Negative values indicate bids received before slot start (filter: ne) + */ + chunk_slot_start_diff_ne?: number; + /** + * The difference between the chunk start time and slot_start_date_time. Negative values indicate bids received before slot start (filter: lt) + */ + chunk_slot_start_diff_lt?: number; + /** + * The difference between the chunk start time and slot_start_date_time. Negative values indicate bids received before slot start (filter: lte) + */ + chunk_slot_start_diff_lte?: number; + /** + * The difference between the chunk start time and slot_start_date_time. Negative values indicate bids received before slot start (filter: gt) + */ + chunk_slot_start_diff_gt?: number; + /** + * The difference between the chunk start time and slot_start_date_time. Negative values indicate bids received before slot start (filter: gte) + */ + chunk_slot_start_diff_gte?: number; + /** + * The difference between the chunk start time and slot_start_date_time. Negative values indicate bids received before slot start (filter: between_min) + */ + chunk_slot_start_diff_between_min?: number; + /** + * The difference between the chunk start time and slot_start_date_time. Negative values indicate bids received before slot start (filter: between_max_value) + */ + chunk_slot_start_diff_between_max_value?: number; + /** + * The difference between the chunk start time and slot_start_date_time. Negative values indicate bids received before slot start (filter: in_values) (comma-separated list) + */ + chunk_slot_start_diff_in_values?: string; + /** + * The difference between the chunk start time and slot_start_date_time. Negative values indicate bids received before slot start (filter: not_in_values) (comma-separated list) + */ + chunk_slot_start_diff_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Slot number the bid targets (filter: eq) + */ + slot_eq?: number; + /** + * Slot number the bid targets (filter: ne) + */ + slot_ne?: number; + /** + * Slot number the bid targets (filter: lt) + */ + slot_lt?: number; + /** + * Slot number the bid targets (filter: lte) + */ + slot_lte?: number; + /** + * Slot number the bid targets (filter: gt) + */ + slot_gt?: number; + /** + * Slot number the bid targets (filter: gte) + */ + slot_gte?: number; + /** + * Slot number the bid targets (filter: between_min) + */ + slot_between_min?: number; + /** + * Slot number the bid targets (filter: between_max_value) + */ + slot_between_max_value?: number; + /** + * Slot number the bid targets (filter: in_values) (comma-separated list) + */ + slot_in_values?: string; + /** + * Slot number the bid targets (filter: not_in_values) (comma-separated list) + */ + slot_not_in_values?: string; + /** + * Epoch number derived from the slot that the bid is for (filter: eq) + */ + epoch_eq?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: ne) + */ + epoch_ne?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: lt) + */ + epoch_lt?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: lte) + */ + epoch_lte?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: gt) + */ + epoch_gt?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: gte) + */ + epoch_gte?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: between_min) + */ + epoch_between_min?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: between_max_value) + */ + epoch_between_max_value?: number; + /** + * Epoch number derived from the slot that the bid is for (filter: in_values) (comma-separated list) + */ + epoch_in_values?: string; + /** + * Epoch number derived from the slot that the bid is for (filter: not_in_values) (comma-separated list) + */ + epoch_not_in_values?: string; + /** + * The start time for the epoch that the bid is for (filter: eq) + */ + epoch_start_date_time_eq?: number; + /** + * The start time for the epoch that the bid is for (filter: ne) + */ + epoch_start_date_time_ne?: number; + /** + * The start time for the epoch that the bid is for (filter: lt) + */ + epoch_start_date_time_lt?: number; + /** + * The start time for the epoch that the bid is for (filter: lte) + */ + epoch_start_date_time_lte?: number; + /** + * The start time for the epoch that the bid is for (filter: gt) + */ + epoch_start_date_time_gt?: number; + /** + * The start time for the epoch that the bid is for (filter: gte) + */ + epoch_start_date_time_gte?: number; + /** + * The start time for the epoch that the bid is for (filter: between_min) + */ + epoch_start_date_time_between_min?: number; + /** + * The start time for the epoch that the bid is for (filter: between_max_value) + */ + epoch_start_date_time_between_max_value?: number; + /** + * The start time for the epoch that the bid is for (filter: in_values) (comma-separated list) + */ + epoch_start_date_time_in_values?: string; + /** + * The start time for the epoch that the bid is for (filter: not_in_values) (comma-separated list) + */ + epoch_start_date_time_not_in_values?: string; + /** + * The timestamp of the earliest observation of the leading bid in this chunk (filter: eq) + */ + earliest_bid_date_time_eq?: number; + /** + * The timestamp of the earliest observation of the leading bid in this chunk (filter: ne) + */ + earliest_bid_date_time_ne?: number; + /** + * The timestamp of the earliest observation of the leading bid in this chunk (filter: lt) + */ + earliest_bid_date_time_lt?: number; + /** + * The timestamp of the earliest observation of the leading bid in this chunk (filter: lte) + */ + earliest_bid_date_time_lte?: number; + /** + * The timestamp of the earliest observation of the leading bid in this chunk (filter: gt) + */ + earliest_bid_date_time_gt?: number; + /** + * The timestamp of the earliest observation of the leading bid in this chunk (filter: gte) + */ + earliest_bid_date_time_gte?: number; + /** + * The timestamp of the earliest observation of the leading bid in this chunk (filter: between_min) + */ + earliest_bid_date_time_between_min?: number; + /** + * The timestamp of the earliest observation of the leading bid in this chunk (filter: between_max_value) + */ + earliest_bid_date_time_between_max_value?: number; + /** + * The timestamp of the earliest observation of the leading bid in this chunk (filter: in_values) (comma-separated list) + */ + earliest_bid_date_time_in_values?: string; + /** + * The timestamp of the earliest observation of the leading bid in this chunk (filter: not_in_values) (comma-separated list) + */ + earliest_bid_date_time_not_in_values?: string; + /** + * The execution block hash committed to in the leading bid (filter: eq) + */ + block_hash_eq?: string; + /** + * The execution block hash committed to in the leading bid (filter: ne) + */ + block_hash_ne?: string; + /** + * The execution block hash committed to in the leading bid (filter: contains) + */ + block_hash_contains?: string; + /** + * The execution block hash committed to in the leading bid (filter: starts_with) + */ + block_hash_starts_with?: string; + /** + * The execution block hash committed to in the leading bid (filter: ends_with) + */ + block_hash_ends_with?: string; + /** + * The execution block hash committed to in the leading bid (filter: like) + */ + block_hash_like?: string; + /** + * The execution block hash committed to in the leading bid (filter: not_like) + */ + block_hash_not_like?: string; + /** + * The execution block hash committed to in the leading bid (filter: in_values) (comma-separated list) + */ + block_hash_in_values?: string; + /** + * The execution block hash committed to in the leading bid (filter: not_in_values) (comma-separated list) + */ + block_hash_not_in_values?: string; + /** + * Validator index of the builder leading this chunk (filter: eq) + */ + builder_index_eq?: number; + /** + * Validator index of the builder leading this chunk (filter: ne) + */ + builder_index_ne?: number; + /** + * Validator index of the builder leading this chunk (filter: lt) + */ + builder_index_lt?: number; + /** + * Validator index of the builder leading this chunk (filter: lte) + */ + builder_index_lte?: number; + /** + * Validator index of the builder leading this chunk (filter: gt) + */ + builder_index_gt?: number; + /** + * Validator index of the builder leading this chunk (filter: gte) + */ + builder_index_gte?: number; + /** + * Validator index of the builder leading this chunk (filter: between_min) + */ + builder_index_between_min?: number; + /** + * Validator index of the builder leading this chunk (filter: between_max_value) + */ + builder_index_between_max_value?: number; + /** + * Validator index of the builder leading this chunk (filter: in_values) (comma-separated list) + */ + builder_index_in_values?: string; + /** + * Validator index of the builder leading this chunk (filter: not_in_values) (comma-separated list) + */ + builder_index_not_in_values?: string; + /** + * The best bid value across all builders in this chunk, in wei (filter: eq) + */ + value_eq?: string; + /** + * The best bid value across all builders in this chunk, in wei (filter: ne) + */ + value_ne?: string; + /** + * The best bid value across all builders in this chunk, in wei (filter: contains) + */ + value_contains?: string; + /** + * The best bid value across all builders in this chunk, in wei (filter: starts_with) + */ + value_starts_with?: string; + /** + * The best bid value across all builders in this chunk, in wei (filter: ends_with) + */ + value_ends_with?: string; + /** + * The best bid value across all builders in this chunk, in wei (filter: like) + */ + value_like?: string; + /** + * The best bid value across all builders in this chunk, in wei (filter: not_like) + */ + value_not_like?: string; + /** + * The best bid value across all builders in this chunk, in wei (filter: in_values) (comma-separated list) + */ + value_in_values?: string; + /** + * The best bid value across all builders in this chunk, in wei (filter: not_in_values) (comma-separated list) + */ + value_not_in_values?: string; + /** + * The maximum number of fct_payload_bid_highest_value_chunked_50ms to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctPayloadBidHighestValueChunked50ms` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_payload_bid_highest_value_chunked_50ms'; +}; + +export type FctPayloadBidHighestValueChunked50MsServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctPayloadBidHighestValueChunked50MsServiceListError = + FctPayloadBidHighestValueChunked50MsServiceListErrors[keyof FctPayloadBidHighestValueChunked50MsServiceListErrors]; + +export type FctPayloadBidHighestValueChunked50MsServiceListResponses = { + /** + * OK + */ + 200: ListFctPayloadBidHighestValueChunked50MsResponse; +}; + +export type FctPayloadBidHighestValueChunked50MsServiceListResponse = + FctPayloadBidHighestValueChunked50MsServiceListResponses[keyof FctPayloadBidHighestValueChunked50MsServiceListResponses]; + +export type FctPayloadBidHighestValueChunked50MsServiceGetData = { + body?: never; + path: { + /** + * The start time for the slot that the bid is for + */ + slot_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_payload_bid_highest_value_chunked_50ms/{slot_start_date_time}'; +}; + +export type FctPayloadBidHighestValueChunked50MsServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctPayloadBidHighestValueChunked50MsServiceGetError = + FctPayloadBidHighestValueChunked50MsServiceGetErrors[keyof FctPayloadBidHighestValueChunked50MsServiceGetErrors]; + +export type FctPayloadBidHighestValueChunked50MsServiceGetResponses = { + /** + * OK + */ + 200: GetFctPayloadBidHighestValueChunked50MsResponse; +}; + +export type FctPayloadBidHighestValueChunked50MsServiceGetResponse = + FctPayloadBidHighestValueChunked50MsServiceGetResponses[keyof FctPayloadBidHighestValueChunked50MsServiceGetResponses]; + export type FctPreparedBlockServiceListData = { body?: never; path?: never; diff --git a/src/api/zod.gen.ts b/src/api/zod.gen.ts index b7e09b404..2cf08659a 100644 --- a/src/api/zod.gen.ts +++ b/src/api/zod.gen.ts @@ -8345,6 +8345,81 @@ export const zFctPayloadBidHighestValueByBuilderChunked50Ms = z.object({ value: z.optional(z.string()), }); +export const zFctPayloadBidHighestValueChunked50Ms = z.object({ + block_hash: z.optional(z.string()), + builder_index: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + chunk_slot_start_diff: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + earliest_bid_date_time: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) + ) + ), + epoch: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + value: z.optional(z.string()), +}); + export const zFctPreparedBlock = z.object({ block_total_bytes: z.optional( z.union([ @@ -10269,6 +10344,13 @@ export const zGetFctPayloadBidHighestValueByBuilderChunked50MsResponse = z.objec item: z.optional(zFctPayloadBidHighestValueByBuilderChunked50Ms), }); +/** + * Response for getting a single fct_payload_bid_highest_value_chunked_50ms record + */ +export const zGetFctPayloadBidHighestValueChunked50MsResponse = z.object({ + item: z.optional(zFctPayloadBidHighestValueChunked50Ms), +}); + /** * Response for getting a single fct_prepared_block record */ @@ -16977,6 +17059,14 @@ export const zListFctPayloadBidHighestValueByBuilderChunked50MsResponse = z.obje next_page_token: z.optional(z.string()), }); +/** + * Response for listing fct_payload_bid_highest_value_chunked_50ms records + */ +export const zListFctPayloadBidHighestValueChunked50MsResponse = z.object({ + fct_payload_bid_highest_value_chunked_50ms: z.optional(z.array(zFctPayloadBidHighestValueChunked50Ms)), + next_page_token: z.optional(z.string()), +}); + /** * Response for listing fct_prepared_block records */ @@ -85367,72 +85457,728 @@ export const zFctPayloadAttestationFirstSeenChunked50MsServiceListData = z.objec ), epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attestation_count_eq: z.optional( - z - .int() + attestation_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + attestation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + attestation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctPayloadAttestationFirstSeenChunked50MsServiceListResponse = + zListFctPayloadAttestationFirstSeenChunked50MsResponse; + +export const zFctPayloadAttestationFirstSeenChunked50MsServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + slot_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctPayloadAttestationFirstSeenChunked50MsServiceGetResponse = + zGetFctPayloadAttestationFirstSeenChunked50MsResponse; + +export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + slot_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + chunk_slot_start_diff_eq: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_ne: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_lt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_lte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_gt: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_gte: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_between_min: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_between_max_value: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + chunk_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + chunk_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + builder_index_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + builder_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + epoch_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + epoch_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + earliest_bid_date_time_eq: z.optional( + z.coerce + .bigint() .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) ) ), - attestation_count_ne: z.optional( - z - .int() + earliest_bid_date_time_ne: z.optional( + z.coerce + .bigint() .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) ) ), - attestation_count_lt: z.optional( - z - .int() + earliest_bid_date_time_lt: z.optional( + z.coerce + .bigint() .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) ) ), - attestation_count_lte: z.optional( - z - .int() + earliest_bid_date_time_lte: z.optional( + z.coerce + .bigint() .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) ) ), - attestation_count_gt: z.optional( - z - .int() + earliest_bid_date_time_gt: z.optional( + z.coerce + .bigint() .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) ) ), - attestation_count_gte: z.optional( - z - .int() + earliest_bid_date_time_gte: z.optional( + z.coerce + .bigint() .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) ) ), - attestation_count_between_min: z.optional( - z - .int() + earliest_bid_date_time_between_min: z.optional( + z.coerce + .bigint() .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) ) ), - attestation_count_between_max_value: z.optional( - z - .int() + earliest_bid_date_time_between_max_value: z.optional( + z.coerce + .bigint() .check( - z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), - z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + z.minimum(BigInt('-9223372036854775808'), { + error: 'Invalid value: Expected int64 to be >= -9223372036854775808', + }), + z.maximum(BigInt('9223372036854775807'), { + error: 'Invalid value: Expected int64 to be <= 9223372036854775807', + }) ) ), - attestation_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - attestation_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + earliest_bid_date_time_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + earliest_bid_date_time_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), + block_hash_eq: z.optional(z.string()), + block_hash_ne: z.optional(z.string()), + block_hash_contains: z.optional(z.string()), + block_hash_starts_with: z.optional(z.string()), + block_hash_ends_with: z.optional(z.string()), + block_hash_like: z.optional(z.string()), + block_hash_not_like: z.optional(z.string()), + block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_eq: z.optional(z.string()), + value_ne: z.optional(z.string()), + value_contains: z.optional(z.string()), + value_starts_with: z.optional(z.string()), + value_ends_with: z.optional(z.string()), + value_like: z.optional(z.string()), + value_not_like: z.optional(z.string()), + value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payment_eq: z.optional(z.string()), + execution_payment_ne: z.optional(z.string()), + execution_payment_contains: z.optional(z.string()), + execution_payment_starts_with: z.optional(z.string()), + execution_payment_ends_with: z.optional(z.string()), + execution_payment_like: z.optional(z.string()), + execution_payment_not_like: z.optional(z.string()), + execution_payment_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + execution_payment_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + fee_recipient_eq: z.optional(z.string()), + fee_recipient_ne: z.optional(z.string()), + fee_recipient_contains: z.optional(z.string()), + fee_recipient_starts_with: z.optional(z.string()), + fee_recipient_ends_with: z.optional(z.string()), + fee_recipient_like: z.optional(z.string()), + fee_recipient_not_like: z.optional(z.string()), + fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), page_size: z.optional( z .int() @@ -85450,10 +86196,10 @@ export const zFctPayloadAttestationFirstSeenChunked50MsServiceListData = z.objec /** * OK */ -export const zFctPayloadAttestationFirstSeenChunked50MsServiceListResponse = - zListFctPayloadAttestationFirstSeenChunked50MsResponse; +export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse = + zListFctPayloadBidHighestValueByBuilderChunked50MsResponse; -export const zFctPayloadAttestationFirstSeenChunked50MsServiceGetData = z.object({ +export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetData = z.object({ body: z.optional(z.never()), path: z.object({ slot_start_date_time: z @@ -85469,10 +86215,10 @@ export const zFctPayloadAttestationFirstSeenChunked50MsServiceGetData = z.object /** * OK */ -export const zFctPayloadAttestationFirstSeenChunked50MsServiceGetResponse = - zGetFctPayloadAttestationFirstSeenChunked50MsResponse; +export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse = + zGetFctPayloadBidHighestValueByBuilderChunked50MsResponse; -export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceListData = z.object({ +export const zFctPayloadBidHighestValueChunked50MsServiceListData = z.object({ body: z.optional(z.never()), path: z.optional(z.never()), query: z.optional( @@ -85609,88 +86355,6 @@ export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceListData = z.o ), chunk_slot_start_diff_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), chunk_slot_start_diff_not_in_values: z.optional(z.string().check(z.regex(/^-?\d+(,-?\d+)*$/))), - builder_index_eq: z.optional( - z.coerce - .bigint() - .check( - z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), - z.maximum(BigInt('18446744073709551615'), { - error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', - }) - ) - ), - builder_index_ne: z.optional( - z.coerce - .bigint() - .check( - z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), - z.maximum(BigInt('18446744073709551615'), { - error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', - }) - ) - ), - builder_index_lt: z.optional( - z.coerce - .bigint() - .check( - z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), - z.maximum(BigInt('18446744073709551615'), { - error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', - }) - ) - ), - builder_index_lte: z.optional( - z.coerce - .bigint() - .check( - z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), - z.maximum(BigInt('18446744073709551615'), { - error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', - }) - ) - ), - builder_index_gt: z.optional( - z.coerce - .bigint() - .check( - z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), - z.maximum(BigInt('18446744073709551615'), { - error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', - }) - ) - ), - builder_index_gte: z.optional( - z.coerce - .bigint() - .check( - z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), - z.maximum(BigInt('18446744073709551615'), { - error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', - }) - ) - ), - builder_index_between_min: z.optional( - z.coerce - .bigint() - .check( - z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), - z.maximum(BigInt('18446744073709551615'), { - error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', - }) - ) - ), - builder_index_between_max_value: z.optional( - z.coerce - .bigint() - .check( - z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), - z.maximum(BigInt('18446744073709551615'), { - error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', - }) - ) - ), - builder_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), - builder_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), updated_date_time_eq: z.optional( z .int() @@ -86062,6 +86726,88 @@ export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceListData = z.o block_hash_not_like: z.optional(z.string()), block_hash_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), block_hash_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + builder_index_eq: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_ne: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_lt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_lte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_gt: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_gte: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_between_min: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_between_max_value: z.optional( + z.coerce + .bigint() + .check( + z.minimum(BigInt('0'), { error: 'Invalid value: Expected uint64 to be >= 0' }), + z.maximum(BigInt('18446744073709551615'), { + error: 'Invalid value: Expected uint64 to be <= 18446744073709551615', + }) + ) + ), + builder_index_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + builder_index_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), value_eq: z.optional(z.string()), value_ne: z.optional(z.string()), value_contains: z.optional(z.string()), @@ -86071,24 +86817,6 @@ export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceListData = z.o value_not_like: z.optional(z.string()), value_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), value_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payment_eq: z.optional(z.string()), - execution_payment_ne: z.optional(z.string()), - execution_payment_contains: z.optional(z.string()), - execution_payment_starts_with: z.optional(z.string()), - execution_payment_ends_with: z.optional(z.string()), - execution_payment_like: z.optional(z.string()), - execution_payment_not_like: z.optional(z.string()), - execution_payment_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - execution_payment_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - fee_recipient_eq: z.optional(z.string()), - fee_recipient_ne: z.optional(z.string()), - fee_recipient_contains: z.optional(z.string()), - fee_recipient_starts_with: z.optional(z.string()), - fee_recipient_ends_with: z.optional(z.string()), - fee_recipient_like: z.optional(z.string()), - fee_recipient_not_like: z.optional(z.string()), - fee_recipient_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), - fee_recipient_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), page_size: z.optional( z .int() @@ -86106,10 +86834,10 @@ export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceListData = z.o /** * OK */ -export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceListResponse = - zListFctPayloadBidHighestValueByBuilderChunked50MsResponse; +export const zFctPayloadBidHighestValueChunked50MsServiceListResponse = + zListFctPayloadBidHighestValueChunked50MsResponse; -export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetData = z.object({ +export const zFctPayloadBidHighestValueChunked50MsServiceGetData = z.object({ body: z.optional(z.never()), path: z.object({ slot_start_date_time: z @@ -86125,8 +86853,7 @@ export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetData = z.ob /** * OK */ -export const zFctPayloadBidHighestValueByBuilderChunked50MsServiceGetResponse = - zGetFctPayloadBidHighestValueByBuilderChunked50MsResponse; +export const zFctPayloadBidHighestValueChunked50MsServiceGetResponse = zGetFctPayloadBidHighestValueChunked50MsResponse; export const zFctPreparedBlockServiceListData = z.object({ body: z.optional(z.never()), diff --git a/src/pages/ethereum/slots/DetailPage.tsx b/src/pages/ethereum/slots/DetailPage.tsx index 9dff715e3..1f6f4c510 100644 --- a/src/pages/ethereum/slots/DetailPage.tsx +++ b/src/pages/ethereum/slots/DetailPage.tsx @@ -97,11 +97,25 @@ export function DetailPage(): JSX.Element { const isGloas = isForkAtOrAfter(getForkForSlot(slot, currentNetwork), 'gloas'); const { data: payloadData } = useSlotPayloadData(slot, isGloas); // The chart draws one series per builder, which stops scaling somewhere - // around a dozen. Keep the strongest bidders as individual series and - // collapse the rest into a single "field" series holding the best bid of - // the remainder per chunk. + // around a dozen. The strongest bidders keep individual series and the + // auction frontier table supplies the "best bid" line — bounded by the + // 50ms chunk grid no matter how many builders compete. If the by_builder + // fetch truncated (unbounded builder count), fall back to frontier only. const payloadBidRaceData = useMemo(() => { const TOP_BUILDERS = 10; + const BY_BUILDER_PAGE_SIZE = 10000; + + const frontierRows = payloadData.bidFrontier.map(bid => ({ + chunk_slot_start_diff: bid.chunk_slot_start_diff ?? 0, + value: bid.value ?? '0', + builder_pubkey: 'best bid', + block_hash: bid.block_hash, + })); + + if (payloadData.bidRace.length >= BY_BUILDER_PAGE_SIZE) { + return frontierRows; + } + const peakByBuilder = new Map(); for (const bid of payloadData.bidRace) { if (bid.builder_index === undefined || !bid.value) continue; @@ -121,45 +135,23 @@ export function DetailPage(): JSX.Element { .map(([index]) => index) ); - const rows: Array<{ chunk_slot_start_diff: number; value: string; builder_pubkey: string; block_hash?: string }> = - []; - const fieldBestByChunk = new Map(); - - for (const bid of payloadData.bidRace) { - const chunk = bid.chunk_slot_start_diff ?? 0; - const row = { - chunk_slot_start_diff: chunk, + const rows = payloadData.bidRace + .filter(bid => bid.builder_index !== undefined && topBuilders.has(bid.builder_index)) + .map(bid => ({ + chunk_slot_start_diff: bid.chunk_slot_start_diff ?? 0, value: bid.value ?? '0', - builder_pubkey: - bid.builder_index !== undefined && topBuilders.has(bid.builder_index) - ? `builder-${bid.builder_index}` - : `field (${peakByBuilder.size - topBuilders.size} builders)`, + builder_pubkey: `builder-${bid.builder_index}`, block_hash: bid.block_hash, - }; - - if (bid.builder_index !== undefined && topBuilders.has(bid.builder_index)) { - rows.push(row); - continue; - } - - // Remainder: keep only the best bid per chunk. - try { - const value = BigInt(bid.value ?? '0'); - const existing = fieldBestByChunk.get(chunk); - if (!existing || value > existing.value) { - fieldBestByChunk.set(chunk, { value, row }); - } - } catch { - // ignore malformed values - } - } + })); - for (const { row } of fieldBestByChunk.values()) { - rows.push(row); + // Only draw the frontier alongside individual builders when it adds + // information (i.e. some builders were cut from the top list). + if (peakByBuilder.size > topBuilders.size) { + rows.push(...frontierRows); } return rows; - }, [payloadData.bidRace]); + }, [payloadData.bidRace, payloadData.bidFrontier]); // Download modal (beacon block + blob sidecars) const [downloadOpen, setDownloadOpen] = useState(false); diff --git a/src/pages/ethereum/slots/hooks/useSlotPayloadData/useSlotPayloadData.ts b/src/pages/ethereum/slots/hooks/useSlotPayloadData/useSlotPayloadData.ts index 9a2b8f027..5d28e5ce5 100644 --- a/src/pages/ethereum/slots/hooks/useSlotPayloadData/useSlotPayloadData.ts +++ b/src/pages/ethereum/slots/hooks/useSlotPayloadData/useSlotPayloadData.ts @@ -6,6 +6,7 @@ import { fctBlockPayloadAvailableByNodeServiceListOptions, fctPayloadBidHighestValueByBuilderChunked50MsServiceListOptions, fctBlockPayloadServiceListOptions, + fctPayloadBidHighestValueChunked50MsServiceListOptions, } from '@/api/@tanstack/react-query.gen'; import type { FctBlockPayloadBid, @@ -14,6 +15,7 @@ import type { FctBlockPayloadAvailableByNode, FctPayloadBidHighestValueByBuilderChunked50Ms, FctBlockPayload, + FctPayloadBidHighestValueChunked50Ms, } from '@/api/types.gen'; import { useNetwork } from '@/hooks/useNetwork'; import { slotToTimestamp } from '@/utils/beacon'; @@ -31,6 +33,8 @@ export interface SlotPayloadData { bidRace: FctPayloadBidHighestValueByBuilderChunked50Ms[]; /** Canonical per-block payload facts: bid commitment + envelope contents */ payload?: FctBlockPayload; + /** The auction frontier: best bid per 50ms chunk across all builders */ + bidFrontier: FctPayloadBidHighestValueChunked50Ms[]; } export interface UseSlotPayloadDataResult { @@ -87,10 +91,17 @@ export function useSlotPayloadData(slot: number, enabled = true): UseSlotPayload }), enabled: queryEnabled, }, + { + ...fctPayloadBidHighestValueChunked50MsServiceListOptions({ + query: { slot_start_date_time_eq: slotTimestamp, page_size: 1000 }, + }), + enabled: queryEnabled, + }, ], }); - const [bidQuery, firstSeenQuery, availableQuery, ptcVoteQuery, bidRaceQuery, payloadQuery] = queries; + const [bidQuery, firstSeenQuery, availableQuery, ptcVoteQuery, bidRaceQuery, payloadQuery, bidFrontierQuery] = + queries; return { data: { @@ -100,6 +111,7 @@ export function useSlotPayloadData(slot: number, enabled = true): UseSlotPayload ptcVote: ptcVoteQuery.data?.fct_block_payload_ptc_vote_head?.[0], bidRace: bidRaceQuery.data?.fct_payload_bid_highest_value_by_builder_chunked_50ms ?? [], payload: payloadQuery.data?.fct_block_payload?.[0], + bidFrontier: bidFrontierQuery.data?.fct_payload_bid_highest_value_chunked_50ms ?? [], }, isLoading: queryEnabled && queries.some(query => query.isLoading), }; From 2cb8249b2f64cdd07938d37fa79916131bd0c2fd Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Fri, 17 Jul 2026 15:01:19 +1000 Subject: [PATCH 20/24] feat(slots): payload propagation and PTC arrivals on the Payload tab Parity with the live view: envelope propagation across sentries reuses BlockPropagationChart and PTC vote arrivals reuse AttestationArrivalsChart, both parameterized for title and anchor so the components serve either stream. The payload data hook also exposes raw PTC chunks. --- src/api/@tanstack/react-query.gen.ts | 68 ++++ src/api/index.ts | 15 + src/api/sdk.gen.ts | 48 +++ src/api/types.gen.ts | 268 ++++++++++++++++ src/api/zod.gen.ts | 292 ++++++++++++++++++ src/pages/ethereum/slots/DetailPage.tsx | 25 ++ .../AttestationArrivalsChart.tsx | 4 +- .../AttestationArrivalsChart.types.ts | 4 + .../BlockPropagationChart.tsx | 10 +- .../BlockPropagationChart.types.ts | 4 + .../useSlotPayloadData/useSlotPayloadData.ts | 23 +- 11 files changed, 755 insertions(+), 6 deletions(-) diff --git a/src/api/@tanstack/react-query.gen.ts b/src/api/@tanstack/react-query.gen.ts index da7aa6ac7..d38c00969 100644 --- a/src/api/@tanstack/react-query.gen.ts +++ b/src/api/@tanstack/react-query.gen.ts @@ -96,6 +96,8 @@ import { fctBlockPayloadPtcVoteServiceList, fctBlockPayloadServiceGet, fctBlockPayloadServiceList, + fctBlockPayloadStatusHourlyServiceGet, + fctBlockPayloadStatusHourlyServiceList, fctBlockProposalStatusDailyServiceGet, fctBlockProposalStatusDailyServiceList, fctBlockProposalStatusHourlyServiceGet, @@ -701,6 +703,12 @@ import type { FctBlockPayloadServiceListData, FctBlockPayloadServiceListError, FctBlockPayloadServiceListResponse, + FctBlockPayloadStatusHourlyServiceGetData, + FctBlockPayloadStatusHourlyServiceGetError, + FctBlockPayloadStatusHourlyServiceGetResponse, + FctBlockPayloadStatusHourlyServiceListData, + FctBlockPayloadStatusHourlyServiceListError, + FctBlockPayloadStatusHourlyServiceListResponse, FctBlockProposalStatusDailyServiceGetData, FctBlockProposalStatusDailyServiceGetError, FctBlockProposalStatusDailyServiceGetResponse, @@ -4400,6 +4408,66 @@ export const fctBlockPayloadPtcVoteHeadServiceGetOptions = ( queryKey: fctBlockPayloadPtcVoteHeadServiceGetQueryKey(options), }); +export const fctBlockPayloadStatusHourlyServiceListQueryKey = ( + options?: Options +) => createQueryKey('fctBlockPayloadStatusHourlyServiceList', options); + +/** + * List records + * + * Retrieve paginated results with optional filtering + */ +export const fctBlockPayloadStatusHourlyServiceListOptions = ( + options?: Options +) => + queryOptions< + FctBlockPayloadStatusHourlyServiceListResponse, + FctBlockPayloadStatusHourlyServiceListError, + FctBlockPayloadStatusHourlyServiceListResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockPayloadStatusHourlyServiceList({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockPayloadStatusHourlyServiceListQueryKey(options), + }); + +export const fctBlockPayloadStatusHourlyServiceGetQueryKey = ( + options: Options +) => createQueryKey('fctBlockPayloadStatusHourlyServiceGet', options); + +/** + * Get record + * + * Retrieve a single record by hour_start_date_time + */ +export const fctBlockPayloadStatusHourlyServiceGetOptions = ( + options: Options +) => + queryOptions< + FctBlockPayloadStatusHourlyServiceGetResponse, + FctBlockPayloadStatusHourlyServiceGetError, + FctBlockPayloadStatusHourlyServiceGetResponse, + ReturnType + >({ + queryFn: async ({ queryKey, signal }) => { + const { data } = await fctBlockPayloadStatusHourlyServiceGet({ + ...options, + ...queryKey[0], + signal, + throwOnError: true, + }); + return data; + }, + queryKey: fctBlockPayloadStatusHourlyServiceGetQueryKey(options), + }); + export const fctBlockProposalStatusDailyServiceListQueryKey = ( options?: Options ) => createQueryKey('fctBlockProposalStatusDailyServiceList', options); diff --git a/src/api/index.ts b/src/api/index.ts index b49dd8c44..c362d6362 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -93,6 +93,8 @@ export { fctBlockPayloadPtcVoteServiceList, fctBlockPayloadServiceGet, fctBlockPayloadServiceList, + fctBlockPayloadStatusHourlyServiceGet, + fctBlockPayloadStatusHourlyServiceList, fctBlockProposalStatusDailyServiceGet, fctBlockProposalStatusDailyServiceList, fctBlockProposalStatusHourlyServiceGet, @@ -930,6 +932,17 @@ export type { FctBlockPayloadServiceListErrors, FctBlockPayloadServiceListResponse, FctBlockPayloadServiceListResponses, + FctBlockPayloadStatusHourly, + FctBlockPayloadStatusHourlyServiceGetData, + FctBlockPayloadStatusHourlyServiceGetError, + FctBlockPayloadStatusHourlyServiceGetErrors, + FctBlockPayloadStatusHourlyServiceGetResponse, + FctBlockPayloadStatusHourlyServiceGetResponses, + FctBlockPayloadStatusHourlyServiceListData, + FctBlockPayloadStatusHourlyServiceListError, + FctBlockPayloadStatusHourlyServiceListErrors, + FctBlockPayloadStatusHourlyServiceListResponse, + FctBlockPayloadStatusHourlyServiceListResponses, FctBlockProposalStatusDaily, FctBlockProposalStatusDailyServiceGetData, FctBlockProposalStatusDailyServiceGetError, @@ -1943,6 +1956,7 @@ export type { GetFctBlockPayloadPtcVoteHeadResponse, GetFctBlockPayloadPtcVoteResponse, GetFctBlockPayloadResponse, + GetFctBlockPayloadStatusHourlyResponse, GetFctBlockProposalStatusDailyResponse, GetFctBlockProposalStatusHourlyResponse, GetFctBlockProposerByValidatorResponse, @@ -2978,6 +2992,7 @@ export type { ListFctBlockPayloadPtcVoteHeadResponse, ListFctBlockPayloadPtcVoteResponse, ListFctBlockPayloadResponse, + ListFctBlockPayloadStatusHourlyResponse, ListFctBlockProposalStatusDailyResponse, ListFctBlockProposalStatusHourlyResponse, ListFctBlockProposerByValidatorResponse, diff --git a/src/api/sdk.gen.ts b/src/api/sdk.gen.ts index a6800a6a9..25d45ef94 100644 --- a/src/api/sdk.gen.ts +++ b/src/api/sdk.gen.ts @@ -279,6 +279,12 @@ import type { FctBlockPayloadServiceListData, FctBlockPayloadServiceListErrors, FctBlockPayloadServiceListResponses, + FctBlockPayloadStatusHourlyServiceGetData, + FctBlockPayloadStatusHourlyServiceGetErrors, + FctBlockPayloadStatusHourlyServiceGetResponses, + FctBlockPayloadStatusHourlyServiceListData, + FctBlockPayloadStatusHourlyServiceListErrors, + FctBlockPayloadStatusHourlyServiceListResponses, FctBlockProposalStatusDailyServiceGetData, FctBlockProposalStatusDailyServiceGetErrors, FctBlockProposalStatusDailyServiceGetResponses, @@ -1443,6 +1449,10 @@ import { zFctBlockPayloadServiceGetResponse, zFctBlockPayloadServiceListData, zFctBlockPayloadServiceListResponse, + zFctBlockPayloadStatusHourlyServiceGetData, + zFctBlockPayloadStatusHourlyServiceGetResponse, + zFctBlockPayloadStatusHourlyServiceListData, + zFctBlockPayloadStatusHourlyServiceListResponse, zFctBlockProposalStatusDailyServiceGetData, zFctBlockProposalStatusDailyServiceGetResponse, zFctBlockProposalStatusDailyServiceListData, @@ -3845,6 +3855,44 @@ export const fctBlockPayloadPtcVoteHeadServiceGet = ( + options?: Options +) => + (options?.client ?? client).get< + FctBlockPayloadStatusHourlyServiceListResponses, + FctBlockPayloadStatusHourlyServiceListErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockPayloadStatusHourlyServiceListData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadStatusHourlyServiceListResponse.parseAsync(data), + url: '/api/v1/fct_block_payload_status_hourly', + ...options, + }); + +/** + * Get record + * + * Retrieve a single record by hour_start_date_time + */ +export const fctBlockPayloadStatusHourlyServiceGet = ( + options: Options +) => + (options.client ?? client).get< + FctBlockPayloadStatusHourlyServiceGetResponses, + FctBlockPayloadStatusHourlyServiceGetErrors, + ThrowOnError + >({ + requestValidator: async data => await zFctBlockPayloadStatusHourlyServiceGetData.parseAsync(data), + responseValidator: async data => await zFctBlockPayloadStatusHourlyServiceGetResponse.parseAsync(data), + url: '/api/v1/fct_block_payload_status_hourly/{hour_start_date_time}', + ...options, + }); + /** * List records * diff --git a/src/api/types.gen.ts b/src/api/types.gen.ts index 36c115d12..d2ac60db5 100644 --- a/src/api/types.gen.ts +++ b/src/api/types.gen.ts @@ -2625,6 +2625,25 @@ export type FctBlockPayloadPtcVoteHead = { updated_date_time?: number; }; +export type FctBlockPayloadStatusHourly = { + /** + * The wall clock time at the start of the hour + */ + hour_start_date_time?: number; + /** + * Number of blocks with this payload outcome in the hour + */ + slot_count?: number; + /** + * PTC verdict bucket: delivered or absent + */ + status?: string; + /** + * Timestamp when the record was last updated + */ + updated_date_time?: number; +}; + export type FctBlockProposalStatusDaily = { /** * Start of the day period @@ -7054,6 +7073,13 @@ export type GetFctBlockPayloadResponse = { item?: FctBlockPayload; }; +/** + * Response for getting a single fct_block_payload_status_hourly record + */ +export type GetFctBlockPayloadStatusHourlyResponse = { + item?: FctBlockPayloadStatusHourly; +}; + /** * Response for getting a single fct_block_proposal_status_daily record */ @@ -12187,6 +12213,20 @@ export type ListFctBlockPayloadResponse = { next_page_token?: string; }; +/** + * Response for listing fct_block_payload_status_hourly records + */ +export type ListFctBlockPayloadStatusHourlyResponse = { + /** + * The list of fct_block_payload_status_hourly. + */ + fct_block_payload_status_hourly?: Array; + /** + * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. + */ + next_page_token?: string; +}; + /** * Response for listing fct_block_proposal_status_daily records */ @@ -38980,6 +39020,234 @@ export type FctBlockPayloadPtcVoteHeadServiceGetResponses = { export type FctBlockPayloadPtcVoteHeadServiceGetResponse = FctBlockPayloadPtcVoteHeadServiceGetResponses[keyof FctBlockPayloadPtcVoteHeadServiceGetResponses]; +export type FctBlockPayloadStatusHourlyServiceListData = { + body?: never; + path?: never; + query?: { + /** + * The wall clock time at the start of the hour (filter: eq) + */ + hour_start_date_time_eq?: number; + /** + * The wall clock time at the start of the hour (filter: ne) + */ + hour_start_date_time_ne?: number; + /** + * The wall clock time at the start of the hour (filter: lt) + */ + hour_start_date_time_lt?: number; + /** + * The wall clock time at the start of the hour (filter: lte) + */ + hour_start_date_time_lte?: number; + /** + * The wall clock time at the start of the hour (filter: gt) + */ + hour_start_date_time_gt?: number; + /** + * The wall clock time at the start of the hour (filter: gte) + */ + hour_start_date_time_gte?: number; + /** + * The wall clock time at the start of the hour (filter: between_min) + */ + hour_start_date_time_between_min?: number; + /** + * The wall clock time at the start of the hour (filter: between_max_value) + */ + hour_start_date_time_between_max_value?: number; + /** + * The wall clock time at the start of the hour (filter: in_values) (comma-separated list) + */ + hour_start_date_time_in_values?: string; + /** + * The wall clock time at the start of the hour (filter: not_in_values) (comma-separated list) + */ + hour_start_date_time_not_in_values?: string; + /** + * PTC verdict bucket: delivered or absent (filter: eq) + */ + status_eq?: string; + /** + * PTC verdict bucket: delivered or absent (filter: ne) + */ + status_ne?: string; + /** + * PTC verdict bucket: delivered or absent (filter: contains) + */ + status_contains?: string; + /** + * PTC verdict bucket: delivered or absent (filter: starts_with) + */ + status_starts_with?: string; + /** + * PTC verdict bucket: delivered or absent (filter: ends_with) + */ + status_ends_with?: string; + /** + * PTC verdict bucket: delivered or absent (filter: like) + */ + status_like?: string; + /** + * PTC verdict bucket: delivered or absent (filter: not_like) + */ + status_not_like?: string; + /** + * PTC verdict bucket: delivered or absent (filter: in_values) (comma-separated list) + */ + status_in_values?: string; + /** + * PTC verdict bucket: delivered or absent (filter: not_in_values) (comma-separated list) + */ + status_not_in_values?: string; + /** + * Timestamp when the record was last updated (filter: eq) + */ + updated_date_time_eq?: number; + /** + * Timestamp when the record was last updated (filter: ne) + */ + updated_date_time_ne?: number; + /** + * Timestamp when the record was last updated (filter: lt) + */ + updated_date_time_lt?: number; + /** + * Timestamp when the record was last updated (filter: lte) + */ + updated_date_time_lte?: number; + /** + * Timestamp when the record was last updated (filter: gt) + */ + updated_date_time_gt?: number; + /** + * Timestamp when the record was last updated (filter: gte) + */ + updated_date_time_gte?: number; + /** + * Timestamp when the record was last updated (filter: between_min) + */ + updated_date_time_between_min?: number; + /** + * Timestamp when the record was last updated (filter: between_max_value) + */ + updated_date_time_between_max_value?: number; + /** + * Timestamp when the record was last updated (filter: in_values) (comma-separated list) + */ + updated_date_time_in_values?: string; + /** + * Timestamp when the record was last updated (filter: not_in_values) (comma-separated list) + */ + updated_date_time_not_in_values?: string; + /** + * Number of blocks with this payload outcome in the hour (filter: eq) + */ + slot_count_eq?: number; + /** + * Number of blocks with this payload outcome in the hour (filter: ne) + */ + slot_count_ne?: number; + /** + * Number of blocks with this payload outcome in the hour (filter: lt) + */ + slot_count_lt?: number; + /** + * Number of blocks with this payload outcome in the hour (filter: lte) + */ + slot_count_lte?: number; + /** + * Number of blocks with this payload outcome in the hour (filter: gt) + */ + slot_count_gt?: number; + /** + * Number of blocks with this payload outcome in the hour (filter: gte) + */ + slot_count_gte?: number; + /** + * Number of blocks with this payload outcome in the hour (filter: between_min) + */ + slot_count_between_min?: number; + /** + * Number of blocks with this payload outcome in the hour (filter: between_max_value) + */ + slot_count_between_max_value?: number; + /** + * Number of blocks with this payload outcome in the hour (filter: in_values) (comma-separated list) + */ + slot_count_in_values?: string; + /** + * Number of blocks with this payload outcome in the hour (filter: not_in_values) (comma-separated list) + */ + slot_count_not_in_values?: string; + /** + * The maximum number of fct_block_payload_status_hourly to return. If unspecified, at most 100 items will be returned. The maximum value is 10000; values above 10000 will be coerced to 10000. + */ + page_size?: number; + /** + * A page token, received from a previous `ListFctBlockPayloadStatusHourly` call. Provide this to retrieve the subsequent page. + */ + page_token?: string; + /** + * The order of results. Format: comma-separated list of fields. Example: "foo,bar" or "foo desc,bar" for descending order on foo. If unspecified, results will be returned in the default order. + */ + order_by?: string; + }; + url: '/api/v1/fct_block_payload_status_hourly'; +}; + +export type FctBlockPayloadStatusHourlyServiceListErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadStatusHourlyServiceListError = + FctBlockPayloadStatusHourlyServiceListErrors[keyof FctBlockPayloadStatusHourlyServiceListErrors]; + +export type FctBlockPayloadStatusHourlyServiceListResponses = { + /** + * OK + */ + 200: ListFctBlockPayloadStatusHourlyResponse; +}; + +export type FctBlockPayloadStatusHourlyServiceListResponse = + FctBlockPayloadStatusHourlyServiceListResponses[keyof FctBlockPayloadStatusHourlyServiceListResponses]; + +export type FctBlockPayloadStatusHourlyServiceGetData = { + body?: never; + path: { + /** + * The wall clock time at the start of the hour + */ + hour_start_date_time: number; + }; + query?: never; + url: '/api/v1/fct_block_payload_status_hourly/{hour_start_date_time}'; +}; + +export type FctBlockPayloadStatusHourlyServiceGetErrors = { + /** + * Default error response + */ + default: Status; +}; + +export type FctBlockPayloadStatusHourlyServiceGetError = + FctBlockPayloadStatusHourlyServiceGetErrors[keyof FctBlockPayloadStatusHourlyServiceGetErrors]; + +export type FctBlockPayloadStatusHourlyServiceGetResponses = { + /** + * OK + */ + 200: GetFctBlockPayloadStatusHourlyResponse; +}; + +export type FctBlockPayloadStatusHourlyServiceGetResponse = + FctBlockPayloadStatusHourlyServiceGetResponses[keyof FctBlockPayloadStatusHourlyServiceGetResponses]; + export type FctBlockProposalStatusDailyServiceListData = { body?: never; path?: never; diff --git a/src/api/zod.gen.ts b/src/api/zod.gen.ts index 2cf08659a..89ed2b8d7 100644 --- a/src/api/zod.gen.ts +++ b/src/api/zod.gen.ts @@ -3251,6 +3251,34 @@ export const zFctBlockPayloadPtcVoteHead = z.object({ ), }); +export const zFctBlockPayloadStatusHourly = z.object({ + hour_start_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + status: z.optional(z.string()), + updated_date_time: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), +}); + export const zFctBlockProposalStatusDaily = z.object({ day_start_date: z.optional(z.string()), slot_count: z.optional( @@ -9903,6 +9931,13 @@ export const zGetFctBlockPayloadResponse = z.object({ item: z.optional(zFctBlockPayload), }); +/** + * Response for getting a single fct_block_payload_status_hourly record + */ +export const zGetFctBlockPayloadStatusHourlyResponse = z.object({ + item: z.optional(zFctBlockPayloadStatusHourly), +}); + /** * Response for getting a single fct_block_proposal_status_daily record */ @@ -16545,6 +16580,14 @@ export const zListFctBlockPayloadResponse = z.object({ next_page_token: z.optional(z.string()), }); +/** + * Response for listing fct_block_payload_status_hourly records + */ +export const zListFctBlockPayloadStatusHourlyResponse = z.object({ + fct_block_payload_status_hourly: z.optional(z.array(zFctBlockPayloadStatusHourly)), + next_page_token: z.optional(z.string()), +}); + /** * Response for listing fct_block_proposal_status_daily records */ @@ -44135,6 +44178,255 @@ export const zFctBlockPayloadPtcVoteHeadServiceGetData = z.object({ */ export const zFctBlockPayloadPtcVoteHeadServiceGetResponse = zGetFctBlockPayloadPtcVoteHeadResponse; +export const zFctBlockPayloadStatusHourlyServiceListData = z.object({ + body: z.optional(z.never()), + path: z.optional(z.never()), + query: z.optional( + z.object({ + hour_start_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + hour_start_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + hour_start_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + status_eq: z.optional(z.string()), + status_ne: z.optional(z.string()), + status_contains: z.optional(z.string()), + status_starts_with: z.optional(z.string()), + status_ends_with: z.optional(z.string()), + status_like: z.optional(z.string()), + status_not_like: z.optional(z.string()), + status_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + status_not_in_values: z.optional(z.string().check(z.regex(/^[^,]+(,[^,]+)*$/))), + updated_date_time_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + updated_date_time_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + updated_date_time_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_eq: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_ne: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_lte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gt: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_gte: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_min: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_between_max_value: z.optional( + z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ) + ), + slot_count_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + slot_count_not_in_values: z.optional(z.string().check(z.regex(/^\d+(,\d+)*$/))), + page_size: z.optional( + z + .int() + .check( + z.minimum(-2147483648, { error: 'Invalid value: Expected int32 to be >= -2147483648' }), + z.maximum(2147483647, { error: 'Invalid value: Expected int32 to be <= 2147483647' }) + ) + ), + page_token: z.optional(z.string()), + order_by: z.optional(z.string()), + }) + ), +}); + +/** + * OK + */ +export const zFctBlockPayloadStatusHourlyServiceListResponse = zListFctBlockPayloadStatusHourlyResponse; + +export const zFctBlockPayloadStatusHourlyServiceGetData = z.object({ + body: z.optional(z.never()), + path: z.object({ + hour_start_date_time: z + .int() + .check( + z.minimum(0, { error: 'Invalid value: Expected uint32 to be >= 0' }), + z.maximum(4294967295, { error: 'Invalid value: Expected uint32 to be <= 4294967295' }) + ), + }), + query: z.optional(z.never()), +}); + +/** + * OK + */ +export const zFctBlockPayloadStatusHourlyServiceGetResponse = zGetFctBlockPayloadStatusHourlyResponse; + export const zFctBlockProposalStatusDailyServiceListData = z.object({ body: z.optional(z.never()), path: z.optional(z.never()), diff --git a/src/pages/ethereum/slots/DetailPage.tsx b/src/pages/ethereum/slots/DetailPage.tsx index 1f6f4c510..91dffe000 100644 --- a/src/pages/ethereum/slots/DetailPage.tsx +++ b/src/pages/ethereum/slots/DetailPage.tsx @@ -1192,6 +1192,31 @@ export function DetailPage(): JSX.Element { yAxisTitle="Bid Value (ETH)" /> )} + {payloadData.payloadFirstSeen.length > 0 && ( + ({ + seen_slot_start_diff: node.seen_slot_start_diff ?? 0, + node_id: node.node_id ?? 'unknown', + meta_client_geo_continent_code: node.meta_client_geo_continent_code, + meta_client_geo_country: node.meta_client_geo_country, + meta_client_geo_city: node.meta_client_geo_city, + username: node.username, + classification: node.classification, + }))} + title="Payload Propagation" + anchorId="payload-propagation-chart" + /> + )} + {payloadData.ptcArrivals.length > 0 && ( + + )}
)} diff --git a/src/pages/ethereum/slots/components/AttestationArrivalsChart/AttestationArrivalsChart.tsx b/src/pages/ethereum/slots/components/AttestationArrivalsChart/AttestationArrivalsChart.tsx index b8af3f80a..e0f5a7827 100644 --- a/src/pages/ethereum/slots/components/AttestationArrivalsChart/AttestationArrivalsChart.tsx +++ b/src/pages/ethereum/slots/components/AttestationArrivalsChart/AttestationArrivalsChart.tsx @@ -25,6 +25,8 @@ export function AttestationArrivalsChart({ currentSlot, votedForBlocks, totalExpectedValidators, + title = 'Attestation Arrivals by Block Vote', + anchorId = 'attestation-arrivals', }: AttestationArrivalsChartProps): JSX.Element { // Create a map of block_root -> slot for quick lookup const blockSlotMap = useMemo(() => { @@ -132,7 +134,7 @@ export function AttestationArrivalsChart({ // Handle empty data if (attestationData.length === 0 || series.length === 0) { return ( - + {({ inModal }) => (
* ``` */ -export function BlockPropagationChart({ blockPropagationData }: BlockPropagationChartProps): JSX.Element { +export function BlockPropagationChart({ + blockPropagationData, + title = 'Block Propagation', + anchorId = 'block-propagation-chart', +}: BlockPropagationChartProps): JSX.Element { const themeColors = useThemeColors(); const { CONTINENT_COLORS } = getDataVizColors(); @@ -169,7 +173,7 @@ export function BlockPropagationChart({ blockPropagationData }: BlockPropagation // Handle empty data if (blockPropagationData.length === 0) { return ( - + {({ inModal }) => (
+ {({ inModal }) => ( query.isLoading), }; From c46c83a312c538bd66a8c6eea55ba7f52695a057 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Fri, 17 Jul 2026 15:03:57 +1000 Subject: [PATCH 21/24] fix(slots): apply title prop on all arrivals chart render paths --- .../AttestationArrivalsChart/AttestationArrivalsChart.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/ethereum/slots/components/AttestationArrivalsChart/AttestationArrivalsChart.tsx b/src/pages/ethereum/slots/components/AttestationArrivalsChart/AttestationArrivalsChart.tsx index e0f5a7827..14aaf4743 100644 --- a/src/pages/ethereum/slots/components/AttestationArrivalsChart/AttestationArrivalsChart.tsx +++ b/src/pages/ethereum/slots/components/AttestationArrivalsChart/AttestationArrivalsChart.tsx @@ -152,8 +152,8 @@ export function AttestationArrivalsChart({ return ( Date: Fri, 17 Jul 2026 15:07:56 +1000 Subject: [PATCH 22/24] feat(overview): payload delivery rate chart Hourly PTC-judged delivery outcomes from fct_block_payload_status_hourly, reusing the proposal-status chart shape (same record structure). Self-gates by data presence, so pre-gloas networks never show it. --- .../ethereum/consensus/overview/IndexPage.tsx | 49 +++++++++++++++++++ .../consensus/overview/overview.utils.ts | 2 + 2 files changed, 51 insertions(+) diff --git a/src/pages/ethereum/consensus/overview/IndexPage.tsx b/src/pages/ethereum/consensus/overview/IndexPage.tsx index 9426109d4..00a5c6161 100644 --- a/src/pages/ethereum/consensus/overview/IndexPage.tsx +++ b/src/pages/ethereum/consensus/overview/IndexPage.tsx @@ -29,6 +29,7 @@ import { fctMissedSlotRateDailyServiceListOptions, fctBlockProposalStatusHourlyServiceListOptions, fctBlockProposalStatusDailyServiceListOptions, + fctBlockPayloadStatusHourlyServiceListOptions, fctAttestationInclusionDelayHourlyServiceListOptions, fctAttestationInclusionDelayDailyServiceListOptions, fctProposerRewardHourlyServiceListOptions, @@ -202,6 +203,19 @@ export function IndexPage(): JSX.Element { enabled: isDaily, }); + // Gloas (ePBS): hourly payload delivery outcomes judged by the PTC. The + // table is empty pre-gloas, so the chart self-gates by data presence. + const payloadStatusHourlyQuery = useQuery({ + ...fctBlockPayloadStatusHourlyServiceListOptions({ + query: { + hour_start_date_time_gte: startTimestamp, + order_by: 'hour_start_date_time asc', + page_size: PAGE_SIZE, + }, + }), + enabled: !isDaily, + }); + const inclusionDelayHourlyQuery = useQuery({ ...fctAttestationInclusionDelayHourlyServiceListOptions({ query: { @@ -482,6 +496,17 @@ export function IndexPage(): JSX.Element { return buildBlockProposalStatusChartConfig(proposalStatusRecords, unifiedTimeKeys, isDaily); }, [proposalStatusRecords, unifiedTimeKeys, isDaily]); + const payloadStatusChartConfig = useMemo(() => { + const records = payloadStatusHourlyQuery.data?.fct_block_payload_status_hourly ?? []; + if (isDaily || !records.length || !unifiedTimeKeys.length) return null; + // Same record shape as proposal status: (time key, status, slot_count). + return buildBlockProposalStatusChartConfig( + records as unknown as FctBlockProposalStatusHourly[], + unifiedTimeKeys, + isDaily + ); + }, [payloadStatusHourlyQuery.data, unifiedTimeKeys, isDaily]); + const inclusionDelayChartConfig = useMemo(() => { if (!inclusionDelayRecords?.length || !unifiedTimeKeys.length) return null; return buildAttestationInclusionDelayChartConfig(inclusionDelayRecords, unifiedTimeKeys, isDaily); @@ -1014,6 +1039,30 @@ export function IndexPage(): JSX.Element { )} + {/* Gloas (ePBS): payload delivery rate judged by the PTC */} + {payloadStatusChartConfig && ( + + {({ inModal }) => ( + + )} + + )} + {/* Block Proposal Status */} {proposalStatusChartConfig && ( = { + delivered: '#22c55e', + absent: '#ef4444', canonical: '#22c55e', orphaned: '#f59e0b', missed: '#f43f5e', From c40a81f928a59aed3303c61256985090abe8bf6c Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Fri, 17 Jul 2026 15:11:40 +1000 Subject: [PATCH 23/24] feat(slots): payload reveal and PTC vote lanes in the timeline waterfall The trace timeline gains the two gloas phases it was missing: an envelope reveal span covering first-to-last sighting across sentries and a PTC vote span covering the vote arrival window, both fed by the payload data hook and only present post-gloas. --- src/pages/ethereum/slots/DetailPage.tsx | 2 + .../SlotProgressTimeline.tsx | 4 ++ .../SlotProgressTimeline.types.ts | 4 ++ .../SlotProgressTimeline/useTraceSpans.ts | 45 +++++++++++++++++++ 4 files changed, 55 insertions(+) diff --git a/src/pages/ethereum/slots/DetailPage.tsx b/src/pages/ethereum/slots/DetailPage.tsx index 91dffe000..7c21da870 100644 --- a/src/pages/ethereum/slots/DetailPage.tsx +++ b/src/pages/ethereum/slots/DetailPage.tsx @@ -664,6 +664,8 @@ export function DetailPage(): JSX.Element { dataColumnPropagation={data.dataColumnPropagation} attestations={data.attestations} mevBidding={data.mevBidding} + payloadPropagation={isGloas ? payloadData.payloadFirstSeen : undefined} + ptcArrivals={isGloas ? payloadData.ptcArrivals : undefined} contributor={search.contributor} onContributorChange={handleContributorChange} /> diff --git a/src/pages/ethereum/slots/components/SlotProgressTimeline/SlotProgressTimeline.tsx b/src/pages/ethereum/slots/components/SlotProgressTimeline/SlotProgressTimeline.tsx index 5d6cb8f4d..f3aefee2d 100644 --- a/src/pages/ethereum/slots/components/SlotProgressTimeline/SlotProgressTimeline.tsx +++ b/src/pages/ethereum/slots/components/SlotProgressTimeline/SlotProgressTimeline.tsx @@ -35,6 +35,8 @@ export function SlotProgressTimeline({ dataColumnPropagation, attestations, mevBidding, + payloadPropagation, + ptcArrivals, isLoading = false, contributor, onContributorChange, @@ -66,6 +68,8 @@ export function SlotProgressTimeline({ dataColumnPropagation, attestations, mevBidding, + payloadPropagation, + ptcArrivals, selectedUsername, excludeOutliers, }); diff --git a/src/pages/ethereum/slots/components/SlotProgressTimeline/SlotProgressTimeline.types.ts b/src/pages/ethereum/slots/components/SlotProgressTimeline/SlotProgressTimeline.types.ts index 24aed8a19..cc4c7d5d5 100644 --- a/src/pages/ethereum/slots/components/SlotProgressTimeline/SlotProgressTimeline.types.ts +++ b/src/pages/ethereum/slots/components/SlotProgressTimeline/SlotProgressTimeline.types.ts @@ -25,6 +25,10 @@ export interface SlotProgressTimelineProps { attestations: FctAttestationFirstSeenChunked50Ms[]; /** MEV bid timing data (50ms chunks) */ mevBidding: FctMevBidHighestValueByBuilderChunked50Ms[]; + /** Gloas (ePBS): payload envelope sightings per sentry */ + payloadPropagation?: { seen_slot_start_diff?: number }[]; + /** Gloas (ePBS): PTC payload attestation arrivals, chunked */ + ptcArrivals?: { chunk_slot_start_diff?: number; attestation_count?: number }[]; /** Whether data is still loading */ isLoading?: boolean; /** Selected contributor username from URL params */ diff --git a/src/pages/ethereum/slots/components/SlotProgressTimeline/useTraceSpans.ts b/src/pages/ethereum/slots/components/SlotProgressTimeline/useTraceSpans.ts index abd915f56..526043488 100644 --- a/src/pages/ethereum/slots/components/SlotProgressTimeline/useTraceSpans.ts +++ b/src/pages/ethereum/slots/components/SlotProgressTimeline/useTraceSpans.ts @@ -22,6 +22,10 @@ interface UseTraceSpansOptions { dataColumnPropagation: FctBlockDataColumnSidecarFirstSeenByNode[]; attestations: FctAttestationFirstSeenChunked50Ms[]; mevBidding: FctMevBidHighestValueByBuilderChunked50Ms[]; + /** Gloas (ePBS): payload envelope sightings per sentry */ + payloadPropagation?: { seen_slot_start_diff?: number }[]; + /** Gloas (ePBS): PTC payload attestation arrivals, chunked */ + ptcArrivals?: { chunk_slot_start_diff?: number; attestation_count?: number }[]; selectedUsername: string | null; excludeOutliers: boolean; } @@ -45,6 +49,8 @@ export function useTraceSpans({ dataColumnPropagation, attestations, mevBidding, + payloadPropagation, + ptcArrivals, selectedUsername, excludeOutliers, }: UseTraceSpansOptions): UseTraceSpansResult { @@ -114,6 +120,45 @@ export function useTraceSpans({ // MEV Builders buildMevSpans(result, mevBidding, blockFirstSeenMs); + // Gloas (ePBS): payload reveal across sentries + if (payloadPropagation && payloadPropagation.length > 0) { + const times = payloadPropagation + .map(node => node.seen_slot_start_diff ?? Infinity) + .filter(v => v !== Infinity && v >= 0 && v <= MAX_REASONABLE_SEEN_TIME_MS); + if (times.length > 0) { + const first = Math.min(...times); + const last = Math.max(...times); + result.push({ + id: 'payload-reveal', + label: 'Payload Reveal', + startMs: first, + endMs: Math.max(last, first + 50), + category: 'execution', + depth: 1, + details: `Envelope seen by ${times.length} nodes (${formatMs(first)} to ${formatMs(last)})`, + }); + } + } + + // Gloas (ePBS): PTC payload attestation votes + if (ptcArrivals && ptcArrivals.length > 0) { + const chunks = ptcArrivals.filter(chunk => (chunk.attestation_count ?? 0) > 0); + if (chunks.length > 0) { + const first = Math.min(...chunks.map(chunk => chunk.chunk_slot_start_diff ?? Infinity)); + const last = Math.max(...chunks.map(chunk => chunk.chunk_slot_start_diff ?? 0)); + const votes = chunks.reduce((sum, chunk) => sum + (chunk.attestation_count ?? 0), 0); + result.push({ + id: 'ptc-votes', + label: 'PTC Votes', + startMs: first, + endMs: last + 50, + category: 'attestation', + depth: 1, + details: `${votes} PTC votes (${formatMs(first)} to ${formatMs(last)})`, + }); + } + } + // Aggregate all node data into per-node timelines const nodeTimelines = aggregateNodeTimelines( blockPropagation, From 2df02a618e6ebdd2e0db647366c4d45acc2e4ddd Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Fri, 17 Jul 2026 15:25:41 +1000 Subject: [PATCH 24/24] test(live): include intersection aggregates in bounds mock The playhead now reads minOfMaxes, which the fixture didn't provide. --- src/hooks/useSlotPlayer/useSlotPlayer.test.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hooks/useSlotPlayer/useSlotPlayer.test.tsx b/src/hooks/useSlotPlayer/useSlotPlayer.test.tsx index bccfd6554..b6b24b13d 100644 --- a/src/hooks/useSlotPlayer/useSlotPlayer.test.tsx +++ b/src/hooks/useSlotPlayer/useSlotPlayer.test.tsx @@ -25,6 +25,8 @@ vi.mock('@/hooks/useBounds', () => ({ data: { aggregate: { minOfMins: MIN_TIMESTAMP, + maxOfMins: MIN_TIMESTAMP, + minOfMaxes: MAX_TIMESTAMP, maxOfMaxes: MAX_TIMESTAMP, }, },